From mboxrd@z Thu Jan 1 00:00:00 1970 From: Florian Fainelli Date: Thu, 17 Mar 2011 17:59:40 +0100 Subject: [U-Boot] [U-Boot, v4] NAND: add support for reading ONFI page table In-Reply-To: <20110316234255.GA1629@schlenkerla> References: <201102251101.34075.florian@openwrt.org> <20110316234255.GA1629@schlenkerla> Message-ID: <201103171759.40646.florian@openwrt.org> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Le jeudi 17 mars 2011 00:42:55, Scott Wood a ?crit : > On Fri, Feb 25, 2011 at 12:01:34AM -0000, Florian Fainelli wrote: > > From: Florian Fainelli > > > > This patch adds support for reading an ONFI page parameter from a NAND > > device supporting it. If this is the case, struct nand_chip onfi_version > > member contains the supported ONFI version, 0 otherwise. > > > > This allows NAND drivers past nand_scan_ident to set the best timings for > > the NAND chip. > > > > Signed-off-by: Florian Fainelli > > Applied to u-boot-nand-flash next with this change: > > diff --git a/drivers/mtd/nand/nand_base.c b/drivers/mtd/nand/nand_base.c > index 0d7c819..fa286a8 100644 > --- a/drivers/mtd/nand/nand_base.c > +++ b/drivers/mtd/nand/nand_base.c > @@ -2585,7 +2585,7 @@ static const struct nand_flash_dev > *nand_get_flash_type(st type = nand_flash_ids; > > for (; type->name != NULL; type++) > - if (dev_id == type->id) > + if (*dev_id == type->id) > break; My bad, thanks for fixing this and committing the patch! -- Florian