All of lore.kernel.org
 help / color / mirror / Atom feed
From: Simon Horman <horms@verge.net.au>
To: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
Cc: balbi@kernel.org, gregkh@linuxfoundation.org,
	linux-usb@vger.kernel.org, linux-renesas-soc@vger.kernel.org,
	stable@vger.kernel.org
Subject: Re: [PATCH 4/4] usb: gadget: udc: renesas_usb3: should call devm_phy_get() before add udc
Date: Mon, 9 Apr 2018 13:58:26 +0200	[thread overview]
Message-ID: <20180409115826.xrsdg3khgs7opgzh@verge.net.au> (raw)
In-Reply-To: <1522671694-10229-5-git-send-email-yoshihiro.shimoda.uh@renesas.com>

On Mon, Apr 02, 2018 at 09:21:34PM +0900, Yoshihiro Shimoda wrote:
> This patch fixes an issue that this driver cannot call phy_init()
> if a gadget driver is alreadly loaded because usb_add_gadget_udc()
> might call renesas_usb3_start() via .udc_start.
> 
> Fixes: 279d4bc64060 ("usb: gadget: udc: renesas_usb3: add support for generic phy")
> Cc: <stable@vger.kernel.org> # v4.15+
> Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
> ---
>  drivers/usb/gadget/udc/renesas_usb3.c | 16 ++++++++--------
>  1 file changed, 8 insertions(+), 8 deletions(-)

Reviewed-by: Simon Horman <horms+renesas@verge.net.au>


Please see some suggestions for follow-up lower-priority patches below.

> 
> diff --git a/drivers/usb/gadget/udc/renesas_usb3.c b/drivers/usb/gadget/udc/renesas_usb3.c
> index 738b734..671bac3 100644
> --- a/drivers/usb/gadget/udc/renesas_usb3.c
> +++ b/drivers/usb/gadget/udc/renesas_usb3.c
> @@ -2632,6 +2632,14 @@ static int renesas_usb3_probe(struct platform_device *pdev)
>  	if (ret < 0)
>  		goto err_alloc_prd;
>  
> +	/*
> +	 * This is an optional. So, if this driver cannot get a phy,
> +	 * this driver will not handle a phy anymore.
> +	 */

nit: s/an optional/optional/

> +	usb3->phy = devm_phy_get(&pdev->dev, "usb");
> +	if (IS_ERR(usb3->phy))
> +		usb3->phy = NULL;

I think this will unintentionally ignore errors other than the
non-existence of the device, f.e. a memory allocation failure
in devm_phy_get().

So perhaps something like this, as per phy_optional_get(), would be better?

	usb3->phy = devm_phy_get(&pdev->dev, "usb");
	if (IS_ERR(usb3->phy) && (PTR_ERR(usb3->phy) == -ENODEV))
		usb3->phy = NULL;

> +
>  	pm_runtime_enable(&pdev->dev);
>  	ret = usb_add_gadget_udc(&pdev->dev, &usb3->gadget);
>  	if (ret < 0)
> @@ -2641,14 +2649,6 @@ static int renesas_usb3_probe(struct platform_device *pdev)
>  	if (ret < 0)
>  		goto err_dev_create;
>  
> -	/*
> -	 * This is an optional. So, if this driver cannot get a phy,
> -	 * this driver will not handle a phy anymore.
> -	 */
> -	usb3->phy = devm_phy_get(&pdev->dev, "usb");
> -	if (IS_ERR(usb3->phy))
> -		usb3->phy = NULL;
> -
>  	usb3->workaround_for_vbus = priv->workaround_for_vbus;
>  
>  	renesas_usb3_debugfs_init(usb3, &pdev->dev);
> -- 
> 1.9.1
> 

WARNING: multiple messages have this Message-ID (diff)
From: Simon Horman <horms@verge.net.au>
To: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
Cc: balbi@kernel.org, gregkh@linuxfoundation.org,
	linux-usb@vger.kernel.org, linux-renesas-soc@vger.kernel.org,
	stable@vger.kernel.org
Subject: [4/4] usb: gadget: udc: renesas_usb3: should call devm_phy_get() before add udc
Date: Mon, 9 Apr 2018 13:58:26 +0200	[thread overview]
Message-ID: <20180409115826.xrsdg3khgs7opgzh@verge.net.au> (raw)

On Mon, Apr 02, 2018 at 09:21:34PM +0900, Yoshihiro Shimoda wrote:
> This patch fixes an issue that this driver cannot call phy_init()
> if a gadget driver is alreadly loaded because usb_add_gadget_udc()
> might call renesas_usb3_start() via .udc_start.
> 
> Fixes: 279d4bc64060 ("usb: gadget: udc: renesas_usb3: add support for generic phy")
> Cc: <stable@vger.kernel.org> # v4.15+
> Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
> ---
>  drivers/usb/gadget/udc/renesas_usb3.c | 16 ++++++++--------
>  1 file changed, 8 insertions(+), 8 deletions(-)

Reviewed-by: Simon Horman <horms+renesas@verge.net.au>


Please see some suggestions for follow-up lower-priority patches below.

