linux-pci.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] pci: host: dra7xx: use GPIO descriptor
@ 2017-01-26 13:27 Linus Walleij
  2017-02-10 20:07 ` Bjorn Helgaas
  0 siblings, 1 reply; 4+ messages in thread
From: Linus Walleij @ 2017-01-26 13:27 UTC (permalink / raw)
  To: Kishon Vijay Abraham I, Bjorn Helgaas; +Cc: linux-pci, Linus Walleij

Instead of parsing around in the device tree and determine
polarity for the GPIO line and whatnot: utilize the GPIO
library's intrinsic handling of OF GPIOs and polarity.

If the line is flagged active low, gpiolib will deal with
this.

Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
---
Would be nice if someone with the hardware could test this
and see if it works.
---
 drivers/pci/host/pci-dra7xx.c | 22 +++++-----------------
 1 file changed, 5 insertions(+), 17 deletions(-)

diff --git a/drivers/pci/host/pci-dra7xx.c b/drivers/pci/host/pci-dra7xx.c
index 9595fad63f6f..85ac2856c80f 100644
--- a/drivers/pci/host/pci-dra7xx.c
+++ b/drivers/pci/host/pci-dra7xx.c
@@ -16,7 +16,7 @@
 #include <linux/irqdomain.h>
 #include <linux/kernel.h>
 #include <linux/init.h>
-#include <linux/of_gpio.h>
+#include <linux/gpio/consumer.h>
 #include <linux/pci.h>
 #include <linux/phy/phy.h>
 #include <linux/platform_device.h>
@@ -320,9 +320,7 @@ static int __init dra7xx_pcie_probe(struct platform_device *pdev)
 	struct device *dev = &pdev->dev;
 	struct device_node *np = dev->of_node;
 	char name[10];
-	int gpio_sel;
-	enum of_gpio_flags flags;
-	unsigned long gpio_flags;
+	struct gpio_desc *gpiod;
 
 	dra7xx = devm_kzalloc(dev, sizeof(*dra7xx), GFP_KERNEL);
 	if (!dra7xx)
@@ -388,19 +386,9 @@ static int __init dra7xx_pcie_probe(struct platform_device *pdev)
 		goto err_get_sync;
 	}
 
-	gpio_sel = of_get_gpio_flags(dev->of_node, 0, &flags);
-	if (gpio_is_valid(gpio_sel)) {
-		gpio_flags = (flags & OF_GPIO_ACTIVE_LOW) ?
-				GPIOF_OUT_INIT_LOW : GPIOF_OUT_INIT_HIGH;
-		ret = devm_gpio_request_one(dev, gpio_sel, gpio_flags,
-					    "pcie_reset");
-		if (ret) {
-			dev_err(dev, "gpio%d request failed, ret %d\n",
-				gpio_sel, ret);
-			goto err_gpio;
-		}
-	} else if (gpio_sel == -EPROBE_DEFER) {
-		ret = -EPROBE_DEFER;
+	gpiod = devm_gpiod_get(dev, "pcie_reset", GPIOD_OUT_HIGH);
+	if (IS_ERR(gpiod)) {
+		ret = PTR_ERR(gpiod);
 		goto err_gpio;
 	}
 
-- 
2.9.3


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

* Re: [PATCH] pci: host: dra7xx: use GPIO descriptor
  2017-01-26 13:27 [PATCH] pci: host: dra7xx: use GPIO descriptor Linus Walleij
@ 2017-02-10 20:07 ` Bjorn Helgaas
  2017-02-10 20:45   ` Bjorn Helgaas
  0 siblings, 1 reply; 4+ messages in thread
From: Bjorn Helgaas @ 2017-02-10 20:07 UTC (permalink / raw)
  To: Linus Walleij; +Cc: Kishon Vijay Abraham I, Bjorn Helgaas, linux-pci

On Thu, Jan 26, 2017 at 02:27:07PM +0100, Linus Walleij wrote:
> Instead of parsing around in the device tree and determine
> polarity for the GPIO line and whatnot: utilize the GPIO
> library's intrinsic handling of OF GPIOs and polarity.
> 
> If the line is flagged active low, gpiolib will deal with
> this.
> 
> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>

Kishon?  Looks like a nice simplification.

> ---
> Would be nice if someone with the hardware could test this
> and see if it works.
> ---
>  drivers/pci/host/pci-dra7xx.c | 22 +++++-----------------
>  1 file changed, 5 insertions(+), 17 deletions(-)
> 
> diff --git a/drivers/pci/host/pci-dra7xx.c b/drivers/pci/host/pci-dra7xx.c
> index 9595fad63f6f..85ac2856c80f 100644
> --- a/drivers/pci/host/pci-dra7xx.c
> +++ b/drivers/pci/host/pci-dra7xx.c
> @@ -16,7 +16,7 @@
>  #include <linux/irqdomain.h>
>  #include <linux/kernel.h>
>  #include <linux/init.h>
> -#include <linux/of_gpio.h>
> +#include <linux/gpio/consumer.h>
>  #include <linux/pci.h>
>  #include <linux/phy/phy.h>
>  #include <linux/platform_device.h>
> @@ -320,9 +320,7 @@ static int __init dra7xx_pcie_probe(struct platform_device *pdev)
>  	struct device *dev = &pdev->dev;
>  	struct device_node *np = dev->of_node;
>  	char name[10];
> -	int gpio_sel;
> -	enum of_gpio_flags flags;
> -	unsigned long gpio_flags;
> +	struct gpio_desc *gpiod;
>  
>  	dra7xx = devm_kzalloc(dev, sizeof(*dra7xx), GFP_KERNEL);
>  	if (!dra7xx)
> @@ -388,19 +386,9 @@ static int __init dra7xx_pcie_probe(struct platform_device *pdev)
>  		goto err_get_sync;
>  	}
>  
> -	gpio_sel = of_get_gpio_flags(dev->of_node, 0, &flags);
> -	if (gpio_is_valid(gpio_sel)) {
> -		gpio_flags = (flags & OF_GPIO_ACTIVE_LOW) ?
> -				GPIOF_OUT_INIT_LOW : GPIOF_OUT_INIT_HIGH;
> -		ret = devm_gpio_request_one(dev, gpio_sel, gpio_flags,
> -					    "pcie_reset");
> -		if (ret) {
> -			dev_err(dev, "gpio%d request failed, ret %d\n",
> -				gpio_sel, ret);
> -			goto err_gpio;
> -		}
> -	} else if (gpio_sel == -EPROBE_DEFER) {
> -		ret = -EPROBE_DEFER;
> +	gpiod = devm_gpiod_get(dev, "pcie_reset", GPIOD_OUT_HIGH);
> +	if (IS_ERR(gpiod)) {
> +		ret = PTR_ERR(gpiod);
>  		goto err_gpio;
>  	}
>  
> -- 
> 2.9.3
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-pci" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH] pci: host: dra7xx: use GPIO descriptor
  2017-02-10 20:07 ` Bjorn Helgaas
@ 2017-02-10 20:45   ` Bjorn Helgaas
  2017-02-11 13:29     ` Linus Walleij
  0 siblings, 1 reply; 4+ messages in thread
From: Bjorn Helgaas @ 2017-02-10 20:45 UTC (permalink / raw)
  To: Linus Walleij; +Cc: Kishon Vijay Abraham I, Bjorn Helgaas, linux-pci

On Fri, Feb 10, 2017 at 02:07:11PM -0600, Bjorn Helgaas wrote:
> On Thu, Jan 26, 2017 at 02:27:07PM +0100, Linus Walleij wrote:
> > Instead of parsing around in the device tree and determine
> > polarity for the GPIO line and whatnot: utilize the GPIO
> > library's intrinsic handling of OF GPIOs and polarity.
> > 
> > If the line is flagged active low, gpiolib will deal with
> > this.
> > 
> > Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
> 
> Kishon?  Looks like a nice simplification.

Never mind, I just noticed that we already merged a very similar patch:

https://git.kernel.org/cgit/linux/kernel/git/helgaas/pci.git/commit/?h=pci/host-designware&id=d92b1ced97031ba0fe883911450b3072b069ce4f

Kishon's is slightly different because it uses devm_gpiod_get_optional()
instead of devm_gpiod_get().

They both look slightly funny because we throw away the struct gpio_desc *
that's returned, without ever using it anywhere (except to test for error).
I *assume* that's what you want, since that's the way it was before the
patch, too.

