From owner-freebsd-bugs@FreeBSD.ORG Mon Aug 16 23:10:22 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B1CF16A4CE for ; Mon, 16 Aug 2004 23:10:22 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 672CB43D41 for ; Mon, 16 Aug 2004 23:10:22 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.11/8.12.11) with ESMTP id i7GNAMGc080657 for ; Mon, 16 Aug 2004 23:10:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i7GNAMYb080654; Mon, 16 Aug 2004 23:10:22 GMT (envelope-from gnats) Date: Mon, 16 Aug 2004 23:10:22 GMT Message-Id: <200408162310.i7GNAMYb080654@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: "Jacobo Arvelo \"UNIX4ALL\"" Subject: Re: kern/69858: Intel E7205 Chipset AGP Support X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: "Jacobo Arvelo \"UNIX4ALL\"" List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 23:10:22 -0000 The following reply was made to PR kern/69858; it has been noted by GNATS. From: "Jacobo Arvelo \"UNIX4ALL\"" To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: kern/69858: Intel E7205 Chipset AGP Support Date: Mon, 16 Aug 2004 23:48:11 +0100 --=-dAUzVFL3MkCmnHz1lKEG Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Hi, I have a patch to FreeBSD 4.10-STABLE, It should work with CURRENT too (Itīs a very simple patch). greetings, P.D: I Have problems with my ISP smtp server, if you received multiple emails or anything nasty, please accept my apologies. -- Jacobo Arvelo "UNIX4ALL" Free/Open/Net/DragonFly BSD Powered User http://unix4all.homeunix.org --=-dAUzVFL3MkCmnHz1lKEG Content-Disposition: attachment; filename=agp_intel.c.diff Content-Type: text/x-patch; name=agp_intel.c.diff; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit *** agp_intel.c.old Wed Sep 17 07:57:15 2003 --- agp_intel.c Sun Aug 15 12:13:43 2004 *************** *** 103,108 **** --- 103,111 ---- case 0x25318086: return ("Intel 82860 host to AGP bridge"); + case 0x255d8086: + return ("Intel E7205 host to AGP bridge"); + case 0x25708086: return ("Intel 82865 host to AGP bridge"); *************** *** 207,212 **** --- 210,216 ---- case 0x1a308086: /* i845 */ case 0x33408086: /* i855 */ + case 0x255d8086: /* E7205 */ case 0x25708086: /* i865 */ case 0x25788086: /* i875P */ pci_write_config(dev, AGP_INTEL_I845_MCHCFG, *************** *** 230,235 **** --- 234,240 ---- case 0x1a308086: /* i845 */ case 0x25308086: /* i850 */ case 0x33408086: /* i855 */ + case 0x255d8086: /* E7205 */ case 0x25318086: /* i860 */ case 0x25708086: /* i865 */ case 0x25788086: /* i875P */ *************** *** 276,281 **** --- 281,287 ---- case 0x1a308086: /* i845 */ case 0x33408086: /* i855 */ + case 0x255d8086: /* E7205 */ case 0x25708086: /* i865 */ case 0x25788086: /* i875P */ printf("%s: set MCHCFG to %x\n", __FUNCTION__, (unsigned) --=-dAUzVFL3MkCmnHz1lKEG--