]> git.karo-electronics.de Git - linux-beck.git/commitdiff
usb: chipidea: host: disable io watchdog
authorLucas Stach <l.stach@pengutronix.de>
Mon, 15 Aug 2016 14:09:07 +0000 (16:09 +0200)
committerPeter Chen <peter.chen@nxp.com>
Wed, 14 Sep 2016 02:58:13 +0000 (10:58 +0800)
The Chipidea EHCI core seems to behave sanely and doesn't need
the IO watchdog. This kills off 10 non-deferrable wakeup events
per second when the controller is otherwise idle.

Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
Tested-by: Stefan Agner <stefan@agner.ch>
Signed-off-by: Peter Chen <peter.chen@nxp.com>
drivers/usb/chipidea/host.c

index 053bac9d983cbd7b3e4d24ee9f227ec0ba909368..96ae69502c86fac5b1b2f7306f049d7f7bb5085f 100644 (file)
@@ -81,12 +81,15 @@ static int ehci_ci_reset(struct usb_hcd *hcd)
 {
        struct device *dev = hcd->self.controller;
        struct ci_hdrc *ci = dev_get_drvdata(dev);
+       struct ehci_hcd *ehci = hcd_to_ehci(hcd);
        int ret;
 
        ret = ehci_setup(hcd);
        if (ret)
                return ret;
 
+       ehci->need_io_watchdog = 0;
+
        ci_platform_configure(ci);
 
        return ret;