Kconfig 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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. config INTERCONNECT_KUNIT_TEST
  20. tristate "KUnit tests for Interconnect framework"
  21. depends on KUNIT
  22. default KUNIT_ALL_TESTS
  23. help
  24. This builds the KUnit test suite for the generic system interconnect
  25. framework.
  26. The tests cover the core functionality of the interconnect subsystem,
  27. including provider/consumer APIs, topology management, and bandwidth
  28. aggregation logic.
  29. If unsure, say N.
  30. endif