diff options
author | Ye Li <ye.li@nxp.com> | 2016-07-01 16:40:27 +0800 |
---|---|---|
committer | Ye Li <ye.li@nxp.com> | 2016-07-19 16:05:53 +0800 |
commit | 56cb080858fde222522d41d4ffdf9afc0696d963 (patch) | |
tree | 6833fa760baf9f13d8bd7adf7075dea70061ce88 /arch | |
parent | 747e9c9980375ce79e2917ed39bbe159e88e10ca (diff) | |
download | u-boot-imx-56cb080858fde222522d41d4ffdf9afc0696d963.zip u-boot-imx-56cb080858fde222522d41d4ffdf9afc0696d963.tar.gz u-boot-imx-56cb080858fde222522d41d4ffdf9afc0696d963.tar.bz2 |
MLK-12988 imx: mx6ull Add board support for i.MX6ULL EVK
Add configs and board level codes for i.MX6ULL 14x14 EVK. Very similar
board from i.MX6UL EVK. I2C, UART, USB, QSPI, SD, ENET and LCD are ok
to work.
The codes for i.MX6ULL 9x9 EVK is kept. We will add 9x9 build target when
it is needed.
The DDR3 script is using version 1.2:
File: EVK_IMX6ULL_DDR3L_400MHz_512MB_16bit_V1.2_NewDRAM.inc
Test: 3 boards passed memtester.
Build target:
mx6ull_14x14_evk_defconfig
Signed-off-by: Ye Li <ye.li@nxp.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/cpu/armv7/mx6/Kconfig | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/arch/arm/cpu/armv7/mx6/Kconfig b/arch/arm/cpu/armv7/mx6/Kconfig index fae4bc4..44a3860 100644 --- a/arch/arm/cpu/armv7/mx6/Kconfig +++ b/arch/arm/cpu/armv7/mx6/Kconfig @@ -176,6 +176,18 @@ config TARGET_MX6ULL_DDR3_ARM2 select DM select DM_THERMAL +config TARGET_MX6ULL_14X14_EVK + bool "Support mx6ull_14x14_evk" + select MX6ULL + select DM + select DM_THERMAL + +config TARGET_MX6ULL_9X9_EVK + bool "Support mx6ull_9x9_evk" + select MX6ULL + select DM + select DM_THERMAL + config TARGET_SECOMX6 bool "secomx6 boards" @@ -224,6 +236,7 @@ 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/freescale/mx6ull_ddr3_arm2/Kconfig" +source "board/freescale/mx6ullevk/Kconfig" source "board/gateworks/gw_ventana/Kconfig" source "board/kosagi/novena/Kconfig" source "board/seco/Kconfig" |