From: Marcel Holtmann Date: Wed, 7 Mar 2018 21:39:03 +0000 (+0100) Subject: Bluetooth: hci_bcm: Use default baud rate if missing shutdown GPIO X-Git-Tag: Ubuntu-5.10.0-12.13~8157^2~11^2~17 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=f3863f1d7a579a8d8d7741a777ef863674a4d0c8;p=mirror_ubuntu-hirsute-kernel.git Bluetooth: hci_bcm: Use default baud rate if missing shutdown GPIO In case the shutdown GPIO is not wired up, it is impossible to reset the Bluetooth controller to its original state. This include the initial default baud rate which leads to issues when reloading the module or when something unexpected happens. To avoid any kind of runtime deadlocks, stick with the initial default baud rate. Signed-off-by: Marcel Holtmann Signed-off-by: Johan Hedberg --- diff --git a/drivers/bluetooth/hci_bcm.c b/drivers/bluetooth/hci_bcm.c index 467e2f5cb7e3..ff7535e85dea 100644 --- a/drivers/bluetooth/hci_bcm.c +++ b/drivers/bluetooth/hci_bcm.c @@ -1146,6 +1146,12 @@ static int bcm_serdev_probe(struct serdev_device *serdev) if (err) return err; + if (!bcmdev->shutdown) { + dev_warn(&serdev->dev, + "No reset resource, using default baud rate\n"); + bcmdev->oper_speed = bcmdev->init_speed; + } + err = bcm_gpio_set_power(bcmdev, false); if (err) dev_err(&serdev->dev, "Failed to power down\n");