xref: /freebsd/share/man/man4/pcm.4 (revision 5521ff5a4d1929056e7ffc982fac3341ca54df7c)
1.\"
2.\" Copyright (c) 1998, Luigi Rizzo
3.\" All rights reserved.
4.\"
5.\" Redistribution and use in source and binary forms, with or without
6.\" modification, are permitted provided that the following conditions
7.\" are met:
8.\" 1. Redistributions of source code must retain the above copyright
9.\"    notice, this list of conditions and the following disclaimer.
10.\" 2. Redistributions in binary form must reproduce the above copyright
11.\"    notice, this list of conditions and the following disclaimer in the
12.\"    documentation and/or other materials provided with the distribution.
13.\"
14.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24.\" SUCH DAMAGE.
25.\"
26.\" $FreeBSD$
27.\"
28.Dd June 3, 1998
29.Dt PCM 4
30.Os FreeBSD
31.Sh NAME
32.Nm pcm ,
33.Nm snd
34.Nd FreeBSD PCM audio device driver
35.Sh SYNOPSIS
36For a card with bridge driver support, and a PnP card:
37.Cd "device pcm"
38.Pp
39For a card without bridge driver support, and a non-PnP card:
40.Cd "device pcm0 at isa? port? irq 5 drq 1 flags 0x15"
41.Sh DESCRIPTION
42The
43.Nm
44driver provides support for PCM audio play and capture.
45This driver
46also supports various PCI and WSS/MSS compatible ISA sound cards, and
47AC97 mixer.
48True full duplex operation is available on most cards.
49.Pp
50If your sound card is supported by a bridge driver,
51.Nm
52driver works
53in conjunction with the bridge driver.
54.Pp
55Apart from the usual parameters, the flags field is used to specify
56the secondary DMA channel (generally used for capture in full duplex
57cards). Flags are set to 0 for cards not using a secondary DMA
58channel, or to 0x10 + C to specify channel C.
59.Pp
60The driver works best with WSS/MSS cards, which have a very clean
61architecture and an orthogonal set of features.
62They also happen to be
63among the cheapest audio cards on the market.
64.Pp
65The driver does its best to recognize the installed hardware and drive
66it correctly, so that you don't have to give too many details in the
67kernel config files.
68For PCI and ISA PnP cards this is actually easy
69since they identify themselves.
70For legacy ISA cards, the driver looks
71for MSS cards at addresses 0x530 and 0x604 (obviously, unless overridden
72in the kernel config file by specifying an address).
73.Sh IOCTL
74The driver supports most of the Voxware ioctls(), and most
75applications work unmodified (including popular mpeg players and linux
76binaries). A few
77differences exist (the most important one is the ability to use
78memory-mapped access to the audio buffers). As a consequence, some
79applications may need to be recompiled with a slightly modified
80audio module.  See /usr/include/sys/soundcard.h for a complete
81list of the supported ioctls.
82.Sh SUPPORTED CARDS
83.Pp
84Below we include a list of supported codecs/cards.
85If your sound card
86is not listed here, it may be supported by a bridge driver.
87.Bl -tag -width 2m
88.It CS4237, CS4236, CS4232, CS4231 (ISA)
89All these cards work perfectly in full duplex using the MSS mode.
90This chipset is used, among others, on the A/Open AW35 and AW32, on
91some Intel motherboards, and (the CS4231) on some non-PnP cards.
92.Pp
93The CS4232 is reported as buggy in the Voxware documentation but
94I am not sure if this is true.
95On one of my Intel motherboards,
96capture does not work simply because the capture DMA channel is
97not wired to the ISA DMA controller.
98.It Yamaha OPL-SAx (ISA)
99Works perfectly in all modes.
100This chip is used in several PnP cards,
101but also (in non-PnP mode) on motherboards and laptops (e.g. the
102Toshiba Libretto).
103.It OPTi931 (ISA)
104The chip is buggy, but the driver has many workarounds to make it work
105in full duplex because for some time these were the only full duplex
106cards I could find. u-law formats uses U8 format internally because of
107a bug in the chip.
108.It Trident 4DWave DX/NX (PCI)
109.It ENSONIQ AudioPCI ES1370/1371 (PCI)
110Creative Labs SoundBlaster PCI is supported as well.
111.It ESS Solo-1/1E (PCI)
112.It NeoMagic 256AV/ZX (PCI)
113.El
114.Sh FILES
115The following commonly used symbolic links to real device nodes
116should be present:
117.Pp
118.Bl -tag -width /dev/sequencer -compact
119.It Pa /dev/audio
120Sparc-compatible audio device
121.It Pa /dev/dsp
122Digitized voice device
123.It Pa /dev/dspW
124Like
125.Pa /dev/dsp ,
126but 16 bits per sample
127.It Pa /dev/midi
128Raw midi access device
129.It Pa /dev/mixer
130Control port mixer device
131.It Pa /dev/music
132Level 2 sequencer interface
133.It Pa /dev/sequencer
134Sequencer device
135.It Pa /dev/pss
136Programmable device interface
137.El
138.Pp
139Each symbolic link refers to a device node of the same name,
140but with a unit number appended.
141The unit number for each device matches the unit number of the
142device probed at boot time.
143Device probe messages can be examined with the
144.Xr dmesg 8
145utility.
146.Pp
147All the appropriate device nodes and symbolic links
148for the
149.Ql pcm0
150device would created with the following commands:
151.Bd -literal -offset indent
152cd /dev; sh MAKEDEV snd0
153.Ed
154.Pp
155Similarly, the device nodes and symbolic links for the
156.Ql pcm1
157device would be created as follows:
158.Bd -literal -offset indent
159cd /dev; sh MAKEDEV snd1
160.Ed
161.Pp
162Since the
163.Pa /dev/MAKEDEV
164utility creates symbolic links that will be used by
165many utilities by default,
166the device nodes and symbolic links for the
167preferred audio device in systems with multiple audio devices
168should be created last.
169.Sh DIAGNOSTICS AND TROUBLESHOOTING
170.Bl -tag -width 2m
171.It ac97: dac not ready
172AC97 codec is not likely to be accompanied with the sound card.
173.It unsupported subdevice XX
174A device node is not created properly.
175.El
176.Sh BUGS
177Some features of your cards (e.g. global volume control) might not
178be supported on all devices.
179.Sh HISTORY
180The
181.Nm
182device driver first appeared in
183.Fx 2.2.6 ,
184rewritten in
185.Fx 4.0 .
186.Sh SEE ALSO
187.Xr csa 4 ,
188.Xr gusc 4 ,
189.Xr sbc 4
190.Sh AUTHORS
191.An Luigi Rizzo Aq luigi@iet.unipi.it
192initially wrote the
193.Nm
194device driver and this manual page.
195.An Cameron Grant Aq gandalf@vilnya.demon.co.uk
196totally revised the device driver.
197.An Seigo Tanimura Aq tanimura@r.dl.itc.u-tokyo.ac.jp
198revised this manual page.
199