diff options
author | Marc Balmer <mbalmer@cvs.openbsd.org> | 2008-06-25 15:27:35 +0000 |
---|---|---|
committer | Marc Balmer <mbalmer@cvs.openbsd.org> | 2008-06-25 15:27:35 +0000 |
commit | 8d69526fe7791272551699d11bc09492ba95ef3e (patch) | |
tree | 8d2e957f525f3cb3d4e16e9de8b66acbc782918f /sys/arch/i386/conf | |
parent | e8081b48c75a0706b31e6d542ae4a6476fab5ce2 (diff) |
auglx(4) is an audio(4) driver for the AC'97 audio codec found on
some AMD Geode LX systems with CS5536 companion chip. It works
similar to auich(4) and auixp(4), but the hardware dependent parts
are quite different.
Tested with various PC-Engines ALIX boards (1B, 3C3) and a WebDT 186
board.
feedback many, ok deraadt & jmc (documentation)
Diffstat (limited to 'sys/arch/i386/conf')
-rw-r--r-- | sys/arch/i386/conf/GENERIC | 4 | ||||
-rw-r--r-- | sys/arch/i386/conf/files.i386 | 7 |
2 files changed, 9 insertions, 2 deletions
diff --git a/sys/arch/i386/conf/GENERIC b/sys/arch/i386/conf/GENERIC index f3d65c21430..099a2ddf28d 100644 --- a/sys/arch/i386/conf/GENERIC +++ b/sys/arch/i386/conf/GENERIC @@ -1,4 +1,4 @@ -# $OpenBSD: GENERIC,v 1.628 2008/06/20 05:13:01 mbalmer Exp $ +# $OpenBSD: GENERIC,v 1.629 2008/06/25 15:27:34 mbalmer Exp $ # # For further information on compiling OpenBSD kernels, see the config(8) # man page. @@ -644,6 +644,7 @@ eso* at pci? # ESS Solo-1 PCI AudioDrive sv* at pci? # S3 SonicVibes (S3 617) neo* at pci? # NeoMagic 256AV/ZX cmpci* at pci? # C-Media CMI8338/8738 +auglx* at pci? # CMD Geode CS5536 Audio auich* at pci? flags 0x0000 # i82801 ICH AC'97 audio auixp* at pci? # ATI IXP AC'97 Audio autri* at pci? flags 0x0000 # Trident 4D WAVE @@ -714,6 +715,7 @@ audio* at maestro? audio* at esa? audio* at yds? audio* at emu? +audio* at auglx? bktr0 at pci? diff --git a/sys/arch/i386/conf/files.i386 b/sys/arch/i386/conf/files.i386 index 5fc576aa8b5..a49a3394367 100644 --- a/sys/arch/i386/conf/files.i386 +++ b/sys/arch/i386/conf/files.i386 @@ -1,4 +1,4 @@ -# $OpenBSD: files.i386,v 1.180 2008/06/14 21:31:46 mbalmer Exp $ +# $OpenBSD: files.i386,v 1.181 2008/06/25 15:27:34 mbalmer Exp $ # # new style config file for i386 architecture # @@ -140,6 +140,11 @@ device amdmsr attach amdmsr at mainbus file arch/i386/i386/amdmsr.c amdmsr needs-flag +# AMD Geode CS5536 Audio +device auglx: audio +attach auglx at pci +file arch/i386/pci/auglx.c auglx + # PCI-ISA bridge chipsets device pcib: isabus attach pcib at pci |