diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2007-10-17 22:14:42 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2007-10-17 22:14:42 +0000 |
commit | 978d9b85e2a79582a7587d0496dd5ece45b8902f (patch) | |
tree | 13e9c9176dfd45d66214508038a390146a054bf7 /sys/arch | |
parent | d00e4f08054c782a706f7ab2afdcb86b5b4c1415 (diff) |
Add the Intel ICH9 chipset.
Tested by damien@
ok dlg@
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/i386/pci/ichpcib.c | 8 | ||||
-rw-r--r-- | sys/arch/i386/pci/pci_intr_fixup.c | 10 |
2 files changed, 15 insertions, 3 deletions
diff --git a/sys/arch/i386/pci/ichpcib.c b/sys/arch/i386/pci/ichpcib.c index d7dfd822862..bde0b5fc35b 100644 --- a/sys/arch/i386/pci/ichpcib.c +++ b/sys/arch/i386/pci/ichpcib.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ichpcib.c,v 1.20 2007/09/07 05:32:38 gwk Exp $ */ +/* $OpenBSD: ichpcib.c,v 1.21 2007/10/17 22:13:56 brad Exp $ */ /* * Copyright (c) 2004 Alexander Yurchenko <grange@openbsd.org> * @@ -106,7 +106,11 @@ const struct pci_matchid ichpcib_devices[] = { { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801GH_LPC }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801GHM_LPC }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801H_LPC }, - { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801HBM_LPC } + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801HBM_LPC }, + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801IB_LPC }, + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801IH_LPC }, + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801IO_LPC }, + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801IR_LPC } }; int diff --git a/sys/arch/i386/pci/pci_intr_fixup.c b/sys/arch/i386/pci/pci_intr_fixup.c index 9bd05575879..f6974a798ed 100644 --- a/sys/arch/i386/pci/pci_intr_fixup.c +++ b/sys/arch/i386/pci/pci_intr_fixup.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pci_intr_fixup.c,v 1.58 2007/09/07 15:00:19 art Exp $ */ +/* $OpenBSD: pci_intr_fixup.c,v 1.59 2007/10/17 22:14:41 brad Exp $ */ /* $NetBSD: pci_intr_fixup.c,v 1.10 2000/08/10 21:18:27 soda Exp $ */ /* @@ -181,6 +181,14 @@ const struct pciintr_icu_table { piix_init }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801GHM_LPC, piix_init }, + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801IB_LPC, + piix_init }, + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801IH_LPC, + piix_init }, + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801IO_LPC, + piix_init }, + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801IR_LPC, + piix_init }, { PCI_VENDOR_OPTI, PCI_PRODUCT_OPTI_82C558, opti82c558_init }, |