]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
Bluetooth: Add quirk to disable MWS Transport Configuration
authorSven Peter <sven@svenpeter.dev>
Fri, 4 Nov 2022 21:13:02 +0000 (22:13 +0100)
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
Mon, 12 Dec 2022 22:19:24 +0000 (14:19 -0800)
Broadcom 4378/4387 controllers found in Apple Silicon Macs claim to
support getting MWS Transport Layer Configuration,

< HCI Command: Read Local Supported... (0x04|0x0002) plen 0
> HCI Event: Command Complete (0x0e) plen 68
      Read Local Supported Commands (0x04|0x0002) ncmd 1
        Status: Success (0x00)
[...]
          Get MWS Transport Layer Configuration (Octet 30 - Bit 3)]
[...]

, but then don't actually allow the required command:

> HCI Event: Command Complete (0x0e) plen 15
      Get MWS Transport Layer Configuration (0x05|0x000c) ncmd 1
        Status: Command Disallowed (0x0c)
        Number of transports: 0
        Baud rate list: 0 entries
        00 00 00 00 00 00 00 00 00 00

Signed-off-by: Sven Peter <sven@svenpeter.dev>
Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
include/net/bluetooth/hci.h
include/net/bluetooth/hci_core.h
net/bluetooth/hci_sync.c

index 4cf6bc363e4fb3c99c0676d46384bd3034627f98..8d773b042c85309928385975192276f488fddeb2 100644 (file)
@@ -284,6 +284,16 @@ enum {
         * during the hdev->setup vendor callback.
         */
        HCI_QUIRK_BROKEN_EXT_SCAN,
+
+       /*
+        * When this quirk is set, the HCI_OP_GET_MWS_TRANSPORT_CONFIG command is
+        * disabled. This is required for some Broadcom controllers which
+        * erroneously claim to support MWS Transport Layer Configuration.
+        *
+        * This quirk can be set before hci_register_dev is called or
+        * during the hdev->setup vendor callback.
+        */
+       HCI_QUIRK_BROKEN_MWS_TRANSPORT_CONFIG,
 };
 
 /* HCI device flags */
index 1113d74e1f9f9da7e0092864fbc874f0ba0fe8ff..7254edfba4c9c43fd0ea2f6f44fe1b2d2083d2e4 100644 (file)
@@ -1720,6 +1720,9 @@ void hci_conn_del_sysfs(struct hci_conn *conn);
        ((dev)->le_features[3] & HCI_LE_CIS_PERIPHERAL)
 #define bis_capable(dev) ((dev)->le_features[3] & HCI_LE_ISO_BROADCASTER)
 
+#define mws_transport_config_capable(dev) (((dev)->commands[30] & 0x08) && \
+       (!test_bit(HCI_QUIRK_BROKEN_MWS_TRANSPORT_CONFIG, &(dev)->quirks)))
+
 /* ----- HCI protocols ----- */
 #define HCI_PROTO_DEFER             0x01
 
index 4debe205d4af35f1389c312e8f008ebcc11613ab..9e2d7e4b850c545cc4d30118247cc47e476ff332 100644 (file)
@@ -4279,7 +4279,7 @@ static int hci_read_local_pairing_opts_sync(struct hci_dev *hdev)
 /* Get MWS transport configuration if the HCI command is supported */
 static int hci_get_mws_transport_config_sync(struct hci_dev *hdev)
 {
-       if (!(hdev->commands[30] & 0x08))
+       if (!mws_transport_config_capable(hdev))
                return 0;
 
        return __hci_cmd_sync_status(hdev, HCI_OP_GET_MWS_TRANSPORT_CONFIG,