};
/* List of BCM BT UART devices */
-static DEFINE_SPINLOCK(bcm_device_list_lock);
+static DEFINE_SPINLOCK(bcm_device_lock);
static LIST_HEAD(bcm_device_list);
static int bcm_set_baudrate(struct hci_uart *hu, unsigned int speed)
return 0;
}
-/* bcm_device_exists should be protected by bcm_device_list_lock */
+/* bcm_device_exists should be protected by bcm_device_lock */
static bool bcm_device_exists(struct bcm_device *device)
{
struct list_head *p;
hu->priv = bcm;
- spin_lock(&bcm_device_list_lock);
+ spin_lock(&bcm_device_lock);
list_for_each(p, &bcm_device_list) {
struct bcm_device *dev = list_entry(p, struct bcm_device, list);
if (bcm->dev)
bcm_gpio_set_power(bcm->dev, true);
- spin_unlock(&bcm_device_list_lock);
+ spin_unlock(&bcm_device_lock);
return 0;
}
BT_DBG("hu %p", hu);
/* Protect bcm->dev against removal of the device or driver */
- spin_lock(&bcm_device_list_lock);
+ spin_lock(&bcm_device_lock);
if (bcm_device_exists(bcm->dev)) {
bcm_gpio_set_power(bcm->dev, false);
#ifdef CONFIG_PM_SLEEP
bcm->dev->hu = NULL;
#endif
}
- spin_unlock(&bcm_device_list_lock);
+ spin_unlock(&bcm_device_lock);
skb_queue_purge(&bcm->txq);
kfree_skb(bcm->rx_skb);
BT_DBG("suspend (%p): is_suspended %d", bdev, bdev->is_suspended);
+ spin_lock(&bcm_device_lock);
+
+ if (!bdev->hu)
+ goto unlock;
+
if (!bdev->is_suspended) {
hci_uart_set_flow_control(bdev->hu, true);
mdelay(15);
}
+unlock:
+ spin_unlock(&bcm_device_lock);
+
return 0;
}
BT_DBG("resume (%p): is_suspended %d", bdev, bdev->is_suspended);
+ spin_lock(&bcm_device_lock);
+
+ if (!bdev->hu)
+ goto unlock;
+
if (bdev->device_wakeup) {
gpiod_set_value(bdev->device_wakeup, true);
BT_DBG("resume, delaying 15 ms");
hci_uart_set_flow_control(bdev->hu, false);
}
+unlock:
+ spin_unlock(&bcm_device_lock);
+
return 0;
}
#endif
dev_info(&pdev->dev, "%s device registered.\n", dev->name);
/* Place this instance on the device list */
- spin_lock(&bcm_device_list_lock);
+ spin_lock(&bcm_device_lock);
list_add_tail(&dev->list, &bcm_device_list);
- spin_unlock(&bcm_device_list_lock);
+ spin_unlock(&bcm_device_lock);
bcm_gpio_set_power(dev, false);
{
struct bcm_device *dev = platform_get_drvdata(pdev);
- spin_lock(&bcm_device_list_lock);
+ spin_lock(&bcm_device_lock);
list_del(&dev->list);
- spin_unlock(&bcm_device_list_lock);
+ spin_unlock(&bcm_device_lock);
acpi_dev_remove_driver_gpios(ACPI_COMPANION(&pdev->dev));