linux-pci.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] PCI: dw-rockchip: Add error messages in .probe()s error paths
@ 2024-02-27 14:12 Uwe Kleine-König
  2024-02-28  9:52 ` Jesper Nilsson
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Uwe Kleine-König @ 2024-02-27 14:12 UTC (permalink / raw)
  To: Lorenzo Pieralisi, Krzysztof Wilczyński, Bjorn Helgaas,
	Heiko Stuebner, Lei Chuanhua, Manivannan Sadhasivam,
	Jesper Nilsson, Nobuhiro Iwamatsu, Yoshihiro Shimoda, Serge Semin,
	Damien Le Moal
  Cc: Rob Herring, linux-pci, linux-arm-kernel, linux-rockchip

Drivers that silently fail to probe provide a bad user experience and
make it unnecessarily hard to debug such a failure. Fix it by using
dev_err_probe() instead of a plain return.

Reviewed-by: Heiko Stuebner <heiko@sntech.de>
Signed-off-by: Uwe Kleine-König <ukleinek@debian.org>
---
Hello,

changes since (implicit) v1, sent with Message-Id:
20240227111837.395422-2-ukleinek@debian.org:

 - use dev instead of rockchip->pci.dev as noticed by Serge Semin.
 - added Reviewed-by: tag for Heiko. I assume he agrees to above
   improvement and adding the tag despite the change is fine.

Best regards
Uwe

 drivers/pci/controller/dwc/pcie-dw-rockchip.c | 21 ++++++++++++-------
 1 file changed, 13 insertions(+), 8 deletions(-)

diff --git a/drivers/pci/controller/dwc/pcie-dw-rockchip.c b/drivers/pci/controller/dwc/pcie-dw-rockchip.c
index d6842141d384..a13ca83ce260 100644
--- a/drivers/pci/controller/dwc/pcie-dw-rockchip.c
+++ b/drivers/pci/controller/dwc/pcie-dw-rockchip.c
@@ -225,11 +225,15 @@ static int rockchip_pcie_clk_init(struct rockchip_pcie *rockchip)
 
 	ret = devm_clk_bulk_get_all(dev, &rockchip->clks);
 	if (ret < 0)
-		return ret;
+		return dev_err_probe(dev, ret, "failed to get clocks\n");
 
 	rockchip->clk_cnt = ret;
 
-	return clk_bulk_prepare_enable(rockchip->clk_cnt, rockchip->clks);
+	ret = clk_bulk_prepare_enable(rockchip->clk_cnt, rockchip->clks);
+	if (ret)
+		return dev_err_probe(dev, ret, "failed to enable clocks\n");
+
+	return 0;
 }
 
 static int rockchip_pcie_resource_get(struct platform_device *pdev,
@@ -237,12 +241,14 @@ static int rockchip_pcie_resource_get(struct platform_device *pdev,
 {
 	rockchip->apb_base = devm_platform_ioremap_resource_byname(pdev, "apb");
 	if (IS_ERR(rockchip->apb_base))
-		return PTR_ERR(rockchip->apb_base);
+		return dev_err_probe(&pdev->dev, PTR_ERR(rockchip->apb_base),
+				     "failed to map apb registers\n");
 
 	rockchip->rst_gpio = devm_gpiod_get_optional(&pdev->dev, "reset",
 						     GPIOD_OUT_HIGH);
 	if (IS_ERR(rockchip->rst_gpio))
-		return PTR_ERR(rockchip->rst_gpio);
+		return dev_err_probe(&pdev->dev, PTR_ERR(rockchip->rst_gpio),
+				     "failed to get reset gpio\n");
 
 	rockchip->rst = devm_reset_control_array_get_exclusive(&pdev->dev);
 	if (IS_ERR(rockchip->rst))
@@ -320,10 +326,9 @@ static int rockchip_pcie_probe(struct platform_device *pdev)
 		rockchip->vpcie3v3 = NULL;
 	} else {
 		ret = regulator_enable(rockchip->vpcie3v3);
-		if (ret) {
-			dev_err(dev, "failed to enable vpcie3v3 regulator\n");
-			return ret;
-		}
+		if (ret)
+			return dev_err_probe(dev, ret,
+					     "failed to enable vpcie3v3 regulator\n");
 	}
 
 	ret = rockchip_pcie_phy_init(rockchip);

base-commit: 6613476e225e090cc9aad49be7fa504e290dd33d
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH v2] PCI: dw-rockchip: Add error messages in .probe()s error paths
  2024-02-27 14:12 [PATCH v2] PCI: dw-rockchip: Add error messages in .probe()s error paths Uwe Kleine-König
@ 2024-02-28  9:52 ` Jesper Nilsson
  2024-03-10 13:10 ` Manivannan Sadhasivam
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 6+ messages in thread
From: Jesper Nilsson @ 2024-02-28  9:52 UTC (permalink / raw)
  To: Uwe Kleine-König
  Cc: Lorenzo Pieralisi, Krzysztof Wilczyński, Bjorn Helgaas,
	Heiko Stuebner, Lei Chuanhua, Manivannan Sadhasivam,
	Jesper Nilsson, Nobuhiro Iwamatsu, Yoshihiro Shimoda, Serge Semin,
	Damien Le Moal, Rob Herring, linux-pci, linux-arm-kernel,
	linux-rockchip

On Tue, Feb 27, 2024 at 03:12:54PM +0100, Uwe Kleine-König wrote:
> Drivers that silently fail to probe provide a bad user experience and
> make it unnecessarily hard to debug such a failure. Fix it by using
> dev_err_probe() instead of a plain return.
> 
> Reviewed-by: Heiko Stuebner <heiko@sntech.de>
> Signed-off-by: Uwe Kleine-König <ukleinek@debian.org>

Reviewed-by: Jesper Nilsson <jesper.nilsson@axis.com>

/^JN - Jesper Nilsson
-- 
               Jesper Nilsson -- jesper.nilsson@axis.com

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH v2] PCI: dw-rockchip: Add error messages in .probe()s error paths
  2024-02-27 14:12 [PATCH v2] PCI: dw-rockchip: Add error messages in .probe()s error paths Uwe Kleine-König
  2024-02-28  9:52 ` Jesper Nilsson
