On Thu, 2010-03-11 at 23:48 +0100, Torfinn Ingolfsen wrote: > Hi, > > On Thu, Mar 11, 2010 at 2:44 PM, Martin Wilke <m...@freebsd.org> 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. > r...@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 r...@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: > r...@kg-v7# pciconf -lv | grep -A 3 vga > vgap...@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 <rnol...@freebsd.org> FreeBSD
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} };
_______________________________________________ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"