All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v3 1/2] gpio: Add struct reset_ctl_bulk
  2018-08-28 16:07 [U-Boot] [PATCH v3 1/2] gpio: Add struct reset_ctl_bulk Ley Foon Tan
@ 2018-08-28  8:58 ` Marek Vasut
  2018-08-29  1:28   ` Ley Foon Tan
  2018-08-28 16:07 ` [U-Boot] [PATCH v3 2/2] gpio: dwapb_gpio: Add reset ctrl to driver Ley Foon Tan
  1 sibling, 1 reply; 7+ messages in thread
From: Marek Vasut @ 2018-08-28  8:58 UTC (permalink / raw)
  To: u-boot

On 08/28/2018 06:07 PM, Ley Foon Tan wrote:
> Add struct reset_ctl_bulk to struct gpio_dev_priv to support reset control
> in GPIO driver.
> 
> Signed-off-by: Ley Foon Tan <ley.foon.tan@intel.com>

Isn't this reset support supposed to be driver specific, and thus part
of driver private data ?

> ---
>  include/asm-generic/gpio.h |    2 ++
>  1 files changed, 2 insertions(+), 0 deletions(-)
> 
> diff --git a/include/asm-generic/gpio.h b/include/asm-generic/gpio.h
> index d036026..9fd5808 100644
> --- a/include/asm-generic/gpio.h
> +++ b/include/asm-generic/gpio.h
> @@ -8,6 +8,7 @@
>  #define _ASM_GENERIC_GPIO_H_
>  
>  #include <dm/ofnode.h>
> +#include <reset.h>
>  
>  struct ofnode_phandle_args;
>  
> @@ -318,6 +319,7 @@ struct gpio_dev_priv {
>  	unsigned gpio_count;
>  	unsigned gpio_base;
>  	char **name;
> +	struct reset_ctl_bulk resets;
>  };
>  
>  /* Access the GPIO operations for a device */
> 


-- 
Best regards,
Marek Vasut

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

* [U-Boot] [PATCH v3 2/2] gpio: dwapb_gpio: Add reset ctrl to driver
  2018-08-28 16:07 ` [U-Boot] [PATCH v3 2/2] gpio: dwapb_gpio: Add reset ctrl to driver Ley Foon Tan
@ 2018-08-28  8:59   ` Marek Vasut
  2018-08-29  1:06     ` Ley Foon Tan
  0 siblings, 1 reply; 7+ messages in thread
From: Marek Vasut @ 2018-08-28  8:59 UTC (permalink / raw)
  To: u-boot

