ALSA-Configuration.txt 67 KB

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