Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src Add auacer.
details: https://anonhg.NetBSD.org/src/rev/6ea4ece14d54
branches: trunk
changeset: 570429:6ea4ece14d54
user: augustss <augustss%NetBSD.org@localhost>
date: Sun Oct 10 16:39:36 2004 +0000
description:
Add auacer.
diffstat:
doc/CHANGES | 4 +-
share/man/man4/Makefile | 4 +-
share/man/man4/auacer.4 | 60 +++++++++++++++++++++++++++++++++++++++
share/man/man4/audio.4 | 3 +-
share/man/man4/pci.4 | 4 +-
sys/arch/i386/conf/GENERIC | 5 +-
sys/arch/i386/conf/GENERIC.MPACPI | 5 +-
sys/arch/i386/conf/GENERIC_LAPTOP | 5 +-
8 files changed, 79 insertions(+), 11 deletions(-)
diffs (208 lines):
diff -r 86298199f4ec -r 6ea4ece14d54 doc/CHANGES
--- a/doc/CHANGES Sun Oct 10 16:37:40 2004 +0000
+++ b/doc/CHANGES Sun Oct 10 16:39:36 2004 +0000
@@ -1,4 +1,4 @@
-LIST OF CHANGES FROM LAST RELEASE: <$Revision: 1.369 $>
+LIST OF CHANGES FROM LAST RELEASE: <$Revision: 1.370 $>
[Note: This file does not mention every change made to the NetBSD source tree.
@@ -129,3 +129,5 @@
heimdal: import version 0.6.3. [lha 20040913]
file(1): update to 4.10. [pooka 20040916]
mac68k: Support to build with soft-float enabled. [jmmv 20040926]
+ auacer(4): Driver for ALi M5455 audio controller. Output only
+ so far. [augustss 20041010]
diff -r 86298199f4ec -r 6ea4ece14d54 share/man/man4/Makefile
--- a/share/man/man4/Makefile Sun Oct 10 16:37:40 2004 +0000
+++ b/share/man/man4/Makefile Sun Oct 10 16:39:36 2004 +0000
@@ -1,10 +1,10 @@
-# $NetBSD: Makefile,v 1.331 2004/09/24 13:49:50 wiz Exp $
+# $NetBSD: Makefile,v 1.332 2004/10/10 16:48:04 augustss Exp $
# @(#)Makefile 8.1 (Berkeley) 6/18/93
MAN= aac.4 acardide.4 aceride.4 acphy.4 adc.4 adv.4 \
adw.4 agp.4 ahb.4 ahc.4 amdpm.4 amhphy.4 amr.4 \
an.4 aria.4 artsata.4 ata.4 atalk.4 ath.4 atppc.4 atw.4 \
- audio.4 audiocs.4 auich.4 autri.4 auvia.4 awi.4 \
+ auacer.4 audio.4 audiocs.4 auich.4 autri.4 auvia.4 awi.4 \
bba.4 bce.4 be.4 bge.4 bha.4 bktr.4 bpf.4 bmtphy.4 \
brgphy.4 bridge.4 cac.4 cardbus.4 ccd.4 cd.4 \
cec.4 cgd.4 cfb.4 ch.4 clcs.4 clct.4 clnp.4 \
diff -r 86298199f4ec -r 6ea4ece14d54 share/man/man4/auacer.4
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/share/man/man4/auacer.4 Sun Oct 10 16:39:36 2004 +0000
@@ -0,0 +1,60 @@
+.\" $NetBSD: auacer.4,v 1.1 2004/10/10 16:48:04 augustss Exp $
+.\"
+.\" Copyright (c) 2004 The NetBSD Foundation, Inc.
+.\" All rights reserved.
+.\"
+.\" This code is derived from software contributed to The NetBSD Foundation
+.\" by Lennart Augustsson.
+.\"
+.\" Redistribution and use in source and binary forms, with or without
+.\" modification, are permitted provided that the following conditions
+.\" are met:
+.\" 1. Redistributions of source code must retain the above copyright
+.\" notice, this list of conditions and the following disclaimer.
+.\" 2. Redistributions in binary form must reproduce the above copyright
+.\" notice, this list of conditions and the following disclaimer in the
+.\" documentation and/or other materials provided with the distribution.
+.\" 3. All advertising materials mentioning features or use of this software
+.\" must display the following acknowledgement:
+.\" This product includes software developed by the NetBSD
+.\" Foundation, Inc. and its contributors.
+.\" 4. Neither the name of The NetBSD Foundation nor the names of its
+.\" contributors may be used to endorse or promote products derived
+.\" from this software without specific prior written permission.
+.\"
+.\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
+.\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+.\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+.\" PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
+.\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+.\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+.\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+.\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+.\" POSSIBILITY OF SUCH DAMAGE.
+.\"
+.Dd October 10, 2004
+.Dt AUACER 4
+.Os
+.Sh NAME
+.Nm auacer
+.Nd Acer Labs I/O Controller Hub integrated AC'97 audio device driver
+.Sh SYNOPSIS
+.Cd "auacer* at pci? dev ? function ?"
+.Cd "audio* at auacer?"
+.Sh DESCRIPTION
+The
+.Nm
+device driver supports the M5455 integrated AC'97 audio controller
+of some Acer Labs I/O Controller Hub.
+.Sh SEE ALSO
+.Xr audio 4 ,
+.Xr pci 4
+.Sh HISTORY
+The
+.Nm
+device driver appeared in
+.Nx 2.1 .
+.Sh BUGS
+No input supported (yet).
diff -r 86298199f4ec -r 6ea4ece14d54 share/man/man4/audio.4
--- a/share/man/man4/audio.4 Sun Oct 10 16:37:40 2004 +0000
+++ b/share/man/man4/audio.4 Sun Oct 10 16:39:36 2004 +0000
@@ -1,4 +1,4 @@
-.\" $NetBSD: audio.4,v 1.59 2004/05/11 22:42:47 wiz Exp $
+.\" $NetBSD: audio.4,v 1.60 2004/10/10 16:48:04 augustss Exp $
.\"
.\" Copyright (c) 1996 The NetBSD Foundation, Inc.
.\" All rights reserved.
@@ -687,6 +687,7 @@
.Xr wss 4 ,
.Xr ym 4
.Ss PCI bus
+.Xr auacer 4 ,
.Xr auich 4 ,
.Xr autri 4 ,
.Xr auvia 4 ,
diff -r 86298199f4ec -r 6ea4ece14d54 share/man/man4/pci.4
--- a/share/man/man4/pci.4 Sun Oct 10 16:37:40 2004 +0000
+++ b/share/man/man4/pci.4 Sun Oct 10 16:39:36 2004 +0000
@@ -1,4 +1,4 @@
-.\" $NetBSD: pci.4,v 1.72 2003/05/06 18:58:24 wiz Exp $
+.\" $NetBSD: pci.4,v 1.73 2004/10/10 16:48:04 augustss Exp $
.\"
.\" Copyright (c) 1997 Jason R. Thorpe. All rights reserved.
.\" Copyright (c) 1997 Jonathan Stone
@@ -254,6 +254,8 @@
.El
.Ss Audio devices
.Bl -tag -width pcdisplay -offset indent
+.It auacer
+Acer Labs M5455 I/O Controller Hub integrated AC'97 audio device.
.It auich
Intel I/O Controller Hub integrated AC'97 audio device.
.It auvia
diff -r 86298199f4ec -r 6ea4ece14d54 sys/arch/i386/conf/GENERIC
--- a/sys/arch/i386/conf/GENERIC Sun Oct 10 16:37:40 2004 +0000
+++ b/sys/arch/i386/conf/GENERIC Sun Oct 10 16:39:36 2004 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: GENERIC,v 1.631 2004/09/08 11:38:22 jmmv Exp $
+# $NetBSD: GENERIC,v 1.632 2004/10/10 16:39:36 augustss Exp $
#
# GENERIC machine description file
#
@@ -22,7 +22,7 @@
options INCLUDE_CONFIG_FILE # embed config file in kernel binary
-#ident "GENERIC-$Revision: 1.631 $"
+#ident "GENERIC-$Revision: 1.632 $"
maxusers 32 # estimated number of users
@@ -1016,6 +1016,7 @@
# Audio Devices
# PCI audio devices
+auacer* at pci? dev ? function ? # ALi M5455 integrated AC'97 Audio
auich* at pci? dev ? function ? # Intel ICH integrated AC'97 Audio
autri* at pci? dev ? function ? # Trident 4DWAVE based AC'97 Audio
auvia* at pci? dev ? function ? # VIA VT82C686A integrated AC'97 Audio
diff -r 86298199f4ec -r 6ea4ece14d54 sys/arch/i386/conf/GENERIC.MPACPI
--- a/sys/arch/i386/conf/GENERIC.MPACPI Sun Oct 10 16:37:40 2004 +0000
+++ b/sys/arch/i386/conf/GENERIC.MPACPI Sun Oct 10 16:39:36 2004 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: GENERIC.MPACPI,v 1.6 2004/09/04 23:29:48 manu Exp $
+# $NetBSD: GENERIC.MPACPI,v 1.7 2004/10/10 16:39:36 augustss Exp $
#
# GENERIC.MPACPI -- Generic, plus ACPI Multiprocessor support
#
@@ -8,7 +8,7 @@
options INCLUDE_CONFIG_FILE # embed config file in kernel binary
-#ident "GENERIC-$Revision: 1.6 $"
+#ident "GENERIC-$Revision: 1.7 $"
maxusers 32 # estimated number of users
@@ -993,6 +993,7 @@
# Audio Devices
# PCI audio devices
+auacer* at pci? dev ? function ? # ALi M5455 integrated AC'97 Audio
auich* at pci? dev ? function ? # Intel ICH integrated AC'97 Audio
autri* at pci? dev ? function ? # Trident 4DWAVE based AC'97 Audio
auvia* at pci? dev ? function ? # VIA VT82C686A integrated AC'97 Audio
diff -r 86298199f4ec -r 6ea4ece14d54 sys/arch/i386/conf/GENERIC_LAPTOP
--- a/sys/arch/i386/conf/GENERIC_LAPTOP Sun Oct 10 16:37:40 2004 +0000
+++ b/sys/arch/i386/conf/GENERIC_LAPTOP Sun Oct 10 16:39:36 2004 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: GENERIC_LAPTOP,v 1.117 2004/09/15 15:54:23 thorpej Exp $
+# $NetBSD: GENERIC_LAPTOP,v 1.118 2004/10/10 16:39:36 augustss Exp $
# From: NetBSD: GENERIC,v 1.414 2001/07/30 19:59:05 ad Exp
#
# GENERIC_LAPTOP -- GENERIC with cardbus and some USB devices enabled
@@ -8,7 +8,7 @@
#options INCLUDE_CONFIG_FILE # embed config file in kernel binary
-#ident "GENERIC-$Revision: 1.117 $"
+#ident "GENERIC-$Revision: 1.118 $"
maxusers 32 # estimated number of users
@@ -707,6 +707,7 @@
# Audio Devices
# PCI audio devices
+auacer* at pci? dev ? function ? # ALi M5455 integrated AC'97 Audio
auich* at pci? dev ? function ? # Intel ICH integrated AC'97 Audio
autri* at pci? dev ? function ? # Trident 4DWAVE based AC'97 Audio
auvia* at pci? dev ? function ? # VIA VT82C686A integrated AC'97 Audio
Home |
Main Index |
Thread Index |
Old Index