Kconfig 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  1. # Kconfig - Audio configuration options
  2. #
  3. #
  4. # Copyright (c) 2017 Actions Semiconductor Co.,Ltd
  5. #
  6. # SPDX-License-Identifier: Apache-2.0
  7. #
  8. menuconfig AUDIO_ACTS
  9. bool
  10. prompt "audio Drivers"
  11. default n
  12. help
  13. Enable options for Actions audio drivers.
  14. if AUDIO_ACTS
  15. config AUDIO_OUT_ACTS
  16. bool
  17. prompt "Actions SoC audio output driver"
  18. default n
  19. help
  20. Device driver for Actions SoC audio output
  21. config AUDIO_OUT_ACTS_DEV_NAME
  22. string "Device Name for Actions SoC audio output"
  23. default "audio_out"
  24. depends on AUDIO_OUT_ACTS
  25. help
  26. This is the device name for audio output, and is included in the
  27. device struct.
  28. config AUDIO_OUT_DAC_SUPPORT
  29. bool
  30. prompt "enable DAC out or not"
  31. default n
  32. depends on AUDIO_OUT_ACTS
  33. help
  34. audio enable DAC out or not.
  35. config AUDIO_OUT_DAC_PCMBUF_SUPPORT
  36. bool
  37. prompt "enable DAC PCMBUF or not"
  38. default n
  39. depends on AUDIO_OUT_DAC_SUPPORT
  40. help
  41. audio enable DAC PCMBUF or not.
  42. config AUDIO_ANTIPOP_PROCESS
  43. bool
  44. prompt "Enable acts audio antipop process"
  45. default n
  46. depends on AUDIO_OUT_DAC_SUPPORT
  47. help
  48. If you say Y here, you will get support actions audio antipop process when power on and off.
  49. config AUDIO_OUT_I2STX_SUPPORT
  50. bool
  51. prompt "enable i2s tx out or not"
  52. default n
  53. depends on AUDIO_OUT_ACTS
  54. help
  55. audio enable I2S-TX out or not.
  56. config AUDIO_OUT_SPDIFTX_SUPPORT
  57. bool
  58. prompt "enable spdif tx out or not"
  59. default n
  60. depends on AUDIO_OUT_ACTS
  61. help
  62. audio enable spdif out or not.
  63. config AUDIO_OUT_PDMTX_SUPPORT
  64. bool
  65. prompt "enable PDMTX out or not"
  66. default n
  67. depends on AUDIO_OUT_ACTS
  68. help
  69. audio enable PDMTX out or not.
  70. config AUDIO_IN_ACTS
  71. bool
  72. prompt "Actions SoC audio input driver"
  73. default n
  74. help
  75. Device driver for Actions SoC audio input
  76. config AUDIO_IN_ACTS_DEV_NAME
  77. string "Device Name for Actions SoC audio input"
  78. default "audio_in"
  79. depends on AUDIO_IN_ACTS
  80. help
  81. This is the device name for audio input, and is included in the
  82. device struct.
  83. config AUDIO_IN_ADC_SUPPORT
  84. bool
  85. prompt "enable ADC out or not"
  86. default n
  87. depends on AUDIO_IN_ACTS
  88. help
  89. audio enable ADC in or not.
  90. config ADC_STARTUP_DISCARD_TIME
  91. int "setup the time in millisecond once ADC startup to discard data"
  92. default 80
  93. help
  94. This option setup the time in millisecond to discard data when ADC startup.
  95. config AUDIO_IN_I2SRX_SUPPORT
  96. bool
  97. prompt "enable i2s rx in or not"
  98. default n
  99. depends on AUDIO_IN_ACTS
  100. help
  101. audio enable i2srx in or not.
  102. config AUDIO_IN_SPDIFRX_SUPPORT
  103. bool
  104. prompt "enable spdif rx in or not"
  105. default n
  106. depends on AUDIO_IN_ACTS
  107. help
  108. audio enable spdif in or not.
  109. config AUDIO_IN_ANC_SUPPORT
  110. bool
  111. prompt "enable Active Noise Control or not"
  112. default n
  113. depends on AUDIO_IN_ACTS
  114. help
  115. audio enable ANC(Active Noise Control) or not.
  116. config AUDIO_PA_AW87390_SUPPORT
  117. bool
  118. prompt "enable AW87390 pa or not"
  119. default n
  120. help
  121. Enable external AW87390 pa or not.
  122. config BOARD_EXTERNAL_PA_ENABLE
  123. bool
  124. prompt "enable external pa or not"
  125. default n
  126. help
  127. Enable external pa or not.
  128. config EXTERN_PA_CLASS
  129. int "set external pa default class mode"
  130. depends on BOARD_EXTERNAL_PA_ENABLE
  131. default 1
  132. range 0 1
  133. help
  134. Set extern pa class mode, 0 for classAB, other value for classD.
  135. config AUDIO_POWERON_OPEN_PA
  136. bool
  137. prompt "open PA when power on"
  138. depends on AUDIO_OUT_DAC_SUPPORT
  139. default n
  140. help
  141. Open PA when power on or not.
  142. config AUDIO_POWERON_OPEN_I2STX
  143. bool
  144. prompt "open I2STX when power on"
  145. depends on AUDIO_OUT_I2STX0_SUPPORT
  146. default n
  147. help
  148. Open I2STX when power on or not.
  149. config AUDIO_DRIVER_SHELL
  150. bool "Acts audio driver shell support"
  151. depends on SHELL
  152. default n
  153. help
  154. If you say Y here, you will get support for the actions audio driver shell.
  155. config AUDIO_DRIVER_STREAM_SHELL
  156. bool "Acts audio driver stream shell for play/record test"
  157. depends on AUDIO_DRIVER_SHELL
  158. default n
  159. help
  160. If you say Y here, you will get support the actions audio stream shell
  161. for audio driver play or record test.
  162. config AUDIO_DEBUG_TRACE
  163. bool "Enable audio debug trace"
  164. default n
  165. help
  166. If you say Y here, you will get support audio debug trace function.
  167. config AUDIO_DYNAMIC_DEBUG
  168. bool "Enable audio dynamic debug"
  169. default n
  170. help
  171. If you say Y here, you will get support audio dynamic debug function.
  172. config AUDIO_ACTS_UTILS
  173. bool "Acts audio driver utils support"
  174. depends on AUDIO_OUT_ACTS || AUDIO_IN_ACTS
  175. default y
  176. help
  177. If you say Y here, you will get support for the actions audio driver utils.
  178. config ADC_DMIC
  179. bool
  180. prompt "Enable ADC use DMIC"
  181. default n
  182. help
  183. If you say Y here, you will get support the digital MIC function in ADC.
  184. If unsure, it is safe to say N.
  185. config ADC_DMIC_RL_SEQUENCE
  186. bool
  187. prompt "ADC DMIC data in RL sequence"
  188. depends on ADC_DMIC
  189. default n
  190. help
  191. If you say Y here, you will get support the digital DMIC R and L data sequence.
  192. For the LARK chipset, this macro will be used to control DMIC01 channel sequence.
  193. If unsure, it is safe to say N.
  194. config ADC_DMIC23_RL_SEQUENCE
  195. bool
  196. prompt "ADC DMIC data in RL sequence"
  197. depends on ADC_DMIC
  198. default n
  199. help
  200. If you say Y here, you will get support the digital DMIC23 R and L data sequence.
  201. If unsure, it is safe to say N.
  202. endif # AUDIO