]> git.sur5r.net Git - u-boot/commit
usb: ehci: Fix test mode for connected ports
authorJulius Werner <jwerner@chromium.org>
Tue, 24 Sep 2013 17:53:07 +0000 (10:53 -0700)
committerMarek Vasut <marex@denx.de>
Fri, 27 Sep 2013 14:20:52 +0000 (16:20 +0200)
commit5077f96f10fe88f1f7cbe09743ac7c765f9e98c3
tree65fbee5685c13fdf9271a878b3d752e94aab8ecc
parent4585fc58639757ee6f3a654697a9fb5763adffcd
usb: ehci: Fix test mode for connected ports

The EHCI controller has some very specific requirements for the USB 2.0
port test modes, which were not closely followed in the initial test
mode commit. It demands that the host controller is completely shut down
(all ports suspended, Run/Stop bit unset) when activating test mode, and
will not work on an already enumerated port.

This patch fixes that by introducing a new ehci_shutdown() function that
closely follows the procedure listed in EHCI 4.14. Also, when we have
such a function anyway, we might as well also use it in
usb_lowlevel_stop() to make the normal host controller shutdown cleaner.

Signed-off-by: Julius Werner <jwerner@chromium.org>
Acked-by: Simon Glass <sjg@chromium.org>
drivers/usb/host/ehci-hcd.c