Kconfig 923 B

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