Kconfig 986 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. menuconfig ARCH_SIRF
  2. bool "CSR SiRF"
  3. depends on ARCH_MULTI_V7
  4. select ARCH_HAS_RESET_CONTROLLER
  5. select RESET_CONTROLLER
  6. select GENERIC_IRQ_CHIP
  7. select GPIOLIB
  8. select NO_IOPORT_MAP
  9. select REGMAP
  10. select PINCTRL
  11. select PINCTRL_SIRF
  12. help
  13. Support for CSR SiRFprimaII/Marco/Polo platforms
  14. if ARCH_SIRF
  15. comment "CSR SiRF atlas6/primaII/Atlas7 Specific Features"
  16. config ARCH_ATLAS6
  17. bool "CSR SiRFSoC ATLAS6 ARM Cortex A9 Platform"
  18. default y
  19. select SIRF_IRQ
  20. help
  21. Support for CSR SiRFSoC ARM Cortex A9 Platform
  22. config ARCH_ATLAS7
  23. bool "CSR SiRFSoC ATLAS7 ARM Cortex A7 Platform"
  24. default y
  25. select ARM_GIC
  26. select ATLAS7_TIMER
  27. select HAVE_ARM_SCU if SMP
  28. select HAVE_SMP
  29. help
  30. Support for CSR SiRFSoC ARM Cortex A7 Platform
  31. config ARCH_PRIMA2
  32. bool "CSR SiRFSoC PRIMA2 ARM Cortex A9 Platform"
  33. default y
  34. select SIRF_IRQ
  35. select ZONE_DMA
  36. select PRIMA2_TIMER
  37. help
  38. Support for CSR SiRFSoC ARM Cortex A9 Platform
  39. config SIRF_IRQ
  40. bool
  41. endif