aboutsummaryrefslogtreecommitdiff
path: root/board/freescale/ls1021aqds/ls1021aqds.c
diff options
context:
space:
mode:
authorAlison Wang <b18965@freescale.com>2016-02-02 15:16:23 +0800
committerYork Sun <york.sun@nxp.com>2016-02-24 08:40:56 -0800
commit70097027d299e3486831396d3c02e37dc6dff66d (patch)
treed85e57def95ab4c18cb08c93567278e9a0ca8fb4 /board/freescale/ls1021aqds/ls1021aqds.c
parentbbc8e053bad16366fc74943ce4c69a910c31b8b8 (diff)
downloadu-boot-70097027d299e3486831396d3c02e37dc6dff66d.zip
u-boot-70097027d299e3486831396d3c02e37dc6dff66d.tar.gz
u-boot-70097027d299e3486831396d3c02e37dc6dff66d.tar.bz2
arm: ls1021a: Add QSPI or IFC support in SD boot for LS1021AQDS board
As QSPI and IFC are pin-multiplexed on LS1021A, only IFC is supported in SD boot now. For the customer's demand, QSPI needs to be supported in SD boot too. This patch adds QSPI or IFC support in SD boot according to the corresponding defconfig. For detail, ls1021aqds_sdcard_ifc_defconfig is used to support IFC in SD boot and ls1021aqds_sdcard_qspi_defconfig is used to support QSPI in SD boot. Signed-off-by: Alison Wang <alison.wang@nxp.com> Reviewed-by: York Sun <york.sun@nxp.com>
Diffstat (limited to 'board/freescale/ls1021aqds/ls1021aqds.c')
-rw-r--r--board/freescale/ls1021aqds/ls1021aqds.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/board/freescale/ls1021aqds/ls1021aqds.c b/board/freescale/ls1021aqds/ls1021aqds.c
index 5f4ec9d..b43b379 100644
--- a/board/freescale/ls1021aqds/ls1021aqds.c
+++ b/board/freescale/ls1021aqds/ls1021aqds.c
@@ -61,7 +61,7 @@ enum {
int checkboard(void)
{
-#ifndef CONFIG_QSPI_BOOT
+#if !defined(CONFIG_QSPI_BOOT) && !defined(CONFIG_SD_BOOT_QSPI)
char buf[64];
#endif
#if !defined(CONFIG_SD_BOOT) && !defined(CONFIG_QSPI_BOOT)
@@ -90,7 +90,7 @@ int checkboard(void)
printf("invalid setting of SW%u\n", QIXIS_LBMAP_SWITCH);
#endif
-#ifndef CONFIG_QSPI_BOOT
+#if !defined(CONFIG_QSPI_BOOT) && !defined(CONFIG_SD_BOOT_QSPI)
printf("Sys ID:0x%02x, Sys Ver: 0x%02x\n",
QIXIS_READ(id), QIXIS_READ(arch));