public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Scott Wood <scottwood@freescale.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v5 2/8] lpc32xx: mtd: nand: add MLC NAND controller
Date: Mon, 16 Mar 2015 16:30:29 -0500	[thread overview]
Message-ID: <1426541429.27998.61.camel@freescale.com> (raw)
In-Reply-To: <20150314152735.312f6c03.albert.aribaud@3adev.fr>

On Sat, 2015-03-14 at 15:27 +0100, Albert ARIBAUD wrote:
> Bonjour Scott,
> 
> Le Fri, 13 Mar 2015 16:57:33 -0500, Scott Wood
> <scottwood@freescale.com> a ?crit :
> 
> > On Fri, 2015-03-13 at 09:04 +0100, Albert ARIBAUD (3ADEV) wrote:
> > > +	/* go through all four small pages */
> > > +	for (i = 0; i < 4; i++) {
> > > +		/* start auto decode (reads 528 NAND bytes) */
> > > +		writel(0, &lpc32xx_nand_mlc_registers->ecc_auto_dec_reg);
> > > +		/* wait for controller to return to ready state */
> > > +		timeout = LPC32X_NAND_TIMEOUT;
> > > +		do {
> > > +			if (timeout-- == 0)
> > > +				return -1;
> > > +			status = readl(&lpc32xx_nand_mlc_registers->isr);
> > > +		} while (!(status & ISR_CONTROLLER_READY));
> > 
> > How much time does 10000 reads of this register equate to?  Are you sure
> > it's enough?  Timeouts should generally be in terms of time, not loop
> > iterations.
> 
> I followed the examples in several drivers where timeouts are by
> iteration. Note that  -- while this does not void your point --  I did
> not use 10000 but 100000, which at a CPU clock of 208 MHz, and assuming
> an optimistic one instruction per cycle and two instructions per loop,
> makes the loop last at least 960 us, well over the 600 us which the
> NAND takes for any page programming.

What if this driver ends up being used on hardware that runs
significantly faster than 208 MHz?  I could understand if it's hugely
space-constrained SPL code (like the ones that have to fit in 4K), but
otherwise why not make use of the timekeeping code that exists in U-Boot
(either by reading the timer, or by putting udelay(1) in the loop body)?

> > > +#define LARGE_PAGE_SIZE 2048
> > > +
> > > +int nand_spl_load_image(uint32_t offs, unsigned int size, void *dst)
> > > +{
> > > +	struct lpc32xx_oob oob;
> > > +	unsigned int page = offs / LARGE_PAGE_SIZE;
> > > +	unsigned int left = DIV_ROUND_UP(size, LARGE_PAGE_SIZE);
> > > +
> > > +	while (left) {
> > > +		int res = read_single_page(dst, page, &oob);
> > > +		page++;
> > > +		/* if read succeeded, even if fixed by ECC */
> > > +		if (res >= 0) {
> > > +			/* skip bad block */
> > > +			if (oob.free[0].free_oob_bytes[0] != 0xff)
> > > +				continue;
> > > +			if (oob.free[0].free_oob_bytes[1] != 0xff)
> > > +				continue;
> > > +			/* page is good, keep it */
> > > +			dst += LARGE_PAGE_SIZE;
> > > +			left--;
> > > +		}
> > 
> > You should be checking the designated page(s) of the block, rather than
> > the current page, for the bad block markers -- and skipping the entire
> > block if it's bad.
> 
> Will fix this -- is there any helper function in the bad block
> management code for this? I could not find one, but I'm no NAND expert.

I don't know of any such helper -- outside of SPL it's handled via the
BBT.  fsl_ifc_spl.c is an example that checks for bad block markers, but
it's hardcoded to assume the first two pages of a block which is a bit
simpler than checking at the end of the block.

-Scott

  reply	other threads:[~2015-03-16 21:30 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-03-13  8:04 [U-Boot] [PATCH v5 0/8] Extend LPC32xx functionality and add LPC32xx-based work_92015 board Albert ARIBAUD
2015-03-13  8:04 ` [U-Boot] [PATCH v5 1/8] lpc32xx: add Ethernet support Albert ARIBAUD
2015-03-13  8:04   ` [U-Boot] [PATCH v5 2/8] lpc32xx: mtd: nand: add MLC NAND controller Albert ARIBAUD
2015-03-13  8:04     ` [U-Boot] [PATCH v5 3/8] lpc32xx: i2c: add LPC32xx I2C interface support Albert ARIBAUD
2015-03-13  8:04       ` [U-Boot] [PATCH v5 4/8] lpc32xx: add GPIO support Albert ARIBAUD
2015-03-13  8:04         ` [U-Boot] [PATCH v5 5/8] lpc32xx: add LPC32xx SSP support (SPI mode) Albert ARIBAUD
2015-03-13  8:04           ` [U-Boot] [PATCH v5 6/8] dtt: add ds620 support Albert ARIBAUD
2015-03-13  8:04             ` [U-Boot] [PATCH v5 7/8] lpc32xx: add lpc32xx-spl.bin boot image target Albert ARIBAUD
2015-03-13  8:04               ` [U-Boot] [PATCH v5 8/8] lpc32xx: add support for board work_92105 Albert ARIBAUD
2015-03-13 21:57     ` [U-Boot] [PATCH v5 2/8] lpc32xx: mtd: nand: add MLC NAND controller Scott Wood
2015-03-14 14:27       ` Albert ARIBAUD
2015-03-16 21:30         ` Scott Wood [this message]
2015-03-17  7:31           ` Albert ARIBAUD
2015-03-14  0:33 ` [U-Boot] [PATCH v5 0/8] Extend LPC32xx functionality and add LPC32xx-based work_92015 board Simon Glass
2015-03-14 13:49   ` Albert ARIBAUD
2015-03-16 15:46     ` Simon Glass
2015-03-16 16:28       ` Anish Khurana
2015-03-16 17:40         ` Simon Glass
2015-03-16 20:28           ` Albert ARIBAUD
2015-03-23 23:55             ` Simon Glass
2015-03-24  8:09               ` Albert ARIBAUD
2015-04-08  3:20                 ` Simon Glass
2015-04-08  6:12                   ` Albert ARIBAUD
2015-04-23 15:16                     ` Simon Glass
2015-04-24  5:24                       ` Albert ARIBAUD

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=1426541429.27998.61.camel@freescale.com \
    --to=scottwood@freescale.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox