diff options
author | Igor Opaniuk <igor.opaniuk@toradex.com> | 2019-11-03 16:49:44 +0100 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2019-11-03 21:49:28 +0100 |
commit | dad30dd72bd137cc61168409bc6d1fe7f22bedfb (patch) | |
tree | 477f3140ed323cdf4f8840117a01b983df39fe8a /arch/arm/mach-imx/Kconfig | |
parent | 9ab5f221a5e2b79ec98efa6b44f7e3d03c518bf8 (diff) | |
download | u-boot-dad30dd72bd137cc61168409bc6d1fe7f22bedfb.tar.gz |
imx: nandbcb: add support for i.MX7
Add support for updating FCB/DBBT on i.MX7:
- additional new fields in FCB structure
- Leverage hardware BCH/randomizer for writing FCB
Signed-off-by: Igor Opaniuk <igor.opaniuk@toradex.com>
Tested-by: Max Krummenacher <max.krummenacher@toradex.com>
Reviewed-by: Oleksandr Suvorov <oleksandr.suvorov@toradex.com>
Diffstat (limited to 'arch/arm/mach-imx/Kconfig')
-rw-r--r-- | arch/arm/mach-imx/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-imx/Kconfig b/arch/arm/mach-imx/Kconfig index 4a2f39b110..3f93fe5174 100644 --- a/arch/arm/mach-imx/Kconfig +++ b/arch/arm/mach-imx/Kconfig @@ -82,7 +82,7 @@ config CMD_NANDBCB bool "i.MX6 NAND Boot Control Block(BCB) command" depends on NAND && CMD_MTDPARTS select BCH if MX6UL || MX6ULL - default y if ARCH_MX6 && NAND_MXS + default y if (ARCH_MX6 && NAND_MXS) || (ARCH_MX7 && NAND_MXS) help Unlike normal 'nand write/erase' commands, this command update Boot Control Block(BCB) for i.MX6 platform NAND IP's. |