u-boot-brain/arch/arm/mach-owl/Kconfig
Amit Singh Tomar 78e4f4594d arm: add support Actions Semi S700
This patch adds basic support for Actions Semi based S700
SoC, which is driven by common owl framework.

Reviewed-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
Reviewed-by: Andre Przywara <andre.przywara@arm.com>
Signed-off-by: Amit Singh Tomar <amittomer25@gmail.com>
2020-04-24 16:40:09 -04:00

28 lines
443 B
Plaintext

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 SYS_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