From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marek Vasut Date: Mon, 21 Dec 2015 11:08:17 +0100 Subject: [U-Boot] [PATCH] mtd: nand: denali_spl: Program spare area skip bytes In-Reply-To: References: <1450580333-6198-1-git-send-email-marex@denx.de> Message-ID: <201512211108.17720.marex@denx.de> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On Monday, December 21, 2015 at 09:29:27 AM, Masahiro Yamada wrote: > Hi Marek, Hi Masahiro! > 2015-12-20 11:58 GMT+09:00 Marek Vasut : > > This register is not configured on Altera SoCFPGA incarnation of the > > Denali NAND flash block. Unless this register is initialized, the IP > > will return corrupted data upon any read attempt from the NAND. > > > > Initialize the register to the same value is the one used in full > > U-Boot to fix this issue. > > > > Signed-off-by: Marek Vasut > > Cc: Masahiro Yamada > > Cc: Scott Wood > > As for UniPhier SoCs, this register has been set to 8 > by the boot ROM when booting from a NAND device. Mine left the register at 0x0 %^( > So, my SoCs work with/without this patch > because CONFIG_NAND_DENALI_SPARE_AREA_SKIP_BYTES is defined 8 in my > defconfigs. > > Anyway, I am OK with this patch. > > > --- > > > > drivers/mtd/nand/denali_spl.c | 4 ++++ > > 1 file changed, 4 insertions(+) > > > > diff --git a/drivers/mtd/nand/denali_spl.c > > b/drivers/mtd/nand/denali_spl.c index 1587413..8c707d2 100644 > > --- a/drivers/mtd/nand/denali_spl.c > > +++ b/drivers/mtd/nand/denali_spl.c > > @@ -168,6 +168,10 @@ void nand_init(void) > > > > page_size = readl(denali_flash_reg + DEVICE_MAIN_AREA_SIZE); > > oob_size = readl(denali_flash_reg + DEVICE_SPARE_AREA_SIZE); > > pages_per_block = readl(denali_flash_reg + PAGES_PER_BLOCK); > > > > + > > + /* Spare area skip bytes is NOT programmed by hardware %^( */ > > What is "%^(" ? > Do you need this comment? It clarifies why the register needs to be inited, that's all %^) > Otherwise, > > Acked-by: Masahiro Yamada Best regards, Marek Vasut