@ 2024-03-10 13:10 ` Manivannan Sadhasivam
  2024-05-15 20:57 ` Bjorn Helgaas
  2024-05-17 11:18 ` Krzysztof Wilczyński
  3 siblings, 0 replies; 6+ messages in thread
From: Manivannan Sadhasivam @ 2024-03-10 13:10 UTC (permalink / raw)
  To: Uwe Kleine-König
  Cc: Lorenzo Pieralisi, Krzysztof Wilczyński, Bjorn Helgaas,
	Heiko Stuebner, Lei Chuanhua, Jesper Nilsson, Nobuhiro Iwamatsu,
	Yoshihiro Shimoda, Serge Semin, Damien Le Moal, Rob Herring,
	linux-pci, linux-arm-kernel, linux-rockchip

On Tue, Feb 27, 2024 at 03:12:54PM +0100, Uwe Kleine-König wrote:
> Drivers that silently fail to probe provide a bad user experience and
> make it unnecessarily hard to debug such a failure. Fix it by using
> dev_err_probe() instead of a plain return.
> 
> Reviewed-by: Heiko Stuebner <heiko@sntech.de>
> Signed-off-by: Uwe Kleine-König <ukleinek@debian.org>

Reviewed-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>

- Mani

> ---
> Hello,
> 
> changes since (implicit) v1, sent with Message-Id:
> 20240227111837.395422-2-ukleinek@debian.org:
> 
>  - use dev instead of rockchip->pci.dev as noticed by Serge Semin.
>  - added Reviewed-by: tag for Heiko. I assume he agrees to above
>    improvement and adding the tag despite the change is fine.
> 
> Best regards
> Uwe
> 
>  drivers/pci/controller/dwc/pcie-dw-rockchip.c | 21 ++++++++++++-------
>  1 file changed, 13 insertions(+), 8 deletions(-)
> 
> diff --git a/drivers/pci/controller/dwc/pcie-dw-rockchip.c b/drivers/pci/controller/dwc/pcie-dw-rockchip.c
> index d6842141d384..a13ca83ce260 100644
> --- a/drivers/pci/controller/dwc/pcie-dw-rockchip.c
> +++ b/drivers/pci/controller/dwc/pcie-dw-rockchip.c
> @@ -225,11 +225,15 @@ static int rockchip_pcie_clk_init(struct rockchip_pcie *rockchip)
>  
>  	ret = devm_clk_bulk_get_all(dev, &rockchip->clks);
>  	if (ret < 0)
> -		return ret;
> +		return dev_err_probe(dev, ret, "failed to get clocks\n");
>  
>  	rockchip->clk_cnt = ret;
>  
> -	return clk_bulk_prepare_enable(rockchip->clk_cnt, rockchip->clks);
> +	ret = clk_bulk_prepare_enable(rockchip->clk_cnt, rockchip->clks);
> +	if (ret)
> +		return dev_err_probe(dev, ret, "failed to enable clocks\n");
> +
> +	return 0;
>  }
>  
>  static int rockchip_pcie_resource_get(struct platform_device *pdev,
> @@ -237,12 +241,14 @@ static int rockchip_pcie_resource_get(struct platform_device *pdev,
>  {
>  	rockchip->apb_base = devm_platform_ioremap_resource_byname(pdev, "apb");
>  	if (IS_ERR(rockchip->apb_base))
> -		return PTR_ERR(rockchip->apb_base);
> +		return dev_err_probe(&pdev->dev, PTR_ERR(rockchip->apb_base),
> +				     "failed to map apb registers\n");
>  
>  	rockchip->rst_gpio = devm_gpiod_get_optional(&pdev->dev, "reset",
>  						     GPIOD_OUT_HIGH);
>  	if (IS_ERR(rockchip->rst_gpio))
> -		return PTR_ERR(rockchip->rst_gpio);
> +		return dev_err_probe(&pdev->dev, PTR_ERR(rockchip->rst_gpio),
> +				     "failed to get reset gpio\n");
>  
>  	rockchip->rst = devm_reset_control_array_get_exclusive(&pdev->dev);
>  	if (IS_ERR(rockchip->rst))
> @@ -320,10 +326,9 @@ static int rockchip_pcie_probe(struct platform_device *pdev)
>  		rockchip->vpcie3v3 = NULL;
>  	} else {
>  		ret = regulator_enable(rockchip->vpcie3v3);
> -		if (ret) {
> -			dev_err(dev, "failed to enable vpcie3v3 regulator\n");
> -			return ret;
> -		}
> +		if (ret)
> +			return dev_err_probe(dev, ret,
> +					     "failed to enable vpcie3v3 regulator\n");
>  	}
>  
>  	ret = rockchip_pcie_phy_init(rockchip);
> 
> base-commit: 6613476e225e090cc9aad49be7fa504e290dd33d
> -- 
> 2.43.0
> 

-- 
மணிவண்ணன் சதாசிவம்

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH v2] PCI: dw-rockchip: Add error messages in .probe()s error paths
  2024-02-27 14:12 [PATCH v2] PCI: dw-rockchip: Add error messages in .probe()s error paths Uwe Kleine-König
  2024-02-28  9:52 ` Jesper Nilsson
  2024-03-10 13:10 ` Manivannan Sadhasivam
@ 2024-05-15 20:57 ` Bjorn Helgaas
  2024-05-15 21:13   ` Bjorn Helgaas
  2024-05-17 11:18 ` Krzysztof Wilczyński
  3 siblings, 1 reply; 6+ messages in thread
