summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorYangbo Lu <[email protected]>2017-09-15 09:51:58 +0800
committerYork Sun <[email protected]>2017-09-22 12:49:30 -0700
commit3c7d647e11d6edcec66c83ac8197cca28f90fbf9 (patch)
treef14ab6b6076d2c32a44511d2a73edbad0e55c35b /include
parentb5dfd47581b82a8cbe423c0060f0641ae0f5c1b5 (diff)
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 <[email protected]> Reviewed-by: York Sun <[email protected]>
Diffstat (limited to 'include')
-rw-r--r--include/configs/ls1043a_common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/ls1043a_common.h b/include/configs/ls1043a_common.h
index 002830c27e4..1f9efffa562 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