diff options
author | Ye Li <ye.li@nxp.com> | 2016-11-17 17:43:07 +0800 |
---|---|---|
committer | Ye Li <ye.li@nxp.com> | 2016-11-22 17:49:34 +0800 |
commit | bd771e4337927fb8de90b06c84b22d5b2d96f787 (patch) | |
tree | c97a3c987c745a1051fe63cc05d40d184bab0e16 /configs | |
parent | 444a28ad595b0e787ed88f1ec828d1a32fd65ee4 (diff) | |
download | u-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 'configs')
-rw-r--r-- | configs/mx7ulp_evk_defconfig | 10 | ||||
-rw-r--r-- | configs/mx7ulp_evk_emmc_defconfig | 10 | ||||
-rw-r--r-- | configs/mx7ulp_evk_m4boot_defconfig | 10 |
3 files changed, 30 insertions, 0 deletions
diff --git a/configs/mx7ulp_evk_defconfig b/configs/mx7ulp_evk_defconfig new file mode 100644 index 0000000..8256819 --- /dev/null +++ b/configs/mx7ulp_evk_defconfig @@ -0,0 +1,10 @@ +CONFIG_SYS_EXTRA_OPTIONS="IMX_CONFIG=board/freescale/mx7ulp_evk/imximage.cfg" +CONFIG_ARM=y +CONFIG_ARCH_MX7ULP=y +CONFIG_TARGET_MX7ULP_EVK=y +CONFIG_SYS_MALLOC_F=y +CONFIG_SYS_MALLOC_F_LEN=0x400 +CONFIG_DM=y +CONFIG_DM_SERIAL=y +CONFIG_DM_GPIO=y +CONFIG_IMX_RGPIO2P=y diff --git a/configs/mx7ulp_evk_emmc_defconfig b/configs/mx7ulp_evk_emmc_defconfig new file mode 100644 index 0000000..0fe2250 --- /dev/null +++ b/configs/mx7ulp_evk_emmc_defconfig @@ -0,0 +1,10 @@ +CONFIG_SYS_EXTRA_OPTIONS="IMX_CONFIG=board/freescale/mx7ulp_evk/imximage.cfg,MX7ULP_EVK_EMMC" +CONFIG_ARM=y +CONFIG_ARCH_MX7ULP=y +CONFIG_TARGET_MX7ULP_EVK=y +CONFIG_SYS_MALLOC_F=y +CONFIG_SYS_MALLOC_F_LEN=0x400 +CONFIG_DM=y +CONFIG_DM_SERIAL=y +CONFIG_DM_GPIO=y +CONFIG_IMX_RGPIO2P=y diff --git a/configs/mx7ulp_evk_m4boot_defconfig b/configs/mx7ulp_evk_m4boot_defconfig new file mode 100644 index 0000000..d4d3f40 --- /dev/null +++ b/configs/mx7ulp_evk_m4boot_defconfig @@ -0,0 +1,10 @@ +CONFIG_SYS_EXTRA_OPTIONS="IMX_CONFIG=board/freescale/mx7ulp_evk/imximage.cfg,IMX_M4_BIND" +CONFIG_ARM=y +CONFIG_ARCH_MX7ULP=y +CONFIG_TARGET_MX7ULP_EVK=y +CONFIG_SYS_MALLOC_F=y +CONFIG_SYS_MALLOC_F_LEN=0x400 +CONFIG_DM=y +CONFIG_DM_SERIAL=y +CONFIG_DM_GPIO=y +CONFIG_IMX_RGPIO2P=y |