diff options
author | jkim <jkim@FreeBSD.org> | 2009-01-23 17:48:18 +0000 |
---|---|---|
committer | jkim <jkim@FreeBSD.org> | 2009-01-23 17:48:18 +0000 |
commit | 0c8574e8458f62e981703f114b62bcea876b1e70 (patch) | |
tree | 0c8bd37820d3c32bc4b03683cc38ac539cb9b058 /sys/dev/agp | |
parent | d2c61e641db9cbddf344fb60caf7ac02d5645f63 (diff) | |
download | FreeBSD-src-0c8574e8458f62e981703f114b62bcea876b1e70.zip FreeBSD-src-0c8574e8458f62e981703f114b62bcea876b1e70.tar.gz |
- Add few VIA bridges to agp_via.c and connect it to amd64 build
as they support Intel Core/Core 2 and VIA Nano processors.
- Align "optional agp" in conf/files.* for consistency while I am here.
Diffstat (limited to 'sys/dev/agp')
-rw-r--r-- | sys/dev/agp/agp_via.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sys/dev/agp/agp_via.c b/sys/dev/agp/agp_via.c index 9b8bbc8..dedc9da 100644 --- a/sys/dev/agp/agp_via.c +++ b/sys/dev/agp/agp_via.c @@ -85,8 +85,14 @@ agp_via_match(device_t dev) return ("VIA 3296 (P4M800) host to PCI bridge"); case 0x03051106: return ("VIA 82C8363 (Apollo KT133x/KM133) host to PCI bridge"); + case 0x03141106: + return ("VIA 3314 (P4M800CE) host to PCI bridge"); case 0x03241106: return ("VIA VT3324 (CX700) host to PCI bridge"); + case 0x03271106: + return ("VIA 3327 (P4M890) host to PCI bridge"); + case 0x03641106: + return ("VIA 3364 (P4M900) host to PCI bridge"); case 0x03911106: return ("VIA 8371 (Apollo KX133) host to PCI bridge"); case 0x05011106: @@ -168,7 +174,10 @@ agp_via_attach(device_t dev) case 0x02591106: case 0x02691106: case 0x02961106: + case 0x03141106: case 0x03241106: + case 0x03271106: + case 0x03641106: case 0x31231106: case 0x31681106: case 0x31891106: |