mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH] usb: imx: Only use clock when it exists
@ 2017-05-23 13:09 Sascha Hauer
  2017-05-24  4:42 ` Andrey Smirnov
  0 siblings, 1 reply; 2+ messages in thread
From: Sascha Hauer @ 2017-05-23 13:09 UTC (permalink / raw)
  To: Barebox List; +Cc: Andrey Smirnov, jbe

Fixes: bbe0df90b8e2463dd8db651e9f1dd57702985d2d

I assumed all chipidea devices actually have a clock. This is true
when looking at the device tree, but in barebox not all i.MX SoCs
use the clocks provided by the device tree. Most instead use
clkdev_add_physbase() to attach a clocks to devices. For these the
chipidea device does not have a clock.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
---
 drivers/usb/imx/chipidea-imx.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/drivers/usb/imx/chipidea-imx.c b/drivers/usb/imx/chipidea-imx.c
index 67d01d3de5..39593c40fb 100644
--- a/drivers/usb/imx/chipidea-imx.c
+++ b/drivers/usb/imx/chipidea-imx.c
@@ -276,10 +276,8 @@ static int imx_chipidea_probe(struct device_d *dev)
 	 * devices which have only one.
 	 */
 	ci->clk = clk_get(dev, NULL);
-	if (IS_ERR(ci->clk))
-		return PTR_ERR(ci->clk);
-
-	clk_enable(ci->clk);
+	if (!IS_ERR(ci->clk))
+		clk_enable(ci->clk);
 
 	if (of_property_read_bool(dev->device_node, "fsl,usbphy")) {
 		ci->phy = of_phy_get_by_phandle(dev, "fsl,usbphy", 0);
-- 
2.11.0


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

* Re: [PATCH] usb: imx: Only use clock when it exists
  2017-05-23 13:09 [PATCH] usb: imx: Only use clock when it exists Sascha Hauer
@ 2017-05-24  4:42 ` Andrey Smirnov
  0 siblings, 0 replies; 2+ messages in thread
From: Andrey Smirnov @ 2017-05-24  4:42 UTC (permalink / raw)
  To: Sascha Hauer; +Cc: Barebox List, jbe

On Tue, May 23, 2017 at 6:09 AM, Sascha Hauer <s.hauer@pengutronix.de> wrote:
> Fixes: bbe0df90b8e2463dd8db651e9f1dd57702985d2d
>
> I assumed all chipidea devices actually have a clock. This is true
> when looking at the device tree, but in barebox not all i.MX SoCs
> use the clocks provided by the device tree. Most instead use
> clkdev_add_physbase() to attach a clocks to devices. For these the
> chipidea device does not have a clock.
>
> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>

Just tried on a custom i.MX51 based board I wrote my USB clock patch
from earlier for. Seems to work with said patch dropped from the tree,
so:

Tested-by: Andrey Smirnov <andrew.smirnov@gmail.com>

> ---
>  drivers/usb/imx/chipidea-imx.c | 6 ++----
>  1 file changed, 2 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/usb/imx/chipidea-imx.c b/drivers/usb/imx/chipidea-imx.c
> index 67d01d3de5..39593c40fb 100644
> --- a/drivers/usb/imx/chipidea-imx.c
> +++ b/drivers/usb/imx/chipidea-imx.c
> @@ -276,10 +276,8 @@ static int imx_chipidea_probe(struct device_d *dev)
>          * devices which have only one.
>          */
>         ci->clk = clk_get(dev, NULL);
> -       if (IS_ERR(ci->clk))
> -               return PTR_ERR(ci->clk);
> -
> -       clk_enable(ci->clk);
> +       if (!IS_ERR(ci->clk))
> +               clk_enable(ci->clk);
>
>         if (of_property_read_bool(dev->device_node, "fsl,usbphy")) {
>                 ci->phy = of_phy_get_by_phandle(dev, "fsl,usbphy", 0);
> --
> 2.11.0
>

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

end of thread, other threads:[~2017-05-24  4:42 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-05-23 13:09 [PATCH] usb: imx: Only use clock when it exists Sascha Hauer
2017-05-24  4:42 ` Andrey Smirnov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox