* [PATCH] Bluetooth: btusb: deal with MT7925 invalid ISO RX packets
@ 2026-04-24 19:35 Pauli Virtanen
2026-04-24 19:47 ` Luiz Augusto von Dentz
2026-04-24 20:38 ` bluez.test.bot
0 siblings, 2 replies; 4+ messages in thread
From: Pauli Virtanen @ 2026-04-24 19:35 UTC (permalink / raw)
To: linux-bluetooth; +Cc: Pauli Virtanen, linux-mediatek
MT7925 produces empty ISO packets for Handle 0 when RX is active:
> ISO Data RX: Handle 0 SN 36734 flags 0x00 dlen 0 slen 58 #851 [hci0]
> ISO Data RX: Handle 0 SN 36734 flags 0x00 dlen 0 slen 58 #852 [hci0]
The driver should filter these out before passing to hci_core, otherwise
it will printk "Bluetooth: hci0: ISO packet for unknown connection
handle 0" errors.
Filter out by adding hdev->classify_pkt_type
Signed-off-by: Pauli Virtanen <pav@iki.fi>
---
drivers/bluetooth/btmtk.c | 13 +++++++++++++
drivers/bluetooth/btmtk.h | 8 ++++++++
drivers/bluetooth/btusb.c | 1 +
3 files changed, 22 insertions(+)
diff --git a/drivers/bluetooth/btmtk.c b/drivers/bluetooth/btmtk.c
index ab34f1dd42bc..9ba58cc9720a 100644
--- a/drivers/bluetooth/btmtk.c
+++ b/drivers/bluetooth/btmtk.c
@@ -1568,6 +1568,19 @@ int btmtk_recv_event(struct hci_dev *hdev, struct sk_buff *skb)
return hci_recv_frame(hdev, skb);
}
EXPORT_SYMBOL_GPL(btmtk_recv_event);
+
+u8 btmtk_classify_pkt_type(struct hci_dev *hdev, struct sk_buff *skb)
+{
+ /* MT7925 spams invalid ISO packets during ISO RX */
+ if (hci_skb_pkt_type(skb) == HCI_ISODATA_PKT &&
+ skb->len == sizeof(struct hci_iso_hdr) &&
+ hci_iso_hdr(skb)->handle == 0 &&
+ hci_iso_hdr(skb)->dlen == 0)
+ return HCI_DIAG_PKT;
+
+ return hci_skb_pkt_type(skb);
+}
+EXPORT_SYMBOL_GPL(btmtk_classify_pkt_type);
#endif
MODULE_AUTHOR("Sean Wang <sean.wang@mediatek.com>");
diff --git a/drivers/bluetooth/btmtk.h b/drivers/bluetooth/btmtk.h
index c83c24897c95..e573b21cecf7 100644
--- a/drivers/bluetooth/btmtk.h
+++ b/drivers/bluetooth/btmtk.h
@@ -222,6 +222,8 @@ int btmtk_usb_setup(struct hci_dev *hdev);
int btmtk_usb_shutdown(struct hci_dev *hdev);
int btmtk_recv_event(struct hci_dev *hdev, struct sk_buff *skb);
+
+u8 btmtk_classify_pkt_type(struct hci_dev *hdev, struct sk_buff *skb);
#else
static inline int btmtk_set_bdaddr(struct hci_dev *hdev,
@@ -306,4 +308,10 @@ static inline int btmtk_recv_event(struct hci_dev *hdev, struct sk_buff *skb)
{
return hci_recv_frame(hdev, skb);
}
+
+static inline u8 btmtk_classify_pkt_type(struct hci_dev *hdev,
+ struct sk_buff *skb)
+{
+ return hci_skb_pkt_type(skb);
+}
#endif
diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c
index a0a7da498466..7479928eec4b 100644
--- a/drivers/bluetooth/btusb.c
+++ b/drivers/bluetooth/btusb.c
@@ -4245,6 +4245,7 @@ static int btusb_probe(struct usb_interface *intf,
hdev->reset = btmtk_reset_sync;
hdev->set_bdaddr = btmtk_set_bdaddr;
hdev->send = btusb_send_frame_mtk;
+ hdev->classify_pkt_type = btmtk_classify_pkt_type;
hci_set_quirk(hdev, HCI_QUIRK_BROKEN_ENHANCED_SETUP_SYNC_CONN);
hci_set_quirk(hdev, HCI_QUIRK_NON_PERSISTENT_SETUP);
data->recv_acl = btmtk_usb_recv_acl;
--
2.53.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] Bluetooth: btusb: deal with MT7925 invalid ISO RX packets
2026-04-24 19:35 [PATCH] Bluetooth: btusb: deal with MT7925 invalid ISO RX packets Pauli Virtanen
@ 2026-04-24 19:47 ` Luiz Augusto von Dentz
2026-04-24 21:11 ` Pauli Virtanen
2026-04-24 20:38 ` bluez.test.bot
1 sibling, 1 reply; 4+ messages in thread
From: Luiz Augusto von Dentz @ 2026-04-24 19:47 UTC (permalink / raw)
To: Pauli Virtanen; +Cc: linux-bluetooth, linux-mediatek
Hi Pauli,
On Fri, Apr 24, 2026 at 3:38 PM Pauli Virtanen <pav@iki.fi> wrote:
>
> MT7925 produces empty ISO packets for Handle 0 when RX is active:
>
> > ISO Data RX: Handle 0 SN 36734 flags 0x00 dlen 0 slen 58 #851 [hci0]
> > ISO Data RX: Handle 0 SN 36734 flags 0x00 dlen 0 slen 58 #852 [hci0]
>
> The driver should filter these out before passing to hci_core, otherwise
> it will printk "Bluetooth: hci0: ISO packet for unknown connection
> handle 0" errors.
Aren't these rate limited though?
>
> Filter out by adding hdev->classify_pkt_type
>
> Signed-off-by: Pauli Virtanen <pav@iki.fi>
> ---
> drivers/bluetooth/btmtk.c | 13 +++++++++++++
> drivers/bluetooth/btmtk.h | 8 ++++++++
> drivers/bluetooth/btusb.c | 1 +
> 3 files changed, 22 insertions(+)
>
> diff --git a/drivers/bluetooth/btmtk.c b/drivers/bluetooth/btmtk.c
> index ab34f1dd42bc..9ba58cc9720a 100644
> --- a/drivers/bluetooth/btmtk.c
> +++ b/drivers/bluetooth/btmtk.c
> @@ -1568,6 +1568,19 @@ int btmtk_recv_event(struct hci_dev *hdev, struct sk_buff *skb)
> return hci_recv_frame(hdev, skb);
> }
> EXPORT_SYMBOL_GPL(btmtk_recv_event);
> +
> +u8 btmtk_classify_pkt_type(struct hci_dev *hdev, struct sk_buff *skb)
> +{
> + /* MT7925 spams invalid ISO packets during ISO RX */
> + if (hci_skb_pkt_type(skb) == HCI_ISODATA_PKT &&
> + skb->len == sizeof(struct hci_iso_hdr) &&
> + hci_iso_hdr(skb)->handle == 0 &&
> + hci_iso_hdr(skb)->dlen == 0)
> + return HCI_DIAG_PKT;
Not really following you here, why would marking it as a diagnostic
packet make it any better? In fact I do think this needs to print
something to the output if the firmware generates spurious packets and
have it fixed in the firmware asap, silently discarding the packets
just makes the issue undetectable, which I don't think really helps
users.
> +
> + return hci_skb_pkt_type(skb);
> +}
> +EXPORT_SYMBOL_GPL(btmtk_classify_pkt_type);
> #endif
>
> MODULE_AUTHOR("Sean Wang <sean.wang@mediatek.com>");
> diff --git a/drivers/bluetooth/btmtk.h b/drivers/bluetooth/btmtk.h
> index c83c24897c95..e573b21cecf7 100644
> --- a/drivers/bluetooth/btmtk.h
> +++ b/drivers/bluetooth/btmtk.h
> @@ -222,6 +222,8 @@ int btmtk_usb_setup(struct hci_dev *hdev);
> int btmtk_usb_shutdown(struct hci_dev *hdev);
>
> int btmtk_recv_event(struct hci_dev *hdev, struct sk_buff *skb);
> +
> +u8 btmtk_classify_pkt_type(struct hci_dev *hdev, struct sk_buff *skb);
> #else
>
> static inline int btmtk_set_bdaddr(struct hci_dev *hdev,
> @@ -306,4 +308,10 @@ static inline int btmtk_recv_event(struct hci_dev *hdev, struct sk_buff *skb)
> {
> return hci_recv_frame(hdev, skb);
> }
> +
> +static inline u8 btmtk_classify_pkt_type(struct hci_dev *hdev,
> + struct sk_buff *skb)
> +{
> + return hci_skb_pkt_type(skb);
> +}
> #endif
> diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c
> index a0a7da498466..7479928eec4b 100644
> --- a/drivers/bluetooth/btusb.c
> +++ b/drivers/bluetooth/btusb.c
> @@ -4245,6 +4245,7 @@ static int btusb_probe(struct usb_interface *intf,
> hdev->reset = btmtk_reset_sync;
> hdev->set_bdaddr = btmtk_set_bdaddr;
> hdev->send = btusb_send_frame_mtk;
> + hdev->classify_pkt_type = btmtk_classify_pkt_type;
> hci_set_quirk(hdev, HCI_QUIRK_BROKEN_ENHANCED_SETUP_SYNC_CONN);
> hci_set_quirk(hdev, HCI_QUIRK_NON_PERSISTENT_SETUP);
> data->recv_acl = btmtk_usb_recv_acl;
> --
> 2.53.0
>
>
--
Luiz Augusto von Dentz
^ permalink raw reply [flat|nested] 4+ messages in thread
* RE: Bluetooth: btusb: deal with MT7925 invalid ISO RX packets
2026-04-24 19:35 [PATCH] Bluetooth: btusb: deal with MT7925 invalid ISO RX packets Pauli Virtanen
2026-04-24 19:47 ` Luiz Augusto von Dentz
@ 2026-04-24 20:38 ` bluez.test.bot
1 sibling, 0 replies; 4+ messages in thread
From: bluez.test.bot @ 2026-04-24 20:38 UTC (permalink / raw)
To: linux-bluetooth, pav
[-- Attachment #1: Type: text/plain, Size: 882 bytes --]
This is automated email and please do not reply to this email!
Dear submitter,
Thank you for submitting the patches to the linux bluetooth mailing list.
This is a CI test results with your patch series:
PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=1085337
---Test result---
Test Summary:
CheckPatch PASS 0.91 seconds
GitLint PASS 0.25 seconds
SubjectPrefix PASS 0.08 seconds
BuildKernel PASS 24.35 seconds
CheckAllWarning PASS 26.56 seconds
CheckSparse PASS 25.30 seconds
BuildKernel32 PASS 23.95 seconds
TestRunnerSetup PASS 524.33 seconds
IncrementalBuild PASS 22.40 seconds
https://github.com/bluez/bluetooth-next/pull/122
---
Regards,
Linux Bluetooth
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] Bluetooth: btusb: deal with MT7925 invalid ISO RX packets
2026-04-24 19:47 ` Luiz Augusto von Dentz
@ 2026-04-24 21:11 ` Pauli Virtanen
0 siblings, 0 replies; 4+ messages in thread
From: Pauli Virtanen @ 2026-04-24 21:11 UTC (permalink / raw)
To: Luiz Augusto von Dentz; +Cc: linux-bluetooth, linux-mediatek
Hi Luiz,
pe, 2026-04-24 kello 15:47 -0400, Luiz Augusto von Dentz kirjoitti:
> On Fri, Apr 24, 2026 at 3:38 PM Pauli Virtanen <pav@iki.fi> wrote:
> >
> > MT7925 produces empty ISO packets for Handle 0 when RX is active:
> >
> > > ISO Data RX: Handle 0 SN 36734 flags 0x00 dlen 0 slen 58 #851 [hci0]
> > > ISO Data RX: Handle 0 SN 36734 flags 0x00 dlen 0 slen 58 #852 [hci0]
> >
> > The driver should filter these out before passing to hci_core, otherwise
> > it will printk "Bluetooth: hci0: ISO packet for unknown connection
> > handle 0" errors.
>
> Aren't these rate limited though?
They are rate limited, yes, but it's still 10 messages every 5 seconds
while RX is active.
These are generated at a fairly high rate, something like ~60 such
packets per each valid ISO packet, so I agree this looks like some
firmware or driver bug.
btmtk has some custom USB code for ISO RX, btmtk_recv_isopkt(), that's
maybe one suspicious place to check.
> > Filter out by adding hdev->classify_pkt_type
> >
> > Signed-off-by: Pauli Virtanen <pav@iki.fi>
> > ---
> > drivers/bluetooth/btmtk.c | 13 +++++++++++++
> > drivers/bluetooth/btmtk.h | 8 ++++++++
> > drivers/bluetooth/btusb.c | 1 +
> > 3 files changed, 22 insertions(+)
> >
> > diff --git a/drivers/bluetooth/btmtk.c b/drivers/bluetooth/btmtk.c
> > index ab34f1dd42bc..9ba58cc9720a 100644
> > --- a/drivers/bluetooth/btmtk.c
> > +++ b/drivers/bluetooth/btmtk.c
> > @@ -1568,6 +1568,19 @@ int btmtk_recv_event(struct hci_dev *hdev, struct sk_buff *skb)
> > return hci_recv_frame(hdev, skb);
> > }
> > EXPORT_SYMBOL_GPL(btmtk_recv_event);
> > +
> > +u8 btmtk_classify_pkt_type(struct hci_dev *hdev, struct sk_buff *skb)
> > +{
> > + /* MT7925 spams invalid ISO packets during ISO RX */
> > + if (hci_skb_pkt_type(skb) == HCI_ISODATA_PKT &&
> > + skb->len == sizeof(struct hci_iso_hdr) &&
> > + hci_iso_hdr(skb)->handle == 0 &&
> > + hci_iso_hdr(skb)->dlen == 0)
> > + return HCI_DIAG_PKT;
>
> Not really following you here, why would marking it as a diagnostic
> packet make it any better? In fact I do think this needs to print
> something to the output if the firmware generates spurious packets and
> have it fixed in the firmware asap, silently discarding the packets
> just makes the issue undetectable, which I don't think really helps
> users.
The motivation is to not spam user logs with error messages they can do
nothing about. I guess we could eg. emit an error only on the first
such packet.
Maybe it's better to first make sure the issue is not in the driver,
though.
> > +
> > + return hci_skb_pkt_type(skb);
> > +}
> > +EXPORT_SYMBOL_GPL(btmtk_classify_pkt_type);
> > #endif
> >
> > MODULE_AUTHOR("Sean Wang <sean.wang@mediatek.com>");
> > diff --git a/drivers/bluetooth/btmtk.h b/drivers/bluetooth/btmtk.h
> > index c83c24897c95..e573b21cecf7 100644
> > --- a/drivers/bluetooth/btmtk.h
> > +++ b/drivers/bluetooth/btmtk.h
> > @@ -222,6 +222,8 @@ int btmtk_usb_setup(struct hci_dev *hdev);
> > int btmtk_usb_shutdown(struct hci_dev *hdev);
> >
> > int btmtk_recv_event(struct hci_dev *hdev, struct sk_buff *skb);
> > +
> > +u8 btmtk_classify_pkt_type(struct hci_dev *hdev, struct sk_buff *skb);
> > #else
> >
> > static inline int btmtk_set_bdaddr(struct hci_dev *hdev,
> > @@ -306,4 +308,10 @@ static inline int btmtk_recv_event(struct hci_dev *hdev, struct sk_buff *skb)
> > {
> > return hci_recv_frame(hdev, skb);
> > }
> > +
> > +static inline u8 btmtk_classify_pkt_type(struct hci_dev *hdev,
> > + struct sk_buff *skb)
> > +{
> > + return hci_skb_pkt_type(skb);
> > +}
> > #endif
> > diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c
> > index a0a7da498466..7479928eec4b 100644
> > --- a/drivers/bluetooth/btusb.c
> > +++ b/drivers/bluetooth/btusb.c
> > @@ -4245,6 +4245,7 @@ static int btusb_probe(struct usb_interface *intf,
> > hdev->reset = btmtk_reset_sync;
> > hdev->set_bdaddr = btmtk_set_bdaddr;
> > hdev->send = btusb_send_frame_mtk;
> > + hdev->classify_pkt_type = btmtk_classify_pkt_type;
> > hci_set_quirk(hdev, HCI_QUIRK_BROKEN_ENHANCED_SETUP_SYNC_CONN);
> > hci_set_quirk(hdev, HCI_QUIRK_NON_PERSISTENT_SETUP);
> > data->recv_acl = btmtk_usb_recv_acl;
> > --
> > 2.53.0
> >
> >
>
--
Pauli Virtanen
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2026-04-24 21:12 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-24 19:35 [PATCH] Bluetooth: btusb: deal with MT7925 invalid ISO RX packets Pauli Virtanen
2026-04-24 19:47 ` Luiz Augusto von Dentz
2026-04-24 21:11 ` Pauli Virtanen
2026-04-24 20:38 ` bluez.test.bot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox