Kconfig 672 B

1234567891011121314151617181920212223242526272829303132
  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. endif # DSP