Kconfig 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. # Configuration options for Actions DSP
  2. # Copyright (c) 2020 Actions Technology Co., Ltd
  3. # SPDX-License-Identifier: Apache-2.0
  4. menuconfig DSP
  5. bool "DSP Drivers"
  6. help
  7. Enable dsp drivers
  8. if DSP
  9. config DSP_ACTS_DEV_NAME
  10. string "Device name of DSP Controller"
  11. default "DSP_LEOPARD"
  12. help
  13. Device name of DSP Controller
  14. config DSP_ACTIVE_POWER_LATENCY_MS
  15. int "dsp active power latency in milliseconds"
  16. default -1
  17. help
  18. Set the latency of power-off dsp after dsp became idle. Set negative (< 0)
  19. if you want to disable this feature.
  20. config DSP_DEBUG_PRINT
  21. bool "enable dsp debug print"
  22. default n
  23. help
  24. enable dsp debug print
  25. config DSP_LOAD_ROM
  26. bool "enable load dsp rom"
  27. default n
  28. help
  29. enable load dsp rom
  30. config DSP_DEPAND_ON_ROM
  31. bool "depand on dsp rom"
  32. default n
  33. help
  34. enable depand on dsp rom
  35. config LOAD_IMAGE_FROM_FS
  36. bool "load dsp image from fs"
  37. default n
  38. help
  39. enable load dsp image from fs
  40. config DSP_IMAGE_PATH
  41. string "dsp image path"
  42. default "/SD:K/"
  43. help
  44. This is dsp image path.
  45. endif # DSP