diff options
author | Marc Balmer <mbalmer@cvs.openbsd.org> | 2007-10-07 13:41:49 +0000 |
---|---|---|
committer | Marc Balmer <mbalmer@cvs.openbsd.org> | 2007-10-07 13:41:49 +0000 |
commit | bde97fbac7941781ddaf7bffca8603f34869f84c (patch) | |
tree | fb0a8d00c605f503f49b1e45c92ba6cfa926d4ce /sys/arch/i386/conf/files.i386 | |
parent | 7d301fc0cffcf6885a1abd24bcc3402a6dd3e9ec (diff) |
Add support for the PCI-ISA bridge, timecounter, and watchdog timer
found in the CS5536 companion chip to the AMD Geode LX-800 processor.
glxpcib(4) driver written by mickey, with some tweaks by me. Manpage
nits by jmc.
Tested on the Soekris net5501 (by me) and the Alix 2a2
(by earxtacy@dixinet.com)
ok kettenis
Diffstat (limited to 'sys/arch/i386/conf/files.i386')
-rw-r--r-- | sys/arch/i386/conf/files.i386 | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/sys/arch/i386/conf/files.i386 b/sys/arch/i386/conf/files.i386 index cb27486a830..1ff9e84a4e6 100644 --- a/sys/arch/i386/conf/files.i386 +++ b/sys/arch/i386/conf/files.i386 @@ -1,4 +1,4 @@ -# $OpenBSD: files.i386,v 1.164 2007/07/04 08:16:13 mpf Exp $ +# $OpenBSD: files.i386,v 1.165 2007/10/07 13:41:48 mbalmer Exp $ # # new style config file for i386 architecture # @@ -132,10 +132,15 @@ device gscpm attach gscpm at pci file arch/i386/pci/gscpm.c gscpm +# AMD Geode CS5536 PCI-ISA bridge +device glxpcib: isabus +attach glxpcib at pci +file arch/i386/pci/glxpcib.c glxpcib + # PCI-ISA bridge chipsets device pcib: isabus attach pcib at pci -file arch/i386/pci/pcib.c pcib | ichpcib | gscpcib | piixpcib +file arch/i386/pci/pcib.c pcib | ichpcib | gscpcib | glxpcib | piixpcib # Intel ICHx/ICHx-M LPC bridges device ichpcib: isabus |