via-audio.tmpl
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:14k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. <!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook V3.1//EN"[]>
  2. <book id="ViaAudioGuide">
  3.  <bookinfo>
  4.   <title>Via 686 Audio Driver for Linux</title>
  5.   
  6.   <authorgroup>
  7.    <author>
  8.     <firstname>Jeff</firstname>
  9.     <surname>Garzik</surname>
  10.    </author>
  11.   </authorgroup>
  12.   <copyright>
  13.    <year>1999-2001</year>
  14.    <holder>Jeff Garzik</holder>
  15.   </copyright>
  16.   <legalnotice>
  17.    <para>
  18.      This documentation is free software; you can redistribute
  19.      it and/or modify it under the terms of the GNU General Public
  20.      License as published by the Free Software Foundation; either
  21.      version 2 of the License, or (at your option) any later
  22.      version.
  23.    </para>
  24.       
  25.    <para>
  26.      This program is distributed in the hope that it will be
  27.      useful, but WITHOUT ANY WARRANTY; without even the implied
  28.      warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  29.      See the GNU General Public License for more details.
  30.    </para>
  31.       
  32.    <para>
  33.      You should have received a copy of the GNU General Public
  34.      License along with this program; if not, write to the Free
  35.      Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  36.      MA 02111-1307 USA
  37.    </para>
  38.       
  39.    <para>
  40.      For more details see the file COPYING in the source
  41.      distribution of Linux.
  42.    </para>
  43.   </legalnotice>
  44.  </bookinfo>
  45. <toc></toc>
  46.   <chapter id="intro">
  47.       <title>Introduction</title>
  48.   <para>
  49.    The Via VT82C686A "super southbridge" chips contain
  50. AC97-compatible audio logic which features dual 16-bit stereo
  51. PCM sound channels (full duplex), plus a third PCM channel intended for use
  52. in hardware-assisted FM synthesis.
  53.   </para>
  54.   <para>
  55.    The current Linux kernel audio driver for this family of chips
  56. supports audio playback and recording, but hardware-assisted
  57. FM features, and hardware buffer direct-access (mmap)
  58. support are not yet available.
  59.   </para>
  60.   <para>
  61.    This driver supports any Linux kernel version after 2.4.10.
  62.   </para>
  63.   <para>
  64. Please send bug reports to the mailing list <email>linux-via@gtf.org</email>.
  65. To subscribe, e-mail <email>majordomo@gtf.org</email> with
  66.   </para>
  67.   <programlisting>
  68. subscribe linux-via
  69.   </programlisting>
  70.   <para>
  71. in the body of the message.
  72.   </para>
  73.   </chapter>
  74.   
  75.   <chapter id="install">
  76.       <title>Driver Installation</title>
  77.   <para>
  78.    To use this audio driver, select the
  79. CONFIG_SOUND_VIA82CXXX option in the section Sound during kernel configuration.
  80. Follow the usual kernel procedures for rebuilding the kernel,
  81. or building and installing driver modules.
  82.   </para>
  83.   <para>
  84.    To make this driver the default audio driver, you can add the
  85. following to your /etc/conf.modules file:
  86.   </para>
  87.   <programlisting>
  88. alias sound via82cxxx_audio
  89.   </programlisting>
  90.   <para>
  91.    Note that soundcore and ac97_codec support modules
  92. are also required for working audio, in addition to
  93. the via82cxxx_audio module itself.
  94.   </para>
  95.   </chapter>
  96.   
  97.   <chapter id="reportbug">
  98.       <title>Submitting a bug report</title>
  99.   <sect1 id="bugrepdesc"><title>Description of problem</title>
  100.   <para>
  101. Describe the application you were using to play/record sound, and how
  102. to reproduce the problem.
  103.   </para>
  104.   </sect1>
  105.   <sect1 id="bugrepdiag"><title>Diagnostic output</title>
  106.   <para>
  107. Obtain the via-audio-diag diagnostics program from
  108. http://sf.net/projects/gkernel/ and provide a dump of the
  109. audio chip's registers while the problem is occurring.  Sample command line:
  110.   </para>
  111.   <programlisting>
  112. ./via-audio-diag -aps > diag-output.txt
  113.   </programlisting>
  114.   </sect1>
  115.   <sect1 id="bugrepdebug"><title>Driver debug output</title>
  116.   <para>
  117. Define <constant>VIA_DEBUG</constant> at the beginning of the driver, then capture and email
  118. the kernel log output.  This can be viewed in the system kernel log (if
  119. enabled), or via the dmesg program.  Sample command line:
  120.   </para>
  121.   <programlisting>
  122. dmesg > /tmp/dmesg-output.txt
  123.   </programlisting>
  124.   </sect1>
  125.   <sect1 id="bugrepprintk"><title>Bigger kernel message buffer</title>
  126.   <para>
  127. If you wish to increase the size of the buffer displayed by dmesg, then
  128. change the <constant>LOG_BUF_LEN</constant> macro at the top of linux/kernel/printk.c, recompile
  129. your kernel, and pass the <constant>LOG_BUF_LEN</constant> value to dmesg.  Sample command line with
  130. <constant>LOG_BUF_LEN</constant> == 32768:
  131.   </para>
  132.   <programlisting>
  133. dmesg -s 32768 > /tmp/dmesg-output.txt
  134.   </programlisting>
  135.   </sect1>
  136.   </chapter>
  137.   
  138.   <chapter id="bugs">
  139.      <title>Known Bugs And Assumptions</title>
  140.   <para>
  141.   <variablelist>
  142.     <varlistentry><term>Low volume</term>
  143.     <listitem>
  144.     <para>
  145. Volume too low on many systems.  Workaround:  use mixer program
  146. such as xmixer to increase volume.
  147.     </para>
  148.     </listitem></varlistentry>
  149.   </variablelist>
  150.   </para>
  151.   </chapter>
  152.   <chapter id="thanks">
  153.       <title>Thanks</title>
  154.   <para>
  155. Via for providing e-mail support, specs, and NDA'd source code.
  156.   </para>
  157.   <para>
  158. MandrakeSoft for providing hacking time.
  159.   </para>
  160.   <para>
  161. AC97 mixer interface fixes and debugging by Ron Cemer <email>roncemer@gte.net</email>.
  162.   </para>
  163.   <para>
  164. Rui Sousa <email>rui.sousa@conexant.com</email>, for bugfixing
  165. MMAP support, and several other notable fixes that resulted from
  166. his hard work and testing.
  167.   </para>
  168.   <para>
  169. Adrian Cox <email>adrian@humboldt.co.uk</email>, for bugfixing
  170. MMAP support, and several other notable fixes that resulted from
  171. his hard work and testing.
  172.   </para>
  173.   <para>
  174.    Thomas Sailer for further bugfixes.
  175.   </para>
  176.   </chapter>
  177.   
  178.   <chapter id="notes">
  179.      <title>Random Notes</title>
  180.   <para>
  181. Two /proc pseudo-files provide diagnostic information.  This is generally
  182. not useful to most users.  Power users can disable CONFIG_SOUND_VIA82CXXX_PROCFS,
  183. and remove the /proc support code.  Once
  184. version 2.0.0 is released, the /proc support code will be disabled by
  185. default.  Available /proc pseudo-files:
  186.   </para>
  187.   <programlisting>
  188. /proc/driver/via/0/info
  189. /proc/driver/via/0/ac97
  190.   </programlisting>
  191.   <para>
  192. This driver by default supports all PCI audio devices which report
  193. a vendor id of 0x1106, and a device id of 0x3058.  Subsystem vendor
  194. and device ids are not examined.
  195.   </para>
  196.   <para>
  197. GNU indent formatting options:
  198.   <programlisting>
  199. -kr -i8 -ts8 -br -ce -bap -sob -l80 -pcs -cs -ss -bs -di1 -nbc -lp -psl
  200.   </programlisting>
  201.   </para>
  202.   <para>
  203. Via has graciously donated e-mail support and source code to help further
  204. the development of this driver.  Their assistance has been invaluable
  205. in the design and coding of the next major version of this driver.
  206.   </para>
  207.   <para>
  208. The Via audio chip apparently provides a second PCM scatter-gather
  209. DMA channel just for FM data, but does not have a full hardware MIDI
  210. processor.  I haven't put much thought towards a solution here, but it
  211. might involve using SoftOSS midi wave table, or simply disabling MIDI
  212. support altogether and using the FM PCM channel as a second (input? output?)
  213.   </para>
  214.   </chapter>
  215.   <chapter id="changelog">
  216.       <title>Driver ChangeLog</title>
  217. <sect1 id="version191"><title>
  218. Version 1.9.1
  219. </title>
  220.   <itemizedlist spacing=compact>
  221.    <listitem>
  222.     <para>
  223.     DSP read/write bugfixes from Thomas Sailer.
  224.     </para>
  225.    </listitem>
  226.    <listitem>
  227.     <para>
  228.     Add new PCI id for single-channel use of Via 8233.
  229.     </para>
  230.    </listitem>
  231.    <listitem>
  232.     <para>
  233.     Other bug fixes, tweaks, new ioctls.
  234.     </para>
  235.    </listitem>
  236.   </itemizedlist>
  237. </sect1>
  238. <sect1 id="version1115"><title>
  239. Version 1.1.15
  240. </title>
  241.   <itemizedlist spacing=compact>
  242.    <listitem>
  243.     <para>
  244.     Support for variable fragment size and variable fragment number (Rui
  245.     Sousa)
  246.     </para>
  247.    </listitem>
  248.    <listitem>
  249.     <para>
  250.     Fixes for the SPEED, STEREO, CHANNELS, FMT ioctls when in read &
  251.     write mode (Rui Sousa)
  252.     </para>
  253.    </listitem>
  254.    <listitem>
  255.     <para>
  256.     Mmaped sound is now fully functional. (Rui Sousa)
  257.     </para>
  258.    </listitem>
  259.    <listitem>
  260.     <para>
  261.     Make sure to enable PCI device before reading any of its PCI
  262.     config information. (fixes potential hotplug problems)
  263.     </para>
  264.    </listitem>
  265.    <listitem>
  266.     <para>
  267.     Clean up code a bit and add more internal function documentation.
  268.     </para>
  269.    </listitem>
  270.    <listitem>
  271.     <para>
  272.     AC97 codec access fixes (Adrian Cox)
  273.     </para>
  274.    </listitem>
  275.    <listitem>
  276.     <para>
  277.     Big endian fixes (Adrian Cox)
  278.     </para>
  279.    </listitem>
  280.    <listitem>
  281.     <para>
  282.     MIDI support (Adrian Cox)
  283.     </para>
  284.    </listitem>
  285.    <listitem>
  286.     <para>
  287.     Detect and report locked-rate AC97 codecs.  If your hardware only
  288.     supports 48Khz (locked rate), then your recording/playback software
  289.     must upsample or downsample accordingly.  The hardware cannot do it.
  290.     </para>
  291.    </listitem>
  292.    <listitem>
  293.     <para>
  294.     Use new pci_request_regions and pci_disable_device functions in
  295.     kernel 2.4.6.
  296.     </para>
  297.    </listitem>
  298.   </itemizedlist>
  299. </sect1>
  300. <sect1 id="version1114"><title>
  301. Version 1.1.14
  302. </title>
  303.   <itemizedlist spacing=compact>
  304.    <listitem>
  305.     <para>
  306.     Use VM_RESERVE when available, to eliminate unnecessary page faults.
  307.     </para>
  308.    </listitem>
  309.   </itemizedlist>
  310. </sect1>
  311. <sect1 id="version1112"><title>
  312. Version 1.1.12
  313. </title>
  314.   <itemizedlist spacing=compact>
  315.    <listitem>
  316.     <para>
  317.     mmap bug fixes from Linus.
  318.     </para>
  319.    </listitem>
  320.   </itemizedlist>
  321. </sect1>
  322. <sect1 id="version1111"><title>
  323. Version 1.1.11
  324. </title>
  325.   <itemizedlist spacing=compact>
  326.    <listitem>
  327.     <para>
  328.     Many more bug fixes.  mmap enabled by default, but may still be buggy.
  329.     </para>
  330.    </listitem>
  331.    <listitem>
  332.     <para>
  333.     Uses new and spiffy method of mmap'ing the DMA buffer, based
  334.     on a suggestion from Linus.
  335.     </para>
  336.    </listitem>
  337.   </itemizedlist>
  338. </sect1>
  339. <sect1 id="version1110"><title>
  340. Version 1.1.10
  341. </title>
  342.   <itemizedlist spacing=compact>
  343.    <listitem>
  344.     <para>
  345.     Many bug fixes.  mmap enabled by default, but may still be buggy.
  346.     </para>
  347.    </listitem>
  348.   </itemizedlist>
  349. </sect1>
  350. <sect1 id="version119"><title>
  351. Version 1.1.9
  352. </title>
  353.   <itemizedlist spacing=compact>
  354.    <listitem>
  355.     <para>
  356.     Redesign and rewrite audio playback implementation.  (faster and smaller, hopefully)
  357.     </para>
  358.    </listitem>
  359.    <listitem>
  360.     <para>
  361.     Implement recording and full duplex (DSP_CAP_DUPLEX) support.
  362.     </para>
  363.    </listitem>
  364.    <listitem>
  365.     <para>
  366.     Make procfs support optional.
  367.     </para>
  368.    </listitem>
  369.    <listitem>
  370.     <para>
  371.     Quick interrupt status check, to lessen overhead in interrupt
  372.     sharing situations.
  373.     </para>
  374.    </listitem>
  375.    <listitem>
  376.     <para>
  377.     Add mmap(2) support.  Disabled for now, it is still buggy and experimental.
  378.     </para>
  379.    </listitem>
  380.    <listitem>
  381.     <para>
  382.     Surround all syscalls with a semaphore for cheap and easy SMP protection.
  383.     </para>
  384.    </listitem>
  385.    <listitem>
  386.     <para>
  387.     Fix bug in channel shutdown (hardware channel reset) code.
  388.     </para>
  389.    </listitem>
  390.    <listitem>
  391.     <para>
  392.     Remove unnecessary spinlocks (better performance).
  393.     </para>
  394.    </listitem>
  395.    <listitem>
  396.     <para>
  397.     Eliminate "unknown AFMT" message by using a different method
  398.     of selecting the best AFMT_xxx sound sample format for use.
  399.     </para>
  400.    </listitem>
  401.    <listitem>
  402.     <para>
  403.     Support for realtime hardware pointer position reporting
  404.     (DSP_CAP_REALTIME, SNDCTL_DSP_GETxPTR ioctls)
  405.     </para>
  406.    </listitem>
  407.    <listitem>
  408.     <para>
  409.     Support for capture/playback triggering
  410.     (DSP_CAP_TRIGGER, SNDCTL_DSP_SETTRIGGER ioctls)
  411.     </para>
  412.    </listitem>
  413.    <listitem>
  414.     <para>
  415.     SNDCTL_DSP_SETDUPLEX and SNDCTL_DSP_POST ioctls now handled.
  416.     </para>
  417.    </listitem>
  418.    <listitem>
  419.     <para>
  420.     Rewrite open(2) and close(2) logic to allow only one user at
  421.     a time.  All other open(2) attempts will sleep until they succeed.
  422.     FIXME: open(O_RDONLY) and open(O_WRONLY) should be allowed to succeed.
  423.     </para>
  424.    </listitem>
  425.    <listitem>
  426.     <para>
  427.     Reviewed code to ensure that SMP and multiple audio devices
  428.     are fully supported.
  429.     </para>
  430.    </listitem>
  431.   </itemizedlist>
  432. </sect1>
  433. <sect1 id="version118"><title>
  434. Version 1.1.8
  435. </title>
  436.   <itemizedlist spacing=compact>
  437.    <listitem>
  438.     <para>
  439.      Clean up interrupt handler output.  Fixes the following kernel error message:
  440.     </para>
  441.    <programlisting>
  442. unhandled interrupt ...
  443.    </programlisting>
  444.    </listitem>
  445.    <listitem>
  446.     <para>
  447.      Convert documentation to DocBook, so that PDF, HTML and PostScript (.ps) output is readily
  448. available.
  449.     </para>
  450.    </listitem>
  451.   </itemizedlist>
  452. </sect1>
  453. <sect1 id="version117"><title>
  454. Version 1.1.7
  455. </title>
  456.   <itemizedlist spacing=compact>
  457.    <listitem>
  458.     <para>
  459.  Fix module unload bug where mixer device left registered
  460.   after driver exit
  461.     </para>
  462.    </listitem>
  463.   </itemizedlist>
  464. </sect1>
  465. <sect1 id="version116"><title>
  466. Version 1.1.6
  467. </title>
  468.   <itemizedlist spacing=compact>
  469.    <listitem>
  470.     <para>
  471.  Rewrite via_set_rate to mimic ALSA basic AC97 rate setting
  472.     </para>
  473.    </listitem>
  474.    <listitem>
  475.     <para>
  476.  Remove much dead code
  477.     </para>
  478.    </listitem>
  479.    <listitem>
  480.     <para>
  481.  Complete spin_lock_irqsave -> spin_lock_irq conversion in via_dsp_ioctl
  482.     </para>
  483.    </listitem>
  484.    <listitem>
  485.     <para>
  486.  Fix build problem in via_dsp_ioctl
  487.     </para>
  488.    </listitem>
  489.    <listitem>
  490.     <para>
  491.  Optimize included headers to eliminate headers found in linux/drivers/sound
  492. </para>
  493.    </listitem>
  494.   </itemizedlist>
  495. </sect1>
  496. <sect1 id="version115"><title>
  497. Version 1.1.5
  498. </title>
  499.   <itemizedlist spacing=compact>
  500.    <listitem>
  501.     <para>
  502.  Disable some overly-verbose debugging code
  503.     </para>
  504.    </listitem>
  505.    <listitem>
  506.     <para>
  507.  Remove unnecessary sound locks
  508.    </para>
  509.    </listitem>
  510.    <listitem>
  511.     <para>
  512.  Fix some ioctls for better time resolution
  513.     </para>
  514.    </listitem>
  515.    <listitem>
  516.     <para>
  517.  Begin spin_lock_irqsave -> spin_lock_irq conversion in via_dsp_ioctl
  518.     </para>
  519.    </listitem>
  520.   </itemizedlist>
  521. </sect1>
  522. <sect1 id="version114"><title>
  523. Version 1.1.4
  524. </title>
  525.   <itemizedlist spacing=compact>
  526.    <listitem>
  527.     <para>
  528.  Completed rewrite of driver.  Eliminated SoundBlaster compatibility
  529.   completely, and now uses the much-faster scatter-gather DMA engine.
  530.     </para>
  531.    </listitem>
  532.   </itemizedlist>
  533. </sect1>
  534.   </chapter>
  535.   
  536.   <chapter id="intfunctions">
  537.      <title>Internal Functions</title>
  538. !Idrivers/sound/via82cxxx_audio.c
  539.   </chapter>
  540. </book>