Bluetooth: Add new quirk for non-persistent setup settings
authorSean Wang <sean.wang@mediatek.com>
Fri, 20 Jul 2018 05:12:28 +0000 (13:12 +0800)
committerMarcel Holtmann <marcel@holtmann.org>
Mon, 30 Jul 2018 12:00:15 +0000 (14:00 +0200)
Add a new quirk HCI_QUIRK_NON_PERSISTENT_SETUP allowing that a quirk that
runs setup() after every open() and not just after the first open().

Signed-off-by: Sean Wang <sean.wang@mediatek.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
include/net/bluetooth/hci.h
net/bluetooth/hci_core.c

index 8ff3646..7f00809 100644 (file)
@@ -183,6 +183,15 @@ enum {
         * during the hdev->setup vendor callback.
         */
        HCI_QUIRK_NON_PERSISTENT_DIAG,
+
+       /* When this quirk is set, setup() would be run after every
+        * open() and not just after the first open().
+        *
+        * This quirk can be set before hci_register_dev is called or
+        * during the hdev->setup vendor callback.
+        *
+        */
+       HCI_QUIRK_NON_PERSISTENT_SETUP,
 };
 
 /* HCI device flags */
index 79e02d2..74b29c7 100644 (file)
@@ -1415,7 +1415,8 @@ static int hci_dev_do_open(struct hci_dev *hdev)
        atomic_set(&hdev->cmd_cnt, 1);
        set_bit(HCI_INIT, &hdev->flags);
 
-       if (hci_dev_test_flag(hdev, HCI_SETUP)) {
+       if (hci_dev_test_flag(hdev, HCI_SETUP) ||
+           test_bit(HCI_QUIRK_NON_PERSISTENT_SETUP, &hdev->quirks)) {
                hci_sock_dev_event(hdev, HCI_DEV_SETUP);
 
                if (hdev->setup)