From owner-freebsd-current@FreeBSD.ORG Mon Jun 5 06:04:40 2006 Return-Path: X-Original-To: freebsd-current@freebsd.org Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5EA8816A47C; Mon, 5 Jun 2006 06:04:40 +0000 (UTC) (envelope-from rodrigc@crodrigues.org) Received: from rwcrmhc13.comcast.net (rwcrmhc13.comcast.net [204.127.192.83]) by mx1.FreeBSD.org (Postfix) with ESMTP id DEA4943D45; Mon, 5 Jun 2006 06:04:39 +0000 (GMT) (envelope-from rodrigc@crodrigues.org) Received: from c-71-233-168-2.hsd1.ma.comcast.net ([71.233.168.2]) by comcast.net (rwcrmhc13) with ESMTP id <20060605060438m1300g8gcpe>; Mon, 5 Jun 2006 06:04:38 +0000 Received: from c-71-233-168-2.hsd1.ma.comcast.net (localhost [127.0.0.1]) by c-71-233-168-2.hsd1.ma.comcast.net (8.13.6/8.13.1) with ESMTP id k5564bKo031650; Mon, 5 Jun 2006 02:04:37 -0400 (EDT) (envelope-from rodrigc@c-71-233-168-2.hsd1.ma.comcast.net) Received: (from rodrigc@localhost) by c-71-233-168-2.hsd1.ma.comcast.net (8.13.6/8.13.1/Submit) id k5564adO031649; Mon, 5 Jun 2006 02:04:36 -0400 (EDT) (envelope-from rodrigc) Date: Mon, 5 Jun 2006 02:04:36 -0400 From: Craig Rodrigues To: netsick@iinet.net.au Message-ID: <20060605060436.GA31638@crodrigues.org> References: <1149476679.44839f4740950@mail.iinet.net.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1149476679.44839f4740950@mail.iinet.net.au> User-Agent: Mutt/1.4.2.1i Cc: freebsd-current@freebsd.org, freebsd-hardware@freebsd.org Subject: Re: NO AGPGART - i945 ICH7 - 7.0 Current X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jun 2006 06:04:40 -0000 On Mon, Jun 05, 2006 at 11:04:39AM +0800, netsick@iinet.net.au wrote: > > device agp in my kernel > > no /dev/agpgart > > Can we get this supported please ? Can you try this patch? Index: pci_cfgreg.c =================================================================== RCS file: /home/ncvs/src/sys/i386/pci/pci_cfgreg.c,v retrieving revision 1.123 diff -u -u -r1.123 pci_cfgreg.c --- pci_cfgreg.c 8 Dec 2005 18:55:15 -0000 1.123 +++ pci_cfgreg.c 5 Jun 2006 06:02:33 -0000 @@ -167,8 +167,8 @@ /* Intel 7520 or 7320 */ pciebar = pci_cfgregread(0, 0, 0, 0xce, 2) << 16; pciereg_cfgopen(); - } else if (did == 0x2580 || did == 0x2584) { - /* Intel 915 or 925 */ + } else if (did == 0x2580 || did == 0x2584 || did == 0x2770) { + /* Intel 915, 925, or 945 */ pciebar = pci_cfgregread(0, 0, 0, 0x48, 4); pciereg_cfgopen(); } -- Craig Rodrigues rodrigc@crodrigues.org