Kconfig 443 B

123456789101112131415161718192021222324252627
  1. if ARCH_OWL
  2. choice
  3. prompt "Actions Semi Owl SoC Variant"
  4. optional
  5. config MACH_S900
  6. bool "Actions Semi S900 SoC"
  7. select ARM64
  8. config MACH_S700
  9. bool "Actions Semi S700 SoC"
  10. select ARM64
  11. endchoice
  12. config SYS_TEXT_BASE
  13. default 0x11000000
  14. config SYS_CONFIG_NAME
  15. default "owl-common"
  16. config SYS_SOC
  17. default "s900" if MACH_S900
  18. default "s700" if MACH_S700
  19. endif