Re: [U-Boot] [PATCH v10 09/10] usb: host: ohci-generic: add RESET support

2017-07-06 Thread Simon Glass
On 6 July 2017 at 01:42,   wrote:
> From: Patrice Chotard 
>
> use array to save deasserted resets reference in order to
> assert them in case of error during probe() or during driver
> removal.
>
> Signed-off-by: Patrice Chotard 
> ---
>
> v10:_ replace ofnode_count_phandle_with_args() by 
> dev_count_phandle_with_args()
>
> v9: _ remove useless reset_free() when a reset is correctly requested and 
> deasserted
> _ replace reset_assert_all() by reset_release_all()
>
> v8: _ rework error path by propagating the initial error code until the 
> end of probe()
> _ replace devm_kmalloc() by devm_kcalloc()
>
> v7: _ replace reset_count() by ofnode_count_phandle_with_args()
>
> v6: _ none
>
> v5: _ none
>
> v4: _ update the memory allocation for deasserted resets. Replace lists 
> by arrays.
> _ usage of new RESET methods reset_assert_all() and clk_disable_all().
>
> v3: _ extract in this patch the RESET support add-on from previous patch 5
> _ keep deasserted resets reference in list in order to
>   assert resets in error path or in .remove callback
>
> v2: _ add error path management
> _ add .remove callback
>
>  drivers/usb/host/ohci-generic.c | 42 
> +++--
>  1 file changed, 40 insertions(+), 2 deletions(-)

Reviewed-by: Simon Glass 
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


[U-Boot] [PATCH v10 09/10] usb: host: ohci-generic: add RESET support

2017-07-06 Thread patrice.chotard
From: Patrice Chotard 

use array to save deasserted resets reference in order to
assert them in case of error during probe() or during driver
removal.

Signed-off-by: Patrice Chotard 
---

v10:_ replace ofnode_count_phandle_with_args() by 
dev_count_phandle_with_args()

v9: _ remove useless reset_free() when a reset is correctly requested and 
deasserted
_ replace reset_assert_all() by reset_release_all()

v8: _ rework error path by propagating the initial error code until the end 
of probe()
_ replace devm_kmalloc() by devm_kcalloc()

v7: _ replace reset_count() by ofnode_count_phandle_with_args()

v6: _ none

v5: _ none

v4: _ update the memory allocation for deasserted resets. Replace lists by 
arrays.
_ usage of new RESET methods reset_assert_all() and clk_disable_all().

v3: _ extract in this patch the RESET support add-on from previous patch 5
_ keep deasserted resets reference in list in order to
  assert resets in error path or in .remove callback

v2: _ add error path management
_ add .remove callback

 drivers/usb/host/ohci-generic.c | 42 +++--
 1 file changed, 40 insertions(+), 2 deletions(-)

diff --git a/drivers/usb/host/ohci-generic.c b/drivers/usb/host/ohci-generic.c
index f5b27cc..95d54c1 100644
--- a/drivers/usb/host/ohci-generic.c
+++ b/drivers/usb/host/ohci-generic.c
@@ -8,6 +8,7 @@
 #include 
 #include 
 #include 
+#include 
 #include "ohci.h"
 
 #if !defined(CONFIG_USB_OHCI_NEW)
@@ -17,14 +18,16 @@
 struct generic_ohci {
ohci_t ohci;
struct clk *clocks; /* clock list */
+   struct reset_ctl *resets; /* reset list */
int clock_count;/* number of clock in clock list */
+   int reset_count;/* number of reset in reset list */
 };
 
 static int ohci_usb_probe(struct udevice *dev)
 {
struct ohci_regs *regs = (struct ohci_regs *)devfdt_get_addr(dev);
struct generic_ohci *priv = dev_get_priv(dev);
-   int i, err, ret, clock_nb;
+   int i, err, ret, clock_nb, reset_nb;
 
err = 0;
priv->clock_count = 0;
@@ -53,12 +56,43 @@ static int ohci_usb_probe(struct udevice *dev)
return clock_nb;
}
 
+   priv->reset_count = 0;
+   reset_nb = dev_count_phandle_with_args(dev, "resets", "#reset-cells");
+   if (reset_nb > 0) {
+   priv->resets = devm_kcalloc(dev, reset_nb,
+   sizeof(struct reset_ctl),
+   GFP_KERNEL);
+   if (!priv->resets)
+   return -ENOMEM;
+
+   for (i = 0; i < reset_nb; i++) {
+   err = reset_get_by_index(dev, i, &priv->resets[i]);
+   if (err < 0)
+   break;
+
+   err = reset_deassert(&priv->resets[i]);
+   if (err) {
+   error("failed to deassert reset %d\n", i);
+   reset_free(&priv->resets[i]);
+   goto reset_err;
+   }
+   priv->reset_count++;
+   }
+   } else if (reset_nb != -ENOENT) {
+   error("failed to get reset phandle(%d)\n", reset_nb);
+   goto clk_err;
+   }
+
err = ohci_register(dev, regs);
if (err)
-   goto clk_err;
+   goto reset_err;
 
return 0;
 
+reset_err:
+   ret = reset_release_all(priv->resets, priv->reset_count);
+   if (ret)
+   error("failed to assert all resets\n");
 clk_err:
ret = clk_release_all(priv->clocks, priv->clock_count);
if (ret)
@@ -76,6 +110,10 @@ static int ohci_usb_remove(struct udevice *dev)
if (ret)
return ret;
 
+   ret = reset_release_all(priv->resets, priv->reset_count);
+   if (ret)
+   return ret;
+
return clk_release_all(priv->clocks, priv->clock_count);
 }
 
-- 
1.9.1

___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot