diff options
| author | Jun Kuriyama <kuriyama@FreeBSD.org> | 2000-08-25 08:30:51 +0000 |
|---|---|---|
| committer | Jun Kuriyama <kuriyama@FreeBSD.org> | 2000-08-25 08:30:51 +0000 |
| commit | 3eb2d54771571ba305bd906a992b0b5567c7f914 (patch) | |
| tree | 22981079707356e3d91f9ad5f7eb8fa82824e29d | |
| parent | 909aa0d5b93672adabf30d1dbfe9a38c694c4be3 (diff) | |
Notes
| -rw-r--r-- | sys/pci/pcisupport.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/pci/pcisupport.c b/sys/pci/pcisupport.c index 795fc1829ad9..e0a72e140e3e 100644 --- a/sys/pci/pcisupport.c +++ b/sys/pci/pcisupport.c @@ -698,7 +698,7 @@ pcib_match(device_t dev) /* VIA Technologies -- vendor 0x1106 */ case 0x85981106: - return ("VIA 82C598MVP (Apollo MVP3) PCI-PCI (AGP) bridge"); + return ("VIA 82C598MVP/82C694X (Apollo MVP3/Pro133A) PCI-PCI (AGP) bridge"); /* AcerLabs -- vendor 0x10b9 */ /* Funny : The datasheet told me vendor id is "10b8",sub-vendor */ @@ -1221,8 +1221,12 @@ pci_chip_match(device_t dev) /* XXX need info on the MVP3 -- any takers? */ case 0x05981106: return ("VIA 82C598MVP (Apollo MVP3) host bridge"); + case 0x06911106: + return ("VIA 82C691/693A/694X (Apollo Pro133A) host bridge"); case 0x30401106: return ("VIA 82C586B ACPI interface"); + case 0x30501106: + return ("VIA 82C596B ACPI interface"); case 0x30571106: return ("VIA 82C686 ACPI interface"); case 0x30581106: |
