Kconfig 690 B

12345678910111213141516171819202122232425262728293031323334353637
  1. if ARCH_SIRF
  2. menu "CSR SiRF atlas6/primaII/Marco/Polo Specific Features"
  3. config ARCH_ATLAS6
  4. bool "CSR SiRFSoC ATLAS6 ARM Cortex A9 Platform"
  5. default y
  6. select CPU_V7
  7. select SIRF_IRQ
  8. help
  9. Support for CSR SiRFSoC ARM Cortex A9 Platform
  10. config ARCH_PRIMA2
  11. bool "CSR SiRFSoC PRIMA2 ARM Cortex A9 Platform"
  12. default y
  13. select CPU_V7
  14. select SIRF_IRQ
  15. select ZONE_DMA
  16. help
  17. Support for CSR SiRFSoC ARM Cortex A9 Platform
  18. config ARCH_MARCO
  19. bool "CSR SiRFSoC MARCO ARM Cortex A9 Platform"
  20. default y
  21. select ARM_GIC
  22. select CPU_V7
  23. select HAVE_SMP
  24. select SMP_ON_UP
  25. help
  26. Support for CSR SiRFSoC ARM Cortex A9 Platform
  27. endmenu
  28. config SIRF_IRQ
  29. bool
  30. endif