Kconfig 738 B

12345678910111213141516171819202122232425262728
  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. menuconfig INTERCONNECT_TEST
  11. tristate "Debugfs test"
  12. depends on DEBUG_FS
  13. help
  14. Expose the interconnect API to userspace for testing purposes. This
  15. will create /sys/kernel/debug/interconnect-test to allow requesting
  16. bandwidth between endpoints.
  17. If unsure, say no.
  18. source "drivers/interconnect/imx/Kconfig"
  19. source "drivers/interconnect/qcom/Kconfig"
  20. source "drivers/interconnect/samsung/Kconfig"
  21. endif