diff --git a/sys/arch/x86/pci/pchb.c b/sys/arch/x86/pci/pchb.c index 5309592b6531..7dbc94dbf834 100644 --- a/sys/arch/x86/pci/pchb.c +++ b/sys/arch/x86/pci/pchb.c @@ -1,4 +1,4 @@ -/* $NetBSD: pchb.c,v 1.1 2007/10/26 21:49:52 xtraeme Exp $ */ +/* $NetBSD: pchb.c,v 1.2 2007/10/30 12:20:03 jnemeth Exp $ */ /*- * Copyright (c) 1996, 1998, 2000 The NetBSD Foundation, Inc. @@ -37,7 +37,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: pchb.c,v 1.1 2007/10/26 21:49:52 xtraeme Exp $"); +__KERNEL_RCSID(0, "$NetBSD: pchb.c,v 1.2 2007/10/30 12:20:03 jnemeth Exp $"); #include #include @@ -324,6 +324,7 @@ pchbattach(struct device *parent, struct device *self, void *aux) case PCI_PRODUCT_INTEL_82945P_MCH: case PCI_PRODUCT_INTEL_82945GM_HB: case PCI_PRODUCT_INTEL_82965Q_HB: + case PCI_PRODUCT_INTEL_82965G_HB: /* * The host bridge is either in GFX mode (internal * graphics) or in AGP mode. In GFX mode, we pretend diff --git a/sys/dev/pci/agp.c b/sys/dev/pci/agp.c index 26d9380c7a78..0128dd84ccb1 100644 --- a/sys/dev/pci/agp.c +++ b/sys/dev/pci/agp.c @@ -1,4 +1,4 @@ -/* $NetBSD: agp.c,v 1.49 2007/10/19 12:00:38 ad Exp $ */ +/* $NetBSD: agp.c,v 1.50 2007/10/30 12:22:53 jnemeth Exp $ */ /*- * Copyright (c) 2000 Doug Rabson @@ -65,7 +65,7 @@ #include -__KERNEL_RCSID(0, "$NetBSD: agp.c,v 1.49 2007/10/19 12:00:38 ad Exp $"); +__KERNEL_RCSID(0, "$NetBSD: agp.c,v 1.50 2007/10/30 12:22:53 jnemeth Exp $"); #include #include @@ -157,6 +157,8 @@ const struct agp_product { NULL, agp_i810_attach }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82965Q_HB, NULL, agp_i810_attach }, + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82965G_HB, + NULL, agp_i810_attach }, #endif #if NAGP_INTEL > 0 diff --git a/sys/dev/pci/agp_i810.c b/sys/dev/pci/agp_i810.c index a4b5c88d2866..c0a6a53f9946 100644 --- a/sys/dev/pci/agp_i810.c +++ b/sys/dev/pci/agp_i810.c @@ -1,4 +1,4 @@ -/* $NetBSD: agp_i810.c,v 1.43 2007/10/19 12:00:39 ad Exp $ */ +/* $NetBSD: agp_i810.c,v 1.44 2007/10/30 12:22:54 jnemeth Exp $ */ /*- * Copyright (c) 2000 Doug Rabson @@ -30,7 +30,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: agp_i810.c,v 1.43 2007/10/19 12:00:39 ad Exp $"); +__KERNEL_RCSID(0, "$NetBSD: agp_i810.c,v 1.44 2007/10/30 12:22:54 jnemeth Exp $"); #include #include @@ -149,6 +149,8 @@ agp_i810_vgamatch(struct pci_attach_args *pa) case PCI_PRODUCT_INTEL_82945GM_IGD_1: case PCI_PRODUCT_INTEL_82965Q_IGD: case PCI_PRODUCT_INTEL_82965Q_IGD_1: + case PCI_PRODUCT_INTEL_82965G_IGD: + case PCI_PRODUCT_INTEL_82965G_IGD_1: return (1); } @@ -233,6 +235,8 @@ agp_i810_attach(struct device *parent, struct device *self, void *aux) break; case PCI_PRODUCT_INTEL_82965Q_IGD: case PCI_PRODUCT_INTEL_82965Q_IGD_1: + case PCI_PRODUCT_INTEL_82965G_IGD: + case PCI_PRODUCT_INTEL_82965G_IGD_1: isc->chiptype = CHIP_I965; break; }