Kconfig 507 B

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