From b68c582ef8b2190b90caf758b3a14a9380761b50 Mon Sep 17 00:00:00 2001 From: John Baldwin 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') diff --git a/sys/dev/agp/agp_via.c b/sys/dev/agp/agp_via.c index 7fe3bd02652d4..e3271af413c7b 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.3