diff options
author | Marc Balmer <mbalmer@cvs.openbsd.org> | 2007-10-07 18:41:08 +0000 |
---|---|---|
committer | Marc Balmer <mbalmer@cvs.openbsd.org> | 2007-10-07 18:41:08 +0000 |
commit | 042762629ae171662af5c1caeee0b2d3797e2230 (patch) | |
tree | 4b8a0de6bfa0febd341c88072b9495fa1ee56eb4 /sys/arch/i386/conf/files.i386 | |
parent | d297dc193bfe20930e7d8c895fb00f4b5e0eab99 (diff) |
Add a driver, amdpcib(4), for the AMD 8111 series LPC bridge and HPET written
by mickey, man page by me. Help, suggestions by Theo and jmc.
Enable this driver and glxpcib(4) in all RAMDISK kernel, but glxpcib(4)
does not provide the watchdog timer in the RAMDISK kernels.
Prodded by deraadt.
E
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 1ff9e84a4e6..e9adcb32ece 100644 --- a/sys/arch/i386/conf/files.i386 +++ b/sys/arch/i386/conf/files.i386 @@ -1,4 +1,4 @@ -# $OpenBSD: files.i386,v 1.165 2007/10/07 13:41:48 mbalmer Exp $ +# $OpenBSD: files.i386,v 1.166 2007/10/07 18:41:07 mbalmer Exp $ # # new style config file for i386 architecture # @@ -140,7 +140,7 @@ 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 | glxpcib | piixpcib +file arch/i386/pci/pcib.c pcib | ichpcib | gscpcib | glxpcib | piixpcib | amdpcib # Intel ICHx/ICHx-M LPC bridges device ichpcib: isabus @@ -157,6 +157,11 @@ device gscpcib: isabus, gpiobus attach gscpcib at pci file arch/i386/pci/gscpcib.c gscpcib +# AMD 8111 LPC bridge +device amdpcib: isabus +attach amdpcib at pci +file dev/pci/amdpcib.c amdpcib + device hme: ether, ifnet, mii, ifmedia file dev/ic/hme.c hme attach hme at pci with hme_pci |