[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20200923175602.9523-1-kai.heng.feng@canonical.com>
Date: Thu, 24 Sep 2020 01:56:02 +0800
From: Kai-Heng Feng <kai.heng.feng@...onical.com>
To: marcel@...tmann.org, johan.hedberg@...il.com
Cc: alex_lu@...lsil.com.cn,
Kai-Heng Feng <kai.heng.feng@...onical.com>,
linux-bluetooth@...r.kernel.org (open list:BLUETOOTH DRIVERS),
linux-kernel@...r.kernel.org (open list)
Subject: [PATCH] Bluetooth: btusb: Avoid unnecessary reset upon system resume
Realtek bluetooth controller may fail to work after system sleep:
[ 1272.707670] Bluetooth: hci0: command 0x1001 tx timeout
[ 1280.835712] Bluetooth: hci0: RTL: HCI_OP_READ_LOCAL_VERSION failed (-110)
If platform firmware doesn't cut power off during suspend, the firmware
is considered retained in controller but the driver is still asking USB
core to perform a reset-resume. This can make bluetooth controller
unusable.
So avoid unnecessary reset to resolve the issue.
For devices that really lose power during suspend, USB core will detect
and handle reset-resume correctly.
Signed-off-by: Kai-Heng Feng <kai.heng.feng@...onical.com>
---
drivers/bluetooth/btusb.c | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c
index 8d2608ddfd08..de86ef4388f9 100644
--- a/drivers/bluetooth/btusb.c
+++ b/drivers/bluetooth/btusb.c
@@ -4255,17 +4255,15 @@ static int btusb_suspend(struct usb_interface *intf, pm_message_t message)
enable_irq(data->oob_wake_irq);
}
- /* For global suspend, Realtek devices lose the loaded fw
- * in them. But for autosuspend, firmware should remain.
- * Actually, it depends on whether the usb host sends
+ /* For global suspend, Realtek devices lose the loaded fw in them if
+ * platform firmware cut power off. But for autosuspend, firmware
+ * should remain. Actually, it depends on whether the usb host sends
* set feature (enable wakeup) or not.
*/
if (test_bit(BTUSB_WAKEUP_DISABLE, &data->flags)) {
if (PMSG_IS_AUTO(message) &&
device_can_wakeup(&data->udev->dev))
data->udev->do_remote_wakeup = 1;
- else if (!PMSG_IS_AUTO(message))
- data->udev->reset_resume = 1;
}
return 0;
--
2.17.1
Powered by blists - more mailing lists