]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
USB: Verify the port status when timeout happens during port suspend
authorChris Chiu <chris.chiu@canonical.com>
Tue, 25 May 2021 05:47:00 +0000 (07:47 +0200)
committerKleber Sacilotto de Souza <kleber.souza@canonical.com>
Fri, 28 May 2021 10:39:09 +0000 (12:39 +0200)
BugLink: https://bugs.launchpad.net/bugs/1928242
On the Realtek high-speed Hub(0bda:5487), the port which has wakeup
enabled_descendants will sometimes timeout when setting PORT_SUSPEND
feature. After checking the PORT_SUSPEND bit in wPortStatus, it is
already set which means the port has been suspended. We should treat
it suspended to make sure it will be resumed correctly.

Acked-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Chris Chiu <chris.chiu@canonical.com>
Link: https://lore.kernel.org/r/20210514045405.5261-2-chris.chiu@canonical.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
(cherry picked from commit 7142452387c72207f34683382b04f38499da58f7 linux-next)
Signed-off-by: Chris Chiu <chris.chiu@canonical.com>
Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
Acked-by: Kleber Sacilotto de Souza <kleber.souza@canonical.com>
Signed-off-by: Kleber Sacilotto de Souza <kleber.souza@canonical.com>
drivers/usb/core/hub.c

index 5b1b3c7310b481158d073bbafa8c3e75ba9d3ba6..a1e67400956b87cb7cbec2e9d3ad2f5a27588279 100644 (file)
@@ -3369,6 +3369,26 @@ int usb_port_suspend(struct usb_device *udev, pm_message_t msg)
                status = 0;
        }
        if (status) {
+               /* Check if the port has been suspended for the timeout case
+                * to prevent the suspended port from incorrect handling.
+                */
+               if (status == -ETIMEDOUT) {
+                       int ret;
+                       u16 portstatus, portchange;
+
+                       portstatus = portchange = 0;
+                       ret = hub_port_status(hub, port1, &portstatus,
+                                       &portchange);
+
+                       dev_dbg(&port_dev->dev,
+                               "suspend timeout, status %04x\n", portstatus);
+
+                       if (ret == 0 && port_is_suspended(hub, portstatus)) {
+                               status = 0;
+                               goto suspend_done;
+                       }
+               }
+
                dev_dbg(&port_dev->dev, "can't suspend, status %d\n", status);
 
                /* Try to enable USB3 LTM again */
@@ -3385,6 +3405,7 @@ int usb_port_suspend(struct usb_device *udev, pm_message_t msg)
                if (!PMSG_IS_AUTO(msg))
                        status = 0;
        } else {
+ suspend_done:
                dev_dbg(&udev->dev, "usb %ssuspend, wakeup %d\n",
                                (PMSG_IS_AUTO(msg) ? "auto-" : ""),
                                udev->do_remote_wakeup);