Received: by 2002:a05:6a10:206:0:0:0:0 with SMTP id 6csp3681007pxj; Tue, 11 May 2021 09:32:08 -0700 (PDT) X-Google-Smtp-Source: ABdhPJwrtqXmd6iKfDZaOWFIwt0fWNVPE/hg9SlIr23DlPVcYc3rnhZR/nSiayac21KiqTuShJ6t X-Received: by 2002:aa7:dad7:: with SMTP id x23mr37726324eds.86.1620750728583; Tue, 11 May 2021 09:32:08 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1620750728; cv=none; d=google.com; s=arc-20160816; b=mgcz+lJo1KUp/KMOH3HtACNr/5wO0jZb/+tR92XE7qWOZdiL2/2ZrsyyD0sPZ8TJ1a hb6kstx5aqNUFzTUaB//nXP7IgdjKdPq6fwfSUJh+8xJEGkT1BJ09+P7LhIHQ5iBTd2p KG6uXc/97qJLE2jVmvDsH3xKsE+ZZD969/Wd0yWWTNVT36d1FR5qgeruSNRr/5/UWwAC XeTNV7HCGdktEBK6enDsrM5zOns20rsGT50b7G8StofLX/c0PGdT02U0janhx5Zt6ZZo Ma5re40sVKqzmc8Pr5bEY37vpLP1UwWk7Ykv862MlcZUKMODb2rlK+ge+YZqz1J5Ivas KRsA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:user-agent:in-reply-to:content-disposition :mime-version:references:message-id:subject:cc:to:from:date; bh=8z3PNJ1uuIPKLkGWUKMeDAStehmbMDqJbl0AlmuhGJI=; b=v0o+N1bGPNUjJLtrNTgJEqxxxi7AMS42IvdH2tcj2vJ9vilFNwCvnOeKux8BTY4yUB +9uYySjKQ4fQQ1e586iCkFxtSn1H7mSxNxoAZXVt05RRtuqaEDDYTesiRmuf2M9MPIf7 XxnPRpSH+bOuHAqL562Q+eyz+CSwzTZGUjVazacE73mst6tkbL6H+DdtlCDCuSxVI3fQ q1jtSWyyJ4hdDLGPgQL4K2Aq2EKGdb5sEVo42t12ciIl2aIIh3P8uoA9feqa1UDyBSMF NiNYp0ht2tAouCipUXQY+K0z6p4acwLOiRgaxNa8MXmZXHnvs8vke8PJxI5Xjv9d4j25 wuPA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id jo9si347687ejb.552.2021.05.11.09.31.43; Tue, 11 May 2021 09:32:08 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231177AbhEKQbn (ORCPT + 99 others); Tue, 11 May 2021 12:31:43 -0400 Received: from netrider.rowland.org ([192.131.102.5]:59283 "HELO netrider.rowland.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S231230AbhEKQbf (ORCPT ); Tue, 11 May 2021 12:31:35 -0400 Received: (qmail 903248 invoked by uid 1000); 11 May 2021 12:30:26 -0400 Date: Tue, 11 May 2021 12:30:26 -0400 From: Alan Stern To: Chris Chiu Cc: Greg KH , m.v.b@runbox.com, hadess@hadess.net, linux-usb@vger.kernel.org, Linux Kernel Subject: Re: [PATCH v2 1/2] USB: reset-resume the device when PORT_SUSPEND is set but timeout Message-ID: <20210511163026.GA901897@rowland.harvard.edu> References: <20210510145030.1495-1-chris.chiu@canonical.com> <20210510145030.1495-2-chris.chiu@canonical.com> <20210510150203.GD863718@rowland.harvard.edu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.10.1 (2018-07-13) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, May 11, 2021 at 01:04:36PM +0800, Chris Chiu wrote: > On Mon, May 10, 2021 at 11:02 PM Alan Stern wrote: > > > > On Mon, May 10, 2021 at 10:50:29PM +0800, chris.chiu@canonical.com wrote: > > > From: Chris Chiu > > > > > > On the Realtek high-speed Hub(0bda:5487), the port which has wakeup > > > enabled_descendants will sometimes timeout when setting PORT_SUSPEND > > > feature. After checking the PORT_SUSPEND bit in wPortStatus, it is > > > already set. However, the hub will fail to activate because the > > > PORT_SUSPEND feature of that port is not cleared during resume. All > > > connected devices are lost after resume. > > > > > > This commit force reset-resume the device connected to the timeout > > > but suspended port so that the hub will have chance to clear the > > > PORT_SUSPEND feature during resume. > > > > Are you certain that the reset-resume is needed? What happens if you > > leave out the line that sets udev->reset_resume? The rest of the patch > > will cause the kernel to realize that the port really is suspended, so > > maybe the suspend feature will get cleared properly during resume. > > > > It's worthwhile to try the experiement and see what happens. > > > > Alan Stern > > > > If I leave out the udev->reset_resume set, the resume will fail. Please refer > to the following kernel log. The usb 1-1 is the hub which has wakeup enabled > descendants. > > [ 57.210472] usb 1-1: kworker/u32:7 timed out on ep0out len=0/0 > [ 57.211022] usb 1-1-port3: suspend timeout, status 0507 > [ 57.211130] hub 1-1:1.0: hub_suspend > [ 57.230500] usb 1-1: usb suspend, wakeup 0 > > The timeout happens at 57.210472 and you can see the PORT_SUSPEND > bit is actually set in the "status 0507". The following shows the resume log. > > [ 58.046556] usb 1-1: usb resume > [ 58.114515] usb 1-1: Waited 0ms for CONNECT > [ 58.114524] usb 1-1: finish resume > [ 58.114928] hub 1-1:1.0: hub_resume > [ 58.116035] usb 1-1-port3: status 0507 change 0000 > [ 58.116720] usb 1-1-port5: status 0503 change 0000 > [ 58.116778] hub 1-1.3:1.0: hub_resume > [ 58.116908] hub 1-1.3:1.0: hub_ext_port_status failed (err = -71) > [ 58.116952] usb 1-1.5: Waited 0ms for CONNECT > [ 58.116955] usb 1-1.5: finish resume > [ 58.117157] hub 1-1.3:1.0: hub_ext_port_status failed (err = -71) > [ 58.117397] usb 1-1.3-port5: can't resume, status -71 > [ 58.117782] hub 1-1.3:1.0: hub_ext_port_status failed (err = -71) > [ 58.118147] usb 1-1.3-port2: can't resume, status -71 > [ 58.118149] usb 1-1.3.2: Waited 0ms for CONNECT > [ 58.118151] usb 1-1.3-port2: status 07eb.906e after resume, -19 > [ 58.118153] usb 1-1.3.2: can't resume, status -19 > [ 58.118154] usb 1-1.3-port2: logical disconnect > [ 58.118526] usb 1-1.3-port2: cannot disable (err = -71) > > As you see in the 58.116035, the hub_resume and activate is OK for the > usb 1-1. The "usb 1-1.3: finish resume" is not in the log because it's not > considered suspended and no chance to ClearPortFeature. Wait -- why isn't it considered suspended? We saw at 57.211022 that 1-1-port3's Suspend feature really was set, and thanks to your patch, the kernel should now believe that the port is suspended. > Then it fails > the subsequent hub 1-1.3 resume and active because the usb 1-1.3 happens > to be a downstream hub. So this is why we need at least udev->reset_resume > to give this kind of timeout port/device a chance to clear port feature and > come back from an unknown state. Don't worry about this part. Naturally anything associated with the 1-1.3 hub will fail after the resume of 1-1-port3 is messed up. Fix the first problem (failure to resume the port) and the second problem is likely to go away. Alan Stern