Kconfig 1001 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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 CPU_V7
  27. select ATLAS7_TIMER
  28. select HAVE_ARM_SCU if SMP
  29. select HAVE_SMP
  30. help
  31. Support for CSR SiRFSoC ARM Cortex A7 Platform
  32. config ARCH_PRIMA2
  33. bool "CSR SiRFSoC PRIMA2 ARM Cortex A9 Platform"
  34. default y
  35. select SIRF_IRQ
  36. select ZONE_DMA
  37. select PRIMA2_TIMER
  38. help
  39. Support for CSR SiRFSoC ARM Cortex A9 Platform
  40. config SIRF_IRQ
  41. bool
  42. endif