USB: xhci: fix U1/U2 handling for hardware with XHCI_INTEL_HOST quirk set
authorMichael Grzeschik <m.grzeschik@pengutronix.de>
Tue, 15 Dec 2020 19:31:47 +0000 (20:31 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 28 Dec 2020 14:44:32 +0000 (15:44 +0100)
commit5d5323a6f3625f101dbfa94ba3ef7706cce38760
treeedaddc1900f9af8722aaba593c9d41e493547999
parent0f041b8592daaaea46e91a8ebb3b47e6e0171fd8
USB: xhci: fix U1/U2 handling for hardware with XHCI_INTEL_HOST quirk set

The commit 0472bf06c6fd ("xhci: Prevent U1/U2 link pm states if exit
latency is too long") was constraining the xhci code not to allow U1/U2
sleep states if the latency to wake up from the U-states reached the
service interval of an periodic endpoint. This fix was not taking into
account that in case the quirk XHCI_INTEL_HOST is set, the wakeup time
will be calculated and configured differently.

It checks for u1_params.mel/u2_params.mel as a limit. But the code could
decide to write another MEL into the hardware. This leads to broken
cases where not enough bandwidth is available for other devices:

usb 1-2: can't set config #1, error -28

This patch is fixing that case by checking for timeout_ns after the
wakeup time was calculated depending on the quirks.

Fixes: 0472bf06c6fd ("xhci: Prevent U1/U2 link pm states if exit latency is too long")
Signed-off-by: Michael Grzeschik <m.grzeschik@pengutronix.de>
Cc: stable <stable@vger.kernel.org>
Link: https://lore.kernel.org/r/20201215193147.11738-1-m.grzeschik@pengutronix.de
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/host/xhci.c