diff options
author | Adam Ford <aford173@gmail.com> | 2019-01-12 17:24:52 -0600 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2019-02-15 12:40:02 +0100 |
commit | 64f8340d624eb7293cdba37bb727ccc8ba283bba (patch) | |
tree | 854e4a72acc53c498b7b831bc59514e873069b07 /include/configs | |
parent | 5645df9e00a01407730dc11d3a2bc4969203dc8c (diff) | |
download | u-boot-64f8340d624eb7293cdba37bb727ccc8ba283bba.tar.gz u-boot-64f8340d624eb7293cdba37bb727ccc8ba283bba.tar.xz u-boot-64f8340d624eb7293cdba37bb727ccc8ba283bba.zip |
ARM: imx6q_logic: Enable SPL Booting from NAND
This patch fixes a few values that were incorrect, and this
now lets SPL boot from NAND.
Signed-off-by: Adam Ford <aford173@gmail.com>
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/imx6_logic.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/configs/imx6_logic.h b/include/configs/imx6_logic.h index e55941408c..70cc63fc1b 100644 --- a/include/configs/imx6_logic.h +++ b/include/configs/imx6_logic.h @@ -144,6 +144,8 @@ #define CONFIG_SYS_NAND_U_BOOT_START CONFIG_SYS_TEXT_BASE #define CONFIG_SYS_NAND_U_BOOT_OFFS 0x200000 #define CONFIG_SYS_NAND_SPL_KERNEL_OFFS 0x00500000 +#define CONFIG_SYS_NAND_USE_FLASH_BBT + /* MTD device */ /* DMA stuff, needed for GPMI/MXS NAND support */ @@ -162,7 +164,7 @@ /* Falcon Mode */ #define CONFIG_SPL_FS_LOAD_ARGS_NAME "args" #define CONFIG_SPL_FS_LOAD_KERNEL_NAME "uImage" -#define CONFIG_SYS_SPL_ARGS_ADDR 0x15000000 +#define CONFIG_SYS_SPL_ARGS_ADDR 0x18000000 /* Falcon Mode - MMC support: args@1MB kernel@2MB */ #define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTOR 0x800 /* 1MB */ |