Skip to content

Commit 6945795

Browse files
jhovoldkuba-moo
authored andcommitted
Bluetooth: fix use-bdaddr-property quirk
Devices that lack persistent storage for the device address can indicate this by setting the HCI_QUIRK_INVALID_BDADDR which causes the controller to be marked as unconfigured until user space has set a valid address. The related HCI_QUIRK_USE_BDADDR_PROPERTY was later added to similarly indicate that the device lacks a valid address but that one may be specified in the devicetree. As is clear from commit 7a0e5b1 ("Bluetooth: Add quirk for reading BD_ADDR from fwnode property") that added and documented this quirk and commits like de79a9d ("Bluetooth: btqcomsmd: use HCI_QUIRK_USE_BDADDR_PROPERTY"), the device address of controllers with this flag should be treated as invalid until user space has had a chance to configure the controller in case the devicetree property is missing. As it does not make sense to allow controllers with invalid addresses, restore the original semantics, which also makes sure that the implementation is consistent (e.g. get_missing_options() indicates that the address must be set) and matches the documentation (including comments in the code, such as, "In case any of them is set, the controller has to start up as unconfigured."). Fixes: e668eb1 ("Bluetooth: hci_core: Don't stop BT if the BD address missing in dts") Signed-off-by: Johan Hovold <[email protected]> Signed-off-by: Luiz Augusto von Dentz <[email protected]> Signed-off-by: Jakub Kicinski <[email protected]>
1 parent 0cb7365 commit 6945795

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

net/bluetooth/hci_sync.c

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4623,16 +4623,14 @@ static int hci_dev_setup_sync(struct hci_dev *hdev)
46234623
* BD_ADDR invalid before creating the HCI device or in
46244624
* its setup callback.
46254625
*/
4626-
invalid_bdaddr = test_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks);
4627-
4626+
invalid_bdaddr = test_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks) ||
4627+
test_bit(HCI_QUIRK_USE_BDADDR_PROPERTY, &hdev->quirks);
46284628
if (!ret) {
46294629
if (test_bit(HCI_QUIRK_USE_BDADDR_PROPERTY, &hdev->quirks) &&
46304630
!bacmp(&hdev->public_addr, BDADDR_ANY))
46314631
hci_dev_get_bd_addr_from_property(hdev);
46324632

4633-
if ((invalid_bdaddr ||
4634-
test_bit(HCI_QUIRK_USE_BDADDR_PROPERTY, &hdev->quirks)) &&
4635-
bacmp(&hdev->public_addr, BDADDR_ANY) &&
4633+
if (invalid_bdaddr && bacmp(&hdev->public_addr, BDADDR_ANY) &&
46364634
hdev->set_bdaddr) {
46374635
ret = hdev->set_bdaddr(hdev, &hdev->public_addr);
46384636
if (!ret)

0 commit comments

Comments
 (0)