]> git.baikalelectronics.ru Git - kernel.git/commit
xhci: Convert xhci_handshake() to use readl_poll_timeout_atomic()
authorAndrey Smirnov <andrew.smirnov@gmail.com>
Wed, 22 May 2019 11:34:01 +0000 (14:34 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 22 May 2019 12:25:37 +0000 (14:25 +0200)
commit64f6804d9ad03286400ceeda8b2f165361841241
treef0c670f934839305bbae2d368695187b2725f334
parent7bdb8e2d66dad2f4b17ba03d51e044e3535eea87
xhci: Convert xhci_handshake() to use readl_poll_timeout_atomic()

Xhci_handshake() implements the algorithm already captured by
readl_poll_timeout_atomic(). Convert the former to use the latter to
avoid repetition.

Turned out this patch also fixes a bug on the AMD Stoneyridge platform
where usleep(1) sometimes takes over 10ms.
This means a 5 second timeout can easily take over 15 seconds which will
trigger the watchdog and reboot the system.

[Add info about patch fixing a bug to commit message -Mathias]
Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com>
Tested-by: Raul E Rangel <rrangel@chromium.org>
Reviewed-by: Raul E Rangel <rrangel@chromium.org>
Cc: <stable@vger.kernel.org>
Signed-off-by: Mathias Nyman <mathias.nyman@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/host/xhci.c