From: Bjorn Helgaas @ 2024-05-15 20:57 UTC (permalink / raw)
  To: Uwe Kleine-König
  Cc: Lorenzo Pieralisi, Krzysztof Wilczyński, Bjorn Helgaas,
	Heiko Stuebner, Lei Chuanhua, Manivannan Sadhasivam,
	Jesper Nilsson, Nobuhiro Iwamatsu, Yoshihiro Shimoda, Serge Semin,
	Damien Le Moal, Rob Herring, linux-pci, linux-arm-kernel,
	linux-rockchip

On Tue, Feb 27, 2024 at 03:12:54PM +0100, Uwe Kleine-König wrote:
> Drivers that silently fail to probe provide a bad user experience and
> make it unnecessarily hard to debug such a failure. Fix it by using
> dev_err_probe() instead of a plain return.
> 
> Reviewed-by: Heiko Stuebner <heiko@sntech.de>
> Signed-off-by: Uwe Kleine-König <ukleinek@debian.org>

Krzysztof applied this to pci/controller/rockchip with Reviewed-by
from Jesper and Mani, but his outgoing mail queue got stuck.  Trying
to squeeze into v6.9.

> ---
> Hello,
> 
> changes since (implicit) v1, sent with Message-Id:
> 20240227111837.395422-2-ukleinek@debian.org:
> 
>  - use dev instead of rockchip->pci.dev as noticed by Serge Semin.
>  - added Reviewed-by: tag for Heiko. I assume he agrees to above
>    improvement and adding the tag despite the change is fine.
> 
> Best regards
> Uwe
> 
>  drivers/pci/controller/dwc/pcie-dw-rockchip.c | 21 ++++++++++++-------
>  1 file changed, 13 insertions(+), 8 deletions(-)
> 
> diff --git a/drivers/pci/controller/dwc/pcie-dw-rockchip.c b/drivers/pci/controller/dwc/pcie-dw-rockchip.c
> index d6842141d384..a13ca83ce260 100644
> --- a/drivers/pci/controller/dwc/pcie-dw-rockchip.c
> +++ b/drivers/pci/controller/dwc/pcie-dw-rockchip.c
> @@ -225,11 +225,15 @@ static int rockchip_pcie_clk_init(struct rockchip_pcie *rockchip)
>  
>  	ret = devm_clk_bulk_get_all(dev, &rockchip->clks);
>  	if (ret < 0)
> -		return ret;
> +		return dev_err_probe(dev, ret, "failed to get clocks\n");
>  
>  	rockchip->clk_cnt = ret;
>  
> -	return clk_bulk_prepare_enable(rockchip->clk_cnt, rockchip->clks);
> +	ret = clk_bulk_prepare_enable(rockchip->clk_cnt, rockchip->clks);
> +	if (ret)
> +		return dev_err_probe(dev, ret, "failed to enable clocks\n");
> +
> +	return 0;
>  }
>  
>  static int rockchip_pcie_resource_get(struct platform_device *pdev,
> @@ -237,12 +241,14 @@ static int rockchip_pcie_resource_get(struct platform_device *pdev,
>  {
>  	rockchip->apb_base = devm_platform_ioremap_resource_byname(pdev, "apb");
>  	if (IS_ERR(rockchip->apb_base))
> -		return PTR_ERR(rockchip->apb_base);
> +		return dev_err_probe(&pdev->dev, PTR_ERR(rockchip->apb_base),
> +				     "failed to map apb registers\n");
>  
>  	rockchip->rst_gpio = devm_gpiod_get_optional(&pdev->dev, "reset",
>  						     GPIOD_OUT_HIGH);
>  	if (IS_ERR(rockchip->rst_gpio))
> -		return PTR_ERR(rockchip->rst_gpio);
> +		return dev_err_probe(&pdev->dev, PTR_ERR(rockchip->rst_gpio),
> +				     "failed to get reset gpio\n");
>  
>  	rockchip->rst = devm_reset_control_array_get_exclusive(&pdev->dev);
>  	if (IS_ERR(rockchip->rst))
> @@ -320,10 +326,9 @@ static int rockchip_pcie_probe(struct platform_device *pdev)
>  		rockchip->vpcie3v3 = NULL;
>  	} else {
>  		ret = regulator_enable(rockchip->vpcie3v3);
> -		if (ret) {
> -			dev_err(dev, "failed to enable vpcie3v3 regulator\n");
> -			return ret;
> -		}
> +		if (ret)
> +			return dev_err_probe(dev, ret,
> +					     "failed to enable vpcie3v3 regulator\n");
>  	}
>  
>  	ret = rockchip_pcie_phy_init(rockchip);
> 
> base-commit: 6613476e225e090cc9aad49be7fa504e290dd33d
> -- 
> 2.43.0
> 
> 
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH v2] PCI: dw-rockchip: Add error messages in .probe()s error paths
  2024-05-15 20:57 ` Bjorn Helgaas
@ 2024-05-15 21:13   ` Bjorn Helgaas
  0 siblings, 0 replies; 6+ messages in thread
From: Bjorn Helgaas @ 2024-05-15 21:13 UTC (permalink / raw)
  To: Uwe Kleine-König
  Cc: Lorenzo Pieralisi, Krzysztof Wilczyński, Bjorn Helgaas,
	Heiko Stuebner, Lei Chuanhua, Manivannan Sadhasivam,
	Jesper Nilsson, Nobuhiro Iwamatsu, Yoshihiro Shimoda, Serge Semin,
	Damien Le Moal, Rob Herring, linux-pci, linux-arm-kernel,
	linux-rockchip

On Wed, May 15, 2024 at 03:57:37PM -0500, Bjorn Helgaas wrote:
> On Tue, Feb 27, 2024 at 03:12:54PM +0100, Uwe Kleine-König wrote:
> > Drivers that silently fail to probe provide a bad user experience and
> > make it unnecessarily hard to debug such a failure. Fix it by using
> > dev_err_probe() instead of a plain return.
> > 
> > Reviewed-by: Heiko Stuebner <heiko@sntech.de>
> > Signed-off-by: Uwe Kleine-König <ukleinek@debian.org>
> 
> Krzysztof applied this to pci/controller/rockchip with Reviewed-by
> from Jesper and Mani, but his outgoing mail queue got stuck.  Trying
> to squeeze into v6.9.

Sorry, v6.10.  v6.9 is already done, obviously.

> > ---
> > Hello,
> > 
> > changes since (implicit) v1, sent with Message-Id:
> > 20240227111837.395422-2-ukleinek@debian.org:
> > 
> >  - use dev instead of rockchip->pci.dev as noticed by Serge Semin.
> >  - added Reviewed-by: tag for Heiko. I assume he agrees to above
> >    improvement and adding the tag despite the change is fine.
> > 
> > Best regards
> > Uwe
> > 
> >  drivers/pci/controller/dwc/pcie-dw-rockchip.c | 21 ++++++++++++-------
> >  1 file changed, 13 insertions(+), 8 deletions(-)
> > 
> > diff --git a/drivers/pci/controller/dwc/pcie-dw-rockchip.c b/drivers/pci/controller/dwc/pcie-dw-rockchip.c
> > index d6842141d384..a13ca83ce260 100644
> > --- a/drivers/pci/controller/dwc/pcie-dw-rockchip.c
> > +++ b/drivers/pci/controller/dwc/pcie-dw-rockchip.c
> > @@ -225,11 +225,15 @@ static int rockchip_pcie_clk_init(struct rockchip_pcie *rockchip)
> >  
> >  	ret = devm_clk_bulk_get_all(dev, &rockchip->clks);
> >  	if (ret < 0)
> > -		return ret;
> > +		return dev_err_probe(dev, ret, "failed to get clocks\n");
> >  
> >  	rockchip->clk_cnt = ret;
> >  
> > -	return clk_bulk_prepare_enable(rockchip->clk_cnt, rockchip->clks);
> > +	ret = clk_bulk_prepare_enable(rockchip->clk_cnt, rockchip->clks);
> > +	if (ret)
> > +		return dev_err_probe(dev, ret, "failed to enable clocks\n");
> > +
> > +	return 0;
> >  }
> >  
> >  static int rockchip_pcie_resource_get(struct platform_device *pdev,
> > @@ -237,12 +241,14 @@ static int rockchip_pcie_resource_get(struct platform_device *pdev,
> >  {
> >  	rockchip->apb_base = devm_platform_ioremap_resource_byname(pdev, "apb");
> >  	if (IS_ERR(rockchip->apb_base))
> > -		return PTR_ERR(rockchip->apb_base);
> > +		return dev_err_probe(&pdev->dev, PTR_ERR(rockchip->apb_base),
> > +				     "failed to map apb registers\n");
> >  
> >  	rockchip->rst_gpio = devm_gpiod_get_optional(&pdev->dev, "reset",
> >  						     GPIOD_OUT_HIGH);
> >  	if (IS_ERR(rockchip->rst_gpio))
> > -		return PTR_ERR(rockchip->rst_gpio);
> > +		return dev_err_probe(&pdev->dev, PTR_ERR(rockchip->rst_gpio),
> > +				     "failed to get reset gpio\n");
> >  
> >  	rockchip->rst = devm_reset_control_array_get_exclusive(&pdev->dev);
> >  	if (IS_ERR(rockchip->rst))
> > @@ -320,10 +326,9 @@ static int rockchip_pcie_probe(struct platform_device *pdev)
> >  		rockchip->vpcie3v3 = NULL;
> >  	} else {
> >  		ret = regulator_enable(rockchip->vpcie3v3);
> > -		if (ret) {
> > -			dev_err(dev, "failed to enable vpcie3v3 regulator\n");
> > -			return ret;
> > -		}
> > +		if (ret)
> > +			return dev_err_probe(dev, ret,
> > +					     "failed to enable vpcie3v3 regulator\n");
> >  	}
> >  
> >  	ret = rockchip_pcie_phy_init(rockchip);
> > 
> > base-commit: 6613476e225e090cc9aad49be7fa504e290dd33d
> > -- 
> > 2.43.0
> > 
> > 
> > _______________________________________________
> > linux-arm-kernel mailing list
> > linux-arm-kernel@lists.infradead.org
> > http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH v2] PCI: dw-rockchip: Add error messages in .probe()s error paths
  2024-02-27 14:12 [PATCH v2] PCI: dw-rockchip: Add error messages in .probe()s error paths Uwe Kleine-König
                   ` (2 preceding siblings ...)
  2024-05-15 20:57 ` Bjorn Helgaas
@ 2024-05-17 11:18 ` Krzysztof Wilczyński
  3 siblings, 0 replies; 6+ messages in thread
From: Krzysztof Wilczyński @ 2024-05-17 11:18 UTC (permalink / raw)
  To: Uwe Kleine-König
  Cc: Lorenzo Pieralisi, Bjorn Helgaas, Heiko Stuebner, Lei Chuanhua,
	Manivannan Sadhasivam, Jesper Nilsson, Nobuhiro Iwamatsu,
	Yoshihiro Shimoda, Serge Semin, Damien Le Moal, Rob Herring,
	linux-pci, linux-arm-kernel, linux-rockchip

> Drivers that silently fail to probe provide a bad user experience and
> make it unnecessarily hard to debug such a failure. Fix it by using
> dev_err_probe() instead of a plain return.

Applied to controller/rockchip, thank you!

[1/1] PCI: dw-rockchip: Add error messages in .probe()s error paths
      https://git.kernel.org/pci/pci/c/8ab425aa02ac

	Krzysztof

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2024-05-17 11:18 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-27 14:12 [PATCH v2] PCI: dw-rockchip: Add error messages in .probe()s error paths Uwe Kleine-König
2024-02-28  9:52 ` Jesper Nilsson
2024-03-10 13:10 ` Manivannan Sadhasivam
2024-05-15 20:57 ` Bjorn Helgaas
2024-05-15 21:13   ` Bjorn Helgaas
2024-05-17 11:18 ` Krzysztof Wilczyński

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).