summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorjnemeth <jnemeth@NetBSD.org>2007-10-30 12:20:03 +0000
committerjnemeth <jnemeth@NetBSD.org>2007-10-30 12:20:03 +0000
commitd7d1da9b0dc85b40c7e573a74b5dea8c20f437ca (patch)
treefab42cbd082f0b18c4c8062907ead9f4619a73c2 /sys/dev
parent5afd2ed88c44ed12a2f548c67ea580bbf915284e (diff)
PR/37201 - Yasushi Oshima -- Intel 82965G chipset support
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/pci/agp.c6
-rw-r--r--sys/dev/pci/agp_i810.c8
2 files changed, 10 insertions, 4 deletions
diff --git a/sys/dev/pci/agp.c b/sys/dev/pci/agp.c
index 26d9380c7a7..0128dd84ccb 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 <sys/cdefs.h>
-__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 <sys/param.h>
#include <sys/systm.h>
@@ -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 a4b5c88d286..c0a6a53f994 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 <sys/cdefs.h>
-__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 <sys/param.h>
#include <sys/systm.h>
@@ -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;
}