All of lore.kernel.org
 help / color / mirror / Atom feed
From: Marek Vasut <marex@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v2] usb: add clock support for generic EHCI
Date: Mon, 25 Jan 2016 06:22:51 +0100	[thread overview]
Message-ID: <201601250622.51938.marex@denx.de> (raw)
In-Reply-To: <CAK7LNATFqNE4pDKuLO5WZ2ZEzmBSz92XidUM09-c2iPLrytPnw@mail.gmail.com>

On Monday, January 25, 2016 at 06:17:58 AM, Masahiro Yamada wrote:
> 2016-01-25 14:13 GMT+09:00 Marek Vasut <marex@denx.de>:
> > On Monday, January 25, 2016 at 05:59:30 AM, Masahiro Yamada wrote:
> >> This driver is designed in a generic manner, so clocks should be
> >> handled genericly as well.
> >> 
> >> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
> >> ---
> >> 
> >> Changes in v2:
> >>   - rephrase git-log
> >>   - rebase on commit 12f229ea
> >>   - do not store clk devices and IDs in the private data
> >>  
> >>  drivers/usb/host/ehci-generic.c | 15 +++++++++++++++
> >>  1 file changed, 15 insertions(+)
> >> 
> >> diff --git a/drivers/usb/host/ehci-generic.c
> >> b/drivers/usb/host/ehci-generic.c index 1292caa..98f9db7 100644
> >> --- a/drivers/usb/host/ehci-generic.c
> >> +++ b/drivers/usb/host/ehci-generic.c
> >> @@ -5,6 +5,7 @@
> >> 
> >>   */
> >>  
> >>  #include <common.h>
> >> 
> >> +#include <clk.h>
> >> 
> >>  #include <dm.h>
> >>  #include "ehci.h"
> >> 
> >> @@ -21,6 +22,20 @@ static int ehci_usb_probe(struct udevice *dev)
> >> 
> >>  {
> >>  
> >>       struct ehci_hccr *hccr = (struct ehci_hccr *)dev_get_addr(dev);
> >>       struct ehci_hcor *hcor;
> >> 
> >> +     int i = 0;
> >> +
> >> +     while (1) {
> > 
> > You can do for (i = 0; ; i++) {} here ;-)

I forgot to mention that if you do the for() thing, you can drop the i++
at the end of this function and you also can drop the explicit int i = 0;
initialization.

> >> +             struct udevice *clk_dev;
> >> +             int clk_id;
> >> +
> >> +             clk_id = clk_get_by_index(dev, i, &clk_dev);
> >> +             if (clk_id < 0)
> >> +                     break;
> >> +             if (clk_enable(clk_dev, clk_id))
> >> +                     printf("failed to enable clock (dev=%s, id=%d)\n",
> >> +                            clk_dev->name, clk_id);
> >> +             i++;
> >> +     }
> >> 
> >>       hcor = (struct ehci_hcor *)((uintptr_t)hccr +
> >>       
> >>                                   HC_LENGTH(ehci_readl(&hccr->cr_capbase
> >>                                   )));
> > 
> > What about disabling the clock? Is it doable with the current clock
> > framework or shall we abandon it for now ?
> 
> clk_disable() is not supported in U-Boot, at least for now.
> (see include/clk.h and you will only find clk_enable.)
> 
> I think this patch is the best I can do now.
> 
> (ccing Simon, again)

In that case, I am fine with it. Thanks!

      reply	other threads:[~2016-01-25  5:22 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-01-25  4:59 [U-Boot] [PATCH v2] usb: add clock support for generic EHCI Masahiro Yamada
2016-01-25  5:13 ` Marek Vasut
2016-01-25  5:17   ` Masahiro Yamada
2016-01-25  5:22     ` Marek Vasut [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=201601250622.51938.marex@denx.de \
    --to=marex@denx.de \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.