On 08/28/2018 06:07 PM, Ley Foon Tan wrote:
> Add code to reset all reset signals as in gpio DT node. A reset property
> is an optional feature, so only print out a warning and do not fail if a
> reset property is not present.
> 
> If a reset property is discovered, then use it to deassert, thus
> bringing the IP out of reset.
> 
> Signed-off-by: Ley Foon Tan <ley.foon.tan@intel.com>
> 
> ---
> v3:
> - Add .remove function.
> - Add error handling when return non-zero from reset_get_bulk().
> 
> v2:
> - Move reset to probe() function.
> ---
>  drivers/gpio/dwapb_gpio.c |   42 ++++++++++++++++++++++++++++++++++++++++--
>  1 files changed, 40 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/gpio/dwapb_gpio.c b/drivers/gpio/dwapb_gpio.c
> index 7cf2d47..6394fa9 100644
> --- a/drivers/gpio/dwapb_gpio.c
> +++ b/drivers/gpio/dwapb_gpio.c
> @@ -15,6 +15,7 @@
>  #include <dm/lists.h>
>  #include <dm/root.h>
>  #include <errno.h>
> +#include <reset.h>
>  
>  DECLARE_GLOBAL_DATA_PTR;
>  
> @@ -99,13 +100,42 @@ static const struct dm_gpio_ops gpio_dwapb_ops = {
>  	.get_function		= dwapb_gpio_get_function,
>  };
>  
> +static int gpio_dwapb_reset(struct udevice *dev)
> +{
> +	int ret;
> +	struct gpio_dev_priv *priv = dev_get_uclass_priv(dev);
> +
> +	ret = reset_get_bulk(dev, &priv->resets);
> +	if (ret) {
> +		dev_warn(dev, "Can't get reset: %d\n", ret);
> +		/* Return 0 if error due to !CONFIG_DM_RESET and reset
> +		 * DT property is not present.
> +		 */
> +		if (ret == -ENOENT || ret == -ENOTSUPP)
> +			return 0;
> +		else
> +			return ret;
> +	}
> +
> +	ret = reset_deassert_bulk(&priv->resets);
> +	if (ret) {
> +		reset_release_bulk(&priv->resets);
> +		dev_err(dev, "Failed to reset: %d\n", ret);
> +		return ret;
> +	}
> +
> +	return 0;
> +}
> +
>  static int gpio_dwapb_probe(struct udevice *dev)
>  {
>  	struct gpio_dev_priv *priv = dev_get_uclass_priv(dev);
>  	struct gpio_dwapb_platdata *plat = dev->platdata;
>  
> -	if (!plat)
> -		return 0;
> +	if (!plat) {
> +		/* Reset on parent device only */
> +		return gpio_dwapb_reset(dev);
> +	}
>  
>  	priv->gpio_count = plat->pins;
>  	priv->bank_name = plat->name;
> @@ -166,6 +196,13 @@ err:
>  	return ret;
>  }
>  
> +static int gpio_dwapb_remove(struct udevice *dev)
> +{
> +	struct gpio_dev_priv *priv = dev_get_uclass_priv(dev);

You might want to assert the reset too.

> +	return reset_release_bulk(&priv->resets);
> +}
> +
>  static const struct udevice_id gpio_dwapb_ids[] = {
>  	{ .compatible = "snps,dw-apb-gpio" },
>  	{ }
> @@ -178,4 +215,5 @@ U_BOOT_DRIVER(gpio_dwapb) = {
>  	.ops		= &gpio_dwapb_ops,
>  	.bind		= gpio_dwapb_bind,
>  	.probe		= gpio_dwapb_probe,
> +	.remove		= gpio_dwapb_remove,
>  };
> 


-- 
Best regards,
Marek Vasut

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

* [U-Boot] [PATCH v3 1/2] gpio: Add struct reset_ctl_bulk
@ 2018-08-28 16:07 Ley Foon Tan
  2018-08-28  8:58 ` Marek Vasut
  2018-08-28 16:07 ` [U-Boot] [PATCH v3 2/2] gpio: dwapb_gpio: Add reset ctrl to driver Ley Foon Tan
  0 siblings, 2 replies; 7+ messages in thread
From: Ley Foon Tan @ 2018-08-28 16:07 UTC (permalink / raw)
  To: u-boot

Add struct reset_ctl_bulk to struct gpio_dev_priv to support reset control
in GPIO driver.

Signed-off-by: Ley Foon Tan <ley.foon.tan@intel.com>
---
 include/asm-generic/gpio.h |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/include/asm-generic/gpio.h b/include/asm-generic/gpio.h
index d036026..9fd5808 100644
--- a/include/asm-generic/gpio.h
+++ b/include/asm-generic/gpio.h
@@ -8,6 +8,7 @@
 #define _ASM_GENERIC_GPIO_H_
 
 #include <dm/ofnode.h>
+#include <reset.h>
 
 struct ofnode_phandle_args;
 
@@ -318,6 +319,7 @@ struct gpio_dev_priv {
 	unsigned gpio_count;
 	unsigned gpio_base;
 	char **name;
+	struct reset_ctl_bulk resets;
 };
 
 /* Access the GPIO operations for a device */
-- 
1.7.1

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

* [U-Boot] [PATCH v3 2/2] gpio: dwapb_gpio: Add reset ctrl to driver
  2018-08-28 16:07 [U-Boot] [PATCH v3 1/2] gpio: Add struct reset_ctl_bulk Ley Foon Tan
  2018-08-28  8:58 ` Marek Vasut
@ 2018-08-28 16:07 ` Ley Foon Tan
  2018-08-28  8:59   ` Marek Vasut
  1 sibling, 1 reply; 7+ messages in thread
From: Ley Foon Tan @ 2018-08-28 16:07 UTC (permalink / raw)
  To: u-boot

Add code to reset all reset signals as in gpio DT node. A reset property
is an optional feature, so only print out a warning and do not fail if a
reset property is not present.

If a reset property is discovered, then use it to deassert, thus
bringing the IP out of reset.

Signed-off-by: Ley Foon Tan <ley.foon.tan@intel.com>

---
v3:
- Add .remove function.
- Add error handling when return non-zero from reset_get_bulk().

v2:
- Move reset to probe() function.
---
 drivers/gpio/dwapb_gpio.c |   42 ++++++++++++++++++++++++++++++++++++++++--
 1 files changed, 40 insertions(+), 2 deletions(-)

diff --git a/drivers/gpio/dwapb_gpio.c b/drivers/gpio/dwapb_gpio.c
index 7cf2d47..6394fa9 100644
--- a/drivers/gpio/dwapb_gpio.c
+++ b/drivers/gpio/dwapb_gpio.c
@@ -15,6 +15,7 @@
 #include <dm/lists.h>
 #include <dm/root.h>
 #include <errno.h>
+#include <reset.h>
 
 DECLARE_GLOBAL_DATA_PTR;
 
@@ -99,13 +100,42 @@ static const struct dm_gpio_ops gpio_dwapb_ops = {
 	.get_function		= dwapb_gpio_get_function,
 };
 
+static int gpio_dwapb_reset(struct udevice *dev)
+{
+	int ret;
+	struct gpio_dev_priv *priv = dev_get_uclass_priv(dev);
+
+	ret = reset_get_bulk(dev, &priv->resets);
+	if (ret) {
+		dev_warn(dev, "Can't get reset: %d\n", ret);
+		/* Return 0 if error due to !CONFIG_DM_RESET and reset
+		 * DT property is not present.
+		 */
+		if (ret == -ENOENT || ret == -ENOTSUPP)
+			return 0;
+		else
+			return ret;
+	}
+
+	ret = reset_deassert_bulk(&priv->resets);
+	if (ret) {
+		reset_release_bulk(&priv->resets);
+		dev_err(dev, "Failed to reset: %d\n", ret);
+		return ret;
+	}
+
+	return 0;
+}
+
 static int gpio_dwapb_probe(struct udevice *dev)
 {
 	struct gpio_dev_priv *priv = dev_get_uclass_priv(dev);
 	struct gpio_dwapb_platdata *plat = dev->platdata;
 
-	if (!plat)
-		return 0;
+	if (!plat) {
+		/* Reset on parent device only */
+		return gpio_dwapb_reset(dev);
+	}
 
 	priv->gpio_count = plat->pins;
 	priv->bank_name = plat->name;
@@ -166,6 +196,13 @@ err:
 	return ret;
 }
 
+static int gpio_dwapb_remove(struct udevice *dev)
+{
+	struct gpio_dev_priv *priv = dev_get_uclass_priv(dev);
+
+	return reset_release_bulk(&priv->resets);
+}
+
 static const struct udevice_id gpio_dwapb_ids[] = {
 	{ .compatible = "snps,dw-apb-gpio" },
 	{ }
@@ -178,4 +215,5 @@ U_BOOT_DRIVER(gpio_dwapb) = {
 	.ops		= &gpio_dwapb_ops,
 	.bind		= gpio_dwapb_bind,
 	.probe		= gpio_dwapb_probe,
+	.remove		= gpio_dwapb_remove,
 };
-- 
1.7.1

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

* [U-Boot] [PATCH v3 2/2] gpio: dwapb_gpio: Add reset ctrl to driver
  2018-08-28  8:59   ` Marek Vasut
@ 2018-08-29  1:06     ` Ley Foon Tan
  0 siblings, 0 replies; 7+ messages in thread
From: Ley Foon Tan @ 2018-08-29  1:06 UTC (permalink / raw)
  To: u-boot

On Tue, Aug 28, 2018 at 5:53 PM Marek Vasut <marex@denx.de> wrote:
>
> On 08/28/2018 06:07 PM, Ley Foon Tan wrote:
> > Add code to reset all reset signals as in gpio DT node. A reset property
> > is an optional feature, so only print out a warning and do not fail if a
> > reset property is not present.
> >
> > If a reset property is discovered, then use it to deassert, thus
> > bringing the IP out of reset.
> >
> > Signed-off-by: Ley Foon Tan <ley.foon.tan@intel.com>
> >
> > ---
> > v3:
> > - Add .remove function.
> > - Add error handling when return non-zero from reset_get_bulk().
> >
> > v2:
> > - Move reset to probe() function.
> > ---
> >  drivers/gpio/dwapb_gpio.c |   42 ++++++++++++++++++++++++++++++++++++++++--
> >  1 files changed, 40 insertions(+), 2 deletions(-)
> >
> > diff --git a/drivers/gpio/dwapb_gpio.c b/drivers/gpio/dwapb_gpio.c
> > index 7cf2d47..6394fa9 100644
> > --- a/drivers/gpio/dwapb_gpio.c
> > +++ b/drivers/gpio/dwapb_gpio.c
> > @@ -15,6 +15,7 @@
> >  #include <dm/lists.h>
> >  #include <dm/root.h>
> >  #include <errno.h>
> > +#include <reset.h>
> >
> >  DECLARE_GLOBAL_DATA_PTR;
> >
> > @@ -99,13 +100,42 @@ static const struct dm_gpio_ops gpio_dwapb_ops = {
> >       .get_function           = dwapb_gpio_get_function,
> >  };
> >
> > +static int gpio_dwapb_reset(struct udevice *dev)
> > +{
> > +     int ret;
> > +     struct gpio_dev_priv *priv = dev_get_uclass_priv(dev);
> > +
> > +     ret = reset_get_bulk(dev, &priv->resets);
> > +     if (ret) {
> > +             dev_warn(dev, "Can't get reset: %d\n", ret);
> > +             /* Return 0 if error due to !CONFIG_DM_RESET and reset
> > +              * DT property is not present.
> > +              */
> > +             if (ret == -ENOENT || ret == -ENOTSUPP)
> > +                     return 0;
> > +             else
> > +                     return ret;
> > +     }
> > +
> > +     ret = reset_deassert_bulk(&priv->resets);
> > +     if (ret) {
> > +             reset_release_bulk(&priv->resets);
> > +             dev_err(dev, "Failed to reset: %d\n", ret);
> > +             return ret;
> > +     }
> > +
> > +     return 0;
> > +}
> > +
> >  static int gpio_dwapb_probe(struct udevice *dev)
> >  {
> >       struct gpio_dev_priv *priv = dev_get_uclass_priv(dev);
> >       struct gpio_dwapb_platdata *plat = dev->platdata;
> >
> > -     if (!plat)
> > -             return 0;
> > +     if (!plat) {
> > +             /* Reset on parent device only */
> > +             return gpio_dwapb_reset(dev);
> > +     }
> >
> >       priv->gpio_count = plat->pins;
> >       priv->bank_name = plat->name;
> > @@ -166,6 +196,13 @@ err:
> >       return ret;
> >  }
> >
> > +static int gpio_dwapb_remove(struct udevice *dev)
> > +{
> > +     struct gpio_dev_priv *priv = dev_get_uclass_priv(dev);
>
> You might want to assert the reset too.

reset_release_bulk() function will assert the reset and free reset struct.

>
> > +     return reset_release_bulk(&priv->resets);
> > +}
> > +
> >  static const struct udevice_id gpio_dwapb_ids[] = {
> >       { .compatible = "snps,dw-apb-gpio" },
> >       { }
> > @@ -178,4 +215,5 @@ U_BOOT_DRIVER(gpio_dwapb) = {
> >       .ops            = &gpio_dwapb_ops,
> >       .bind           = gpio_dwapb_bind,
> >       .probe          = gpio_dwapb_probe,
> > +     .remove         = gpio_dwapb_remove,
> >  };
> >
>
>
Regards
Ley Foon

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

* [U-Boot] [PATCH v3 1/2] gpio: Add struct reset_ctl_bulk
  2018-08-28  8:58 ` Marek Vasut
@ 2018-08-29  1:28   ` Ley Foon Tan
  2018-08-29  1:45     ` Marek Vasut
  0 siblings, 1 reply; 7+ messages in thread
From: Ley Foon Tan @ 2018-08-29  1:28 UTC (permalink / raw)
  To: u-boot

On Tue, Aug 28, 2018 at 5:53 PM Marek Vasut <marex@denx.de> wrote:
>
> On 08/28/2018 06:07 PM, Ley Foon Tan wrote:
> > Add struct reset_ctl_bulk to struct gpio_dev_priv to support reset control
> > in GPIO driver.
> >
> > Signed-off-by: Ley Foon Tan <ley.foon.tan@intel.com>
>
> Isn't this reset support supposed to be driver specific, and thus part
> of driver private data ?

Just notice not all gpio node have sub gpio port node. platdata in
dwgpio drivers is per gpio port.
Will abandon this patch and add a platdata struct for dwgpio parent device.

>
> > ---
> >  include/asm-generic/gpio.h |    2 ++
> >  1 files changed, 2 insertions(+), 0 deletions(-)
> >
> > diff --git a/include/asm-generic/gpio.h b/include/asm-generic/gpio.h
> > index d036026..9fd5808 100644
> > --- a/include/asm-generic/gpio.h
> > +++ b/include/asm-generic/gpio.h
> > @@ -8,6 +8,7 @@
> >  #define _ASM_GENERIC_GPIO_H_
> >
> >  #include <dm/ofnode.h>
> > +#include <reset.h>
> >
> >  struct ofnode_phandle_args;
> >
> > @@ -318,6 +319,7 @@ struct gpio_dev_priv {
> >       unsigned gpio_count;
> >       unsigned gpio_base;
> >       char **name;
> > +     struct reset_ctl_bulk resets;
> >  };
> >
> >  /* Access the GPIO operations for a device */
> >
>
>
Regards
Ley Foon

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

* [U-Boot] [PATCH v3 1/2] gpio: Add struct reset_ctl_bulk
  2018-08-29  1:28   ` Ley Foon Tan
@ 2018-08-29  1:45     ` Marek Vasut
  0 siblings, 0 replies; 7+ messages in thread
From: Marek Vasut @ 2018-08-29  1:45 UTC (permalink / raw)
  To: u-boot

On 08/29/2018 03:28 AM, Ley Foon Tan wrote:
> On Tue, Aug 28, 2018 at 5:53 PM Marek Vasut <marex@denx.de> wrote:
>>
>> On 08/28/2018 06:07 PM, Ley Foon Tan wrote:
>>> Add struct reset_ctl_bulk to struct gpio_dev_priv to support reset control
>>> in GPIO driver.
>>>
>>> Signed-off-by: Ley Foon Tan <ley.foon.tan@intel.com>
>>
>> Isn't this reset support supposed to be driver specific, and thus part
>> of driver private data ?
> 
> Just notice not all gpio node have sub gpio port node. platdata in
> dwgpio drivers is per gpio port.
> Will abandon this patch and add a platdata struct for dwgpio parent device.

That's probably a good idea.

-- 
Best regards,
Marek Vasut

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

end of thread, other threads:[~2018-08-29  1:45 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-08-28 16:07 [U-Boot] [PATCH v3 1/2] gpio: Add struct reset_ctl_bulk Ley Foon Tan
2018-08-28  8:58 ` Marek Vasut
2018-08-29  1:28   ` Ley Foon Tan
2018-08-29  1:45     ` Marek Vasut
2018-08-28 16:07 ` [U-Boot] [PATCH v3 2/2] gpio: dwapb_gpio: Add reset ctrl to driver Ley Foon Tan
2018-08-28  8:59   ` Marek Vasut
2018-08-29  1:06     ` Ley Foon Tan

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.