From: Michael Trimarchi <michael@amarulasolutions.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] ulpi patch in uboot
Date: Thu, 16 May 2013 17:00:22 +0200 [thread overview]
Message-ID: <20130516150022.GD10690@panicking> (raw)
In-Reply-To: <5194EECD.1060101@denx.de>
Hi
On Thu, May 16, 2013 at 04:35:57PM +0200, Stefano Babic wrote:
> On 16/05/2013 15:19, Michael Trimarchi wrote:
>
>
> Hi Michael,
>
> > From 7e99dcbe83e26fff3a0168105eec99003650b744 Mon Sep 17 00:00:00 2001
> > From: Michael Trimarchi <michael@amarulasolutions.com>
> > Date: Thu, 16 May 2013 15:16:17 +0200
> > Subject: [PATCH] omap-ulpi: Fix the omap3/4 access function to the bus
> >
> > Signed-off-by: Michael Trimarchi <michael@amarulasolutions.com>
> > ---
> > drivers/usb/ulpi/omap-ulpi-viewport.c | 16 +++++++---------
> > 1 file changed, 7 insertions(+), 9 deletions(-)
> >
> > diff --git a/drivers/usb/ulpi/omap-ulpi-viewport.c b/drivers/usb/ulpi/omap-ulpi-viewport.c
> > index 3c1ea1a..f849733 100644
> > --- a/drivers/usb/ulpi/omap-ulpi-viewport.c
> > +++ b/drivers/usb/ulpi/omap-ulpi-viewport.c
> > @@ -22,7 +22,8 @@
> > #include <asm/io.h>
> > #include <usb/ulpi.h>
> >
> > -#define OMAP_ULPI_WR_OPSEL (3 << 21)
> > +#define OMAP_ULPI_WR_OPSEL (2 << 22)
> > +#define OMAP_ULPI_RD_OPSEL (3 << 22)
> > #define OMAP_ULPI_ACCESS (1 << 31)
> >
> > /*
> > @@ -33,7 +34,7 @@ static int ulpi_wait(struct ulpi_viewport *ulpi_vp, u32 mask)
> > int timeout = CONFIG_USB_ULPI_TIMEOUT;
> >
> > while (--timeout) {
> > - if ((readl(ulpi_vp->viewport_addr) & mask))
> > + if (!(readl(ulpi_vp->viewport_addr) & mask))
> > return 0;
> >
> > udelay(1);
> > @@ -47,18 +48,15 @@ static int ulpi_wait(struct ulpi_viewport *ulpi_vp, u32 mask)
> > *
> > * returns 0 on success.
> > */
> > -static int ulpi_wakeup(struct ulpi_viewport *ulpi_vp)
> > +static int ulpi_start(struct ulpi_viewport *ulpi_vp)
> > {
> > int err;
> >
> > - if (readl(ulpi_vp->viewport_addr) & OMAP_ULPI_ACCESS)
> > - return 0; /* already awake */
> > -
> > writel(OMAP_ULPI_ACCESS, ulpi_vp->viewport_addr);
> >
> > err = ulpi_wait(ulpi_vp, OMAP_ULPI_ACCESS);
> > if (err)
> > - debug("ULPI wakeup timed out\n");
> > + debug("ULPI start timed out\n");
> >
> > return err;
> > }
> > @@ -70,7 +68,7 @@ static int ulpi_request(struct ulpi_viewport *ulpi_vp, u32 value)
> > {
> > int err;
> >
> > - err = ulpi_wakeup(ulpi_vp);
> > + err = ulpi_start(ulpi_vp);
> > if (err)
> > return err;
> >
> > @@ -95,7 +93,7 @@ u32 ulpi_read(struct ulpi_viewport *ulpi_vp, u8 *reg)
> > {
> > int err;
> > u32 val = ((ulpi_vp->port_num & 0xf) << 24) |
> > - OMAP_ULPI_WR_OPSEL | ((u32)reg << 16);
> > + OMAP_ULPI_RD_OPSEL | ((u32)reg << 16);
> >
> > err = ulpi_request(ulpi_vp, val);
> > if (err)
> >
>
> Thanks for the patch. Could you please sent it again with a right
> subject-id in the e-mail to allow to be included automatically by
> patchworks ? Please also put in CC Tom Rini (trini at ti.com, U-Boot
> maintainer) and Marek Vasut (marex at denx.de, USB custodian).
>
> Thanks,
> Stefano
I have done it better. Give me some time to do a better commit message ;)
Michael
prev parent reply other threads:[~2013-05-16 15:00 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <5194AA1B.40201@amarulasolutions.com>
2013-05-16 10:34 ` [U-Boot] ulpi patch in uboot Stefano Babic
2013-05-16 11:17 ` Michael Trimarchi
2013-05-16 13:19 ` Michael Trimarchi
2013-05-16 14:24 ` Igor Grinberg
2013-05-16 14:35 ` Stefano Babic
2013-05-16 15:00 ` Michael Trimarchi [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=20130516150022.GD10690@panicking \
--to=michael@amarulasolutions.com \
--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.