From owner-freebsd-ports@FreeBSD.ORG Fri Mar 12 17:24:44 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AD1D4106566B; Fri, 12 Mar 2010 17:24:44 +0000 (UTC) (envelope-from rnoland@FreeBSD.org) Received: from gizmo.2hip.net (gizmo.2hip.net [64.74.207.195]) by mx1.freebsd.org (Postfix) with ESMTP id 579EC8FC0C; Fri, 12 Mar 2010 17:24:44 +0000 (UTC) Received: from [192.168.1.4] (adsl-154-185-142.bna.bellsouth.net [68.154.185.142]) (authenticated bits=0) by gizmo.2hip.net (8.14.3/8.14.3) with ESMTP id o2CHObBU059011 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO); Fri, 12 Mar 2010 12:24:40 -0500 (EST) (envelope-from rnoland@FreeBSD.org) From: Robert Noland To: Torfinn Ingolfsen In-Reply-To: References: <20100311134413.GH19740@bsdcrew.de> Content-Type: multipart/mixed; boundary="=-mCE5+vmdXbGKoRqz0H/7" Organization: FreeBSD Date: Fri, 12 Mar 2010 11:24:31 -0600 Message-Id: <1268414671.2608.293.camel@balrog.2hip.net> Mime-Version: 1.0 X-Mailer: Evolution 2.26.3 FreeBSD GNOME Team Port X-Spam-Status: No, score=0.5 required=5.0 tests=AWL, BAYES_00, FH_DATE_PAST_20XX, RCVD_IN_PBL,RCVD_IN_SORBS_DUL,RDNS_DYNAMIC,SPF_SOFTFAIL autolearn=no version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on gizmo.2hip.net Cc: ports@freebsd.org, x11@freebsd.org, Martin Wilke Subject: Re: [Call for Testing] X.org 7.5 for FreeBSD X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Mar 2010 17:24:44 -0000 --=-mCE5+vmdXbGKoRqz0H/7 Content-Type: text/plain Content-Transfer-Encoding: 7bit On Thu, 2010-03-11 at 23:48 +0100, Torfinn Ingolfsen wrote: > Hi, > > On Thu, Mar 11, 2010 at 2:44 PM, Martin Wilke wrote: > > > -----BEGIN PGP SIGNED MESSAGE----- > > Hash: SHA1 > > > > Call for Testing Xorg 7.5 > > > > Works here too. > For some reason, Xfce doesn't work after the upgrade, xfce4-session core > dumps when I do 'startxfce4'. (Yes, I have recompiled allt the xfce ports). > FreeBSD 8.0-stable, xfce-4.6.1_1, vesa driver. > root@kg-v7# uname -a > FreeBSD kg-v7.kg4.no 8.0-STABLE FreeBSD 8.0-STABLE #0: Sun Mar 7 20:55:51 > CET 2010 root@kg-v7.kg4.no:/usr/obj/usr/src/sys/GENERIC amd64 > > I'm currently using the vesa driver, it seems that it is the only thing that > supports this "integrated graphics controller" of the Interl Core i3 cpu > (i3-540) that I have. > >From /var/log/Xorg.0.log: > (--) PCI:*(0:0:2:0) 8086:0042:1043:8383 Intel Corporation Core Processor > Integrated Graphics Controller rev 18, Mem @ 0xfb800000/4194304, > 0xd0000000/268435456, I/O @ 0x0000dc00/8, BIOS @ 0x????????/65536 > and pciconf: > root@kg-v7# pciconf -lv | grep -A 3 vga > vgapci0@pci0:0:2:0: class=0x030000 card=0x83831043 chip=0x00428086 > rev=0x12 hdr=0x00 > vendor = 'Intel Corporation' > class = display > subclass = VGA Can you try the attached patch and verify that AGP attaches and reports correctly. I will try and see if I can enable drm on this chip with the current driver, or import version 2.9.1 of the driver this weekend. You won't get drm with the 2.9.1 version, but it would be better than vesa. robert. > HTH -- Robert Noland FreeBSD --=-mCE5+vmdXbGKoRqz0H/7 Content-Disposition: attachment; filename="agp_ironlake.patch" Content-Type: text/x-patch; name="agp_ironlake.patch"; charset="us-ascii" Content-Transfer-Encoding: 7bit diff --git a/sys/dev/agp/agp_i810.c b/sys/dev/agp/agp_i810.c index be51bb2..9835663 100644 --- a/sys/dev/agp/agp_i810.c +++ b/sys/dev/agp/agp_i810.c @@ -177,6 +177,10 @@ static const struct agp_i810_match { "Intel G45 SVGA controller"}, {0x2E328086, CHIP_G4X, 0x00020000, "Intel G41 SVGA controller"}, + {0x00428086, CHIP_G4X, 0x00020000, + "Intel Ironlake (D) SVGA controller"}, + {0x00468086, CHIP_G4X, 0x00020000, + "Intel Ironlake (M) SVGA controller"}, {0, 0, 0, NULL} }; --=-mCE5+vmdXbGKoRqz0H/7--