Kconfig 851 B

12345678910111213141516171819202122232425262728293031323334
  1. #
  2. # (C) Copyright 2015
  3. # Texas Instruments Incorporated - http://www.ti.com/
  4. # SPDX-License-Identifier: GPL-2.0+
  5. #
  6. menu "Remote Processor drivers"
  7. # REMOTEPROC gets selected by drivers as needed
  8. # All users should depend on DM
  9. config REMOTEPROC
  10. bool
  11. depends on DM
  12. # Please keep the configuration alphabetically sorted.
  13. config REMOTEPROC_SANDBOX
  14. bool "Support for Test processor for Sandbox"
  15. select REMOTEPROC
  16. depends on DM
  17. depends on SANDBOX
  18. help
  19. Say 'y' here to add support for test processor which does dummy
  20. operations for sandbox platform.
  21. config REMOTEPROC_TI_POWER
  22. bool "Support for TI Power processor"
  23. select REMOTEPROC
  24. depends on DM
  25. depends on ARCH_KEYSTONE
  26. depends on OF_CONTROL
  27. help
  28. Say 'y' here to add support for TI power processors such as those
  29. found on certain TI keystone and OMAP generation SoCs.
  30. endmenu