diff options
author | Lokesh Vutla <lokeshvutla@ti.com> | 2018-08-27 13:27:08 +0300 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-09-11 15:32:55 +0300 |
commit | 586bde93eb14652c48f007a80f91c79b30c94a61 (patch) | |
tree | e58f977ad87a31d6f2b8d4d20eb1b4861855cf5f /arch/arm/Kconfig | |
parent | 7e2951160faa73dc27dcd1fb935e462ca9a4c189 (diff) | |
download | u-boot-586bde93eb14652c48f007a80f91c79b30c94a61.tar.xz |
arm: K3: Add initial support for TI's K3 generation of SoCs
Add support for Texas Instruments' K3 Generation Processor
families.
Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'arch/arm/Kconfig')
-rw-r--r-- | arch/arm/Kconfig | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index b71160573a..0f8dd32bdd 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -646,6 +646,12 @@ config ARCH_KEYSTONE imply CMD_SAVES imply FIT +config ARCH_K3 + bool "Texas Instruments' K3 Architecture" + select SPL + select SUPPORT_SPL + select FIT + config ARCH_OMAP2PLUS bool "TI OMAP2+" select CPU_V7A @@ -1377,6 +1383,8 @@ source "arch/arm/mach-highbank/Kconfig" source "arch/arm/mach-integrator/Kconfig" +source "arch/arm/mach-k3/Kconfig" + source "arch/arm/mach-keystone/Kconfig" source "arch/arm/mach-kirkwood/Kconfig" |