diff options
author | Usama Arif <usama.arif@arm.com> | 2020-08-12 16:12:53 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-08-24 14:11:31 -0400 |
commit | 565add124de00c994652a0d2d6d1eb6b2a7c9553 (patch) | |
tree | 5c89010de62d46784c979d8cb79b49d3548a655d /arch/arm/Kconfig | |
parent | e61b41517d2a91080f6416fdfb46efab9e5a55b4 (diff) | |
download | u-boot-565add124de00c994652a0d2d6d1eb6b2a7c9553.zip u-boot-565add124de00c994652a0d2d6d1eb6b2a7c9553.tar.gz u-boot-565add124de00c994652a0d2d6d1eb6b2a7c9553.tar.bz2 |
board: armltd: Add support for Total Compute platform
Total Compute is based on ARM architecture and has
the following features enabled in u-boot:
- PL011 UART
- PL180 MMC
- NOR Flash
- FIT image with Signature
- AVB
Signed-off-by: Usama Arif <usama.arif@arm.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'arch/arm/Kconfig')
-rw-r--r-- | arch/arm/Kconfig | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 9b8dadc..c5ebd59 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -1198,6 +1198,15 @@ config TARGET_VEXPRESS64_JUNO select USB select DM_USB +config TARGET_TOTAL_COMPUTE + bool "Support Total Compute Platform" + select ARM64 + select PL01X_SERIAL + select DM + select DM_SERIAL + select DM_MMC + select DM_GPIO + config TARGET_LS2080A_EMU bool "Support ls2080a_emu" select ARCH_LS2080A @@ -1904,6 +1913,8 @@ source "arch/arm/mach-imx/Kconfig" source "arch/arm/mach-nexell/Kconfig" +source "board/armltd/total_compute/Kconfig" + source "board/bosch/shc/Kconfig" source "board/bosch/guardian/Kconfig" source "board/CarMediaLab/flea3/Kconfig" |