Received: by 2002:a25:8b91:0:0:0:0:0 with SMTP id j17csp18371395ybl; Fri, 3 Jan 2020 00:41:14 -0800 (PST) X-Google-Smtp-Source: APXvYqySYlLHGA+toZ7nTD0FGCOAtXymMyqiJ2WxNTezlASCGOVlx6UdWh79iEtpI/oF+tqd/dxg X-Received: by 2002:a05:6830:1bd5:: with SMTP id v21mr103100292ota.154.1578040874260; Fri, 03 Jan 2020 00:41:14 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1578040874; cv=none; d=google.com; s=arc-20160816; b=LYchmb/XiVI+GAEP0M4Uy0gVtRKi9RHpEi9VxMace4DBDBQh1yCVVWEbVGuV+S/65T 4NX4LrAyCBAL3VZv/8ZVh4vMrRW1RKh7Oryi2pViGC3cUQpWt5cW6peI/zFl+ItlxuhM Kkj9PjsR/+rsiYyd5Sed26GvtJh6uGPL8GgYMYQiT4mP4hahjrDTY5k+YTuRk00lsJNk XZDp4CyBl/Lg36BnlO5kOdU8FbDy0ASnwWSj3FO0fp66OccMUDGnIEtw6GrNvgMTzcRI YuQCyZrgJhypX5AaIW1nRoW8TK7Re3qdOmLR913UpiTi41Tj71IgMp0hctRvdLAXrZ+j YSBA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:references:in-reply-to:message-id:date :subject:cc:to:from; bh=UBpi694AzVnuHPmkZoPH289IOPyaKOCZCFIGM1xZpng=; b=OlN4B3nBqJ/OB38U4ytaVKOIcaP50DDZ8yC9u5vSqXTQYaPgNH5zw+W2/Mb6YHMldr PDlUl2dLhYtvAMxD/V2xTGR6KXYMBsOhNPGVpD3d9bfueAClHoAnlNSJcMP7WUFaxVSw /zUkJVGpCHJicPiM8SzBAGvRUoPYFaOnpavYEIEuxnsgzpWc+1KA/yCABgL8P9yDSglw Pnfng4zYibJ9vmbAxhHZMP8eHJ604kzk3+XPKHdlY3EpQbpGIuM13lIkUgXgwwWXDcCV HngKrjTlHwNIt/XRInO/Zm4Hx76zHhuPWzluAch2prMuS+rUlddR6x8JEFxh9SvCVhsp ELsg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=canonical.com Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id m20si25929410otk.279.2020.01.03.00.41.02; Fri, 03 Jan 2020 00:41:14 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=canonical.com Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727438AbgACIkW (ORCPT + 99 others); Fri, 3 Jan 2020 03:40:22 -0500 Received: from youngberry.canonical.com ([91.189.89.112]:58177 "EHLO youngberry.canonical.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726181AbgACIkV (ORCPT ); Fri, 3 Jan 2020 03:40:21 -0500 Received: from 61-220-137-37.hinet-ip.hinet.net ([61.220.137.37] helo=localhost) by youngberry.canonical.com with esmtpsa (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.86_2) (envelope-from ) id 1inIVF-0003T5-Vv; Fri, 03 Jan 2020 08:40:18 +0000 From: Kai-Heng Feng To: mathias.nyman@intel.com, gregkh@linuxfoundation.org, stern@rowland.harvard.edu Cc: acelan.kao@canonical.com, linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org, Kai-Heng Feng Subject: [PATCH 2/3] xhci: Wait until link state trainsits to U0 after setting USB_SS_PORT_LS_U0 Date: Fri, 3 Jan 2020 16:40:07 +0800 Message-Id: <20200103084008.3579-2-kai.heng.feng@canonical.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200103084008.3579-1-kai.heng.feng@canonical.com> References: <20200103084008.3579-1-kai.heng.feng@canonical.com> Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Like U3 case, xHCI spec doesn't specify the upper bound of U0 transition time. The 20ms is not enough for some devices. Intead of polling PLS or PLC, we can facilitate the port change event to know that the link transits to U0 is completed. Signed-off-by: Kai-Heng Feng --- drivers/usb/host/xhci-hub.c | 8 +++++++- drivers/usb/host/xhci-mem.c | 1 + drivers/usb/host/xhci-ring.c | 1 + drivers/usb/host/xhci.h | 1 + 4 files changed, 10 insertions(+), 1 deletion(-) diff --git a/drivers/usb/host/xhci-hub.c b/drivers/usb/host/xhci-hub.c index 2b2e9d004dbf..07886a1bce62 100644 --- a/drivers/usb/host/xhci-hub.c +++ b/drivers/usb/host/xhci-hub.c @@ -1310,11 +1310,17 @@ int xhci_hub_control(struct usb_hcd *hcd, u16 typeReq, u16 wValue, spin_lock_irqsave(&xhci->lock, flags); } } + if (link_state == USB_SS_PORT_LS_U0) + reinit_completion(&ports[wIndex]->link_state_changed); xhci_set_link_state(xhci, ports[wIndex], link_state); spin_unlock_irqrestore(&xhci->lock, flags); - msleep(20); /* wait device to enter */ + if (link_state == USB_SS_PORT_LS_U0) { + if (!wait_for_completion_timeout(&ports[wIndex]->link_state_changed, msecs_to_jiffies(100))) + xhci_dbg(xhci, "missing U0 port change event for port %d-%d\n", hcd->self.busnum, wIndex + 1); + } else + msleep(20); /* wait device to enter */ spin_lock_irqsave(&xhci->lock, flags); if (link_state == USB_SS_PORT_LS_U3) { diff --git a/drivers/usb/host/xhci-mem.c b/drivers/usb/host/xhci-mem.c index 3b1388fa2f36..c760a28e3556 100644 --- a/drivers/usb/host/xhci-mem.c +++ b/drivers/usb/host/xhci-mem.c @@ -2268,6 +2268,7 @@ static int xhci_setup_port_arrays(struct xhci_hcd *xhci, gfp_t flags) xhci->hw_ports[i].addr = &xhci->op_regs->port_status_base + NUM_PORT_REGS * i; xhci->hw_ports[i].hw_portnum = i; + init_completion(&xhci->hw_ports[i].link_state_changed); } xhci->rh_bw = kcalloc_node(num_ports, sizeof(*xhci->rh_bw), flags, diff --git a/drivers/usb/host/xhci-ring.c b/drivers/usb/host/xhci-ring.c index d23f7408c81f..44d91a53bf07 100644 --- a/drivers/usb/host/xhci-ring.c +++ b/drivers/usb/host/xhci-ring.c @@ -1677,6 +1677,7 @@ static void handle_port_status(struct xhci_hcd *xhci, (portsc & PORT_PLS_MASK) == XDEV_U1 || (portsc & PORT_PLS_MASK) == XDEV_U2)) { xhci_dbg(xhci, "resume SS port %d finished\n", port_id); + complete(&port->link_state_changed); /* We've just brought the device into U0/1/2 through either the * Resume state after a device remote wakeup, or through the * U3Exit state after a host-initiated resume. If it's a device diff --git a/drivers/usb/host/xhci.h b/drivers/usb/host/xhci.h index 13d8838cd552..b86a664453dc 100644 --- a/drivers/usb/host/xhci.h +++ b/drivers/usb/host/xhci.h @@ -1708,6 +1708,7 @@ struct xhci_port { int hw_portnum; int hcd_portnum; struct xhci_hub *rhub; + struct completion link_state_changed; }; struct xhci_hub { -- 2.17.1