aboutsummaryrefslogtreecommitdiff
path: root/sys/conf
diff options
context:
space:
mode:
authorJohn-Mark Gurney <jmg@FreeBSD.org>1997-09-14 21:45:05 +0000
committerJohn-Mark Gurney <jmg@FreeBSD.org>1997-09-14 21:45:05 +0000
commitc740608242ffa2e4725a5b7cbb12823f7e0368d4 (patch)
tree1568a732e12369860aef06e35f56d71551d89dff /sys/conf
parentb7da7b3e2a22ad30c7ec0d0ab03b49c19e4b3db4 (diff)
Notes
Diffstat (limited to 'sys/conf')
-rw-r--r--sys/conf/NOTES21
-rw-r--r--sys/conf/files.i3867
2 files changed, 26 insertions, 2 deletions
diff --git a/sys/conf/NOTES b/sys/conf/NOTES
index e470f533e1ff..669dcff2404d 100644
--- a/sys/conf/NOTES
+++ b/sys/conf/NOTES
@@ -2,7 +2,7 @@
# LINT -- config file for checking all the sources, tries to pull in
# as much of the source tree as it can.
#
-# $Id: LINT,v 1.363 1997/09/09 12:40:53 jmg Exp $
+# $Id: LINT,v 1.364 1997/09/10 03:07:13 peter Exp $
#
# NB: You probably don't want to try running a kernel built from this
# file. Instead, you should start from GENERIC, and add options from
@@ -950,6 +950,22 @@ options NATM #native ATM
# i386/isa/sound/sound_config.h. If you change the values here, you
# must also change the values in the include file.
#
+# pcm: PCM audio through various sound cards.
+#
+# This is the work in progress from Luigi Rizzo. This has support for
+# CS423x based cards, OPTi931, SB16 PnP, GusPnP. For more information
+# about this driver, take a look at sys/i386/isa/snd/README.
+#
+# The flags of the device tells the device a bit more info about the
+# device that normally is obtained through the PnP interface.
+# bit 2..0 secondary DMA channel;
+# bit 4 set if the board uses two dma channels;
+# bit 15..8 board type, overrides autodetection; leave it
+# zero if don't know what to put in (and you don't,
+# since this is unsupported at the moment...).
+#
+# This driver will use the new PnP code if it's available.
+#
# pca: PCM audio through your PC speaker
#
# If you don't have a lpt0 device at IRQ 7, you can remove the
@@ -989,6 +1005,9 @@ device uart0 at isa? port 0x330 irq 5 vector "m6850intr"
#device sscape0 at isa? port 0x330 irq 6 drq 0
#device trix0 at isa? port 0x330 irq 6 drq 0 vector sscapeintr
+# Luigi's snd code
+# device pcm0 at isa? port ? tty irq 10 drq 1 flags 0x0 vector pcmintr
+
# Not controlled by `snd'
device pca0 at isa? port IO_TIMER1 tty
diff --git a/sys/conf/files.i386 b/sys/conf/files.i386
index b1e9c983b666..33cdb1515e2b 100644
--- a/sys/conf/files.i386
+++ b/sys/conf/files.i386
@@ -1,7 +1,7 @@
# This file tells config what files go into building a kernel,
# files marked standard are always included.
#
-# $Id: files.i386,v 1.174 1997/09/03 03:44:58 gibbs Exp $
+# $Id: files.i386,v 1.175 1997/09/09 12:40:54 jmg Exp $
#
aicasm optional ahc device-driver \
dependency "$S/dev/aic7xxx/*.[chyl]" \
@@ -173,6 +173,11 @@ i386/isa/seagate.c optional sea device-driver
i386/isa/si.c optional si device-driver
i386/isa/si_code.c optional si device-driver
i386/isa/sio.c optional sio device-driver
+i386/isa/snd/sound.c optional pcm device-driver
+i386/isa/snd/dmabuf.c optional pcm device-driver
+i386/isa/snd/ad1848.c optional pcm device-driver
+i386/isa/snd/sb_dsp.c optional pcm device-driver
+i386/isa/snd/clones.c optional pcm device-driver
i386/isa/sound/dev_table.c optional snd device-driver
i386/isa/sound/soundcard.c optional snd device-driver
i386/isa/sound/sound_switch.c optional snd device-driver