mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 23:47:24 +00:00
984639039f
The current name is inconsistent with SPL which uses CONFIG_SPL_TEXT_BASE and this makes it imposible to use CONFIG_VAL(). Rename it to resolve this problem. Signed-off-by: Simon Glass <sjg@chromium.org>
34 lines
620 B
Text
34 lines
620 B
Text
if ARCH_NPCM
|
|
|
|
config SYS_ARCH
|
|
default "arm"
|
|
|
|
config TEXT_BASE
|
|
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.
|
|
|
|
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.
|
|
|
|
endchoice
|
|
|
|
source "arch/arm/mach-npcm/npcm7xx/Kconfig"
|
|
source "arch/arm/mach-npcm/npcm8xx/Kconfig"
|
|
|
|
endif
|