public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Marek Vasut <marex@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v4 5/5] usb: lpc32xx: add host USB driver
Date: Wed, 5 Aug 2015 15:10:19 +0200	[thread overview]
Message-ID: <201508051510.19769.marex@denx.de> (raw)
In-Reply-To: <4F172219764C784B84C2C1FF44E7DFB103009012@003FCH1MPN2-041.003f.mgd2.msft.net>

On Wednesday, August 05, 2015 at 12:54:38 PM, LEMIEUX, SYLVAIN wrote:
> Hi Marek,
> 
> Is it OK to only submit the patch that need to be update as a new
> version or I always have to resubmit the complete set of patches?

It's OK to submit just the patch, see "Sending updated patch versions"
at http://www.denx.de/wiki/U-Boot/Patches#General_Patch_Submission_Rules

> See comments and question below.
> 
> 
> Sylvain
> 
> > -----Original Message-----
> > From: Marek Vasut [mailto:marex at denx.de]
> > 
> > On Tuesday, August 04, 2015 at 11:04:42 PM, slemieux.tyco at gmail.com wrote:
> > > From: Sylvain Lemieux <slemieux@tycoint.com>
> > > 
> > > Incorporate USB driver from legacy LPCLinux NXP BSP.
> > > The files taken from the legacy patch are:
> > > - lpc32xx USB driver
> > > - lpc3250 header file USB registers definition.
> > > 
> > > The legacy driver was updated and clean-up as part
> > > of the integration with the latest u-boot.
> > > 
> > > Signed-off-by: Sylvain Lemieux <slemieux@tycoint.com>
> > > ---
> > 
> > Hi!
> > 
> > > +static int wait_for_bit(void *reg, const uint32_t mask, bool set)
> > > +{
> > > +   unsigned int timeout = 1000000;
> > > +   uint32_t val;
> > > +
> > > +   while (--timeout) {
> > 
> > Where did the get_timer() stuff disappear ? :'-(
> 
> I reused the "wait_for_bit()" from " drivers/usb/host/dwc2.c";
> this implement does not use "get_timer()".
> 
> Should I update this driver implementation of "wait_for_bit()" to use
> "get_timer()" or keep it the same as the implementation from "dwc2.c"?

If you feel like it, that'd be nice. Sorry for not being explicit about
keeping the get_timer() .

> > > +           val = readl(reg);
> > > +           if (!set)
> > > +                   val = ~val;
> > > +
> > > +           if ((val & mask) == mask)
> > > +                   return 0;
> > > +
> > > +           udelay(1);
> > > +   }
> > > +
> > > +   debug("%s: Timeout (reg=%p mask=%08x wait_set=%i)\n",
> > > +         __func__, reg, mask, set);
> > > +
> > > +   return -ETIMEDOUT;
> > > +}
> > 

[...]

      reply	other threads:[~2015-08-05 13:10 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-08-04 21:04 [U-Boot] [PATCH v4 5/5] usb: lpc32xx: add host USB driver slemieux.tyco at gmail.com
2015-08-04 21:33 ` Marek Vasut
2015-08-05 10:54   ` LEMIEUX, SYLVAIN
2015-08-05 13:10     ` 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=201508051510.19769.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox