diff options
author | anholt <anholt@FreeBSD.org> | 2004-08-22 03:55:04 +0000 |
---|---|---|
committer | anholt <anholt@FreeBSD.org> | 2004-08-22 03:55:04 +0000 |
commit | 5dba7e9faa7d6aca09bf8c6a30028135ff1a021b (patch) | |
tree | dbd7b87226b49167c5bab20c4025376674641380 /sys/dev/agp | |
parent | d0350352a9ac6f35143f8c18966f26aa3970c902 (diff) | |
download | FreeBSD-src-5dba7e9faa7d6aca09bf8c6a30028135ff1a021b.zip FreeBSD-src-5dba7e9faa7d6aca09bf8c6a30028135ff1a021b.tar.gz |
Add support for Intel E7205 AGP.
PR: kern/69858
Submitted by: Jacobo Arvelo <unix4all at gulic dot org>
Diffstat (limited to 'sys/dev/agp')
-rw-r--r-- | sys/dev/agp/agp_intel.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sys/dev/agp/agp_intel.c b/sys/dev/agp/agp_intel.c index ce70b4f..11f0208 100644 --- a/sys/dev/agp/agp_intel.c +++ b/sys/dev/agp/agp_intel.c @@ -109,6 +109,9 @@ agp_intel_match(device_t dev) case 0x25708086: return ("Intel 82865 host to AGP bridge"); + case 0x255d8086: + return ("Intel E7205 host to AGP bridge"); + case 0x25788086: return ("Intel 82875P host to AGP bridge"); @@ -215,6 +218,7 @@ agp_intel_attach(device_t dev) case 0x1a308086: /* i845 */ case 0x33408086: /* i855 */ + case 0x255d8086: /* E7205 */ case 0x25708086: /* i865 */ case 0x25788086: /* i875P */ case 0x25608086: /* i845G */ @@ -239,6 +243,7 @@ agp_intel_attach(device_t dev) case 0x1a308086: /* i845 */ case 0x25308086: /* i850 */ case 0x33408086: /* i855 */ + case 0x255d8086: /* E7205 */ case 0x25318086: /* i860 */ case 0x25708086: /* i865 */ case 0x25788086: /* i875P */ @@ -287,6 +292,7 @@ agp_intel_detach(device_t dev) case 0x1a308086: /* i845 */ case 0x25608086: /* i845G */ case 0x33408086: /* i855 */ + case 0x255d8086: /* E7205 */ case 0x25708086: /* i865 */ case 0x25788086: /* i875P */ printf("%s: set MCHCFG to %x\n", __func__, (unsigned) |