summaryrefslogtreecommitdiffstats
path: root/arch/arm/cpu/armv7/ls102xa
diff options
context:
space:
mode:
authorAlison Wang <b18965@freescale.com>2014-12-26 13:14:01 +0800
committerYork Sun <yorksun@freescale.com>2015-01-23 22:29:14 -0600
commit33d2e46591ef9e7805cfea8ed880d20b7bbcee7e (patch)
tree1b1a43af192020524508deaf7513b65d14ad9312 /arch/arm/cpu/armv7/ls102xa
parent7df50fd323187568aa61f84db816aa23709065bd (diff)
downloadblackbird-obmc-uboot-33d2e46591ef9e7805cfea8ed880d20b7bbcee7e.tar.gz
blackbird-obmc-uboot-33d2e46591ef9e7805cfea8ed880d20b7bbcee7e.zip
ls102xa: fdt: Disable QSPI and DSPI in NOR/NAND/SD boot
As QSPI/DSPI and IFC are pin multiplexed, QSPI and DSPI are only enabled in QSPI boot, and disabled in other boot modes. IFC is enabled in NOR/NAND/SD boot, and disabled in QSPI boot. This patch will add fdt support for the above rules. Signed-off-by: Alison Wang <alison.wang@freescale.com> Reviewed-by: York Sun <yorksun@freescale.com>
Diffstat (limited to 'arch/arm/cpu/armv7/ls102xa')
-rw-r--r--arch/arm/cpu/armv7/ls102xa/fdt.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/arch/arm/cpu/armv7/ls102xa/fdt.c b/arch/arm/cpu/armv7/ls102xa/fdt.c
index 0fda694bdd..e0288b8c3f 100644
--- a/arch/arm/cpu/armv7/ls102xa/fdt.c
+++ b/arch/arm/cpu/armv7/ls102xa/fdt.c
@@ -150,4 +150,17 @@ void ft_cpu_setup(void *blob, bd_t *bd)
do_fixup_by_compat_u32(blob, "fsl, ls1021a-flexcan",
"clock-frequency", busclk / 2, 1);
+
+#ifdef CONFIG_QSPI_BOOT
+ off = fdt_node_offset_by_compat_reg(blob, FSL_IFC_COMPAT,
+ CONFIG_SYS_IFC_ADDR);
+ fdt_set_node_status(blob, off, FDT_STATUS_DISABLED, 0);
+#else
+ off = fdt_node_offset_by_compat_reg(blob, FSL_QSPI_COMPAT,
+ QSPI0_BASE_ADDR);
+ fdt_set_node_status(blob, off, FDT_STATUS_DISABLED, 0);
+ off = fdt_node_offset_by_compat_reg(blob, FSL_DSPI_COMPAT,
+ DSPI1_BASE_ADDR);
+ fdt_set_node_status(blob, off, FDT_STATUS_DISABLED, 0);
+#endif
}
OpenPOWER on IntegriCloud