ALSA-Configuration.txt 70 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112
  1. Advanced Linux Sound Architecture - Driver
  2. ==========================================
  3. Configuration guide
  4. Kernel Configuration
  5. ====================
  6. To enable ALSA support you need at least to build the kernel with
  7. primary sound card support (CONFIG_SOUND). Since ALSA can emulate OSS,
  8. you don't have to choose any of the OSS modules.
  9. Enable "OSS API emulation" (CONFIG_SND_OSSEMUL) and both OSS mixer and
  10. PCM supports if you want to run OSS applications with ALSA.
  11. If you want to support the WaveTable functionality on cards such as
  12. SB Live! then you need to enable "Sequencer support"
  13. (CONFIG_SND_SEQUENCER).
  14. To make ALSA debug messages more verbose, enable the "Verbose printk"
  15. and "Debug" options. To check for memory leaks, turn on "Debug memory"
  16. too. "Debug detection" will add checks for the detection of cards.
  17. Please note that all the ALSA ISA drivers support the Linux isapnp API
  18. (if the card supports ISA PnP). You don't need to configure the cards
  19. using isapnptools.
  20. Creating ALSA devices
  21. =====================
  22. This depends on your distribution, but normally you use the /dev/MAKEDEV
  23. script to create the necessary device nodes. On some systems you use a
  24. script named 'snddevices'.
  25. Module parameters
  26. =================
  27. The user can load modules with options. If the module supports more than
  28. one card and you have more than one card of the same type then you can
  29. specify multiple values for the option separated by commas.
  30. Prior to version 0.9.0rc4 options had a 'snd_' prefix. This was removed.
  31. Module snd
  32. ----------
  33. The core ALSA module. It is used by all ALSA card drivers.
  34. It takes the following options which have global effects.
  35. major - major number for sound driver
  36. - Default: 116
  37. cards_limit
  38. - limiting card index for auto-loading (1-8)
  39. - Default: 1
  40. - For auto-loading more than one card, specify this
  41. option together with snd-card-X aliases.
  42. Module snd-pcm-oss
  43. ------------------
  44. The PCM OSS emulation module.
  45. This module takes options which change the mapping of devices.
  46. dsp_map - PCM device number maps assigned to the 1st OSS device.
  47. - Default: 0
  48. adsp_map - PCM device number maps assigned to the 2st OSS device.
  49. - Default: 1
  50. nonblock_open
  51. - Don't block opening busy PCM devices. Default: 1
  52. For example, when dsp_map=2, /dev/dsp will be mapped to PCM #2 of
  53. the card #0. Similarly, when adsp_map=0, /dev/adsp will be mapped
  54. to PCM #0 of the card #0.
  55. For changing the second or later card, specify the option with
  56. commas, such like "dsp_map=0,1".
  57. nonblock_open option is used to change the behavior of the PCM
  58. regarding opening the device. When this option is non-zero,
  59. opening a busy OSS PCM device won't be blocked but return
  60. immediately with EAGAIN (just like O_NONBLOCK flag).
  61. Module snd-rawmidi
  62. ------------------
  63. This module takes options which change the mapping of devices.
  64. similar to those of the snd-pcm-oss module.
  65. midi_map - MIDI device number maps assigned to the 1st OSS device.
  66. - Default: 0
  67. amidi_map - MIDI device number maps assigned to the 2st OSS device.
  68. - Default: 1
  69. Common parameters for top sound card modules
  70. --------------------------------------------
  71. Each of top level sound card module takes the following options.
  72. index - index (slot #) of sound card
  73. - Values: 0 through 31 or negative
  74. - If nonnegative, assign that index number
  75. - if negative, interpret as a bitmask of permissible
  76. indices; the first free permitted index is assigned
  77. - Default: -1
  78. id - card ID (identifier or name)
  79. - Can be up to 15 characters long
  80. - Default: the card type
  81. - A directory by this name is created under /proc/asound/
  82. containing information about the card
  83. - This ID can be used instead of the index number in
  84. identifying the card
  85. enable - enable card
  86. - Default: enabled, for PCI and ISA PnP cards
  87. Module snd-adlib
  88. ----------------
  89. Module for AdLib FM cards.
  90. port - port # for OPL chip
  91. This module supports multiple cards. It does not support autoprobe, so
  92. the port must be specified. For actual AdLib FM cards it will be 0x388.
  93. Note that this card does not have PCM support and no mixer; only FM
  94. synthesis.
  95. Make sure you have "sbiload" from the alsa-tools package available and,
  96. after loading the module, find out the assigned ALSA sequencer port
  97. number through "sbiload -l". Example output:
  98. Port Client name Port name
  99. 64:0 OPL2 FM synth OPL2 FM Port
  100. Load the std.sb and drums.sb patches also supplied by sbiload:
  101. sbiload -p 64:0 std.sb drums.sb
  102. If you use this driver to drive an OPL3, you can use std.o3 and drums.o3
  103. instead. To have the card produce sound, use aplaymidi from alsa-utils:
  104. aplaymidi -p 64:0 foo.mid
  105. Module snd-ad1816a
  106. ------------------
  107. Module for sound cards based on Analog Devices AD1816A/AD1815 ISA chips.
  108. port - port # for AD1816A chip (PnP setup)
  109. mpu_port - port # for MPU-401 UART (PnP setup)
  110. fm_port - port # for OPL3 (PnP setup)
  111. irq - IRQ # for AD1816A chip (PnP setup)
  112. mpu_irq - IRQ # for MPU-401 UART (PnP setup)
  113. dma1 - first DMA # for AD1816A chip (PnP setup)
  114. dma2 - second DMA # for AD1816A chip (PnP setup)
  115. clockfreq - Clock frequency for AD1816A chip (default = 0, 33000Hz)
  116. This module supports multiple cards, autoprobe and PnP.
  117. Module snd-ad1848
  118. -----------------
  119. Module for sound cards based on AD1848/AD1847/CS4248 ISA chips.
  120. port - port # for AD1848 chip
  121. irq - IRQ # for AD1848 chip
  122. dma1 - DMA # for AD1848 chip (0,1,3)
  123. This module supports multiple cards. It does not support autoprobe
  124. thus main port must be specified!!! Other ports are optional.
  125. The power-management is supported.
  126. Module snd-ad1889
  127. -----------------
  128. Module for Analog Devices AD1889 chips.
  129. ac97_quirk - AC'97 workaround for strange hardware
  130. See the description of intel8x0 module for details.
  131. This module supports multiple cards.
  132. Module snd-ali5451
  133. ------------------
  134. Module for ALi M5451 PCI chip.
  135. pcm_channels - Number of hardware channels assigned for PCM
  136. spdif - Support SPDIF I/O
  137. - Default: disabled
  138. This module supports one chip and autoprobe.
  139. The power-management is supported.
  140. Module snd-als100
  141. -----------------
  142. Module for sound cards based on Avance Logic ALS100/ALS120 ISA chips.
  143. port - port # for ALS100 (SB16) chip (PnP setup)
  144. irq - IRQ # for ALS100 (SB16) chip (PnP setup)
  145. dma8 - 8-bit DMA # for ALS100 (SB16) chip (PnP setup)
  146. dma16 - 16-bit DMA # for ALS100 (SB16) chip (PnP setup)
  147. mpu_port - port # for MPU-401 UART (PnP setup)
  148. mpu_irq - IRQ # for MPU-401 (PnP setup)
  149. fm_port - port # for OPL3 FM (PnP setup)
  150. This module supports multiple cards, autoprobe and PnP.
  151. The power-management is supported.
  152. Module snd-als300
  153. -----------------
  154. Module for Avance Logic ALS300 and ALS300+
  155. This module supports multiple cards.
  156. The power-management is supported.
  157. Module snd-als4000
  158. ------------------
  159. Module for sound cards based on Avance Logic ALS4000 PCI chip.
  160. joystick_port - port # for legacy joystick support.
  161. 0 = disabled (default), 1 = auto-detect
  162. This module supports multiple cards, autoprobe and PnP.
  163. The power-management is supported.
  164. Module snd-atiixp
  165. -----------------
  166. Module for ATI IXP 150/200/250/400 AC97 controllers.
  167. ac97_clock - AC'97 clock (default = 48000)
  168. ac97_quirk - AC'97 workaround for strange hardware
  169. See "AC97 Quirk Option" section below.
  170. ac97_codec - Workaround to specify which AC'97 codec
  171. instead of probing. If this works for you
  172. file a bug with your `lspci -vn` output.
  173. -2 -- Force probing.
  174. -1 -- Default behavior.
  175. 0-2 -- Use the specified codec.
  176. spdif_aclink - S/PDIF transfer over AC-link (default = 1)
  177. This module supports one card and autoprobe.
  178. ATI IXP has two different methods to control SPDIF output. One is
  179. over AC-link and another is over the "direct" SPDIF output. The
  180. implementation depends on the motherboard, and you'll need to
  181. choose the correct one via spdif_aclink module option.
  182. The power-management is supported.
  183. Module snd-atiixp-modem
  184. -----------------------
  185. Module for ATI IXP 150/200/250 AC97 modem controllers.
  186. This module supports one card and autoprobe.
  187. Note: The default index value of this module is -2, i.e. the first
  188. slot is excluded.
  189. The power-management is supported.
  190. Module snd-au8810, snd-au8820, snd-au8830
  191. -----------------------------------------
  192. Module for Aureal Vortex, Vortex2 and Advantage device.
  193. pcifix - Control PCI workarounds
  194. 0 = Disable all workarounds
  195. 1 = Force the PCI latency of the Aureal card to 0xff
  196. 2 = Force the Extend PCI#2 Internal Master for Efficient
  197. Handling of Dummy Requests on the VIA KT133 AGP Bridge
  198. 3 = Force both settings
  199. 255 = Autodetect what is required (default)
  200. This module supports all ADB PCM channels, ac97 mixer, SPDIF, hardware
  201. EQ, mpu401, gameport. A3D and wavetable support are still in development.
  202. Development and reverse engineering work is being coordinated at
  203. http://savannah.nongnu.org/projects/openvortex/
  204. SPDIF output has a copy of the AC97 codec output, unless you use the
  205. "spdif" pcm device, which allows raw data passthru.
  206. The hardware EQ hardware and SPDIF is only present in the Vortex2 and
  207. Advantage.
  208. Note: Some ALSA mixer applications don't handle the SPDIF sample rate
  209. control correctly. If you have problems regarding this, try
  210. another ALSA compliant mixer (alsamixer works).
  211. Module snd-azt2320
  212. ------------------
  213. Module for sound cards based on Aztech System AZT2320 ISA chip (PnP only).
  214. port - port # for AZT2320 chip (PnP setup)
  215. wss_port - port # for WSS (PnP setup)
  216. mpu_port - port # for MPU-401 UART (PnP setup)
  217. fm_port - FM port # for AZT2320 chip (PnP setup)
  218. irq - IRQ # for AZT2320 (WSS) chip (PnP setup)
  219. mpu_irq - IRQ # for MPU-401 UART (PnP setup)
  220. dma1 - 1st DMA # for AZT2320 (WSS) chip (PnP setup)
  221. dma2 - 2nd DMA # for AZT2320 (WSS) chip (PnP setup)
  222. This module supports multiple cards, PnP and autoprobe.
  223. The power-management is supported.
  224. Module snd-azt3328
  225. ------------------
  226. Module for sound cards based on Aztech AZF3328 PCI chip.
  227. joystick - Enable joystick (default off)
  228. This module supports multiple cards.
  229. Module snd-bt87x
  230. ----------------
  231. Module for video cards based on Bt87x chips.
  232. digital_rate - Override the default digital rate (Hz)
  233. load_all - Load the driver even if the card model isn't known
  234. This module supports multiple cards.
  235. Note: The default index value of this module is -2, i.e. the first
  236. slot is excluded.
  237. Module snd-ca0106
  238. -----------------
  239. Module for Creative Audigy LS and SB Live 24bit
  240. This module supports multiple cards.
  241. Module snd-cmi8330
  242. ------------------
  243. Module for sound cards based on C-Media CMI8330 ISA chips.
  244. wssport - port # for CMI8330 chip (WSS)
  245. wssirq - IRQ # for CMI8330 chip (WSS)
  246. wssdma - first DMA # for CMI8330 chip (WSS)
  247. sbport - port # for CMI8330 chip (SB16)
  248. sbirq - IRQ # for CMI8330 chip (SB16)
  249. sbdma8 - 8bit DMA # for CMI8330 chip (SB16)
  250. sbdma16 - 16bit DMA # for CMI8330 chip (SB16)
  251. This module supports multiple cards and autoprobe.
  252. The power-management is supported.
  253. Module snd-cmipci
  254. -----------------
  255. Module for C-Media CMI8338 and 8738 PCI sound cards.
  256. mpu_port - 0x300,0x310,0x320,0x330 = legacy port,
  257. 1 = integrated PCI port,
  258. 0 = disable (default)
  259. fm_port - 0x388 = legacy port,
  260. 1 = integrated PCI port (default),
  261. 0 = disable
  262. soft_ac3 - Software-conversion of raw SPDIF packets (model 033 only)
  263. (default = 1)
  264. joystick_port - Joystick port address (0 = disable, 1 = auto-detect)
  265. This module supports autoprobe and multiple cards.
  266. The power-management is supported.
  267. Module snd-cs4231
  268. -----------------
  269. Module for sound cards based on CS4231 ISA chips.
  270. port - port # for CS4231 chip
  271. mpu_port - port # for MPU-401 UART (optional), -1 = disable
  272. irq - IRQ # for CS4231 chip
  273. mpu_irq - IRQ # for MPU-401 UART
  274. dma1 - first DMA # for CS4231 chip
  275. dma2 - second DMA # for CS4231 chip
  276. This module supports multiple cards. This module does not support autoprobe
  277. thus main port must be specified!!! Other ports are optional.
  278. The power-management is supported.
  279. Module snd-cs4232
  280. -----------------
  281. Module for sound cards based on CS4232/CS4232A ISA chips.
  282. port - port # for CS4232 chip (PnP setup - 0x534)
  283. cport - control port # for CS4232 chip (PnP setup - 0x120,0x210,0xf00)
  284. mpu_port - port # for MPU-401 UART (PnP setup - 0x300), -1 = disable
  285. fm_port - FM port # for CS4232 chip (PnP setup - 0x388), -1 = disable
  286. irq - IRQ # for CS4232 chip (5,7,9,11,12,15)
  287. mpu_irq - IRQ # for MPU-401 UART (9,11,12,15)
  288. dma1 - first DMA # for CS4232 chip (0,1,3)
  289. dma2 - second DMA # for Yamaha CS4232 chip (0,1,3), -1 = disable
  290. isapnp - ISA PnP detection - 0 = disable, 1 = enable (default)
  291. This module supports multiple cards. This module does not support autoprobe
  292. thus main port must be specified!!! Other ports are optional.
  293. The power-management is supported.
  294. Module snd-cs4236
  295. -----------------
  296. Module for sound cards based on CS4235/CS4236/CS4236B/CS4237B/
  297. CS4238B/CS4239 ISA chips.
  298. port - port # for CS4236 chip (PnP setup - 0x534)
  299. cport - control port # for CS4236 chip (PnP setup - 0x120,0x210,0xf00)
  300. mpu_port - port # for MPU-401 UART (PnP setup - 0x300), -1 = disable
  301. fm_port - FM port # for CS4236 chip (PnP setup - 0x388), -1 = disable
  302. irq - IRQ # for CS4236 chip (5,7,9,11,12,15)
  303. mpu_irq - IRQ # for MPU-401 UART (9,11,12,15)
  304. dma1 - first DMA # for CS4236 chip (0,1,3)
  305. dma2 - second DMA # for CS4236 chip (0,1,3), -1 = disable
  306. isapnp - ISA PnP detection - 0 = disable, 1 = enable (default)
  307. This module supports multiple cards. This module does not support autoprobe
  308. (if ISA PnP is not used) thus main port and control port must be
  309. specified!!! Other ports are optional.
  310. The power-management is supported.
  311. Module snd-cs4281
  312. -----------------
  313. Module for Cirrus Logic CS4281 soundchip.
  314. dual_codec - Secondary codec ID (0 = disable, default)
  315. This module supports multiple cards.
  316. The power-management is supported.
  317. Module snd-cs46xx
  318. -----------------
  319. Module for PCI sound cards based on CS4610/CS4612/CS4614/CS4615/CS4622/
  320. CS4624/CS4630/CS4280 PCI chips.
  321. external_amp - Force to enable external amplifier.
  322. thinkpad - Force to enable Thinkpad's CLKRUN control.
  323. mmap_valid - Support OSS mmap mode (default = 0).
  324. This module supports multiple cards and autoprobe.
  325. Usually external amp and CLKRUN controls are detected automatically
  326. from PCI sub vendor/device ids. If they don't work, give the options
  327. above explicitly.
  328. The power-management is supported.
  329. Module snd-cs5530
  330. _________________
  331. Module for Cyrix/NatSemi Geode 5530 chip.
  332. Module snd-cs5535audio
  333. ----------------------
  334. Module for multifunction CS5535 companion PCI device
  335. The power-management is supported.
  336. Module snd-darla20
  337. ------------------
  338. Module for Echoaudio Darla20
  339. This module supports multiple cards.
  340. The driver requires the firmware loader support on kernel.
  341. Module snd-darla24
  342. ------------------
  343. Module for Echoaudio Darla24
  344. This module supports multiple cards.
  345. The driver requires the firmware loader support on kernel.
  346. Module snd-dt019x
  347. -----------------
  348. Module for Diamond Technologies DT-019X / Avance Logic ALS-007 (PnP
  349. only)
  350. port - Port # (PnP setup)
  351. mpu_port - Port # for MPU-401 (PnP setup)
  352. fm_port - Port # for FM OPL-3 (PnP setup)
  353. irq - IRQ # (PnP setup)
  354. mpu_irq - IRQ # for MPU-401 (PnP setup)
  355. dma8 - DMA # (PnP setup)
  356. This module supports multiple cards. This module is enabled only with
  357. ISA PnP support.
  358. The power-management is supported.
  359. Module snd-dummy
  360. ----------------
  361. Module for the dummy sound card. This "card" doesn't do any output
  362. or input, but you may use this module for any application which
  363. requires a sound card (like RealPlayer).
  364. The power-management is supported.
  365. Module snd-echo3g
  366. -----------------
  367. Module for Echoaudio 3G cards (Gina3G/Layla3G)
  368. This module supports multiple cards.
  369. The driver requires the firmware loader support on kernel.
  370. Module snd-emu10k1
  371. ------------------
  372. Module for EMU10K1/EMU10k2 based PCI sound cards.
  373. * Sound Blaster Live!
  374. * Sound Blaster PCI 512
  375. * Emu APS (partially supported)
  376. * Sound Blaster Audigy
  377. extin - bitmap of available external inputs for FX8010 (see bellow)
  378. extout - bitmap of available external outputs for FX8010 (see bellow)
  379. seq_ports - allocated sequencer ports (4 by default)
  380. max_synth_voices - limit of voices used for wavetable (64 by default)
  381. max_buffer_size - specifies the maximum size of wavetable/pcm buffers
  382. given in MB unit. Default value is 128.
  383. enable_ir - enable IR
  384. This module supports multiple cards and autoprobe.
  385. Input & Output configurations [extin/extout]
  386. * Creative Card wo/Digital out [0x0003/0x1f03]
  387. * Creative Card w/Digital out [0x0003/0x1f0f]
  388. * Creative Card w/Digital CD in [0x000f/0x1f0f]
  389. * Creative Card wo/Digital out + LiveDrive [0x3fc3/0x1fc3]
  390. * Creative Card w/Digital out + LiveDrive [0x3fc3/0x1fcf]
  391. * Creative Card w/Digital CD in + LiveDrive [0x3fcf/0x1fcf]
  392. * Creative Card wo/Digital out + Digital I/O 2 [0x0fc3/0x1f0f]
  393. * Creative Card w/Digital out + Digital I/O 2 [0x0fc3/0x1f0f]
  394. * Creative Card w/Digital CD in + Digital I/O 2 [0x0fcf/0x1f0f]
  395. * Creative Card 5.1/w Digital out + LiveDrive [0x3fc3/0x1fff]
  396. * Creative Card 5.1 (c) 2003 [0x3fc3/0x7cff]
  397. * Creative Card all ins and outs [0x3fff/0x7fff]
  398. The power-management is supported.
  399. Module snd-emu10k1x
  400. -------------------
  401. Module for Creative Emu10k1X (SB Live Dell OEM version)
  402. This module supports multiple cards.
  403. Module snd-ens1370
  404. ------------------
  405. Module for Ensoniq AudioPCI ES1370 PCI sound cards.
  406. * SoundBlaster PCI 64
  407. * SoundBlaster PCI 128
  408. joystick - Enable joystick (default off)
  409. This module supports multiple cards and autoprobe.
  410. The power-management is supported.
  411. Module snd-ens1371
  412. ------------------
  413. Module for Ensoniq AudioPCI ES1371 PCI sound cards.
  414. * SoundBlaster PCI 64
  415. * SoundBlaster PCI 128
  416. * SoundBlaster Vibra PCI
  417. joystick_port - port # for joystick (0x200,0x208,0x210,0x218),
  418. 0 = disable (default), 1 = auto-detect
  419. This module supports multiple cards and autoprobe.
  420. The power-management is supported.
  421. Module snd-es968
  422. ----------------
  423. Module for sound cards based on ESS ES968 chip (PnP only).
  424. port - port # for ES968 (SB8) chip (PnP setup)
  425. irq - IRQ # for ES968 (SB8) chip (PnP setup)
  426. dma1 - DMA # for ES968 (SB8) chip (PnP setup)
  427. This module supports multiple cards, PnP and autoprobe.
  428. The power-management is supported.
  429. Module snd-es1688
  430. -----------------
  431. Module for ESS AudioDrive ES-1688 and ES-688 sound cards.
  432. port - port # for ES-1688 chip (0x220,0x240,0x260)
  433. mpu_port - port # for MPU-401 port (0x300,0x310,0x320,0x330), -1 = disable (default)
  434. irq - IRQ # for ES-1688 chip (5,7,9,10)
  435. mpu_irq - IRQ # for MPU-401 port (5,7,9,10)
  436. dma8 - DMA # for ES-1688 chip (0,1,3)
  437. This module supports multiple cards and autoprobe (without MPU-401 port).
  438. Module snd-es18xx
  439. -----------------
  440. Module for ESS AudioDrive ES-18xx sound cards.
  441. port - port # for ES-18xx chip (0x220,0x240,0x260)
  442. mpu_port - port # for MPU-401 port (0x300,0x310,0x320,0x330), -1 = disable (default)
  443. fm_port - port # for FM (optional, not used)
  444. irq - IRQ # for ES-18xx chip (5,7,9,10)
  445. dma1 - first DMA # for ES-18xx chip (0,1,3)
  446. dma2 - first DMA # for ES-18xx chip (0,1,3)
  447. isapnp - ISA PnP detection - 0 = disable, 1 = enable (default)
  448. This module supports multiple cards, ISA PnP and autoprobe (without MPU-401
  449. port if native ISA PnP routines are not used).
  450. When dma2 is equal with dma1, the driver works as half-duplex.
  451. The power-management is supported.
  452. Module snd-es1938
  453. -----------------
  454. Module for sound cards based on ESS Solo-1 (ES1938,ES1946) chips.
  455. This module supports multiple cards and autoprobe.
  456. The power-management is supported.
  457. Module snd-es1968
  458. -----------------
  459. Module for sound cards based on ESS Maestro-1/2/2E (ES1968/ES1978) chips.
  460. total_bufsize - total buffer size in kB (1-4096kB)
  461. pcm_substreams_p - playback channels (1-8, default=2)
  462. pcm_substreams_c - capture channels (1-8, default=0)
  463. clock - clock (0 = auto-detection)
  464. use_pm - support the power-management (0 = off, 1 = on,
  465. 2 = auto (default))
  466. enable_mpu - enable MPU401 (0 = off, 1 = on, 2 = auto (default))
  467. joystick - enable joystick (default off)
  468. This module supports multiple cards and autoprobe.
  469. The power-management is supported.
  470. Module snd-fm801
  471. ----------------
  472. Module for ForteMedia FM801 based PCI sound cards.
  473. tea575x_tuner - Enable TEA575x tuner
  474. - 1 = MediaForte 256-PCS
  475. - 2 = MediaForte 256-PCPR
  476. - 3 = MediaForte 64-PCR
  477. - High 16-bits are video (radio) device number + 1
  478. - example: 0x10002 (MediaForte 256-PCPR, device 1)
  479. This module supports multiple cards and autoprobe.
  480. The power-management is supported.
  481. Module snd-gina20
  482. -----------------
  483. Module for Echoaudio Gina20
  484. This module supports multiple cards.
  485. The driver requires the firmware loader support on kernel.
  486. Module snd-gina24
  487. -----------------
  488. Module for Echoaudio Gina24
  489. This module supports multiple cards.
  490. The driver requires the firmware loader support on kernel.
  491. Module snd-gusclassic
  492. ---------------------
  493. Module for Gravis UltraSound Classic sound card.
  494. port - port # for GF1 chip (0x220,0x230,0x240,0x250,0x260)
  495. irq - IRQ # for GF1 chip (3,5,9,11,12,15)
  496. dma1 - DMA # for GF1 chip (1,3,5,6,7)
  497. dma2 - DMA # for GF1 chip (1,3,5,6,7,-1=disable)
  498. joystick_dac - 0 to 31, (0.59V-4.52V or 0.389V-2.98V)
  499. voices - GF1 voices limit (14-32)
  500. pcm_voices - reserved PCM voices
  501. This module supports multiple cards and autoprobe.
  502. Module snd-gusextreme
  503. ---------------------
  504. Module for Gravis UltraSound Extreme (Synergy ViperMax) sound card.
  505. port - port # for ES-1688 chip (0x220,0x230,0x240,0x250,0x260)
  506. gf1_port - port # for GF1 chip (0x210,0x220,0x230,0x240,0x250,0x260,0x270)
  507. mpu_port - port # for MPU-401 port (0x300,0x310,0x320,0x330), -1 = disable
  508. irq - IRQ # for ES-1688 chip (5,7,9,10)
  509. gf1_irq - IRQ # for GF1 chip (3,5,9,11,12,15)
  510. mpu_irq - IRQ # for MPU-401 port (5,7,9,10)
  511. dma8 - DMA # for ES-1688 chip (0,1,3)
  512. dma1 - DMA # for GF1 chip (1,3,5,6,7)
  513. joystick_dac - 0 to 31, (0.59V-4.52V or 0.389V-2.98V)
  514. voices - GF1 voices limit (14-32)
  515. pcm_voices - reserved PCM voices
  516. This module supports multiple cards and autoprobe (without MPU-401 port).
  517. Module snd-gusmax
  518. -----------------
  519. Module for Gravis UltraSound MAX sound card.
  520. port - port # for GF1 chip (0x220,0x230,0x240,0x250,0x260)
  521. irq - IRQ # for GF1 chip (3,5,9,11,12,15)
  522. dma1 - DMA # for GF1 chip (1,3,5,6,7)
  523. dma2 - DMA # for GF1 chip (1,3,5,6,7,-1=disable)
  524. joystick_dac - 0 to 31, (0.59V-4.52V or 0.389V-2.98V)
  525. voices - GF1 voices limit (14-32)
  526. pcm_voices - reserved PCM voices
  527. This module supports multiple cards and autoprobe.
  528. Module snd-hda-intel
  529. --------------------
  530. Module for Intel HD Audio (ICH6, ICH6M, ESB2, ICH7, ICH8),
  531. ATI SB450, SB600, RS600,
  532. VIA VT8251/VT8237A,
  533. SIS966, ULI M5461
  534. model - force the model name
  535. position_fix - Fix DMA pointer (0 = auto, 1 = none, 2 = POSBUF, 3 = FIFO size)
  536. probe_mask - Bitmask to probe codecs (default = -1, meaning all slots)
  537. single_cmd - Use single immediate commands to communicate with
  538. codecs (for debugging only)
  539. enable_msi - Enable Message Signaled Interrupt (MSI) (default = off)
  540. This module supports one card and autoprobe.
  541. Each codec may have a model table for different configurations.
  542. If your machine isn't listed there, the default (usually minimal)
  543. configuration is set up. You can pass "model=<name>" option to
  544. specify a certain model in such a case. There are different
  545. models depending on the codec chip.
  546. Model name Description
  547. ---------- -----------
  548. ALC880
  549. 3stack 3-jack in back and a headphone out
  550. 3stack-digout 3-jack in back, a HP out and a SPDIF out
  551. 5stack 5-jack in back, 2-jack in front
  552. 5stack-digout 5-jack in back, 2-jack in front, a SPDIF out
  553. 6stack 6-jack in back, 2-jack in front
  554. 6stack-digout 6-jack with a SPDIF out
  555. w810 3-jack
  556. z71v 3-jack (HP shared SPDIF)
  557. asus 3-jack (ASUS Mobo)
  558. asus-w1v ASUS W1V
  559. asus-dig ASUS with SPDIF out
  560. asus-dig2 ASUS with SPDIF out (using GPIO2)
  561. uniwill 3-jack
  562. fujitsu Fujitsu Laptops (Pi1536)
  563. F1734 2-jack
  564. lg LG laptop (m1 express dual)
  565. lg-lw LG LW20/LW25 laptop
  566. tcl TCL S700
  567. clevo Clevo laptops (m520G, m665n)
  568. test for testing/debugging purpose, almost all controls can be
  569. adjusted. Appearing only when compiled with
  570. $CONFIG_SND_DEBUG=y
  571. auto auto-config reading BIOS (default)
  572. ALC260
  573. hp HP machines
  574. hp-3013 HP machines (3013-variant)
  575. fujitsu Fujitsu S7020
  576. acer Acer TravelMate
  577. basic fixed pin assignment (old default model)
  578. auto auto-config reading BIOS (default)
  579. ALC262
  580. fujitsu Fujitsu Laptop
  581. hp-bpc HP xw4400/6400/8400/9400 laptops
  582. hp-bpc-d7000 HP BPC D7000
  583. benq Benq ED8
  584. hippo Hippo (ATI) with jack detection, Sony UX-90s
  585. hippo_1 Hippo (Benq) with jack detection
  586. basic fixed pin assignment w/o SPDIF
  587. auto auto-config reading BIOS (default)
  588. ALC268
  589. 3stack 3-stack model
  590. auto auto-config reading BIOS (default)
  591. ALC882/885
  592. 3stack-dig 3-jack with SPDIF I/O
  593. 6stack-dig 6-jack digital with SPDIF I/O
  594. arima Arima W820Di1
  595. macpro MacPro support
  596. w2jc ASUS W2JC
  597. auto auto-config reading BIOS (default)
  598. ALC883/888
  599. 3stack-dig 3-jack with SPDIF I/O
  600. 6stack-dig 6-jack digital with SPDIF I/O
  601. 3stack-6ch 3-jack 6-channel
  602. 3stack-6ch-dig 3-jack 6-channel with SPDIF I/O
  603. 6stack-dig-demo 6-jack digital for Intel demo board
  604. acer Acer laptops (Travelmate 3012WTMi, Aspire 5600, etc)
  605. medion Medion Laptops
  606. targa-dig Targa/MSI
  607. targa-2ch-dig Targs/MSI with 2-channel
  608. laptop-eapd 3-jack with SPDIF I/O and EAPD (Clevo M540JE, M550JE)
  609. auto auto-config reading BIOS (default)
  610. ALC861/660
  611. 3stack 3-jack
  612. 3stack-dig 3-jack with SPDIF I/O
  613. 6stack-dig 6-jack with SPDIF I/O
  614. 3stack-660 3-jack (for ALC660)
  615. uniwill-m31 Uniwill M31 laptop
  616. toshiba Toshiba laptop support
  617. asus Asus laptop support
  618. asus-laptop ASUS F2/F3 laptops
  619. auto auto-config reading BIOS (default)
  620. ALC861VD/660VD
  621. 3stack 3-jack
  622. 3stack-dig 3-jack with SPDIF OUT
  623. 6stack-dig 6-jack with SPDIF OUT
  624. 3stack-660 3-jack (for ALC660VD)
  625. 3stack-660-digout 3-jack with SPDIF OUT (for ALC660VD)
  626. lenovo Lenovo 3000 C200
  627. auto auto-config reading BIOS (default)
  628. CMI9880
  629. minimal 3-jack in back
  630. min_fp 3-jack in back, 2-jack in front
  631. full 6-jack in back, 2-jack in front
  632. full_dig 6-jack in back, 2-jack in front, SPDIF I/O
  633. allout 5-jack in back, 2-jack in front, SPDIF out
  634. auto auto-config reading BIOS (default)
  635. AD1882
  636. 3stack 3-stack mode (default)
  637. 6stack 6-stack mode
  638. AD1884
  639. N/A
  640. AD1981
  641. basic 3-jack (default)
  642. hp HP nx6320
  643. thinkpad Lenovo Thinkpad T60/X60/Z60
  644. toshiba Toshiba U205
  645. AD1983
  646. N/A
  647. AD1984
  648. basic default configuration
  649. thinkpad Lenovo Thinkpad T61/X61
  650. AD1986A
  651. 6stack 6-jack, separate surrounds (default)
  652. 3stack 3-stack, shared surrounds
  653. laptop 2-channel only (FSC V2060, Samsung M50)
  654. laptop-eapd 2-channel with EAPD (Samsung R65, ASUS A6J)
  655. ultra 2-channel with EAPD (Samsung Ultra tablet PC)
  656. AD1988
  657. 6stack 6-jack
  658. 6stack-dig ditto with SPDIF
  659. 3stack 3-jack
  660. 3stack-dig ditto with SPDIF
  661. laptop 3-jack with hp-jack automute
  662. laptop-dig ditto with SPDIF
  663. auto auto-config reading BIOS (default)
  664. Conexant 5045
  665. laptop Laptop config
  666. test for testing/debugging purpose, almost all controls
  667. can be adjusted. Appearing only when compiled with
  668. $CONFIG_SND_DEBUG=y
  669. Conexant 5047
  670. laptop Basic Laptop config
  671. laptop-hp Laptop config for some HP models (subdevice 30A5)
  672. laptop-eapd Laptop config with EAPD support
  673. test for testing/debugging purpose, almost all controls
  674. can be adjusted. Appearing only when compiled with
  675. $CONFIG_SND_DEBUG=y
  676. STAC9200/9205/9254
  677. ref Reference board
  678. STAC9220/9221
  679. ref Reference board
  680. 3stack D945 3stack
  681. 5stack D945 5stack + SPDIF
  682. dell Dell XPS M1210
  683. intel-mac-v1 Intel Mac Type 1
  684. intel-mac-v2 Intel Mac Type 2
  685. intel-mac-v3 Intel Mac Type 3
  686. intel-mac-v4 Intel Mac Type 4
  687. intel-mac-v5 Intel Mac Type 5
  688. macmini Intel Mac Mini (equivalent with type 3)
  689. macbook Intel Mac Book (eq. type 5)
  690. macbook-pro-v1 Intel Mac Book Pro 1st generation (eq. type 3)
  691. macbook-pro Intel Mac Book Pro 2nd generation (eq. type 3)
  692. imac-intel Intel iMac (eq. type 2)
  693. imac-intel-20 Intel iMac (newer version) (eq. type 3)
  694. STAC9202/9250/9251
  695. ref Reference board, base config
  696. m2-2 Some Gateway MX series laptops
  697. m6 Some Gateway NX series laptops
  698. pa6 Gateway NX860 series
  699. STAC9227/9228/9229/927x
  700. ref Reference board
  701. 3stack D965 3stack
  702. 5stack D965 5stack + SPDIF
  703. STAC9872
  704. vaio Setup for VAIO FE550G/SZ110
  705. vaio-ar Setup for VAIO AR
  706. The model name "genric" is treated as a special case. When this
  707. model is given, the driver uses the generic codec parser without
  708. "codec-patch". It's sometimes good for testing and debugging.
  709. If the default configuration doesn't work and one of the above
  710. matches with your device, report it together with the PCI
  711. subsystem ID (output of "lspci -nv") to ALSA BTS or alsa-devel
  712. ML (see the section "Links and Addresses").
  713. Note 2: If you get click noises on output, try the module option
  714. position_fix=1 or 2. position_fix=1 will use the SD_LPIB
  715. register value without FIFO size correction as the current
  716. DMA pointer. position_fix=2 will make the driver to use
  717. the position buffer instead of reading SD_LPIB register.
  718. (Usually SD_LPLIB register is more accurate than the
  719. position buffer.)
  720. NB: If you get many "azx_get_response timeout" messages at
  721. loading, it's likely a problem of interrupts (e.g. ACPI irq
  722. routing). Try to boot with options like "pci=noacpi". Also, you
  723. can try "single_cmd=1" module option. This will switch the
  724. communication method between HDA controller and codecs to the
  725. single immediate commands instead of CORB/RIRB. Basically, the
  726. single command mode is provided only for BIOS, and you won't get
  727. unsolicited events, too. But, at least, this works independently
  728. from the irq. Remember this is a last resort, and should be
  729. avoided as much as possible...
  730. MORE NOTES ON "azx_get_response timeout" PROBLEMS:
  731. On some hardwares, you may need to add a proper probe_mask option
  732. to avoid the "azx_get_response timeout" problem above, instead.
  733. This occurs when the access to non-existing or non-working codec slot
  734. (likely a modem one) causes a stall of the communication via HD-audio
  735. bus. You can see which codec slots are probed by enabling
  736. CONFIG_SND_DEBUG_DETECT, or simply from the file name of the codec
  737. proc files. Then limit the slots to probe by probe_mask option.
  738. For example, probe_mask=1 means to probe only the first slot, and
  739. probe_mask=4 means only the third slot.
  740. The power-management is supported.
  741. Module snd-hdsp
  742. ---------------
  743. Module for RME Hammerfall DSP audio interface(s)
  744. This module supports multiple cards.
  745. Note: The firmware data can be automatically loaded via hotplug
  746. when CONFIG_FW_LOADER is set. Otherwise, you need to load
  747. the firmware via hdsploader utility included in alsa-tools
  748. package.
  749. The firmware data is found in alsa-firmware package.
  750. Note: snd-page-alloc module does the job which snd-hammerfall-mem
  751. module did formerly. It will allocate the buffers in advance
  752. when any HDSP cards are found. To make the buffer
  753. allocation sure, load snd-page-alloc module in the early
  754. stage of boot sequence. See "Early Buffer Allocation"
  755. section.
  756. Module snd-hdspm
  757. ----------------
  758. Module for RME HDSP MADI board.
  759. precise_ptr - Enable precise pointer, or disable.
  760. line_outs_monitor - Send playback streams to analog outs by default.
  761. enable_monitor - Enable Analog Out on Channel 63/64 by default.
  762. See hdspm.txt for details.
  763. Module snd-ice1712
  764. ------------------
  765. Module for Envy24 (ICE1712) based PCI sound cards.
  766. * MidiMan M Audio Delta 1010
  767. * MidiMan M Audio Delta 1010LT
  768. * MidiMan M Audio Delta DiO 2496
  769. * MidiMan M Audio Delta 66
  770. * MidiMan M Audio Delta 44
  771. * MidiMan M Audio Delta 410
  772. * MidiMan M Audio Audiophile 2496
  773. * TerraTec EWS 88MT
  774. * TerraTec EWS 88D
  775. * TerraTec EWX 24/96
  776. * TerraTec DMX 6Fire
  777. * TerraTec Phase 88
  778. * Hoontech SoundTrack DSP 24
  779. * Hoontech SoundTrack DSP 24 Value
  780. * Hoontech SoundTrack DSP 24 Media 7.1
  781. * Event Electronics, EZ8
  782. * Digigram VX442
  783. * Lionstracs, Mediastaton
  784. model - Use the given board model, one of the following:
  785. delta1010, dio2496, delta66, delta44, audiophile, delta410,
  786. delta1010lt, vx442, ewx2496, ews88mt, ews88mt_new, ews88d,
  787. dmx6fire, dsp24, dsp24_value, dsp24_71, ez8,
  788. phase88, mediastation
  789. omni - Omni I/O support for MidiMan M-Audio Delta44/66
  790. cs8427_timeout - reset timeout for the CS8427 chip (S/PDIF transceiver)
  791. in msec resolution, default value is 500 (0.5 sec)
  792. This module supports multiple cards and autoprobe. Note: The consumer part
  793. is not used with all Envy24 based cards (for example in the MidiMan Delta
  794. serie).
  795. Note: The supported board is detected by reading EEPROM or PCI
  796. SSID (if EEPROM isn't available). You can override the
  797. model by passing "model" module option in case that the
  798. driver isn't configured properly or you want to try another
  799. type for testing.
  800. Module snd-ice1724
  801. ------------------
  802. Module for Envy24HT (VT/ICE1724), Envy24PT (VT1720) based PCI sound cards.
  803. * MidiMan M Audio Revolution 5.1
  804. * MidiMan M Audio Revolution 7.1
  805. * MidiMan M Audio Audiophile 192
  806. * AMP Ltd AUDIO2000
  807. * TerraTec Aureon 5.1 Sky
  808. * TerraTec Aureon 7.1 Space
  809. * TerraTec Aureon 7.1 Universe
  810. * TerraTec Phase 22
  811. * TerraTec Phase 28
  812. * AudioTrak Prodigy 7.1
  813. * AudioTrak Prodigy 7.1LT
  814. * AudioTrak Prodigy 192
  815. * Pontis MS300
  816. * Albatron K8X800 Pro II
  817. * Chaintech ZNF3-150
  818. * Chaintech ZNF3-250
  819. * Chaintech 9CJS
  820. * Chaintech AV-710
  821. * Shuttle SN25P
  822. model - Use the given board model, one of the following:
  823. revo51, revo71, amp2000, prodigy71, prodigy71lt,
  824. prodigy192, aureon51, aureon71, universe, ap192,
  825. k8x800, phase22, phase28, ms300, av710
  826. This module supports multiple cards and autoprobe.
  827. Note: The supported board is detected by reading EEPROM or PCI
  828. SSID (if EEPROM isn't available). You can override the
  829. model by passing "model" module option in case that the
  830. driver isn't configured properly or you want to try another
  831. type for testing.
  832. Module snd-indigo
  833. -----------------
  834. Module for Echoaudio Indigo
  835. This module supports multiple cards.
  836. The driver requires the firmware loader support on kernel.
  837. Module snd-indigodj
  838. -------------------
  839. Module for Echoaudio Indigo DJ
  840. This module supports multiple cards.
  841. The driver requires the firmware loader support on kernel.
  842. Module snd-indigoio
  843. -------------------
  844. Module for Echoaudio Indigo IO
  845. This module supports multiple cards.
  846. The driver requires the firmware loader support on kernel.
  847. Module snd-intel8x0
  848. -------------------
  849. Module for AC'97 motherboards from Intel and compatibles.
  850. * Intel i810/810E, i815, i820, i830, i84x, MX440
  851. ICH5, ICH6, ICH7, ESB2
  852. * SiS 7012 (SiS 735)
  853. * NVidia NForce, NForce2, NForce3, MCP04, CK804
  854. CK8, CK8S, MCP501
  855. * AMD AMD768, AMD8111
  856. * ALi m5455
  857. ac97_clock - AC'97 codec clock base (0 = auto-detect)
  858. ac97_quirk - AC'97 workaround for strange hardware
  859. See "AC97 Quirk Option" section below.
  860. buggy_irq - Enable workaround for buggy interrupts on some
  861. motherboards (default yes on nForce chips,
  862. otherwise off)
  863. buggy_semaphore - Enable workaround for hardwares with buggy
  864. semaphores (e.g. on some ASUS laptops)
  865. (default off)
  866. spdif_aclink - Use S/PDIF over AC-link instead of direct connection
  867. from the controller chip
  868. (0 = off, 1 = on, -1 = default)
  869. This module supports one chip and autoprobe.
  870. Note: the latest driver supports auto-detection of chip clock.
  871. if you still encounter too fast playback, specify the clock
  872. explicitly via the module option "ac97_clock=41194".
  873. Joystick/MIDI ports are not supported by this driver. If your
  874. motherboard has these devices, use the ns558 or snd-mpu401
  875. modules, respectively.
  876. The power-management is supported.
  877. Module snd-intel8x0m
  878. --------------------
  879. Module for Intel ICH (i8x0) chipset MC97 modems.
  880. * Intel i810/810E, i815, i820, i830, i84x, MX440
  881. ICH5, ICH6, ICH7
  882. * SiS 7013 (SiS 735)
  883. * NVidia NForce, NForce2, NForce2s, NForce3
  884. * AMD AMD8111
  885. * ALi m5455
  886. ac97_clock - AC'97 codec clock base (0 = auto-detect)
  887. This module supports one card and autoprobe.
  888. Note: The default index value of this module is -2, i.e. the first
  889. slot is excluded.
  890. The power-management is supported.
  891. Module snd-interwave
  892. --------------------
  893. Module for Gravis UltraSound PnP, Dynasonic 3-D/Pro, STB Sound Rage 32
  894. and other sound cards based on AMD InterWave (tm) chip.
  895. port - port # for InterWave chip (0x210,0x220,0x230,0x240,0x250,0x260)
  896. irq - IRQ # for InterWave chip (3,5,9,11,12,15)
  897. dma1 - DMA # for InterWave chip (0,1,3,5,6,7)
  898. dma2 - DMA # for InterWave chip (0,1,3,5,6,7,-1=disable)
  899. joystick_dac - 0 to 31, (0.59V-4.52V or 0.389V-2.98V)
  900. midi - 1 = MIDI UART enable, 0 = MIDI UART disable (default)
  901. pcm_voices - reserved PCM voices for the synthesizer (default 2)
  902. effect - 1 = InterWave effects enable (default 0);
  903. requires 8 voices
  904. This module supports multiple cards, autoprobe and ISA PnP.
  905. Module snd-interwave-stb
  906. ------------------------
  907. Module for UltraSound 32-Pro (sound card from STB used by Compaq)
  908. and other sound cards based on AMD InterWave (tm) chip with TEA6330T
  909. circuit for extended control of bass, treble and master volume.
  910. port - port # for InterWave chip (0x210,0x220,0x230,0x240,0x250,0x260)
  911. port_tc - tone control (i2c bus) port # for TEA6330T chip (0x350,0x360,0x370,0x380)
  912. irq - IRQ # for InterWave chip (3,5,9,11,12,15)
  913. dma1 - DMA # for InterWave chip (0,1,3,5,6,7)
  914. dma2 - DMA # for InterWave chip (0,1,3,5,6,7,-1=disable)
  915. joystick_dac - 0 to 31, (0.59V-4.52V or 0.389V-2.98V)
  916. midi - 1 = MIDI UART enable, 0 = MIDI UART disable (default)
  917. pcm_voices - reserved PCM voices for the synthesizer (default 2)
  918. effect - 1 = InterWave effects enable (default 0);
  919. requires 8 voices
  920. This module supports multiple cards, autoprobe and ISA PnP.
  921. Module snd-korg1212
  922. -------------------
  923. Module for Korg 1212 IO PCI card
  924. This module supports multiple cards.
  925. Module snd-layla20
  926. ------------------
  927. Module for Echoaudio Layla20
  928. This module supports multiple cards.
  929. The driver requires the firmware loader support on kernel.
  930. Module snd-layla24
  931. ------------------
  932. Module for Echoaudio Layla24
  933. This module supports multiple cards.
  934. The driver requires the firmware loader support on kernel.
  935. Module snd-maestro3
  936. -------------------
  937. Module for Allegro/Maestro3 chips
  938. external_amp - enable external amp (enabled by default)
  939. amp_gpio - GPIO pin number for external amp (0-15) or
  940. -1 for default pin (8 for allegro, 1 for
  941. others)
  942. This module supports autoprobe and multiple chips.
  943. Note: the binding of amplifier is dependent on hardware.
  944. If there is no sound even though all channels are unmuted, try to
  945. specify other gpio connection via amp_gpio option.
  946. For example, a Panasonic notebook might need "amp_gpio=0x0d"
  947. option.
  948. The power-management is supported.
  949. Module snd-mia
  950. ---------------
  951. Module for Echoaudio Mia
  952. This module supports multiple cards.
  953. The driver requires the firmware loader support on kernel.
  954. Module snd-miro
  955. ---------------
  956. Module for Miro soundcards: miroSOUND PCM 1 pro,
  957. miroSOUND PCM 12,
  958. miroSOUND PCM 20 Radio.
  959. port - Port # (0x530,0x604,0xe80,0xf40)
  960. irq - IRQ # (5,7,9,10,11)
  961. dma1 - 1st dma # (0,1,3)
  962. dma2 - 2nd dma # (0,1)
  963. mpu_port - MPU-401 port # (0x300,0x310,0x320,0x330)
  964. mpu_irq - MPU-401 irq # (5,7,9,10)
  965. fm_port - FM Port # (0x388)
  966. wss - enable WSS mode
  967. ide - enable onboard ide support
  968. Module snd-mixart
  969. -----------------
  970. Module for Digigram miXart8 sound cards.
  971. This module supports multiple cards.
  972. Note: One miXart8 board will be represented as 4 alsa cards.
  973. See MIXART.txt for details.
  974. When the driver is compiled as a module and the hotplug firmware
  975. is supported, the firmware data is loaded via hotplug automatically.
  976. Install the necessary firmware files in alsa-firmware package.
  977. When no hotplug fw loader is available, you need to load the
  978. firmware via mixartloader utility in alsa-tools package.
  979. Module snd-mona
  980. ---------------
  981. Module for Echoaudio Mona
  982. This module supports multiple cards.
  983. The driver requires the firmware loader support on kernel.
  984. Module snd-mpu401
  985. -----------------
  986. Module for MPU-401 UART devices.
  987. port - port number or -1 (disable)
  988. irq - IRQ number or -1 (disable)
  989. pnp - PnP detection - 0 = disable, 1 = enable (default)
  990. uart_enter - Issue UART_ENTER command at open - bool, default = on
  991. This module supports multiple devices and PnP.
  992. Module snd-mtpav
  993. ----------------
  994. Module for MOTU MidiTimePiece AV multiport MIDI (on the parallel
  995. port).
  996. port - I/O port # for MTPAV (0x378,0x278, default=0x378)
  997. irq - IRQ # for MTPAV (7,5, default=7)
  998. hwports - number of supported hardware ports, default=8.
  999. Module supports only 1 card. This module has no enable option.
  1000. Module snd-mts64
  1001. ----------------
  1002. Module for Ego Systems (ESI) Miditerminal 4140
  1003. This module supports multiple devices.
  1004. Requires parport (CONFIG_PARPORT).
  1005. Module snd-nm256
  1006. ----------------
  1007. Module for NeoMagic NM256AV/ZX chips
  1008. playback_bufsize - max playback frame size in kB (4-128kB)
  1009. capture_bufsize - max capture frame size in kB (4-128kB)
  1010. force_ac97 - 0 or 1 (disabled by default)
  1011. buffer_top - specify buffer top address
  1012. use_cache - 0 or 1 (disabled by default)
  1013. vaio_hack - alias buffer_top=0x25a800
  1014. reset_workaround - enable AC97 RESET workaround for some laptops
  1015. reset_workaround2 - enable extended AC97 RESET workaround for some
  1016. other laptops
  1017. This module supports one chip and autoprobe.
  1018. The power-management is supported.
  1019. Note: on some notebooks the buffer address cannot be detected
  1020. automatically, or causes hang-up during initialization.
  1021. In such a case, specify the buffer top address explicitly via
  1022. the buffer_top option.
  1023. For example,
  1024. Sony F250: buffer_top=0x25a800
  1025. Sony F270: buffer_top=0x272800
  1026. The driver supports only ac97 codec. It's possible to force
  1027. to initialize/use ac97 although it's not detected. In such a
  1028. case, use force_ac97=1 option - but *NO* guarantee whether it
  1029. works!
  1030. Note: The NM256 chip can be linked internally with non-AC97
  1031. codecs. This driver supports only the AC97 codec, and won't work
  1032. with machines with other (most likely CS423x or OPL3SAx) chips,
  1033. even though the device is detected in lspci. In such a case, try
  1034. other drivers, e.g. snd-cs4232 or snd-opl3sa2. Some has ISA-PnP
  1035. but some doesn't have ISA PnP. You'll need to specify isapnp=0
  1036. and proper hardware parameters in the case without ISA PnP.
  1037. Note: some laptops need a workaround for AC97 RESET. For the
  1038. known hardware like Dell Latitude LS and Sony PCG-F305, this
  1039. workaround is enabled automatically. For other laptops with a
  1040. hard freeze, you can try reset_workaround=1 option.
  1041. Note: Dell Latitude CSx laptops have another problem regarding
  1042. AC97 RESET. On these laptops, reset_workaround2 option is
  1043. turned on as default. This option is worth to try if the
  1044. previous reset_workaround option doesn't help.
  1045. Note: This driver is really crappy. It's a porting from the
  1046. OSS driver, which is a result of black-magic reverse engineering.
  1047. The detection of codec will fail if the driver is loaded *after*
  1048. X-server as described above. You might be able to force to load
  1049. the module, but it may result in hang-up. Hence, make sure that
  1050. you load this module *before* X if you encounter this kind of
  1051. problem.
  1052. Module snd-opl3sa2
  1053. ------------------
  1054. Module for Yamaha OPL3-SA2/SA3 sound cards.
  1055. port - control port # for OPL3-SA chip (0x370)
  1056. sb_port - SB port # for OPL3-SA chip (0x220,0x240)
  1057. wss_port - WSS port # for OPL3-SA chip (0x530,0xe80,0xf40,0x604)
  1058. midi_port - port # for MPU-401 UART (0x300,0x330), -1 = disable
  1059. fm_port - FM port # for OPL3-SA chip (0x388), -1 = disable
  1060. irq - IRQ # for OPL3-SA chip (5,7,9,10)
  1061. dma1 - first DMA # for Yamaha OPL3-SA chip (0,1,3)
  1062. dma2 - second DMA # for Yamaha OPL3-SA chip (0,1,3), -1 = disable
  1063. isapnp - ISA PnP detection - 0 = disable, 1 = enable (default)
  1064. This module supports multiple cards and ISA PnP. It does not support
  1065. autoprobe (if ISA PnP is not used) thus all ports must be specified!!!
  1066. The power-management is supported.
  1067. Module snd-opti92x-ad1848
  1068. -------------------------
  1069. Module for sound cards based on OPTi 82c92x and Analog Devices AD1848 chips.
  1070. Module works with OAK Mozart cards as well.
  1071. port - port # for WSS chip (0x530,0xe80,0xf40,0x604)
  1072. mpu_port - port # for MPU-401 UART (0x300,0x310,0x320,0x330)
  1073. fm_port - port # for OPL3 device (0x388)
  1074. irq - IRQ # for WSS chip (5,7,9,10,11)
  1075. mpu_irq - IRQ # for MPU-401 UART (5,7,9,10)
  1076. dma1 - first DMA # for WSS chip (0,1,3)
  1077. This module supports only one card, autoprobe and PnP.
  1078. Module snd-opti92x-cs4231
  1079. -------------------------
  1080. Module for sound cards based on OPTi 82c92x and Crystal CS4231 chips.
  1081. port - port # for WSS chip (0x530,0xe80,0xf40,0x604)
  1082. mpu_port - port # for MPU-401 UART (0x300,0x310,0x320,0x330)
  1083. fm_port - port # for OPL3 device (0x388)
  1084. irq - IRQ # for WSS chip (5,7,9,10,11)
  1085. mpu_irq - IRQ # for MPU-401 UART (5,7,9,10)
  1086. dma1 - first DMA # for WSS chip (0,1,3)
  1087. dma2 - second DMA # for WSS chip (0,1,3)
  1088. This module supports only one card, autoprobe and PnP.
  1089. Module snd-opti93x
  1090. ------------------
  1091. Module for sound cards based on OPTi 82c93x chips.
  1092. port - port # for WSS chip (0x530,0xe80,0xf40,0x604)
  1093. mpu_port - port # for MPU-401 UART (0x300,0x310,0x320,0x330)
  1094. fm_port - port # for OPL3 device (0x388)
  1095. irq - IRQ # for WSS chip (5,7,9,10,11)
  1096. mpu_irq - IRQ # for MPU-401 UART (5,7,9,10)
  1097. dma1 - first DMA # for WSS chip (0,1,3)
  1098. dma2 - second DMA # for WSS chip (0,1,3)
  1099. This module supports only one card, autoprobe and PnP.
  1100. Module snd-pcxhr
  1101. ----------------
  1102. Module for Digigram PCXHR boards
  1103. This module supports multiple cards.
  1104. Module snd-portman2x4
  1105. ---------------------
  1106. Module for Midiman Portman 2x4 parallel port MIDI interface
  1107. This module supports multiple cards.
  1108. Module snd-powermac (on ppc only)
  1109. ---------------------------------
  1110. Module for PowerMac, iMac and iBook on-board soundchips
  1111. enable_beep - enable beep using PCM (enabled as default)
  1112. Module supports autoprobe a chip.
  1113. Note: the driver may have problems regarding endianess.
  1114. The power-management is supported.
  1115. Module snd-pxa2xx-ac97 (on arm only)
  1116. ------------------------------------
  1117. Module for AC97 driver for the Intel PXA2xx chip
  1118. For ARM architecture only.
  1119. The power-management is supported.
  1120. Module snd-riptide
  1121. ------------------
  1122. Module for Conexant Riptide chip
  1123. joystick_port - Joystick port # (default: 0x200)
  1124. mpu_port - MPU401 port # (default: 0x330)
  1125. opl3_port - OPL3 port # (default: 0x388)
  1126. This module supports multiple cards.
  1127. The driver requires the firmware loader support on kernel.
  1128. You need to install the firmware file "riptide.hex" to the standard
  1129. firmware path (e.g. /lib/firmware).
  1130. Module snd-rme32
  1131. ----------------
  1132. Module for RME Digi32, Digi32 Pro and Digi32/8 (Sek'd Prodif32,
  1133. Prodif96 and Prodif Gold) sound cards.
  1134. This module supports multiple cards.
  1135. Module snd-rme96
  1136. ----------------
  1137. Module for RME Digi96, Digi96/8 and Digi96/8 PRO/PAD/PST sound cards.
  1138. This module supports multiple cards.
  1139. Module snd-rme9652
  1140. ------------------
  1141. Module for RME Digi9652 (Hammerfall, Hammerfall-Light) sound cards.
  1142. precise_ptr - Enable precise pointer (doesn't work reliably).
  1143. (default = 0)
  1144. This module supports multiple cards.
  1145. Note: snd-page-alloc module does the job which snd-hammerfall-mem
  1146. module did formerly. It will allocate the buffers in advance
  1147. when any RME9652 cards are found. To make the buffer
  1148. allocation sure, load snd-page-alloc module in the early
  1149. stage of boot sequence. See "Early Buffer Allocation"
  1150. section.
  1151. Module snd-sa11xx-uda1341 (on arm only)
  1152. ---------------------------------------
  1153. Module for Philips UDA1341TS on Compaq iPAQ H3600 sound card.
  1154. Module supports only one card.
  1155. Module has no enable and index options.
  1156. The power-management is supported.
  1157. Module snd-sb8
  1158. --------------
  1159. Module for 8-bit SoundBlaster cards: SoundBlaster 1.0,
  1160. SoundBlaster 2.0,
  1161. SoundBlaster Pro
  1162. port - port # for SB DSP chip (0x220,0x240,0x260)
  1163. irq - IRQ # for SB DSP chip (5,7,9,10)
  1164. dma8 - DMA # for SB DSP chip (1,3)
  1165. This module supports multiple cards and autoprobe.
  1166. The power-management is supported.
  1167. Module snd-sb16 and snd-sbawe
  1168. -----------------------------
  1169. Module for 16-bit SoundBlaster cards: SoundBlaster 16 (PnP),
  1170. SoundBlaster AWE 32 (PnP),
  1171. SoundBlaster AWE 64 PnP
  1172. port - port # for SB DSP 4.x chip (0x220,0x240,0x260)
  1173. mpu_port - port # for MPU-401 UART (0x300,0x330), -1 = disable
  1174. awe_port - base port # for EMU8000 synthesizer (0x620,0x640,0x660)
  1175. (snd-sbawe module only)
  1176. irq - IRQ # for SB DSP 4.x chip (5,7,9,10)
  1177. dma8 - 8-bit DMA # for SB DSP 4.x chip (0,1,3)
  1178. dma16 - 16-bit DMA # for SB DSP 4.x chip (5,6,7)
  1179. mic_agc - Mic Auto-Gain-Control - 0 = disable, 1 = enable (default)
  1180. csp - ASP/CSP chip support - 0 = disable (default), 1 = enable
  1181. isapnp - ISA PnP detection - 0 = disable, 1 = enable (default)
  1182. This module supports multiple cards, autoprobe and ISA PnP.
  1183. Note: To use Vibra16X cards in 16-bit half duplex mode, you must
  1184. disable 16bit DMA with dma16 = -1 module parameter.
  1185. Also, all Sound Blaster 16 type cards can operate in 16-bit
  1186. half duplex mode through 8-bit DMA channel by disabling their
  1187. 16-bit DMA channel.
  1188. The power-management is supported.
  1189. Module snd-sgalaxy
  1190. ------------------
  1191. Module for Aztech Sound Galaxy sound card.
  1192. sbport - Port # for SB16 interface (0x220,0x240)
  1193. wssport - Port # for WSS interface (0x530,0xe80,0xf40,0x604)
  1194. irq - IRQ # (7,9,10,11)
  1195. dma1 - DMA #
  1196. This module supports multiple cards.
  1197. The power-management is supported.
  1198. Module snd-sscape
  1199. -----------------
  1200. Module for ENSONIQ SoundScape PnP cards.
  1201. port - Port # (PnP setup)
  1202. irq - IRQ # (PnP setup)
  1203. mpu_irq - MPU-401 IRQ # (PnP setup)
  1204. dma - DMA # (PnP setup)
  1205. This module supports multiple cards. ISA PnP must be enabled.
  1206. You need sscape_ctl tool in alsa-tools package for loading
  1207. the microcode.
  1208. Module snd-sun-amd7930 (on sparc only)
  1209. --------------------------------------
  1210. Module for AMD7930 sound chips found on Sparcs.
  1211. This module supports multiple cards.
  1212. Module snd-sun-cs4231 (on sparc only)
  1213. -------------------------------------
  1214. Module for CS4231 sound chips found on Sparcs.
  1215. This module supports multiple cards.
  1216. Module snd-sun-dbri (on sparc only)
  1217. -----------------------------------
  1218. Module for DBRI sound chips found on Sparcs.
  1219. This module supports multiple cards.
  1220. Module snd-wavefront
  1221. --------------------
  1222. Module for Turtle Beach Maui, Tropez and Tropez+ sound cards.
  1223. cs4232_pcm_port - Port # for CS4232 PCM interface.
  1224. cs4232_pcm_irq - IRQ # for CS4232 PCM interface (5,7,9,11,12,15).
  1225. cs4232_mpu_port - Port # for CS4232 MPU-401 interface.
  1226. cs4232_mpu_irq - IRQ # for CS4232 MPU-401 interface (9,11,12,15).
  1227. use_cs4232_midi - Use CS4232 MPU-401 interface
  1228. (inaccessibly located inside your computer)
  1229. ics2115_port - Port # for ICS2115
  1230. ics2115_irq - IRQ # for ICS2115
  1231. fm_port - FM OPL-3 Port #
  1232. dma1 - DMA1 # for CS4232 PCM interface.
  1233. dma2 - DMA2 # for CS4232 PCM interface.
  1234. isapnp - ISA PnP detection - 0 = disable, 1 = enable (default)
  1235. This module supports multiple cards and ISA PnP.
  1236. Module snd-sonicvibes
  1237. ---------------------
  1238. Module for S3 SonicVibes PCI sound cards.
  1239. * PINE Schubert 32 PCI
  1240. reverb - Reverb Enable - 1 = enable, 0 = disable (default)
  1241. - SoundCard must have onboard SRAM for this.
  1242. mge - Mic Gain Enable - 1 = enable, 0 = disable (default)
  1243. This module supports multiple cards and autoprobe.
  1244. Module snd-serial-u16550
  1245. ------------------------
  1246. Module for UART16550A serial MIDI ports.
  1247. port - port # for UART16550A chip
  1248. irq - IRQ # for UART16550A chip, -1 = poll mode
  1249. speed - speed in bauds (9600,19200,38400,57600,115200)
  1250. 38400 = default
  1251. base - base for divisor in bauds (57600,115200,230400,460800)
  1252. 115200 = default
  1253. outs - number of MIDI ports in a serial port (1-4)
  1254. 1 = default
  1255. adaptor - Type of adaptor.
  1256. 0 = Soundcanvas, 1 = MS-124T, 2 = MS-124W S/A,
  1257. 3 = MS-124W M/B, 4 = Generic
  1258. This module supports multiple cards. This module does not support autoprobe
  1259. thus the main port must be specified!!! Other options are optional.
  1260. Module snd-trident
  1261. ------------------
  1262. Module for Trident 4DWave DX/NX sound cards.
  1263. * Best Union Miss Melody 4DWave PCI
  1264. * HIS 4DWave PCI
  1265. * Warpspeed ONSpeed 4DWave PCI
  1266. * AzTech PCI 64-Q3D
  1267. * Addonics SV 750
  1268. * CHIC True Sound 4Dwave
  1269. * Shark Predator4D-PCI
  1270. * Jaton SonicWave 4D
  1271. pcm_channels - max channels (voices) reserved for PCM
  1272. wavetable_size - max wavetable size in kB (4-?kb)
  1273. This module supports multiple cards and autoprobe.
  1274. The power-management is supported.
  1275. Module snd-usb-audio
  1276. --------------------
  1277. Module for USB audio and USB MIDI devices.
  1278. vid - Vendor ID for the device (optional)
  1279. pid - Product ID for the device (optional)
  1280. device_setup - Device specific magic number (optional)
  1281. - Influence depends on the device
  1282. - Default: 0x0000
  1283. This module supports multiple devices, autoprobe and hotplugging.
  1284. Module snd-usb-caiaq
  1285. --------------------
  1286. Module for caiaq UB audio interfaces,
  1287. * Native Instruments RigKontrol2
  1288. * Native Instruments Kore Controller
  1289. * Native Instruments Audio Kontrol 1
  1290. * Native Instruments Audio 8 DJ
  1291. This module supports multiple devices, autoprobe and hotplugging.
  1292. Module snd-usb-usx2y
  1293. --------------------
  1294. Module for Tascam USB US-122, US-224 and US-428 devices.
  1295. This module supports multiple devices, autoprobe and hotplugging.
  1296. Note: you need to load the firmware via usx2yloader utility included
  1297. in alsa-tools and alsa-firmware packages.
  1298. Module snd-via82xx
  1299. ------------------
  1300. Module for AC'97 motherboards based on VIA 82C686A/686B, 8233,
  1301. 8233A, 8233C, 8235, 8237 (south) bridge.
  1302. mpu_port - 0x300,0x310,0x320,0x330, otherwise obtain BIOS setup
  1303. [VIA686A/686B only]
  1304. joystick - Enable joystick (default off) [VIA686A/686B only]
  1305. ac97_clock - AC'97 codec clock base (default 48000Hz)
  1306. dxs_support - support DXS channels,
  1307. 0 = auto (default), 1 = enable, 2 = disable,
  1308. 3 = 48k only, 4 = no VRA, 5 = enable any sample
  1309. rate and different sample rates on different
  1310. channels
  1311. [VIA8233/C, 8235, 8237 only]
  1312. ac97_quirk - AC'97 workaround for strange hardware
  1313. See "AC97 Quirk Option" section below.
  1314. This module supports one chip and autoprobe.
  1315. Note: on some SMP motherboards like MSI 694D the interrupts might
  1316. not be generated properly. In such a case, please try to
  1317. set the SMP (or MPS) version on BIOS to 1.1 instead of
  1318. default value 1.4. Then the interrupt number will be
  1319. assigned under 15. You might also upgrade your BIOS.
  1320. Note: VIA8233/5/7 (not VIA8233A) can support DXS (direct sound)
  1321. channels as the first PCM. On these channels, up to 4
  1322. streams can be played at the same time, and the controller
  1323. can perform sample rate conversion with separate rates for
  1324. each channel.
  1325. As default (dxs_support = 0), 48k fixed rate is chosen
  1326. except for the known devices since the output is often
  1327. noisy except for 48k on some mother boards due to the
  1328. bug of BIOS.
  1329. Please try once dxs_support=5 and if it works on other
  1330. sample rates (e.g. 44.1kHz of mp3 playback), please let us
  1331. know the PCI subsystem vendor/device id's (output of
  1332. "lspci -nv").
  1333. If dxs_support=5 does not work, try dxs_support=4; if it
  1334. doesn't work too, try dxs_support=1. (dxs_support=1 is
  1335. usually for old motherboards. The correct implemented
  1336. board should work with 4 or 5.) If it still doesn't
  1337. work and the default setting is ok, dxs_support=3 is the
  1338. right choice. If the default setting doesn't work at all,
  1339. try dxs_support=2 to disable the DXS channels.
  1340. In any cases, please let us know the result and the
  1341. subsystem vendor/device ids. See "Links and Addresses"
  1342. below.
  1343. Note: for the MPU401 on VIA823x, use snd-mpu401 driver
  1344. additionally. The mpu_port option is for VIA686 chips only.
  1345. The power-management is supported.
  1346. Module snd-via82xx-modem
  1347. ------------------------
  1348. Module for VIA82xx AC97 modem
  1349. ac97_clock - AC'97 codec clock base (default 48000Hz)
  1350. This module supports one card and autoprobe.
  1351. Note: The default index value of this module is -2, i.e. the first
  1352. slot is excluded.
  1353. The power-management is supported.
  1354. Module snd-virmidi
  1355. ------------------
  1356. Module for virtual rawmidi devices.
  1357. This module creates virtual rawmidi devices which communicate
  1358. to the corresponding ALSA sequencer ports.
  1359. midi_devs - MIDI devices # (1-4, default=4)
  1360. This module supports multiple cards.
  1361. Module snd-vx222
  1362. ----------------
  1363. Module for Digigram VX-Pocket VX222, V222 v2 and Mic cards.
  1364. mic - Enable Microphone on V222 Mic (NYI)
  1365. ibl - Capture IBL size. (default = 0, minimum size)
  1366. This module supports multiple cards.
  1367. When the driver is compiled as a module and the hotplug firmware
  1368. is supported, the firmware data is loaded via hotplug automatically.
  1369. Install the necessary firmware files in alsa-firmware package.
  1370. When no hotplug fw loader is available, you need to load the
  1371. firmware via vxloader utility in alsa-tools package. To invoke
  1372. vxloader automatically, add the following to /etc/modprobe.conf
  1373. install snd-vx222 /sbin/modprobe --first-time -i snd-vx222 && /usr/bin/vxloader
  1374. (for 2.2/2.4 kernels, add "post-install /usr/bin/vxloader" to
  1375. /etc/modules.conf, instead.)
  1376. IBL size defines the interrupts period for PCM. The smaller size
  1377. gives smaller latency but leads to more CPU consumption, too.
  1378. The size is usually aligned to 126. As default (=0), the smallest
  1379. size is chosen. The possible IBL values can be found in
  1380. /proc/asound/cardX/vx-status proc file.
  1381. The power-management is supported.
  1382. Module snd-vxpocket
  1383. -------------------
  1384. Module for Digigram VX-Pocket VX2 and 440 PCMCIA cards.
  1385. ibl - Capture IBL size. (default = 0, minimum size)
  1386. This module supports multiple cards. The module is compiled only when
  1387. PCMCIA is supported on kernel.
  1388. With the older 2.6.x kernel, to activate the driver via the card
  1389. manager, you'll need to set up /etc/pcmcia/vxpocket.conf. See the
  1390. sound/pcmcia/vx/vxpocket.c. 2.6.13 or later kernel requires no
  1391. longer require a config file.
  1392. When the driver is compiled as a module and the hotplug firmware
  1393. is supported, the firmware data is loaded via hotplug automatically.
  1394. Install the necessary firmware files in alsa-firmware package.
  1395. When no hotplug fw loader is available, you need to load the
  1396. firmware via vxloader utility in alsa-tools package.
  1397. About capture IBL, see the description of snd-vx222 module.
  1398. Note: snd-vxp440 driver is merged to snd-vxpocket driver since
  1399. ALSA 1.0.10.
  1400. The power-management is supported.
  1401. Module snd-ymfpci
  1402. -----------------
  1403. Module for Yamaha PCI chips (YMF72x, YMF74x & YMF75x).
  1404. mpu_port - 0x300,0x330,0x332,0x334, 0 (disable) by default,
  1405. 1 (auto-detect for YMF744/754 only)
  1406. fm_port - 0x388,0x398,0x3a0,0x3a8, 0 (disable) by default
  1407. 1 (auto-detect for YMF744/754 only)
  1408. joystick_port - 0x201,0x202,0x204,0x205, 0 (disable) by default,
  1409. 1 (auto-detect)
  1410. rear_switch - enable shared rear/line-in switch (bool)
  1411. This module supports autoprobe and multiple chips.
  1412. The power-management is supported.
  1413. Module snd-pdaudiocf
  1414. --------------------
  1415. Module for Sound Core PDAudioCF sound card.
  1416. The power-management is supported.
  1417. AC97 Quirk Option
  1418. =================
  1419. The ac97_quirk option is used to enable/override the workaround for
  1420. specific devices on drivers for on-board AC'97 controllers like
  1421. snd-intel8x0. Some hardware have swapped output pins between Master
  1422. and Headphone, or Surround (thanks to confusion of AC'97
  1423. specifications from version to version :-)
  1424. The driver provides the auto-detection of known problematic devices,
  1425. but some might be unknown or wrongly detected. In such a case, pass
  1426. the proper value with this option.
  1427. The following strings are accepted:
  1428. - default Don't override the default setting
  1429. - none Disable the quirk
  1430. - hp_only Bind Master and Headphone controls as a single control
  1431. - swap_hp Swap headphone and master controls
  1432. - swap_surround Swap master and surround controls
  1433. - ad_sharing For AD1985, turn on OMS bit and use headphone
  1434. - alc_jack For ALC65x, turn on the jack sense mode
  1435. - inv_eapd Inverted EAPD implementation
  1436. - mute_led Bind EAPD bit for turning on/off mute LED
  1437. For backward compatibility, the corresponding integer value -1, 0,
  1438. ... are accepted, too.
  1439. For example, if "Master" volume control has no effect on your device
  1440. but only "Headphone" does, pass ac97_quirk=hp_only module option.
  1441. Configuring Non-ISAPNP Cards
  1442. ============================
  1443. When the kernel is configured with ISA-PnP support, the modules
  1444. supporting the isapnp cards will have module options "isapnp".
  1445. If this option is set, *only* the ISA-PnP devices will be probed.
  1446. For probing the non ISA-PnP cards, you have to pass "isapnp=0" option
  1447. together with the proper i/o and irq configuration.
  1448. When the kernel is configured without ISA-PnP support, isapnp option
  1449. will be not built in.
  1450. Module Autoloading Support
  1451. ==========================
  1452. The ALSA drivers can be loaded automatically on demand by defining
  1453. module aliases. The string 'snd-card-%1' is requested for ALSA native
  1454. devices where %i is sound card number from zero to seven.
  1455. To auto-load an ALSA driver for OSS services, define the string
  1456. 'sound-slot-%i' where %i means the slot number for OSS, which
  1457. corresponds to the card index of ALSA. Usually, define this
  1458. as the same card module.
  1459. An example configuration for a single emu10k1 card is like below:
  1460. ----- /etc/modprobe.conf
  1461. alias snd-card-0 snd-emu10k1
  1462. alias sound-slot-0 snd-emu10k1
  1463. ----- /etc/modprobe.conf
  1464. The available number of auto-loaded sound cards depends on the module
  1465. option "cards_limit" of snd module. As default it's set to 1.
  1466. To enable the auto-loading of multiple cards, specify the number of
  1467. sound cards in that option.
  1468. When multiple cards are available, it'd better to specify the index
  1469. number for each card via module option, too, so that the order of
  1470. cards is kept consistent.
  1471. An example configuration for two sound cards is like below:
  1472. ----- /etc/modprobe.conf
  1473. # ALSA portion
  1474. options snd cards_limit=2
  1475. alias snd-card-0 snd-interwave
  1476. alias snd-card-1 snd-ens1371
  1477. options snd-interwave index=0
  1478. options snd-ens1371 index=1
  1479. # OSS/Free portion
  1480. alias sound-slot-0 snd-interwave
  1481. alias sound-slot-1 snd-ens1371
  1482. ----- /etc/modprobe.conf
  1483. In this example, the interwave card is always loaded as the first card
  1484. (index 0) and ens1371 as the second (index 1).
  1485. ALSA PCM devices to OSS devices mapping
  1486. =======================================
  1487. /dev/snd/pcmC0D0[c|p] -> /dev/audio0 (/dev/audio) -> minor 4
  1488. /dev/snd/pcmC0D0[c|p] -> /dev/dsp0 (/dev/dsp) -> minor 3
  1489. /dev/snd/pcmC0D1[c|p] -> /dev/adsp0 (/dev/adsp) -> minor 12
  1490. /dev/snd/pcmC1D0[c|p] -> /dev/audio1 -> minor 4+16 = 20
  1491. /dev/snd/pcmC1D0[c|p] -> /dev/dsp1 -> minor 3+16 = 19
  1492. /dev/snd/pcmC1D1[c|p] -> /dev/adsp1 -> minor 12+16 = 28
  1493. /dev/snd/pcmC2D0[c|p] -> /dev/audio2 -> minor 4+32 = 36
  1494. /dev/snd/pcmC2D0[c|p] -> /dev/dsp2 -> minor 3+32 = 39
  1495. /dev/snd/pcmC2D1[c|p] -> /dev/adsp2 -> minor 12+32 = 44
  1496. The first number from /dev/snd/pcmC{X}D{Y}[c|p] expression means
  1497. sound card number and second means device number. The ALSA devices
  1498. have either 'c' or 'p' suffix indicating the direction, capture and
  1499. playback, respectively.
  1500. Please note that the device mapping above may be varied via the module
  1501. options of snd-pcm-oss module.
  1502. Proc interfaces (/proc/asound)
  1503. ==============================
  1504. /proc/asound/card#/pcm#[cp]/oss
  1505. -------------------------------
  1506. String "erase" - erase all additional informations about OSS applications
  1507. String "<app_name> <fragments> <fragment_size> [<options>]"
  1508. <app_name> - name of application with (higher priority) or without path
  1509. <fragments> - number of fragments or zero if auto
  1510. <fragment_size> - size of fragment in bytes or zero if auto
  1511. <options> - optional parameters
  1512. - disable the application tries to open a pcm device for
  1513. this channel but does not want to use it.
  1514. (Cause a bug or mmap needs)
  1515. It's good for Quake etc...
  1516. - direct don't use plugins
  1517. - block force block mode (rvplayer)
  1518. - non-block force non-block mode
  1519. - whole-frag write only whole fragments (optimization affecting
  1520. playback only)
  1521. - no-silence do not fill silence ahead to avoid clicks
  1522. - buggy-ptr Returns the whitespace blocks in GETOPTR ioctl
  1523. instead of filled blocks
  1524. Example: echo "x11amp 128 16384" > /proc/asound/card0/pcm0p/oss
  1525. echo "squake 0 0 disable" > /proc/asound/card0/pcm0c/oss
  1526. echo "rvplayer 0 0 block" > /proc/asound/card0/pcm0p/oss
  1527. Early Buffer Allocation
  1528. =======================
  1529. Some drivers (e.g. hdsp) require the large contiguous buffers, and
  1530. sometimes it's too late to find such spaces when the driver module is
  1531. actually loaded due to memory fragmentation. You can pre-allocate the
  1532. PCM buffers by loading snd-page-alloc module and write commands to its
  1533. proc file in prior, for example, in the early boot stage like
  1534. /etc/init.d/*.local scripts.
  1535. Reading the proc file /proc/drivers/snd-page-alloc shows the current
  1536. usage of page allocation. In writing, you can send the following
  1537. commands to the snd-page-alloc driver:
  1538. - add VENDOR DEVICE MASK SIZE BUFFERS
  1539. VENDOR and DEVICE are PCI vendor and device IDs. They take
  1540. integer numbers (0x prefix is needed for the hex).
  1541. MASK is the PCI DMA mask. Pass 0 if not restricted.
  1542. SIZE is the size of each buffer to allocate. You can pass
  1543. k and m suffix for KB and MB. The max number is 16MB.
  1544. BUFFERS is the number of buffers to allocate. It must be greater
  1545. than 0. The max number is 4.
  1546. - erase
  1547. This will erase the all pre-allocated buffers which are not in
  1548. use.
  1549. Links and Addresses
  1550. ===================
  1551. ALSA project homepage
  1552. http://www.alsa-project.org
  1553. ALSA Bug Tracking System
  1554. https://bugtrack.alsa-project.org/bugs/
  1555. ALSA Developers ML
  1556. mailto:alsa-devel@alsa-project.org