mbox series

bluetooth-next 2025-05-22

Message ID 20250522171048.3307873-1-luiz.dentz@gmail.com
State New
Headers show
Series bluetooth-next 2025-05-22 | expand

Pull-request

git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git tags/for-net-next-2025-05-22

Message

Luiz Augusto von Dentz May 22, 2025, 5:10 p.m. UTC
The following changes since commit e6b3527c3b0a676c710e91798c2709cc0538d312:

  Merge branch 'net-airoha-add-per-flow-stats-support-to-hw-flowtable-offloading' (2025-05-20 20:00:55 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git tags/for-net-next-2025-05-22

for you to fetch changes up to 3aa1dc3c9060e335e82e9c182bf3d1db29220b1b:

  Bluetooth: btintel: Check dsbr size from EFI variable (2025-05-22 13:06:28 -0400)

----------------------------------------------------------------
bluetooth-next pull request for net-next:

core:

 - Add support for SIOCETHTOOL ETHTOOL_GET_TS_INFO
 - Separate CIS_LINK and BIS_LINK link types
 - Introduce HCI Driver protocol

drivers:

 - btintel_pcie: Do not generate coredump for diagnostic events
 - btusb: Add HCI Drv commands for configuring altsetting
 - btusb: Add RTL8851BE device 0x0bda:0xb850
 - btusb: Add new VID/PID 13d3/3584 for MT7922
 - btusb: Add new VID/PID 13d3/3630 and 13d3/3613 for MT7925
 - btnxpuart: Implement host-wakeup feature

----------------------------------------------------------------
Chandrashekar Devegowda (1):
      Bluetooth: btintel_pcie: Dump debug registers on error

Chen Ni (1):
      Bluetooth: hci_uart: Remove unnecessary NULL check before release_firmware()

Dmitry Antipov (1):
      Bluetooth: MGMT: iterate over mesh commands in mgmt_mesh_foreach()

En-Wei Wu (1):
      Bluetooth: btusb: use skb_pull to avoid unsafe access in QCA dump handling

Hsin-chen Chuang (4):
      Bluetooth: Introduce HCI Driver protocol
      Bluetooth: btusb: Add HCI Drv commands for configuring altsetting
      Revert "Bluetooth: btusb: Configure altsetting for HCI_USER_CHANNEL"
      Revert "Bluetooth: btusb: add sysfs attribute to control USB alt setting"

Jiande Lu (1):
      Bluetooth: btusb: Add new VID/PID 13d3/3630 for MT7925

Kees Cook (1):
      Bluetooth: btintel: Check dsbr size from EFI variable

Kiran K (1):
      Bluetooth: btintel_pcie: Do not generate coredump for diagnostic events

Krzysztof Kozlowski (2):
      Bluetooth: btmrvl_sdio: Fix wakeup source leaks on device unbind
      Bluetooth: btmtksdio: Fix wakeup source leaks on device unbind

Liwei Sun (1):
      Bluetooth: btusb: Add new VID/PID 13d3/3584 for MT7922

Luiz Augusto von Dentz (3):
      Bluetooth: ISO: Fix not using SID from adv report
      Bluetooth: ISO: Fix getpeername not returning sockaddr_iso_bc fields
      Bluetooth: L2CAP: Fix not checking l2cap_chan security level

Neeraj Sanjay Kale (2):
      dt-bindings: net: bluetooth: nxp: Add support for host-wakeup
      Bluetooth: btnxpuart: Implement host-wakeup feature

Pauli Virtanen (2):
      Bluetooth: add support for SIOCETHTOOL ETHTOOL_GET_TS_INFO
      Bluetooth: separate CIS_LINK and BIS_LINK link types

WangYuli (1):
      Bluetooth: btusb: Add RTL8851BE device 0x0bda:0xb850

Youn MÉLOIS (1):
      Bluetooth: btusb: Add new VID/PID 13d3/3613 for MT7925

 .../bindings/net/bluetooth/nxp,88w8987-bt.yaml     |  17 ++
 drivers/bluetooth/Kconfig                          |  12 -
 drivers/bluetooth/btintel.c                        |  13 +-
 drivers/bluetooth/btintel.h                        |   6 -
 drivers/bluetooth/btintel_pcie.c                   | 141 +++++++++-
 drivers/bluetooth/btintel_pcie.h                   |  19 ++
 drivers/bluetooth/btmrvl_sdio.c                    |   4 +-
 drivers/bluetooth/btmtksdio.c                      |   2 +-
 drivers/bluetooth/btnxpuart.c                      |  58 +++-
 drivers/bluetooth/btusb.c                          | 302 ++++++++++++---------
 drivers/bluetooth/hci_aml.c                        |   3 +-
 include/net/bluetooth/bluetooth.h                  |   4 +
 include/net/bluetooth/hci.h                        |   4 +-
 include/net/bluetooth/hci_core.h                   |  51 ++--
 include/net/bluetooth/hci_drv.h                    |  76 ++++++
 include/net/bluetooth/hci_mon.h                    |   2 +
 net/bluetooth/Makefile                             |   3 +-
 net/bluetooth/af_bluetooth.c                       |  87 ++++++
 net/bluetooth/hci_conn.c                           |  79 ++++--
 net/bluetooth/hci_core.c                           |  45 ++-
 net/bluetooth/hci_drv.c                            | 105 +++++++
 net/bluetooth/hci_event.c                          |  40 ++-
 net/bluetooth/hci_sock.c                           |  12 +-
 net/bluetooth/hci_sync.c                           |  63 ++++-
 net/bluetooth/iso.c                                |  30 +-
 net/bluetooth/l2cap_core.c                         |  15 +-
 net/bluetooth/mgmt.c                               |   3 +-
 net/bluetooth/mgmt_util.c                          |   2 +-
 28 files changed, 920 insertions(+), 278 deletions(-)
 create mode 100644 include/net/bluetooth/hci_drv.h
 create mode 100644 net/bluetooth/hci_drv.c