Kconfig 749 B

123456789101112131415161718192021222324252627282930313233343536
  1. if ARCH_DOVE
  2. menu "Marvell Dove Implementations"
  3. config DOVE_LEGACY
  4. bool
  5. config MACH_DOVE_DB
  6. bool "Marvell DB-MV88AP510 Development Board"
  7. select DOVE_LEGACY
  8. select I2C_BOARDINFO
  9. help
  10. Say 'Y' here if you want your kernel to support the
  11. Marvell DB-MV88AP510 Development Board.
  12. config MACH_CM_A510
  13. bool "CompuLab CM-A510 Board"
  14. select DOVE_LEGACY
  15. help
  16. Say 'Y' here if you want your kernel to support the
  17. CompuLab CM-A510 Board.
  18. config MACH_DOVE_DT
  19. bool "Marvell Dove Flattened Device Tree"
  20. select MVEBU_CLK_CORE
  21. select MVEBU_CLK_GATING
  22. select REGULATOR
  23. select REGULATOR_FIXED_VOLTAGE
  24. select USE_OF
  25. help
  26. Say 'Y' here if you want your kernel to support the
  27. Marvell Dove using flattened device tree.
  28. endmenu
  29. endif