Kconfig 878 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. config ARCH_MVEBU
  2. bool "Marvell SOCs with Device Tree support" if ARCH_MULTI_V7
  3. select CLKSRC_MMIO
  4. select COMMON_CLK
  5. select GENERIC_CLOCKEVENTS
  6. select GENERIC_IRQ_CHIP
  7. select IRQ_DOMAIN
  8. select MULTI_IRQ_HANDLER
  9. select PINCTRL
  10. select PLAT_ORION
  11. select SPARSE_IRQ
  12. if ARCH_MVEBU
  13. menu "Marvell SOC with device tree"
  14. config MACH_ARMADA_370_XP
  15. bool
  16. select ARMADA_370_XP_TIMER
  17. select CPU_V7
  18. config MACH_ARMADA_370
  19. bool "Marvell Armada 370 boards"
  20. select MACH_ARMADA_370_XP
  21. select PINCTRL_ARMADA_370
  22. help
  23. Say 'Y' here if you want your kernel to support boards based
  24. on the Marvell Armada 370 SoC with device tree.
  25. config MACH_ARMADA_XP
  26. bool "Marvell Armada XP boards"
  27. select MACH_ARMADA_370_XP
  28. select PINCTRL_ARMADA_XP
  29. help
  30. Say 'Y' here if you want your kernel to support boards based
  31. on the Marvell Armada XP SoC with device tree.
  32. endmenu
  33. endif