diff options
author | Nikita Kiryanov <nikita@compulab.co.il> | 2015-07-30 23:56:23 +0300 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2015-08-12 20:48:05 -0400 |
commit | 8883ddafdeb398443870b7996a22cb65fd6d4bb4 (patch) | |
tree | c853ee1a0ff9a17a603678e6a02aa156eddd059f /arch | |
parent | 4eaf126e0634d9797c00ed2650e2d1396a4a69a2 (diff) | |
download | u-boot-imx-8883ddafdeb398443870b7996a22cb65fd6d4bb4.zip u-boot-imx-8883ddafdeb398443870b7996a22cb65fd6d4bb4.tar.gz u-boot-imx-8883ddafdeb398443870b7996a22cb65fd6d4bb4.tar.bz2 |
arm: am437x: Introduce new board cm-t43
Add initial support for CM-T43, an AM437x based SoM.
This support includes: serial, MMC/eMMC, NAND, USB, ETH, I2C, GPIO, DRAM
detection.
Cc: Tom Rini <trini@konsulko.com>
Cc: Albert Aribaud <albert.u.boot@aribaud.net>
Cc: Igor Grinberg <grinberg@compulab.co.il>
Signed-off-by: Nikita Kiryanov <nikita@compulab.co.il>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/Kconfig | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index e9a30b6..bd18e0a 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -643,6 +643,11 @@ config ARCH_SOCFPGA select DM_SPI_FLASH select DM_SPI +config TARGET_CM_T43 + bool "Support cm_t43" + select CPU_V7 + select SUPPORT_SPL + config ARCH_SUNXI bool "Support sunxi (Allwinner) SoCs" select CMD_USB @@ -902,6 +907,7 @@ source "board/broadcom/bcmcygnus/Kconfig" source "board/broadcom/bcmnsp/Kconfig" source "board/cirrus/edb93xx/Kconfig" source "board/compulab/cm_t335/Kconfig" +source "board/compulab/cm_t43/Kconfig" source "board/compulab/cm_fx6/Kconfig" source "board/congatec/cgtqmx6eval/Kconfig" source "board/creative/xfi3/Kconfig" |