From e94aa4f5e614330f7e26a56f66b8cb03391c044e Mon Sep 17 00:00:00 2001 From: Ezra Savard Date: Tue, 1 Jul 2014 11:48:07 -0700 Subject: [PATCH] zynq: Resolve offset conflict in SPL QSPI boot Existing offset for u-boot.img (CONFIG_SYS_SPI_U_BOOT_OFFS) is 0x100000, which conflicts with the expected offset for uImage. Moving CONFIG_SYS_SPI_U_BOOT_OFFS to 0x80000 resolves the conflict with minimal impact and still allows sufficient space for boot.bin and u-boot.img when using the U-Boot SPL flow. Signed-off-by: Ezra Savard Signed-off-by: Michal Simek --- include/configs/zynq-common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/configs/zynq-common.h b/include/configs/zynq-common.h index 08984a7df70..c028509a59c 100644 --- a/include/configs/zynq-common.h +++ b/include/configs/zynq-common.h @@ -437,7 +437,7 @@ #define CONFIG_SPL_SPI_LOAD #define CONFIG_SPL_SPI_FLASH_SUPPORT #define CONFIG_SPL_SPI_BUS 0 -#define CONFIG_SYS_SPI_U_BOOT_OFFS 0x100000 +#define CONFIG_SYS_SPI_U_BOOT_OFFS 0x80000 #define CONFIG_SPL_SPI_CS 0 #endif -- 2.47.3