linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Alan Stern <stern@rowland.harvard.edu>
To: Roger Quadros <rogerq@ti.com>
Cc: balbi@kernel.org, <Dylan.Howey@tennantco.com>,
	<linux-usb@vger.kernel.org>, <linux-kernel@vger.kernel.org>,
	"# v4 . 13+" <stable@vger.kernel.org>
Subject: Re: [PATCH v2][RESEND] usb: gadget: core: Fix ->udc_set_speed() speed handling
Date: Wed, 1 Nov 2017 10:24:54 -0400 (EDT)	[thread overview]
Message-ID: <Pine.LNX.4.44L0.1711011023240.1770-100000@iolanthe.rowland.org> (raw)
In-Reply-To: <cbf14127-e788-0c51-4daa-2b25eec60b47@ti.com>

On Tue, 31 Oct 2017, Roger Quadros wrote:

> Currently UDC core calls ->udc_set_speed() with the speed parameter
> containing the maximum speed supported by the gadget function
> driver. This might very well be more than that supported by the
> UDC controller driver.
> 
> Select the lesser of the 2 speeds so both UDC and gadget function
> driver are operating within limits.
> 
> This fixes PHY Erratic errors and 2 second enumeration delay on
> TI's AM437x platforms.
> 
> Fixes: 6099eca796ae ("usb: gadget: core: introduce ->udc_set_speed() method")
> Cc: <stable@vger.kernel.org> # v4.13+
> Reported-by: Dylan Howey <Dylan.Howey@tennantco.com>
> Signed-off-by: Roger Quadros <rogerq@ti.com>
> ---
> v2:
> - Move speed limiting code to UDC core.
> 
>  drivers/usb/gadget/udc/core.c | 8 ++++++--
>  1 file changed, 6 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/usb/gadget/udc/core.c b/drivers/usb/gadget/udc/core.c
> index d41d07a..def1b05 100644
> --- a/drivers/usb/gadget/udc/core.c
> +++ b/drivers/usb/gadget/udc/core.c
> @@ -1080,8 +1080,12 @@ static inline void usb_gadget_udc_stop(struct usb_udc *udc)
>  static inline void usb_gadget_udc_set_speed(struct usb_udc *udc,
>  					    enum usb_device_speed speed)
>  {
> -	if (udc->gadget->ops->udc_set_speed)
> -		udc->gadget->ops->udc_set_speed(udc->gadget, speed);
> +	if (udc->gadget->ops->udc_set_speed) {
> +		enum usb_device_speed s;
> +
> +		s = min(speed, udc->gadget->max_speed);
> +		udc->gadget->ops->udc_set_speed(udc->gadget, s);
> +	}
>  }
>  
>  /**

Roger, would you like to send in a follow-up patch that removes the now 
unnecessary code from dummy_udc_set_speed() in dummy_hcd.c?

Alan Stern

  reply	other threads:[~2017-11-01 14:24 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-10-31 13:01 [PATCH] usb: dwc3: gadget: Fix .udc_set_speed() Roger Quadros
2017-10-31 13:24 ` Felipe Balbi
2017-10-31 13:27   ` Roger Quadros
2017-10-31 13:47 ` [PATCH v2] " Roger Quadros
2017-10-31 13:54   ` Roger Quadros
2017-10-31 13:56 ` [PATCH v2][RESEND] usb: gadget: core: Fix ->udc_set_speed() speed handling Roger Quadros
2017-11-01 14:24   ` Alan Stern [this message]
2017-11-01 15:11     ` Roger Quadros
2017-11-01 15:45       ` Alan Stern
2017-11-02  8:53         ` Roger Quadros
2017-11-02 14:14           ` Alan Stern

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=Pine.LNX.4.44L0.1711011023240.1770-100000@iolanthe.rowland.org \
    --to=stern@rowland.harvard.edu \
    --cc=Dylan.Howey@tennantco.com \
    --cc=balbi@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=rogerq@ti.com \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).