summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorYe Li <ye.li@nxp.com>2016-11-17 17:43:07 +0800
committerYe Li <ye.li@nxp.com>2016-11-22 17:49:34 +0800
commitbd771e4337927fb8de90b06c84b22d5b2d96f787 (patch)
treec97a3c987c745a1051fe63cc05d40d184bab0e16 /arch
parent444a28ad595b0e787ed88f1ec828d1a32fd65ee4 (diff)
downloadu-boot-imx-bd771e4337927fb8de90b06c84b22d5b2d96f787.zip
u-boot-imx-bd771e4337927fb8de90b06c84b22d5b2d96f787.tar.gz
u-boot-imx-bd771e4337927fb8de90b06c84b22d5b2d96f787.tar.bz2
MLK-13450-19 imx: mx7ulp_evk: Add EVK boards support codes
Add basic support for i.MX7ULP EVK board. I2C, SD/eMMC, UART, QSPI and USB are added. Use target mx7ulp_evk_config to select the configuration. Use mx7ulp_evk_emmc_config for eMMC boot. Use mx7ulp_evk_m4boot_config for binding and booting m4 image in single boot mode. Signed-off-by: Ye Li <ye.li@nxp.com> Signed-off-by: Han Xu <han.xu@nxp.com> Signed-off-by: Shenwei Wang <shenwei.wang@nxp.com>
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/cpu/armv7/mx7ulp/Kconfig11
1 files changed, 11 insertions, 0 deletions
diff --git a/arch/arm/cpu/armv7/mx7ulp/Kconfig b/arch/arm/cpu/armv7/mx7ulp/Kconfig
index 841afc5..6909fea 100644
--- a/arch/arm/cpu/armv7/mx7ulp/Kconfig
+++ b/arch/arm/cpu/armv7/mx7ulp/Kconfig
@@ -4,8 +4,19 @@ config MX7ULP
bool
select ROM_UNIFIED_SECTIONS
+choice
+ prompt "MX7ULP board select"
+ optional
+
+config TARGET_MX7ULP_EVK
+ bool "Support mx7ulp EVK board"
+ select MX7ULP
+
+endchoice
+
config SYS_SOC
default "mx7ulp"
+source "board/freescale/mx7ulp_evk/Kconfig"
endif