Kconfig 552 B

123456789101112131415161718192021222324252627282930313233
  1. #
  2. # SPEAr Platform configuration file
  3. #
  4. if PLAT_SPEAR
  5. choice
  6. prompt "ST SPEAr Family"
  7. default ARCH_SPEAR3XX
  8. config ARCH_SPEAR3XX
  9. bool "ST SPEAr3xx with Device Tree"
  10. select ARM_VIC
  11. select CPU_ARM926T
  12. select USE_OF
  13. select PINCTRL
  14. help
  15. Supports for ARM's SPEAR3XX family
  16. config ARCH_SPEAR6XX
  17. bool "SPEAr6XX"
  18. select ARM_VIC
  19. select CPU_ARM926T
  20. help
  21. Supports for ARM's SPEAR6XX family
  22. endchoice
  23. # Adding SPEAr machine specific configuration files
  24. source "arch/arm/mach-spear3xx/Kconfig"
  25. source "arch/arm/mach-spear6xx/Kconfig"
  26. endif