Kconfig 808 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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_SPEAR13XX
  9. bool "ST SPEAr13xx with Device Tree"
  10. select ARM_GIC
  11. select CPU_V7
  12. select HAVE_SMP
  13. select MIGHT_HAVE_CACHE_L2X0
  14. select PINCTRL
  15. select USE_OF
  16. help
  17. Supports for ARM's SPEAR13XX family
  18. config ARCH_SPEAR3XX
  19. bool "ST SPEAr3xx with Device Tree"
  20. select ARM_VIC
  21. select CPU_ARM926T
  22. select PINCTRL
  23. select USE_OF
  24. help
  25. Supports for ARM's SPEAR3XX family
  26. config ARCH_SPEAR6XX
  27. bool "SPEAr6XX"
  28. select ARM_VIC
  29. select CPU_ARM926T
  30. help
  31. Supports for ARM's SPEAR6XX family
  32. endchoice
  33. # Adding SPEAr machine specific configuration files
  34. source "arch/arm/mach-spear13xx/Kconfig"
  35. source "arch/arm/mach-spear3xx/Kconfig"
  36. source "arch/arm/mach-spear6xx/Kconfig"
  37. endif