]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - share/man/man4/snd_sbc.4
This commit was generated by cvs2svn to compensate for changes in r161561,
[FreeBSD/FreeBSD.git] / share / man / man4 / snd_sbc.4
1 .\"
2 .\" Copyright (c) 1999 Seigo Tanimura
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 December 15, 2005
29 .Dt SND_SBC 4
30 .Os
31 .Sh NAME
32 .Nm snd_sbc
33 .Nd Creative Sound Blaster ISA and compatible bridge device driver
34 .Sh SYNOPSIS
35 To compile this driver into the kernel, place the following lines in your
36 kernel configuration file:
37 .Bd -ragged -offset indent
38 .Cd "device sound"
39 .Cd "device snd_sbc"
40 .Ed
41 .Pp
42 Alternatively, to load the driver as a module at boot time, place the
43 following line in
44 .Xr loader.conf 5 :
45 .Bd -literal -offset indent
46 snd_sbc_load="YES"
47 .Ed
48 .Pp
49 Non-PnP cards require the following lines in
50 .Xr device.hints 5 :
51 .Bd -literal -offset indent
52 hint.sbc.0.at="isa"
53 hint.sbc.0.port="0x220"
54 hint.sbc.0.irq="5"
55 hint.sbc.0.drq="1"
56 hint.sbc.0.flags="0x15"
57 .Ed
58 .Sh DESCRIPTION
59 The
60 .Nm
61 bridge driver allows the generic audio driver
62 .Xr sound 4
63 to attach to Creative Sound Blaster ISA compatible audio cards.
64 .Pp
65 The value of flags specifies the secondary DMA channel.
66 If the secondary
67 DMA channel is C, set the flags to (C | 0x10).
68 For a sound card without the
69 secondary DMA channel, the flags should be set to zero.
70 .Sh HARDWARE
71 The
72 .Nm
73 driver supports the following sound cards:
74 .Pp
75 .Bl -bullet -compact
76 .It
77 Avance Asound 110
78 .It
79 Avance Logic ALS100+
80 .It
81 Avance Logic ALS120
82 .It
83 Creative SB16
84 .It
85 Creative SB32
86 .It
87 Creative AWE64
88 .It
89 Creative AWE64 Gold
90 .It
91 Creative ViBRA16C
92 .It
93 Creative ViBRA16X
94 .It
95 ESS ES1681
96 .It
97 ESS ES1688
98 .It
99 ESS ES1868
100 .It
101 ESS ES1869
102 .It
103 ESS ES1878
104 .It
105 ESS ES1879
106 .It
107 ESS ES1888
108 .El
109 .Sh DIAGNOSTICS
110 .Bl -diag
111 .It sb_dspwr(XX) timed out.
112 A command to the DSP has timed out.
113 Check the I/O port configuration.
114 .It bad irq XX (5/7/9/10 valid)
115 The IRQ given to the driver is not valid.
116 .El
117 .Sh SEE ALSO
118 .Xr sound 4
119 .Sh HISTORY
120 The
121 .Nm
122 device driver first appeared in
123 .Fx 4.0 .
124 .Sh AUTHORS
125 .An Seigo Tanimura Aq tanimura@r.dl.itc.u-tokyo.ac.jp