i.MX6: nand: add nandbcb command for imx
authorShyam Saini <shyam.saini@amarulasolutions.com>
Fri, 14 Jun 2019 07:35:33 +0000 (13:05 +0530)
committerStefano Babic <sbabic@denx.de>
Fri, 19 Jul 2019 12:51:25 +0000 (14:51 +0200)
commit1d43e24b946e99cb99839a7a9607db62224fb3fc
tree62c038fa065754577df6fa3c0b804fb9b8e025a2
parent37d7337361739adea69f42397f5f74f5730c7736
i.MX6: nand: add nandbcb command for imx

Writing/updating boot image in nand device is not
straight forward in i.MX6 platform and it requires
boot control block(BCB) to be configured.

It becomes difficult to use uboot 'nand' command to
write BCB since it requires platform specific attributes
need to be taken care of.

It is even difficult to use existing msx-nand.c driver by
incorporating BCB attributes like mxs_dma_desc does
because it requires change in mtd and nand command.

So, cmd_nandbcb implemented in arch/arm/mach-imx

BCB contains two data structures, Firmware Configuration Block(FCB)
and Discovered Bad Block Table(DBBT). FCB has nand timings,
DBBT search area, page address of firmware.

On summary, nandbcb update will
- erase the entire partition
- create BCB by creating 2 FCB/DBBT block followed by
  1 FW block based on partition size and erasesize.
- fill FCB/DBBT structures
- write FW/SPL on FW1
- write FCB/DBBT in first 2 blocks

for nand boot, up on reset bootrom look for FCB structure in
first block's if FCB found the nand timings are loaded for
further reads. once FCB read done, DTTB will load and finally
firmware will be loaded which is boot image.

Refer section "NAND Boot" from doc/imx/common/imx6.txt for more usage
information.

Reviewed-by: Stefano Babic <sbabic@denx.de>
Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
Signed-off-by: Shyam Saini <shyam.saini@amarulasolutions.com>
arch/arm/include/asm/mach-imx/imx-nandbcb.h [new file with mode: 0644]
arch/arm/mach-imx/Kconfig
arch/arm/mach-imx/Makefile
arch/arm/mach-imx/cmd_nandbcb.c [new file with mode: 0644]
drivers/mtd/nand/raw/mxs_nand.c
drivers/mtd/nand/raw/mxs_nand.h [deleted file]
drivers/mtd/nand/raw/mxs_nand_dt.c
drivers/mtd/nand/raw/mxs_nand_spl.c
include/mxs_nand.h [new file with mode: 0644]