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