u-boot/arch/arm/mach-owl/Kconfig
Simon Glass 984639039f Rename CONFIG_SYS_TEXT_BASE to CONFIG_TEXT_BASE
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>
2022-10-31 11:01:31 -04:00

27 lines
439 B
Text

if ARCH_OWL
choice
prompt "Actions Semi Owl SoC Variant"
optional
config MACH_S900
bool "Actions Semi S900 SoC"
select ARM64
config MACH_S700
bool "Actions Semi S700 SoC"
select ARM64
endchoice
config TEXT_BASE
default 0x11000000
config SYS_CONFIG_NAME
default "owl-common"
config SYS_SOC
default "s900" if MACH_S900
default "s700" if MACH_S700
endif