linux-bluetooth.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Luiz Augusto von Dentz <luiz.dentz@gmail.com>
To: "Grzegorz Kołodziejczyk" <grzegorz.kolodziejczyk@codecoup.pl>
Cc: "linux-bluetooth@vger.kernel.org" <linux-bluetooth@vger.kernel.org>
Subject: Re: [PATCH BlueZ 00/22] Userspace Bluetooth 5.2 initial support
Date: Thu, 16 Jan 2020 11:51:00 -0800	[thread overview]
Message-ID: <CABBYNZKp1DDzCqRF2XjmN5eROYiJg1LSE7MLV+sMMxNthDz8OQ@mail.gmail.com> (raw)
In-Reply-To: <CALevQMYNAwKnuC669wmL1Y9Ft_HG4UQMZuGr8Dge8HSSf3skZw@mail.gmail.com>

Hi Grzegorz,

On Thu, Jan 16, 2020 at 3:54 AM Grzegorz Kołodziejczyk
<grzegorz.kolodziejczyk@codecoup.pl> wrote:
>
> Hi Luiz,
>
> I wasn't able to test it - it has to be rebased.

There are some changes needed with the way the kernel end up being
merged so I will have to update this set anyway.

> Regards,
> Grzegorz
>
>
> śr., 8 sty 2020 o 01:33 Luiz Augusto von Dentz <luiz.dentz@gmail.com>
> napisał(a):
> >
> > From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
> >
> > This introduces the initial support for Bluetooth 5.2 features:
> >
> > * ISO channels:
> >         + tools/isotest command line tool to run validation tests
> >
> > * L2CAP Enhanced Credit Based Flow Control Mode
> >         + tools/l2test has been update to include the new mode
> >
> > * Enhanced ATT Bearer:
> >         + Client and Server support
> >         + Include all new procedures
> >         + Automaticlly detects and enables channels
> >         + Number of channels configurable via main.conf
> >
> > * Monitor:
> >         + HCI/LL Bluetooth 5.2 command/event decoding
> >         + ISO packets decoding
> >         + L2CAP Enhanced Credit Based Flow Control Mode decoding
> >         + Enhanced ATT packets decoding
> >
> > * Emulator:
> >         + CIS/Unicast emulation support
> >         - BIS/Broadcast emulation not yet supported
> >
> > Kernel changes:
> > https://lore.kernel.org/linux-bluetooth/20200107074056.25453-1-luiz.dentz@gmail.com/T/#t
> >
> > Luiz Augusto von Dentz (22):
> >   monitor: Add support for decoding ISO related commands
> >   monitor: Add decoding of ISO related Link Layer PDUs
> >   lib: Add definitions for ISO socket
> >   tools: Add isotest tool
> >   emulator: Add initial support for BT 5.2
> >   monitor: Add support for ISO packets
> >   tools/btproxy: Add support for ISO packets
> >   monitor: Fix decoding of CIS estabilished event
> >   emulator/btdev: Add parameter to CIS Estabilished
> >   lib: Add definitions for Enhanced Credits Based Mode
> >   btio: Add mode to for Enhanced Credit Mode
> >   monitor: Add decoding for L2CAP Enhanced Credit Based PDUs
> >   l2test: Add support for L2CAP_ECRED_MODE
> >   share/att: Add EATT support
> >   shared/gatt-client: Add support for EATT features
> >   gatt: Enable EATT bearer support
> >   shared/gatt-server: Add support for Read Multiple Variable Length
> >   shared/gatt-client: Add support for Read Multiple Variable Length
> >   shared/gatt: Add support for Handle Value Multiple Notifications
> >   gatt: Add support for Notify Multiple
> >   core: Add support for setting the number of GATT bearers
> >   monitor: Add support for decoding EATT
> >
> >  Makefile.tools           |    5 +-
> >  attrib/gattrib.c         |    5 +-
> >  btio/btio.c              |    2 +-
> >  btio/btio.h              |    3 +-
> >  emulator/btdev.c         |  293 +++++++++--
> >  emulator/btdev.h         |    1 +
> >  emulator/hciemu.c        |    3 +
> >  emulator/hciemu.h        |    1 +
> >  emulator/vhci.c          |    3 +-
> >  lib/bluetooth.h          |   14 +
> >  lib/iso.h                |   45 ++
> >  lib/l2cap.h              |    1 +
> >  lib/uuid.h               |    3 +
> >  monitor/bt.h             |  385 ++++++++++++++
> >  monitor/l2cap.c          |  192 +++++++
> >  monitor/ll.c             |  100 ++++
> >  monitor/packet.c         |  714 ++++++++++++++++++++++++++
> >  monitor/packet.h         |    2 +
> >  peripheral/gatt.c        |    2 +-
> >  src/device.c             |   18 +-
> >  src/gatt-client.c        |   85 ++++
> >  src/gatt-database.c      |  125 +++--
> >  src/hcid.h               |    1 +
> >  src/main.c               |   14 +
> >  src/main.conf            |    5 +
> >  src/shared/att-types.h   |   25 +-
> >  src/shared/att.c         |  780 +++++++++++++++++++----------
> >  src/shared/att.h         |   18 +-
> >  src/shared/btsnoop.h     |    2 +
> >  src/shared/gatt-client.c |  279 +++++++++--
> >  src/shared/gatt-client.h |    5 +-
> >  src/shared/gatt-server.c |  388 ++++++++++-----
> >  src/shared/gatt-server.h |    2 +-
> >  tools/btgatt-client.c    |    2 +-
> >  tools/btgatt-server.c    |    4 +-
> >  tools/btproxy.c          |   20 +-
> >  tools/isotest.c          | 1019 ++++++++++++++++++++++++++++++++++++++
> >  tools/l2test.c           |    5 +-
> >  unit/test-gatt.c         |    4 +-
> >  39 files changed, 4046 insertions(+), 529 deletions(-)
> >  create mode 100644 lib/iso.h
> >  create mode 100644 tools/isotest.c
> >
> > --
> > 2.21.0
> >



