Kconfig 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. menuconfig SND_HDA_INTEL
  2. tristate "Intel HD Audio"
  3. select SND_PCM
  4. select SND_VMASTER
  5. select SND_KCTL_JACK
  6. help
  7. Say Y here to include support for Intel "High Definition
  8. Audio" (Azalia) and its compatible devices.
  9. This option enables the HD-audio controller. Don't forget
  10. to choose the appropriate codec options below.
  11. To compile this driver as a module, choose M here: the module
  12. will be called snd-hda-intel.
  13. if SND_HDA_INTEL
  14. config SND_HDA_PREALLOC_SIZE
  15. int "Pre-allocated buffer size for HD-audio driver"
  16. range 0 32768
  17. default 64
  18. help
  19. Specifies the default pre-allocated buffer-size in kB for the
  20. HD-audio driver. A larger buffer (e.g. 2048) is preferred
  21. for systems using PulseAudio. The default 64 is chosen just
  22. for compatibility reasons.
  23. Note that the pre-allocation size can be changed dynamically
  24. via a proc file (/proc/asound/card*/pcm*/sub*/prealloc), too.
  25. config SND_HDA_HWDEP
  26. bool "Build hwdep interface for HD-audio driver"
  27. select SND_HWDEP
  28. help
  29. Say Y here to build a hwdep interface for HD-audio driver.
  30. This interface can be used for out-of-band communication
  31. with codecs for debugging purposes.
  32. config SND_HDA_RECONFIG
  33. bool "Allow dynamic codec reconfiguration"
  34. depends on SND_HDA_HWDEP
  35. help
  36. Say Y here to enable the HD-audio codec re-configuration feature.
  37. This adds the sysfs interfaces to allow user to clear the whole
  38. codec configuration, change the codec setup, add extra verbs,
  39. and re-configure the codec dynamically.
  40. config SND_HDA_INPUT_BEEP
  41. bool "Support digital beep via input layer"
  42. depends on INPUT=y || INPUT=SND_HDA_INTEL
  43. help
  44. Say Y here to build a digital beep interface for HD-audio
  45. driver. This interface is used to generate digital beeps.
  46. config SND_HDA_INPUT_BEEP_MODE
  47. int "Digital beep registration mode (0=off, 1=on)"
  48. depends on SND_HDA_INPUT_BEEP=y
  49. default "1"
  50. range 0 1
  51. help
  52. Set 0 to disable the digital beep interface for HD-audio by default.
  53. Set 1 to always enable the digital beep interface for HD-audio by
  54. default.
  55. config SND_HDA_INPUT_JACK
  56. bool "Support jack plugging notification via input layer"
  57. depends on INPUT=y || INPUT=SND
  58. select SND_JACK
  59. help
  60. Say Y here to enable the jack plugging notification via
  61. input layer.
  62. config SND_HDA_PATCH_LOADER
  63. bool "Support initialization patch loading for HD-audio"
  64. select FW_LOADER
  65. select SND_HDA_HWDEP
  66. select SND_HDA_RECONFIG
  67. help
  68. Say Y here to allow the HD-audio driver to load a pseudo
  69. firmware file ("patch") for overriding the BIOS setup at
  70. start up. The "patch" file can be specified via patch module
  71. option, such as patch=hda-init.
  72. This option turns on hwdep and reconfig features automatically.
  73. config SND_HDA_CODEC_REALTEK
  74. bool "Build Realtek HD-audio codec support"
  75. default y
  76. select SND_HDA_GENERIC
  77. help
  78. Say Y here to include Realtek HD-audio codec support in
  79. snd-hda-intel driver, such as ALC880.
  80. When the HD-audio driver is built as a module, the codec
  81. support code is also built as another module,
  82. snd-hda-codec-realtek.
  83. This module is automatically loaded at probing.
  84. config SND_HDA_CODEC_ANALOG
  85. bool "Build Analog Device HD-audio codec support"
  86. default y
  87. select SND_HDA_GENERIC
  88. help
  89. Say Y here to include Analog Device HD-audio codec support in
  90. snd-hda-intel driver, such as AD1986A.
  91. When the HD-audio driver is built as a module, the codec
  92. support code is also built as another module,
  93. snd-hda-codec-analog.
  94. This module is automatically loaded at probing.
  95. config SND_HDA_CODEC_SIGMATEL
  96. bool "Build IDT/Sigmatel HD-audio codec support"
  97. default y
  98. select SND_HDA_GENERIC
  99. help
  100. Say Y here to include IDT (Sigmatel) HD-audio codec support in
  101. snd-hda-intel driver, such as STAC9200.
  102. When the HD-audio driver is built as a module, the codec
  103. support code is also built as another module,
  104. snd-hda-codec-idt.
  105. This module is automatically loaded at probing.
  106. config SND_HDA_CODEC_VIA
  107. bool "Build VIA HD-audio codec support"
  108. default y
  109. select SND_HDA_GENERIC
  110. help
  111. Say Y here to include VIA HD-audio codec support in
  112. snd-hda-intel driver, such as VT1708.
  113. When the HD-audio driver is built as a module, the codec
  114. support code is also built as another module,
  115. snd-hda-codec-via.
  116. This module is automatically loaded at probing.
  117. config SND_HDA_CODEC_HDMI
  118. bool "Build HDMI/DisplayPort HD-audio codec support"
  119. select SND_DYNAMIC_MINORS
  120. default y
  121. help
  122. Say Y here to include HDMI and DisplayPort HD-audio codec
  123. support in snd-hda-intel driver. This includes all AMD/ATI,
  124. Intel and Nvidia HDMI/DisplayPort codecs.
  125. When the HD-audio driver is built as a module, the codec
  126. support code is also built as another module,
  127. snd-hda-codec-hdmi.
  128. This module is automatically loaded at probing.
  129. config SND_HDA_CODEC_CIRRUS
  130. bool "Build Cirrus Logic codec support"
  131. default y
  132. select SND_HDA_GENERIC
  133. help
  134. Say Y here to include Cirrus Logic codec support in
  135. snd-hda-intel driver, such as CS4206.
  136. When the HD-audio driver is built as a module, the codec
  137. support code is also built as another module,
  138. snd-hda-codec-cirrus.
  139. This module is automatically loaded at probing.
  140. config SND_HDA_CODEC_CONEXANT
  141. bool "Build Conexant HD-audio codec support"
  142. default y
  143. select SND_HDA_GENERIC
  144. help
  145. Say Y here to include Conexant HD-audio codec support in
  146. snd-hda-intel driver, such as CX20549.
  147. When the HD-audio driver is built as a module, the codec
  148. support code is also built as another module,
  149. snd-hda-codec-conexant.
  150. This module is automatically loaded at probing.
  151. config SND_HDA_CODEC_CA0110
  152. bool "Build Creative CA0110-IBG codec support"
  153. default y
  154. select SND_HDA_GENERIC
  155. help
  156. Say Y here to include Creative CA0110-IBG codec support in
  157. snd-hda-intel driver, found on some Creative X-Fi cards.
  158. When the HD-audio driver is built as a module, the codec
  159. support code is also built as another module,
  160. snd-hda-codec-ca0110.
  161. This module is automatically loaded at probing.
  162. config SND_HDA_CODEC_CA0132
  163. bool "Build Creative CA0132 codec support"
  164. default y
  165. help
  166. Say Y here to include Creative CA0132 codec support in
  167. snd-hda-intel driver.
  168. When the HD-audio driver is built as a module, the codec
  169. support code is also built as another module,
  170. snd-hda-codec-ca0132.
  171. This module is automatically loaded at probing.
  172. config SND_HDA_CODEC_CMEDIA
  173. bool "Build C-Media HD-audio codec support"
  174. default y
  175. select SND_HDA_GENERIC
  176. help
  177. Say Y here to include C-Media HD-audio codec support in
  178. snd-hda-intel driver, such as CMI9880.
  179. When the HD-audio driver is built as a module, the codec
  180. support code is also built as another module,
  181. snd-hda-codec-cmedia.
  182. This module is automatically loaded at probing.
  183. config SND_HDA_CODEC_SI3054
  184. bool "Build Silicon Labs 3054 HD-modem codec support"
  185. default y
  186. help
  187. Say Y here to include Silicon Labs 3054 HD-modem codec
  188. (and compatibles) support in snd-hda-intel driver.
  189. When the HD-audio driver is built as a module, the codec
  190. support code is also built as another module,
  191. snd-hda-codec-si3054.
  192. This module is automatically loaded at probing.
  193. config SND_HDA_GENERIC
  194. bool "Enable generic HD-audio codec parser"
  195. default y
  196. help
  197. Say Y here to enable the generic HD-audio codec parser
  198. in snd-hda-intel driver.
  199. config SND_HDA_POWER_SAVE_DEFAULT
  200. int "Default time-out for HD-audio power-save mode"
  201. depends on PM
  202. default 0
  203. help
  204. The default time-out value in seconds for HD-audio automatic
  205. power-save mode. 0 means to disable the power-save mode.
  206. endif