diff options
author | Peng Fan <peng.fan@nxp.com> | 2016-03-04 16:08:30 +0800 |
---|---|---|
committer | Ye Li <ye.li@nxp.com> | 2016-03-25 15:20:00 +0800 |
commit | 72702903ed044b6cc5cce670e7389530c30301bd (patch) | |
tree | e2fe900be9fda3c81222da7356a33c6a9e8f9e8a /arch | |
parent | f39d809ef99c3727e17285c52df9cd01020bee65 (diff) | |
download | u-boot-imx-72702903ed044b6cc5cce670e7389530c30301bd.zip u-boot-imx-72702903ed044b6cc5cce670e7389530c30301bd.tar.gz u-boot-imx-72702903ed044b6cc5cce670e7389530c30301bd.tar.bz2 |
MLK-12486-2 imx6: Add i.mx6sx/ul arm2 boards
Add i.MX6SX/UL arm2 boards support.
Most code are from imx_v2015.04, but adapted to 2016.03 release.
Tested on mx6ul_14x14_ddr3_arm2 and mx6sx_19x19_ddr3_arm2.
Signed-off-by: Peng Fan <peng.fan@nxp.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/cpu/armv7/mx6/Kconfig | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/arch/arm/cpu/armv7/mx6/Kconfig b/arch/arm/cpu/armv7/mx6/Kconfig index 8827caa..ed90337 100644 --- a/arch/arm/cpu/armv7/mx6/Kconfig +++ b/arch/arm/cpu/armv7/mx6/Kconfig @@ -117,6 +117,30 @@ config TARGET_MX6UL_14X14_EVK select DM_THERMAL select SUPPORT_SPL +config TARGET_MX6UL_14X14_DDR3_ARM2 + bool "mx6ul_14x14_ddr3_arm2" + select MX6UL + select DM + select DM_THERMAL + +config TARGET_MX6UL_14X14_LPDDR2_ARM2 + bool "mx6ul_14x14_lpddr2_arm2" + select MX6UL + select DM + select DM_THERMAL + +config TARGET_MX6SX_17X17_ARM2 + bool "mx6sx_17x17_arm2" + select MX6SX + select DM + select DM_THERMAL + +config TARGET_MX6SX_19X19_ARM2 + bool "mx6sx_19x19_arm2" + select MX6SX + select DM + select DM_THERMAL + config TARGET_NITROGEN6X bool "nitrogen6x" @@ -175,6 +199,10 @@ source "board/freescale/mx6slevk/Kconfig" source "board/freescale/mx6sxsabresd/Kconfig" source "board/freescale/mx6sxsabreauto/Kconfig" source "board/freescale/mx6ul_14x14_evk/Kconfig" +source "board/freescale/mx6sx_17x17_arm2/Kconfig" +source "board/freescale/mx6sx_19x19_arm2/Kconfig" +source "board/freescale/mx6ul_14x14_ddr3_arm2/Kconfig" +source "board/freescale/mx6ul_14x14_lpddr2_arm2/Kconfig" source "board/gateworks/gw_ventana/Kconfig" source "board/kosagi/novena/Kconfig" source "board/seco/Kconfig" |