ALSA-Configuration.txt 61 KB

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