ALSA-Configuration.txt 72 KB

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