Kconfig 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  1. menu "HD-Audio"
  2. config SND_HDA
  3. tristate
  4. select SND_PCM
  5. select SND_VMASTER
  6. select SND_JACK
  7. select SND_HDA_CORE
  8. config SND_HDA_INTEL
  9. tristate "HD Audio PCI"
  10. depends on SND_PCI
  11. select SND_HDA
  12. help
  13. Say Y here to include support for Intel "High Definition
  14. Audio" (Azalia) and its compatible devices.
  15. This option enables the HD-audio controller. Don't forget
  16. to choose the appropriate codec options below.
  17. To compile this driver as a module, choose M here: the module
  18. will be called snd-hda-intel.
  19. config SND_HDA_TEGRA
  20. tristate "NVIDIA Tegra HD Audio"
  21. depends on ARCH_TEGRA
  22. select SND_HDA
  23. help
  24. Say Y here to support the HDA controller present in NVIDIA
  25. Tegra SoCs
  26. This options enables support for the HD Audio controller
  27. present in some NVIDIA Tegra SoCs, used to communicate audio
  28. to the HDMI output.
  29. To compile this driver as a module, choose M here: the module
  30. will be called snd-hda-tegra.
  31. if SND_HDA
  32. config SND_HDA_HWDEP
  33. bool "Build hwdep interface for HD-audio driver"
  34. select SND_HWDEP
  35. help
  36. Say Y here to build a hwdep interface for HD-audio driver.
  37. This interface can be used for out-of-band communication
  38. with codecs for debugging purposes.
  39. config SND_HDA_RECONFIG
  40. bool "Allow dynamic codec reconfiguration"
  41. help
  42. Say Y here to enable the HD-audio codec re-configuration feature.
  43. It allows user to clear the whole codec configuration, change the
  44. codec setup, add extra verbs, and re-configure the codec dynamically.
  45. Note that this item alone doesn't provide the sysfs interface, but
  46. enables the feature just for the patch loader below.
  47. If you need the traditional sysfs entries for the manual interaction,
  48. turn on CONFIG_SND_HDA_HWDEP as well.
  49. config SND_HDA_INPUT_BEEP
  50. bool "Support digital beep via input layer"
  51. depends on INPUT=y || INPUT=SND_HDA
  52. help
  53. Say Y here to build a digital beep interface for HD-audio
  54. driver. This interface is used to generate digital beeps.
  55. config SND_HDA_INPUT_BEEP_MODE
  56. int "Digital beep registration mode (0=off, 1=on)"
  57. depends on SND_HDA_INPUT_BEEP=y
  58. default "1"
  59. range 0 1
  60. help
  61. Set 0 to disable the digital beep interface for HD-audio by default.
  62. Set 1 to always enable the digital beep interface for HD-audio by
  63. default.
  64. config SND_HDA_PATCH_LOADER
  65. bool "Support initialization patch loading for HD-audio"
  66. select FW_LOADER
  67. select SND_HDA_RECONFIG
  68. help
  69. Say Y here to allow the HD-audio driver to load a pseudo
  70. firmware file ("patch") for overriding the BIOS setup at
  71. start up. The "patch" file can be specified via patch module
  72. option, such as patch=hda-init.
  73. config SND_HDA_CODEC_REALTEK
  74. tristate "Build Realtek HD-audio codec support"
  75. select SND_HDA_GENERIC
  76. help
  77. Say Y or M here to include Realtek HD-audio codec support in
  78. snd-hda-intel driver, such as ALC880.
  79. comment "Set to Y if you want auto-loading the codec driver"
  80. depends on SND_HDA=y && SND_HDA_CODEC_REALTEK=m
  81. config SND_HDA_CODEC_ANALOG
  82. tristate "Build Analog Device HD-audio codec support"
  83. select SND_HDA_GENERIC
  84. help
  85. Say Y or M here to include Analog Device HD-audio codec support in
  86. snd-hda-intel driver, such as AD1986A.
  87. comment "Set to Y if you want auto-loading the codec driver"
  88. depends on SND_HDA=y && SND_HDA_CODEC_ANALOG=m
  89. config SND_HDA_CODEC_SIGMATEL
  90. tristate "Build IDT/Sigmatel HD-audio codec support"
  91. select SND_HDA_GENERIC
  92. help
  93. Say Y or M here to include IDT (Sigmatel) HD-audio codec support in
  94. snd-hda-intel driver, such as STAC9200.
  95. comment "Set to Y if you want auto-loading the codec driver"
  96. depends on SND_HDA=y && SND_HDA_CODEC_SIGMATEL=m
  97. config SND_HDA_CODEC_VIA
  98. tristate "Build VIA HD-audio codec support"
  99. select SND_HDA_GENERIC
  100. help
  101. Say Y or M here to include VIA HD-audio codec support in
  102. snd-hda-intel driver, such as VT1708.
  103. comment "Set to Y if you want auto-loading the codec driver"
  104. depends on SND_HDA=y && SND_HDA_CODEC_VIA=m
  105. config SND_HDA_CODEC_HDMI
  106. tristate "Build HDMI/DisplayPort HD-audio codec support"
  107. help
  108. Say Y or M here to include HDMI and DisplayPort HD-audio codec
  109. support in snd-hda-intel driver. This includes all AMD/ATI,
  110. Intel and Nvidia HDMI/DisplayPort codecs.
  111. comment "Set to Y if you want auto-loading the codec driver"
  112. depends on SND_HDA=y && SND_HDA_CODEC_HDMI=m
  113. config SND_HDA_CODEC_CIRRUS
  114. tristate "Build Cirrus Logic codec support"
  115. select SND_HDA_GENERIC
  116. help
  117. Say Y or M here to include Cirrus Logic codec support in
  118. snd-hda-intel driver, such as CS4206.
  119. comment "Set to Y if you want auto-loading the codec driver"
  120. depends on SND_HDA=y && SND_HDA_CODEC_CIRRUS=m
  121. config SND_HDA_CODEC_CONEXANT
  122. tristate "Build Conexant HD-audio codec support"
  123. select SND_HDA_GENERIC
  124. help
  125. Say Y or M here to include Conexant HD-audio codec support in
  126. snd-hda-intel driver, such as CX20549.
  127. comment "Set to Y if you want auto-loading the codec driver"
  128. depends on SND_HDA=y && SND_HDA_CODEC_CONEXANT=m
  129. config SND_HDA_CODEC_CA0110
  130. tristate "Build Creative CA0110-IBG codec support"
  131. select SND_HDA_GENERIC
  132. help
  133. Say Y or M here to include Creative CA0110-IBG codec support in
  134. snd-hda-intel driver, found on some Creative X-Fi cards.
  135. comment "Set to Y if you want auto-loading the codec driver"
  136. depends on SND_HDA=y && SND_HDA_CODEC_CA0110=m
  137. config SND_HDA_CODEC_CA0132
  138. tristate "Build Creative CA0132 codec support"
  139. help
  140. Say Y or M here to include Creative CA0132 codec support in
  141. snd-hda-intel driver.
  142. comment "Set to Y if you want auto-loading the codec driver"
  143. depends on SND_HDA=y && SND_HDA_CODEC_CA0132=m
  144. config SND_HDA_CODEC_CA0132_DSP
  145. bool "Support new DSP code for CA0132 codec"
  146. depends on SND_HDA_CODEC_CA0132
  147. select SND_HDA_DSP_LOADER
  148. select FW_LOADER
  149. help
  150. Say Y here to enable the DSP for Creative CA0132 for extended
  151. features like equalizer or echo cancellation.
  152. Note that this option requires the external firmware file
  153. (/*(DEBLOBBED)*/).
  154. config SND_HDA_CODEC_CMEDIA
  155. tristate "Build C-Media HD-audio codec support"
  156. select SND_HDA_GENERIC
  157. help
  158. Say Y or M here to include C-Media HD-audio codec support in
  159. snd-hda-intel driver, such as CMI9880.
  160. comment "Set to Y if you want auto-loading the codec driver"
  161. depends on SND_HDA=y && SND_HDA_CODEC_CMEDIA=m
  162. config SND_HDA_CODEC_SI3054
  163. tristate "Build Silicon Labs 3054 HD-modem codec support"
  164. help
  165. Say Y or M here to include Silicon Labs 3054 HD-modem codec
  166. (and compatibles) support in snd-hda-intel driver.
  167. comment "Set to Y if you want auto-loading the codec driver"
  168. depends on SND_HDA=y && SND_HDA_CODEC_SI3054=m
  169. config SND_HDA_GENERIC
  170. tristate "Enable generic HD-audio codec parser"
  171. help
  172. Say Y or M here to enable the generic HD-audio codec parser
  173. in snd-hda-intel driver.
  174. comment "Set to Y if you want auto-loading the codec driver"
  175. depends on SND_HDA=y && SND_HDA_GENERIC=m
  176. config SND_HDA_POWER_SAVE_DEFAULT
  177. int "Default time-out for HD-audio power-save mode"
  178. depends on PM
  179. default 0
  180. help
  181. The default time-out value in seconds for HD-audio automatic
  182. power-save mode. 0 means to disable the power-save mode.
  183. endif
  184. endmenu