Message ID | 20220302225049.432025-1-luiz.dentz@gmail.com |
---|---|
State | New |
Headers | show |
Series | [RFC] Bluetooth: HCI: Add HCI_QUIRK_ENHANCED_SETUP_SYNC_CONN quirk | expand |
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=619721 ---Test result--- Test Summary: CheckPatch PASS 1.64 seconds GitLint PASS 0.76 seconds SubjectPrefix PASS 0.66 seconds BuildKernel PASS 29.46 seconds BuildKernel32 PASS 27.12 seconds Incremental Build with patchesPASS 36.90 seconds TestRunner: Setup PASS 464.45 seconds TestRunner: l2cap-tester PASS 12.95 seconds TestRunner: bnep-tester PASS 5.74 seconds TestRunner: mgmt-tester PASS 101.13 seconds TestRunner: rfcomm-tester FAIL 7.22 seconds TestRunner: sco-tester PASS 7.31 seconds TestRunner: smp-tester PASS 7.09 seconds TestRunner: userchan-tester PASS 5.93 seconds Details ############################## Test: TestRunner: rfcomm-tester - FAIL - 7.22 seconds Run test-runner with rfcomm-tester Total: 10, Passed: 9 (90.0%), Failed: 1, Not Run: 0 Failed Test Cases Basic RFCOMM Socket Client - Write 32k Success Failed 0.150 seconds --- Regards, Linux Bluetooth
Hi, this is your Linux kernel regression tracker. Top-posting for once, to make this easily accessible to everyone. What's the up here? Two weeks ago two patches got posted to fix the regression, but last week nothing happened afaics. A status inquiry in the bug report about this was also left unanswered, that's why I'm wondering if this fall off the radar. https://bugzilla.kernel.org/show_bug.cgi?id=215576 Ciao, Thorsten (wearing his 'the Linux kernel's regression tracker' hat) P.S.: As the Linux kernel's regression tracker I'm getting a lot of reports on my table. I can only look briefly into most of them and lack knowledge about most of the areas they concern. I thus unfortunately will sometimes get things wrong or miss something important. I hope that's not the case here; if you think it is, don't hesitate to tell me in a public reply, it's in everyone's interest to set the public record straight. #regzbot ignore-activity #regzbot poke On 03.03.22 13:23, Marcel Holtmann wrote: > Hi Luiz, > >> This adds HCI_QUIRK_ENHANCED_SETUP_SYNC_CONN quirk which can be used to >> mark HCI_Enhanced_Setup_Synchronous_Connection as supported by >> controller since using just the support command bits are not enough >> since some controller report it as supported but the command don't work >> properly with some configurations (e.g. BT_VOICE_TRANSPARENT/mSBC). >> >> Fixes: b2af264ad3af ("Bluetooth: Add support for HCI_Enhanced_Setup_Synchronous_Connection command") >> Link: https://bugzilla.kernel.org/show_bug.cgi?id=215576 >> Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com> >> --- >> drivers/bluetooth/btusb.c | 58 +++++++++++++++++--------------- >> include/net/bluetooth/hci.h | 9 +++++ >> include/net/bluetooth/hci_core.h | 8 +++-- >> 3 files changed, 46 insertions(+), 29 deletions(-) >> >> diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c >> index 558151f2f150..c862d0f963b5 100644 >> --- a/drivers/bluetooth/btusb.c >> +++ b/drivers/bluetooth/btusb.c >> @@ -36,33 +36,34 @@ static bool reset = true; >> >> static struct usb_driver btusb_driver; >> >> -#define BTUSB_IGNORE 0x01 >> -#define BTUSB_DIGIANSWER 0x02 >> -#define BTUSB_CSR 0x04 >> -#define BTUSB_SNIFFER 0x08 >> -#define BTUSB_BCM92035 0x10 >> -#define BTUSB_BROKEN_ISOC 0x20 >> -#define BTUSB_WRONG_SCO_MTU 0x40 >> -#define BTUSB_ATH3012 0x80 >> -#define BTUSB_INTEL_COMBINED 0x100 >> -#define BTUSB_INTEL_BOOT 0x200 >> -#define BTUSB_BCM_PATCHRAM 0x400 >> -#define BTUSB_MARVELL 0x800 >> -#define BTUSB_SWAVE 0x1000 >> -#define BTUSB_AMP 0x4000 >> -#define BTUSB_QCA_ROME 0x8000 >> -#define BTUSB_BCM_APPLE 0x10000 >> -#define BTUSB_REALTEK 0x20000 >> -#define BTUSB_BCM2045 0x40000 >> -#define BTUSB_IFNUM_2 0x80000 >> -#define BTUSB_CW6622 0x100000 >> -#define BTUSB_MEDIATEK 0x200000 >> -#define BTUSB_WIDEBAND_SPEECH 0x400000 >> -#define BTUSB_VALID_LE_STATES 0x800000 >> -#define BTUSB_QCA_WCN6855 0x1000000 >> -#define BTUSB_INTEL_BROKEN_SHUTDOWN_LED 0x2000000 >> -#define BTUSB_INTEL_BROKEN_INITIAL_NCMD 0x4000000 >> -#define BTUSB_INTEL_NO_WBS_SUPPORT 0x8000000 >> +#define BTUSB_IGNORE BIT(0) >> +#define BTUSB_DIGIANSWER BIT(1) >> +#define BTUSB_CSR BIT(2) >> +#define BTUSB_SNIFFER BIT(3) >> +#define BTUSB_BCM92035 BIT(4) >> +#define BTUSB_BROKEN_ISOC BIT(5) >> +#define BTUSB_WRONG_SCO_MTU BIT(6) >> +#define BTUSB_ATH3012 BIT(7) >> +#define BTUSB_INTEL_COMBINED BIT(8) >> +#define BTUSB_INTEL_BOOT BIT(9) >> +#define BTUSB_BCM_PATCHRAM BIT(10) >> +#define BTUSB_MARVELL BIT(11) >> +#define BTUSB_SWAVE BIT(12) >> +#define BTUSB_AMP BIT(13) >> +#define BTUSB_QCA_ROME BIT(14) >> +#define BTUSB_BCM_APPLE BIT(15) >> +#define BTUSB_REALTEK BIT(16) >> +#define BTUSB_BCM2045 BIT(17) >> +#define BTUSB_IFNUM_2 BIT(18) >> +#define BTUSB_CW6622 BIT(19) >> +#define BTUSB_MEDIATEK BIT(20) >> +#define BTUSB_WIDEBAND_SPEECH BIT(21) >> +#define BTUSB_VALID_LE_STATES BIT(22) >> +#define BTUSB_QCA_WCN6855 BIT(23) >> +#define BTUSB_INTEL_BROKEN_SHUTDOWN_LED BIT(24) >> +#define BTUSB_INTEL_BROKEN_INITIAL_NCMD BIT(25) >> +#define BTUSB_INTEL_NO_WBS_SUPPORT BIT(26) >> +#define BTUSB_ENHANCED_SETUP_SYNC_CONN BIT(27) > > not in the same patch. > >> >> static const struct usb_device_id btusb_table[] = { >> /* Generic Bluetooth USB device */ >> @@ -3848,6 +3849,9 @@ static int btusb_probe(struct usb_interface *intf, >> set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks); >> } >> >> + if (id->driver_info & BTUSB_ENHANCED_SETUP_SYNC_CONN) >> + set_bit(HCI_QUIRK_ENHANCED_SETUP_SYNC_CONN, &hdev->quirks); >> + >> if (id->driver_info & BTUSB_CSR) { >> struct usb_device *udev = data->udev; >> u16 bcdDevice = le16_to_cpu(udev->descriptor.bcdDevice); >> diff --git a/include/net/bluetooth/hci.h b/include/net/bluetooth/hci.h >> index 35c073d44ec5..7fe10ad044c1 100644 >> --- a/include/net/bluetooth/hci.h >> +++ b/include/net/bluetooth/hci.h >> @@ -255,6 +255,15 @@ enum { >> * during the hdev->setup vendor callback. >> */ >> HCI_QUIRK_BROKEN_READ_TRANSMIT_POWER, >> + >> + /* >> + * When this quirk is set, enables the use of >> + * HCI_OP_ENHANCED_SETUP_SYNC_CONN command to setup SCO connections. >> + * >> + * This quirk can be set before hci_register_dev is called or >> + * during the hdev->setup vendor callback. >> + */ >> + HCI_QUIRK_ENHANCED_SETUP_SYNC_CONN, >> }; > > And NO. We are not penalizing well behaving hardware. We mark broken hardware as broken. > > In addition, we really need to print out after ->setup() has run what quirks a given hardware sets and be verbose in dmesg about this mess. Companies really need to learn to get the stuff right or provide firmware updates to fix it. > > If this command is broken, then also WBS support should also be disabled. We need to make them feel this pain and give incentives to get this broken hardware fixed. > > Also I am only going to apply such a patch when I see the driver change to it as well. > > Regards > > Marcel >
diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c index 558151f2f150..c862d0f963b5 100644 --- a/drivers/bluetooth/btusb.c +++ b/drivers/bluetooth/btusb.c @@ -36,33 +36,34 @@ static bool reset = true; static struct usb_driver btusb_driver; -#define BTUSB_IGNORE 0x01 -#define BTUSB_DIGIANSWER 0x02 -#define BTUSB_CSR 0x04 -#define BTUSB_SNIFFER 0x08 -#define BTUSB_BCM92035 0x10 -#define BTUSB_BROKEN_ISOC 0x20 -#define BTUSB_WRONG_SCO_MTU 0x40 -#define BTUSB_ATH3012 0x80 -#define BTUSB_INTEL_COMBINED 0x100 -#define BTUSB_INTEL_BOOT 0x200 -#define BTUSB_BCM_PATCHRAM 0x400 -#define BTUSB_MARVELL 0x800 -#define BTUSB_SWAVE 0x1000 -#define BTUSB_AMP 0x4000 -#define BTUSB_QCA_ROME 0x8000 -#define BTUSB_BCM_APPLE 0x10000 -#define BTUSB_REALTEK 0x20000 -#define BTUSB_BCM2045 0x40000 -#define BTUSB_IFNUM_2 0x80000 -#define BTUSB_CW6622 0x100000 -#define BTUSB_MEDIATEK 0x200000 -#define BTUSB_WIDEBAND_SPEECH 0x400000 -#define BTUSB_VALID_LE_STATES 0x800000 -#define BTUSB_QCA_WCN6855 0x1000000 -#define BTUSB_INTEL_BROKEN_SHUTDOWN_LED 0x2000000 -#define BTUSB_INTEL_BROKEN_INITIAL_NCMD 0x4000000 -#define BTUSB_INTEL_NO_WBS_SUPPORT 0x8000000 +#define BTUSB_IGNORE BIT(0) +#define BTUSB_DIGIANSWER BIT(1) +#define BTUSB_CSR BIT(2) +#define BTUSB_SNIFFER BIT(3) +#define BTUSB_BCM92035 BIT(4) +#define BTUSB_BROKEN_ISOC BIT(5) +#define BTUSB_WRONG_SCO_MTU BIT(6) +#define BTUSB_ATH3012 BIT(7) +#define BTUSB_INTEL_COMBINED BIT(8) +#define BTUSB_INTEL_BOOT BIT(9) +#define BTUSB_BCM_PATCHRAM BIT(10) +#define BTUSB_MARVELL BIT(11) +#define BTUSB_SWAVE BIT(12) +#define BTUSB_AMP BIT(13) +#define BTUSB_QCA_ROME BIT(14) +#define BTUSB_BCM_APPLE BIT(15) +#define BTUSB_REALTEK BIT(16) +#define BTUSB_BCM2045 BIT(17) +#define BTUSB_IFNUM_2 BIT(18) +#define BTUSB_CW6622 BIT(19) +#define BTUSB_MEDIATEK BIT(20) +#define BTUSB_WIDEBAND_SPEECH BIT(21) +#define BTUSB_VALID_LE_STATES BIT(22) +#define BTUSB_QCA_WCN6855 BIT(23) +#define BTUSB_INTEL_BROKEN_SHUTDOWN_LED BIT(24) +#define BTUSB_INTEL_BROKEN_INITIAL_NCMD BIT(25) +#define BTUSB_INTEL_NO_WBS_SUPPORT BIT(26) +#define BTUSB_ENHANCED_SETUP_SYNC_CONN BIT(27) static const struct usb_device_id btusb_table[] = { /* Generic Bluetooth USB device */ @@ -3848,6 +3849,9 @@ static int btusb_probe(struct usb_interface *intf, set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks); } + if (id->driver_info & BTUSB_ENHANCED_SETUP_SYNC_CONN) + set_bit(HCI_QUIRK_ENHANCED_SETUP_SYNC_CONN, &hdev->quirks); + if (id->driver_info & BTUSB_CSR) { struct usb_device *udev = data->udev; u16 bcdDevice = le16_to_cpu(udev->descriptor.bcdDevice); diff --git a/include/net/bluetooth/hci.h b/include/net/bluetooth/hci.h index 35c073d44ec5..7fe10ad044c1 100644 --- a/include/net/bluetooth/hci.h +++ b/include/net/bluetooth/hci.h @@ -255,6 +255,15 @@ enum { * during the hdev->setup vendor callback. */ HCI_QUIRK_BROKEN_READ_TRANSMIT_POWER, + + /* + * When this quirk is set, enables the use of + * HCI_OP_ENHANCED_SETUP_SYNC_CONN command to setup SCO connections. + * + * This quirk can be set before hci_register_dev is called or + * during the hdev->setup vendor callback. + */ + HCI_QUIRK_ENHANCED_SETUP_SYNC_CONN, }; /* HCI device flags */ diff --git a/include/net/bluetooth/hci_core.h b/include/net/bluetooth/hci_core.h index d5377740e99c..119341c7168d 100644 --- a/include/net/bluetooth/hci_core.h +++ b/include/net/bluetooth/hci_core.h @@ -1492,8 +1492,12 @@ void hci_conn_del_sysfs(struct hci_conn *conn); #define privacy_mode_capable(dev) (use_ll_privacy(dev) && \ (hdev->commands[39] & 0x04)) -/* Use enhanced synchronous connection if command is supported */ -#define enhanced_sco_capable(dev) ((dev)->commands[29] & 0x08) +/* Use enhanced synchronous connection if command is supported and quirk has + * been set. + */ +#define enhanced_sco_capable(dev) (((dev)->commands[29] & 0x08) && \ + test_bit(HCI_QUIRK_ENHANCED_SETUP_SYNC_CONN, \ + &(dev)->quirks)) /* Use ext scanning if set ext scan param and ext scan enable is supported */ #define use_ext_scan(dev) (((dev)->commands[37] & 0x20) && \