From 38f4fdd957765cc6c2b4235b38c9524335d4c7ee Mon Sep 17 00:00:00 2001 From: jhb Date: Fri, 2 Jul 2004 03:39:33 +0000 Subject: Add support for the VIA Apollo KT400/400A/600 AGP host bridges which use the VIA v3 register offsets. PR: 68545 Submitted by: Ariff Abdullah --- sys/dev/agp/agp_via.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'sys/dev/agp') diff --git a/sys/dev/agp/agp_via.c b/sys/dev/agp/agp_via.c index 7fe3bd0..e3271af 100644 --- a/sys/dev/agp/agp_via.c +++ b/sys/dev/agp/agp_via.c @@ -89,6 +89,8 @@ agp_via_match(device_t dev) return ("VIA 82C691 (Apollo Pro) host to PCI bridge"); case 0x31881106: return ("VIA 8385 host to PCI bridge"); + case 0x31891106: + return ("VIA 8377 (Apollo KT400/KT400A/KT600) host to PCI bridge"); }; if (pci_get_vendor(dev) == 0x1106) @@ -123,6 +125,7 @@ agp_via_attach(device_t dev) switch (pci_get_devid(dev)) { case 0x31881106: + case 0x31891106: sc->regs = via_v3_regs; break; default: -- cgit v1.1