-- 
Luiz Augusto von Dentz

      reply	other threads:[~2020-01-16 19:51 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-01-08  0:33 [PATCH BlueZ 00/22] Userspace Bluetooth 5.2 initial support Luiz Augusto von Dentz
2020-01-08  0:33 ` [PATCH BlueZ 01/22] monitor: Add support for decoding ISO related commands Luiz Augusto von Dentz
2020-01-08  0:33 ` [PATCH BlueZ 02/22] monitor: Add decoding of ISO related Link Layer PDUs Luiz Augusto von Dentz
2020-01-08  0:33 ` [PATCH BlueZ 03/22] lib: Add definitions for ISO socket Luiz Augusto von Dentz
2020-01-08  0:33 ` [PATCH BlueZ 04/22] tools: Add isotest tool Luiz Augusto von Dentz
2020-01-08  0:33 ` [PATCH BlueZ 05/22] emulator: Add initial support for BT 5.2 Luiz Augusto von Dentz
2020-01-08  0:33 ` [PATCH BlueZ 06/22] monitor: Add support for ISO packets Luiz Augusto von Dentz
2020-01-08  0:33 ` [PATCH BlueZ 07/22] tools/btproxy: " Luiz Augusto von Dentz
2020-01-08  0:33 ` [PATCH BlueZ 08/22] monitor: Fix decoding of CIS estabilished event Luiz Augusto von Dentz
2020-01-08  0:33 ` [PATCH BlueZ 09/22] emulator/btdev: Add parameter to CIS Estabilished Luiz Augusto von Dentz
2020-01-08  0:33 ` [PATCH BlueZ 10/22] lib: Add definitions for Enhanced Credits Based Mode Luiz Augusto von Dentz
2020-01-08  0:33 ` [PATCH BlueZ 11/22] btio: Add mode to for Enhanced Credit Mode Luiz Augusto von Dentz
2020-01-08  0:33 ` [PATCH BlueZ 12/22] monitor: Add decoding for L2CAP Enhanced Credit Based PDUs Luiz Augusto von Dentz
2020-01-08  0:33 ` [PATCH BlueZ 13/22] l2test: Add support for L2CAP_ECRED_MODE Luiz Augusto von Dentz
2020-01-08  0:33 ` [PATCH BlueZ 14/22] share/att: Add EATT support Luiz Augusto von Dentz
2020-01-08  0:33 ` [PATCH BlueZ 15/22] shared/gatt-client: Add support for EATT features Luiz Augusto von Dentz
2020-01-08  0:33 ` [PATCH BlueZ 16/22] gatt: Enable EATT bearer support Luiz Augusto von Dentz
2020-01-08  0:33 ` [PATCH BlueZ 17/22] shared/gatt-server: Add support for Read Multiple Variable Length Luiz Augusto von Dentz
2020-01-08  0:33 ` [PATCH BlueZ 18/22] shared/gatt-client: " Luiz Augusto von Dentz
2020-01-08  0:33 ` [PATCH BlueZ 19/22] shared/gatt: Add support for Handle Value Multiple Notifications Luiz Augusto von Dentz
2020-01-08  0:33 ` [PATCH BlueZ 20/22] gatt: Add support for Notify Multiple Luiz Augusto von Dentz
2020-01-08  0:33 ` [PATCH BlueZ 21/22] core: Add support for setting the number of GATT bearers Luiz Augusto von Dentz
2020-01-08  0:33 ` [PATCH BlueZ 22/22] monitor: Add support for decoding EATT Luiz Augusto von Dentz
2020-01-16 11:54 ` [PATCH BlueZ 00/22] Userspace Bluetooth 5.2 initial support Grzegorz Kołodziejczyk
2020-01-16 19:51   ` Luiz Augusto von Dentz [this message]

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=CABBYNZKp1DDzCqRF2XjmN5eROYiJg1LSE7MLV+sMMxNthDz8OQ@mail.gmail.com \
    --to=luiz.dentz@gmail.com \
    --cc=grzegorz.kolodziejczyk@codecoup.pl \
    --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;
as well as URLs for NNTP newsgroup(s).