diff options
author | Stuart Henderson <sthen@cvs.openbsd.org> | 2009-10-27 23:18:33 +0000 |
---|---|---|
committer | Stuart Henderson <sthen@cvs.openbsd.org> | 2009-10-27 23:18:33 +0000 |
commit | ea3d23cf412c4104b392ff885998b2f98341f4ea (patch) | |
tree | e61ed4581b22106956dd469e0ac3e3ebe2400d84 | |
parent | 9f7e4cf26956529ad343bebf04aa56328b8e6548 (diff) |
Add another Intel ICH10 variant and the PCH chipset.
From Brad. PCH tested by bwaichu at yahoo com.
-rw-r--r-- | share/man/man4/ichiic.4 | 6 | ||||
-rw-r--r-- | sys/dev/pci/ichiic.c | 4 |
2 files changed, 6 insertions, 4 deletions
diff --git a/share/man/man4/ichiic.4 b/share/man/man4/ichiic.4 index 91b83fba8b9..92ead546a09 100644 --- a/share/man/man4/ichiic.4 +++ b/share/man/man4/ichiic.4 @@ -1,4 +1,4 @@ -.\" $OpenBSD: ichiic.4,v 1.12 2008/10/16 04:03:18 brad Exp $ +.\" $OpenBSD: ichiic.4,v 1.13 2009/10/27 23:18:32 sthen Exp $ .\" .\" Copyright (c) 2005 Alexander Yurchenko <grange@openbsd.org> .\" @@ -14,7 +14,7 @@ .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. .\" -.Dd $Mdocdate: October 16 2008 $ +.Dd $Mdocdate: October 27 2009 $ .Dt ICHIIC 4 .Os .Sh NAME @@ -36,7 +36,7 @@ Supported chipsets: .Bl -bullet -compact -offset indent .It Intel ICH, ICH2, ICH3, ICH4, ICH4-M, ICH5, ICH5R, ICH6, ICH6-M, ICH6R, ICH7, -ICH8, ICH9, ICH10, C-ICH, 6300ESB and 6321ESB. +ICH8, ICH9, ICH10, C-ICH, PCH, 6300ESB and 6321ESB. .El .Sh SEE ALSO .Xr iic 4 , diff --git a/sys/dev/pci/ichiic.c b/sys/dev/pci/ichiic.c index fb2e0a5bb9a..668ed4b343b 100644 --- a/sys/dev/pci/ichiic.c +++ b/sys/dev/pci/ichiic.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ichiic.c,v 1.22 2009/03/29 21:53:52 sthen Exp $ */ +/* $OpenBSD: ichiic.c,v 1.23 2009/10/27 23:18:32 sthen Exp $ */ /* * Copyright (c) 2005, 2006 Alexander Yurchenko <grange@openbsd.org> @@ -86,6 +86,7 @@ struct cfdriver ichiic_cd = { }; const struct pci_matchid ichiic_ids[] = { + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_3400_SMB }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_6300ESB_SMB }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_6321ESB_SMB }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801AA_SMB }, @@ -99,6 +100,7 @@ const struct pci_matchid ichiic_ids[] = { { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801GB_SMB }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801H_SMB }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801I_SMB }, + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801JD_SMB }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801JI_SMB } }; |