2022-04-19 05:32:19 +00:00
|
|
|
if ARCH_NPCM
|
|
|
|
|
|
|
|
config SYS_ARCH
|
|
|
|
default "arm"
|
|
|
|
|
2022-10-21 00:22:39 +00:00
|
|
|
config TEXT_BASE
|
2022-04-19 05:32:19 +00:00
|
|
|
default 0x8000
|
|
|
|
|
|
|
|
choice
|
|
|
|
prompt "Nuvoton SoC select"
|
|
|
|
default ARCH_NPCM7xx
|
|
|
|
|
|
|
|
config ARCH_NPCM7xx
|
|
|
|
bool "Support Nuvoton NPCM7xx SoC"
|
|
|
|
select CPU_V7A
|
|
|
|
select OF_CONTROL
|
|
|
|
select DM
|
|
|
|
help
|
|
|
|
General support for NPCM7xx BMC (Poleg).
|
|
|
|
Nuvoton NPCM7xx BMC is based on the Cortex A9.
|
|
|
|
|
2022-09-27 08:45:15 +00:00
|
|
|
config ARCH_NPCM8XX
|
|
|
|
bool "Support Nuvoton NPCM8xx SoC"
|
|
|
|
select ARM64
|
|
|
|
help
|
|
|
|
General support for NPCM8xx BMC (Arbel).
|
|
|
|
Nuvoton NPCM8xx BMC is based on the Cortex A35.
|
|
|
|
|
2022-04-19 05:32:19 +00:00
|
|
|
endchoice
|
|
|
|
|
|
|
|
source "arch/arm/mach-npcm/npcm7xx/Kconfig"
|
2022-09-27 08:45:15 +00:00
|
|
|
source "arch/arm/mach-npcm/npcm8xx/Kconfig"
|
2022-04-19 05:32:19 +00:00
|
|
|
|
|
|
|
endif
|