summaryrefslogtreecommitdiff
path: root/arch/arm/mach-owl/Kconfig
blob: 76d3998884d5953c121e3d797b34bfd1c25af711 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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