Kconfig 859 B

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