diff options
author | Yang Xiwen <forbidden405@outlook.com> | 2023-04-01 19:17:33 +0800 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-05-03 09:05:24 -0400 |
commit | e90711f0e93ebe5350892907978565c51ec544a2 (patch) | |
tree | fd6d026f098a4574f812529024eae295aa97a48c /arch/arm/Kconfig | |
parent | 7a3ee61f55518106e61179eb44579087a871cf26 (diff) | |
download | u-boot-e90711f0e93ebe5350892907978565c51ec544a2.zip u-boot-e90711f0e93ebe5350892907978565c51ec544a2.tar.gz u-boot-e90711f0e93ebe5350892907978565c51ec544a2.tar.bz2 |
arm: add support for Hisilicon HiSTB family SoCs
First supported chip is hi3798mv200 (which is similar to Hi3798cv200
used by poplar).
Signed-off-by: Yang Xiwen <forbidden405@outlook.com>
Diffstat (limited to 'arch/arm/Kconfig')
-rw-r--r-- | arch/arm/Kconfig | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index fdb24d6..99264a6 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -578,6 +578,16 @@ config ARCH_DAVINCI help Support for TI's DaVinci platform. +config ARCH_HISTB + bool "Hisilicon HiSTB SoCs" + select DM + select DM_SERIAL + select OF_CONTROL + select PL01X_SERIAL + imply CMD_DM + help + Support for HiSTB SoCs. + config ARCH_KIRKWOOD bool "Marvell Kirkwood" select ARCH_MISC_INIT @@ -2174,6 +2184,8 @@ source "arch/arm/mach-hpe/gxp/Kconfig" source "arch/arm/mach-highbank/Kconfig" +source "arch/arm/mach-histb/Kconfig" + source "arch/arm/mach-integrator/Kconfig" source "arch/arm/mach-ipq40xx/Kconfig" |