diff options
| author | Eric Anholt <anholt@FreeBSD.org> | 2006-02-17 01:40:46 +0000 |
|---|---|---|
| committer | Eric Anholt <anholt@FreeBSD.org> | 2006-02-17 01:40:46 +0000 |
| commit | 14b4fdc4d6ba9fa2ca7a95b8f95ec40ff3bd9e63 (patch) | |
| tree | 9e3de4f4b71e121f2578bfa01b6e68a53dc9e6a7 /sys/pci | |
| parent | 6bd7e81d83f1bdd680726f40ac7836c9908b7e2b (diff) | |
Notes
Diffstat (limited to 'sys/pci')
| -rw-r--r-- | sys/pci/agp_intel.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sys/pci/agp_intel.c b/sys/pci/agp_intel.c index 221f49ee60c0..8179f80d4736 100644 --- a/sys/pci/agp_intel.c +++ b/sys/pci/agp_intel.c @@ -112,6 +112,9 @@ agp_intel_match(device_t dev) case 0x255d8086: return ("Intel E7205 host to AGP bridge"); + case 0x25508086: + return ("Intel E7505 host to AGP bridge"); + case 0x25788086: return ("Intel 82875P host to AGP bridge"); @@ -219,6 +222,7 @@ agp_intel_attach(device_t dev) case 0x33408086: /* i855 */ case 0x35808086: /* i855GM */ case 0x255d8086: /* E7205 */ + case 0x25508086: /* E7505 */ case 0x25708086: /* i865 */ case 0x25788086: /* i875P */ case 0x25608086: /* i845G */ @@ -244,6 +248,7 @@ agp_intel_attach(device_t dev) case 0x25308086: /* i850 */ case 0x33408086: /* i855 */ case 0x255d8086: /* E7205 */ + case 0x25508086: /* E7505 */ case 0x25318086: /* i860 */ case 0x25708086: /* i865 */ case 0x25788086: /* i875P */ @@ -294,6 +299,7 @@ agp_intel_detach(device_t dev) case 0x33408086: /* i855 */ case 0x35808086: /* i855GM */ case 0x255d8086: /* E7205 */ + case 0x25508086: /* E7505 */ case 0x25708086: /* i865 */ case 0x25788086: /* i875P */ printf("%s: set MCHCFG to %x\n", __func__, (unsigned) |
