Kconfig 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. #
  2. # Xtensa Remote Processing kernel driver
  3. #
  4. config XRP
  5. tristate "XRP driver"
  6. help
  7. This is the core of Cadence Xtensa Remote Processing driver.
  8. It should be enabled to support applications communicating with
  9. Xtensa DSPs through the XRP API.
  10. If unsure, say N.
  11. To compile this driver as a module, choose M here: the
  12. module will be called xrp.
  13. config XRP_DEBUG
  14. bool "Debug XRP"
  15. depends on XRP
  16. help
  17. This enables verbose debug output of the XRP driver.
  18. If unsure, say N.
  19. config XRP_HW_SIMPLE
  20. tristate "XRP for simple hardware"
  21. depends on XRP
  22. help
  23. This is hardware-specific XRP kernel driver for the simple
  24. hardware. It should be enabled to support XRP on simple hardware
  25. platforms.
  26. If unsure, say N.
  27. To compile this driver as a module, choose M here: the
  28. module will be called xrp_hw_simple.
  29. config XRP_HW_HIKEY960
  30. tristate "XRP for HiKey960"
  31. depends on XRP
  32. help
  33. This is hardware-specific XRP kernel driver for the HiKey960
  34. hardware. It should be enabled to support XRP on HiKey960
  35. platform.
  36. If unsure, say N.
  37. To compile this driver as a module, choose M here: the
  38. module will be called xrp_hw_hikey960.