diff options
author | Jonathan Neuschäfer <j.neuschaefer@gmx.net> | 2021-04-06 14:09:16 +0200 |
---|---|---|
committer | Joel Stanley <joel@jms.id.au> | 2021-04-09 06:41:22 +0200 |
commit | ece3fe93e8f4d0c9322b8ca24a250ea9292052fb (patch) | |
tree | 551174adccaf7d8f244798a7144ad83851e33566 /arch/arm/mach-npcm/Kconfig | |
parent | dt-bindings: watchdog: npcm: Add nuvoton,wpcm450-wdt (diff) | |
download | linux-ece3fe93e8f4d0c9322b8ca24a250ea9292052fb.tar.xz linux-ece3fe93e8f4d0c9322b8ca24a250ea9292052fb.zip |
ARM: npcm: Introduce Nuvoton WPCM450 SoC
The WPCM450 is an older BMC SoC in the Nuvoton NPCM family, originally
marketed as Winbond WPCM450.
Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
Reviewed-by: Joel Stanley <joel@jms.id.au>
Link: https://lore.kernel.org/r/20210406120921.2484986-6-j.neuschaefer@gmx.net
Signed-off-by: Joel Stanley <joel@jms.id.au>
Diffstat (limited to 'arch/arm/mach-npcm/Kconfig')
-rw-r--r-- | arch/arm/mach-npcm/Kconfig | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/arch/arm/mach-npcm/Kconfig b/arch/arm/mach-npcm/Kconfig index 7f7002dc2b21..658c8efb4ca1 100644 --- a/arch/arm/mach-npcm/Kconfig +++ b/arch/arm/mach-npcm/Kconfig @@ -1,11 +1,21 @@ # SPDX-License-Identifier: GPL-2.0-only menuconfig ARCH_NPCM bool "Nuvoton NPCM Architecture" - depends on ARCH_MULTI_V7 + depends on ARCH_MULTI_V5 || ARCH_MULTI_V7 select PINCTRL if ARCH_NPCM +config ARCH_WPCM450 + bool "Support for WPCM450 BMC (Hermon)" + depends on ARCH_MULTI_V5 + select CPU_ARM926T + select NPCM7XX_TIMER + help + General support for WPCM450 BMC (Hermon). + + Winbond/Nuvoton WPCM450 BMC based on the ARM926EJ-S. + config ARCH_NPCM7XX bool "Support for NPCM7xx BMC (Poleg)" depends on ARCH_MULTI_V7 |