> 
> diff --git a/drivers/usb/gadget/udc/renesas_usb3.c b/drivers/usb/gadget/udc/renesas_usb3.c
> index 738b734..671bac3 100644
> --- a/drivers/usb/gadget/udc/renesas_usb3.c
> +++ b/drivers/usb/gadget/udc/renesas_usb3.c
> @@ -2632,6 +2632,14 @@ static int renesas_usb3_probe(struct platform_device *pdev)
>  	if (ret < 0)
>  		goto err_alloc_prd;
>  
> +	/*
> +	 * This is an optional. So, if this driver cannot get a phy,
> +	 * this driver will not handle a phy anymore.
> +	 */

nit: s/an optional/optional/

> +	usb3->phy = devm_phy_get(&pdev->dev, "usb");
> +	if (IS_ERR(usb3->phy))
> +		usb3->phy = NULL;

I think this will unintentionally ignore errors other than the
non-existence of the device, f.e. a memory allocation failure
in devm_phy_get().

So perhaps something like this, as per phy_optional_get(), would be better?

	usb3->phy = devm_phy_get(&pdev->dev, "usb");
	if (IS_ERR(usb3->phy) && (PTR_ERR(usb3->phy) == -ENODEV))
		usb3->phy = NULL;

> +
>  	pm_runtime_enable(&pdev->dev);
>  	ret = usb_add_gadget_udc(&pdev->dev, &usb3->gadget);
>  	if (ret < 0)
> @@ -2641,14 +2649,6 @@ static int renesas_usb3_probe(struct platform_device *pdev)
>  	if (ret < 0)
>  		goto err_dev_create;
>  
> -	/*
> -	 * This is an optional. So, if this driver cannot get a phy,
> -	 * this driver will not handle a phy anymore.
> -	 */
> -	usb3->phy = devm_phy_get(&pdev->dev, "usb");
> -	if (IS_ERR(usb3->phy))
> -		usb3->phy = NULL;
> -
>  	usb3->workaround_for_vbus = priv->workaround_for_vbus;
>  
>  	renesas_usb3_debugfs_init(usb3, &pdev->dev);
> -- 
> 1.9.1
>
---
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

  parent reply	other threads:[~2018-04-09 11:58 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-04-02 12:21 [PATCH 0/4] usb: gadget: udc: renesas_usb3: fix some major issues Yoshihiro Shimoda
2018-04-02 12:21 ` [PATCH 1/4] usb: gadget: udc: renesas_usb3: fix double phy_put() Yoshihiro Shimoda
2018-04-02 12:21   ` [1/4] " Yoshihiro Shimoda
2018-04-05  1:34   ` [PATCH 1/4] " Sasha Levin
2018-04-05  1:34     ` [1/4] " Sasha Levin
2018-04-09 11:49   ` [PATCH 1/4] " Simon Horman
2018-04-09 11:49     ` [1/4] " Simon Horman
2018-04-02 12:21 ` [PATCH 2/4] usb: gadget: udc: renesas_usb3: should remove debugfs Yoshihiro Shimoda
2018-04-02 12:21   ` [2/4] " Yoshihiro Shimoda
2018-04-05  1:34   ` [PATCH 2/4] " Sasha Levin
2018-04-05  1:34     ` [2/4] " Sasha Levin
2018-04-09 11:51   ` [PATCH 2/4] " Simon Horman
2018-04-09 11:51     ` [2/4] " Simon Horman
2018-04-02 12:21 ` [PATCH 3/4] usb: gadget: udc: renesas_usb3: should call pm_runtime_enable() before add udc Yoshihiro Shimoda
2018-04-02 12:21   ` [3/4] " Yoshihiro Shimoda
2018-04-05  1:34   ` [PATCH 3/4] " Sasha Levin
2018-04-05  1:34     ` [3/4] " Sasha Levin
2018-04-09 11:52   ` [PATCH 3/4] " Simon Horman
2018-04-09 11:52     ` [3/4] " Simon Horman
2018-04-02 12:21 ` [PATCH 4/4] usb: gadget: udc: renesas_usb3: should call devm_phy_get() " Yoshihiro Shimoda
2018-04-02 12:21   ` [4/4] " Yoshihiro Shimoda
2018-04-05  1:34   ` [PATCH 4/4] " Sasha Levin
2018-04-05  1:34     ` [4/4] " Sasha Levin
2018-04-09 11:58   ` Simon Horman [this message]
2018-04-09 11:58     ` Simon Horman
2018-04-10  1:28     ` [PATCH 4/4] " Yoshihiro Shimoda
2018-04-10  1:28       ` [4/4] " Yoshihiro Shimoda
2018-04-10  9:33       ` [PATCH 4/4] " Simon Horman
2018-04-10  9:33         ` [4/4] " Simon Horman
2018-04-10  9:44         ` [PATCH 4/4] " Yoshihiro Shimoda
2018-04-10  9:44           ` [4/4] " Yoshihiro Shimoda
2018-04-11  7:04           ` [PATCH 4/4] " Simon Horman
2018-04-11  7:04             ` [4/4] " Simon Horman

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=20180409115826.xrsdg3khgs7opgzh@verge.net.au \
    --to=horms@verge.net.au \
    --cc=balbi@kernel.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=linux-renesas-soc@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=yoshihiro.shimoda.uh@renesas.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.