Kconfig 833 B

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