Deleted Added
sdiff udiff text old ( 159748 ) new ( 166800 )
full compact
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 unchanged lines hidden (view full) ---

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: head/share/man/man4/snd_sbc.4 159748 2006-06-18 17:53:04Z brueffer $
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
35To compile this driver into the kernel, place the following lines in your
36kernel configuration file:
37.Bd -ragged -offset indent
38.Cd "device sound"
39.Cd "device snd_sbc"
40.Ed
41.Pp
42Alternatively, to load the driver as a module at boot time, place the
43following line in
44.Xr loader.conf 5 :
45.Bd -literal -offset indent
46snd_sbc_load="YES"
47.Ed
48.Pp
49Non-PnP cards require the following lines in
50.Xr device.hints 5 :
51.Bd -literal -offset indent
52hint.sbc.0.at="isa"
53hint.sbc.0.port="0x220"
54hint.sbc.0.irq="5"
55hint.sbc.0.drq="1"
56hint.sbc.0.flags="0x15"
57.Ed
58.Sh DESCRIPTION
59The
60.Nm
61bridge driver allows the generic audio driver
62.Xr sound 4
63to attach to Creative Sound Blaster ISA compatible audio cards.
64.Pp
65The value of flags specifies the secondary DMA channel.
66If the secondary
67DMA channel is C, set the flags to (C | 0x10).
68For a sound card without the
69secondary DMA channel, the flags should be set to zero.
70.Sh HARDWARE
71The

--- 54 unchanged lines hidden ---