Kconfig 630 B

12345678910111213141516171819202122232425
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. menuconfig INTERCONNECT
  3. bool "On-Chip Interconnect management support"
  4. help
  5. Support for management of the on-chip interconnects.
  6. This framework is designed to provide a generic interface for
  7. managing the interconnects in a SoC.
  8. If unsure, say no.
  9. if INTERCONNECT
  10. source "drivers/interconnect/imx/Kconfig"
  11. source "drivers/interconnect/mediatek/Kconfig"
  12. source "drivers/interconnect/qcom/Kconfig"
  13. source "drivers/interconnect/samsung/Kconfig"
  14. config INTERCONNECT_CLK
  15. tristate
  16. depends on COMMON_CLK
  17. help
  18. Support for wrapping clocks into the interconnect nodes.
  19. endif