> > ---
> > Would be nice if someone with the hardware could test this
> > and see if it works.
> > ---
> >  drivers/pci/host/pci-dra7xx.c | 22 +++++-----------------
> >  1 file changed, 5 insertions(+), 17 deletions(-)
> > 
> > diff --git a/drivers/pci/host/pci-dra7xx.c b/drivers/pci/host/pci-dra7xx.c
> > index 9595fad63f6f..85ac2856c80f 100644
> > --- a/drivers/pci/host/pci-dra7xx.c
> > +++ b/drivers/pci/host/pci-dra7xx.c
> > @@ -16,7 +16,7 @@
> >  #include <linux/irqdomain.h>
> >  #include <linux/kernel.h>
> >  #include <linux/init.h>
> > -#include <linux/of_gpio.h>
> > +#include <linux/gpio/consumer.h>
> >  #include <linux/pci.h>
> >  #include <linux/phy/phy.h>
> >  #include <linux/platform_device.h>
> > @@ -320,9 +320,7 @@ static int __init dra7xx_pcie_probe(struct platform_device *pdev)
> >  	struct device *dev = &pdev->dev;
> >  	struct device_node *np = dev->of_node;
> >  	char name[10];
> > -	int gpio_sel;
> > -	enum of_gpio_flags flags;
> > -	unsigned long gpio_flags;
> > +	struct gpio_desc *gpiod;
> >  
> >  	dra7xx = devm_kzalloc(dev, sizeof(*dra7xx), GFP_KERNEL);
> >  	if (!dra7xx)
> > @@ -388,19 +386,9 @@ static int __init dra7xx_pcie_probe(struct platform_device *pdev)
> >  		goto err_get_sync;
> >  	}
> >  
> > -	gpio_sel = of_get_gpio_flags(dev->of_node, 0, &flags);
> > -	if (gpio_is_valid(gpio_sel)) {
> > -		gpio_flags = (flags & OF_GPIO_ACTIVE_LOW) ?
> > -				GPIOF_OUT_INIT_LOW : GPIOF_OUT_INIT_HIGH;
> > -		ret = devm_gpio_request_one(dev, gpio_sel, gpio_flags,
> > -					    "pcie_reset");
> > -		if (ret) {
> > -			dev_err(dev, "gpio%d request failed, ret %d\n",
> > -				gpio_sel, ret);
> > -			goto err_gpio;
> > -		}
> > -	} else if (gpio_sel == -EPROBE_DEFER) {
> > -		ret = -EPROBE_DEFER;
> > +	gpiod = devm_gpiod_get(dev, "pcie_reset", GPIOD_OUT_HIGH);
> > +	if (IS_ERR(gpiod)) {
> > +		ret = PTR_ERR(gpiod);
> >  		goto err_gpio;
> >  	}
> >  
> > -- 
> > 2.9.3
> > 
> > --
> > To unsubscribe from this list: send the line "unsubscribe linux-pci" in
> > the body of a message to majordomo@vger.kernel.org
> > More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH] pci: host: dra7xx: use GPIO descriptor
  2017-02-10 20:45   ` Bjorn Helgaas
@ 2017-02-11 13:29     ` Linus Walleij
  0 siblings, 0 replies; 4+ messages in thread
From: Linus Walleij @ 2017-02-11 13:29 UTC (permalink / raw)
  To: Bjorn Helgaas; +Cc: Kishon Vijay Abraham I, Bjorn Helgaas, linux-pci

On Fri, Feb 10, 2017 at 9:45 PM, Bjorn Helgaas <helgaas@kernel.org> wrote:

> Kishon's is slightly different because it uses devm_gpiod_get_optional()
> instead of devm_gpiod_get().

Fair enough.

> They both look slightly funny because we throw away the struct gpio_desc *
> that's returned, without ever using it anywhere (except to test for error).
> I *assume* that's what you want, since that's the way it was before the
> patch, too.

It's a hog-type usecase: when you request the GPIO it is set to a value
that you never want to change.

When the module is .exit():ed the descriptor will be garbage collected
thanks to using the devm_* accessor.

Yours,
Linus Walleij

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

end of thread, other threads:[~2017-02-11 13:29 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-01-26 13:27 [PATCH] pci: host: dra7xx: use GPIO descriptor Linus Walleij
2017-02-10 20:07 ` Bjorn Helgaas
2017-02-10 20:45   ` Bjorn Helgaas
2017-02-11 13:29     ` Linus Walleij

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