From: Yangbo Lu Date: Fri, 15 Sep 2017 01:51:58 +0000 (+0800) Subject: armv8: ls1043a: disable IFC in SPL only when QSPI is used X-Git-Tag: v2017.11-rc1~45^2~2 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=3c7d647e11d6edcec66c83ac8197cca28f90fbf9;p=u-boot armv8: ls1043a: disable IFC in SPL only when QSPI is used Current u-boot disables IFC support for SD boot on all ls1043a boards. Actually IFC only conflicts with QSPI on ls1043a hardware. Only when QSPI is used, IFC should be disabled. Otherwise, the u-boot with ls1043aqds_sdcard_ifc_defconfig would not work. Signed-off-by: Yangbo Lu Reviewed-by: York Sun --- diff --git a/include/configs/ls1043a_common.h b/include/configs/ls1043a_common.h index 002830c27e..1f9efffa56 100644 --- a/include/configs/ls1043a_common.h +++ b/include/configs/ls1043a_common.h @@ -22,7 +22,7 @@ #if (defined(CONFIG_SPL_BUILD) && defined(CONFIG_NAND_BOOT)) #define SPL_NO_MMC #endif -#if (defined(CONFIG_SPL_BUILD) && defined(CONFIG_SD_BOOT)) +#if (defined(CONFIG_SPL_BUILD) && defined(CONFIG_SD_BOOT_QSPI)) #define SPL_NO_IFC #endif