From owner-freebsd-x11@FreeBSD.ORG Sun Jul 27 10:32:48 2014 Return-Path: Delivered-To: freebsd-x11@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 45EE874F for ; Sun, 27 Jul 2014 10:32:48 +0000 (UTC) Received: from mail.unitedinsong.com.au (mail.unitedinsong.com.au [150.101.178.33]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 148382D4C for ; Sun, 27 Jul 2014 10:32:46 +0000 (UTC) Received: from laptop3.herveybayaustralia.com.au (laptop3.herveybayaustralia.com.au [192.168.0.185]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by mail.unitedinsong.com.au (Postfix) with ESMTPSA id C5453273B8; Sun, 27 Jul 2014 20:32:42 +1000 (EST) Message-ID: <53D4D549.2040505@herveybayaustralia.com.au> Date: Sun, 27 Jul 2014 20:32:41 +1000 From: Da Rock User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.3.0 MIME-Version: 1.0 To: Roland Smith Subject: Re: Xorg, Radeon and KMS problems References: <53D39B39.9010407@herveybayaustralia.com.au> <20140726141107.GA1382@slackbox.erewhon.home> In-Reply-To: <20140726141107.GA1382@slackbox.erewhon.home> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-Content-Filtered-By: Mailman/MimeDel 2.1.18 Cc: freebsd-x11@freebsd.org X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 10:32:48 -0000 God I have some weird shit going on atm... Good to see you on this list - kinda hoping you were here :) On Sat, Jul 26, 2014 at 10:12:41PM +1000, Da Rock wrote: > Ok. First time post to this list, so be gentle > > Just trying to sort out FreeBSD 10 - still - and after numerous issues I > finally get Xorg to run, and failed. > > I have a dual card laptop (Compaq CQ62 Athlon version), with the R880M > and 6300HD video. I've always had some issues with this on previous > versions, but nothing like this - and I was hoping 10 with KMS would > resolve it once and for all > > I've built everything WITH_NEW_XORG, WITH_GALLIUM, WITH_KMS. New install > completely minty fresh 10. Tried packages, but that resulted in more > issues, so I'm bypassing that now to get to the bottom of this > particular problem. > > Running startx, I get ... nothing. Comes back with no screens found. > > Running configure, I get 5 screens in the layout - with 2 vesa devices, > 2 radeon devices (expected), and 2 fbdev devices. Try this config, I get > success; with a proviso: lxde screens look really weird. Fragmented > display, disappears until redraw or something - not what I'd call > useable. Whats worse is it degrades from there to the point where > everything but the background and active window disappears. > > Comment out the vesa devices, I get a black screen with no way back > except acpi shutdown. > > Try loading the radeonkms in the loader.conf, black screen with no way > to rectify except to use the live disk. > > I'm not 100% here, but I'm trying all my foo on this with no luck. By > rights all this should be working, right? What am I missing? I've heard > word of a newcons driver, but I'm not sure this is the core of the > problem or even helpful. What do I need to do to resolve this? The main problem seems to be that X cannot find a screen. And the RADEON driver doesn't show up in the Xorg log. I think the root cause is that the system doesn't know which one to choose. From the Xorg log: > [ 206.973] (!!) More than one possible primary device found What I would try is build Xorg without HAL, and add Option "AutoAddDevices" "off" to the ServerLayout section of your Xorg.conf. Add two Device sections to your Xorg.conf using the data from pciconf; > vgapci0@pci0:1:5:0: class=0x030000 card=0x1445103c chip=0x97121002 > rev=0x00 hdr=0x00 > vendor = 'Advanced Micro Devices [AMD] nee ATI' > device = 'RS880M [Mobility Radeon HD 4200 Series]' > class = display > subclass = VGA > vgapci1@pci0:2:0:0: class=0x030000 card=0x1445103c chip=0x68e41002 > rev=0x00 hdr=0x00 > vendor = 'Advanced Micro Devices [AMD] nee ATI' > device = 'Robson CE [AMD Radeon HD 6300 Series]' > class = display > subclass = VGA Section "Device" Identifier "Card0" Driver "radeon" BoardName "Radeon HD 4200" BusID "PCI:1:5:0" EndSection Section "Device" Identifier "Card1" Driver "radeon" BoardName "Radeon HD 6300" BusID "PCI:2:0:0" EndSection From your dmesg, it seems that the HD 4200 is connected to the monitor; > vgapci0: port 0x7000-0x70ff mem > 0xd0000000-0xdfffffff,0xf1300000-0xf130ffff,0xf1200000-0xf12fffff irq 18 > at device 5.0 on pci1 > vgapci0: Boot video device Then write a Screen section containing one of the monitors. Most listing for the CQ62 list it as using a HD 4200, and it seems to be the one used at boot, so I'd try that first. Section "Monitor0" VendorName "built-in" Identifier "Monitor0" EndSection If you know the pysical size of the monitor, add a “DisplaySize width height” line to the Monitor0 section. That will help calculate the horizontal and vertical pitch. Section "Screen" Identifier "Screen0" Device "Card0" Monitor "Monitor0" DefaultDepth 24 SubSection "Display" Depth 24 Modes "1366 x 768" EndSubSection EndSection Xorg will load the necessary modules when it starts. Ok, haven't quite got it all in place yet - haven't had time to recompile Xorg yet without hal. But I have done the preliminary xorg.conf and given it a shot. It works... but I think I've made a discovery of weird proportions. Being dual card I believe Xorg is writing to both cards to one screen. It kinda makes sense with the issues I'm having; what twigged me is this weird xsreensaver effect where there are 2 screensaver programs going at once on the one screen - something that usually only happens if there are 2 screens connected like an external monitor, except there's one screensaver on each. What I reckon I need to do is to be able to take control of this process and say I want the 4200 going to the built in, and the HD to the external HDMI/VGA. Tried playing with that on 9.x but I've never been that good with Xorg and all its magic blackboxness :D Also, how does no hal work? What does that effect with regards other apps? Are you speaking of using the devd option in make config too? > dmesg: > Copyright (c) 1992-2014 The FreeBSD Project. > Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 > The Regents of the University of California. All rights reserved. > FreeBSD is a registered trademark of The FreeBSD Foundation. > FreeBSD 10.0-RELEASE #0 r260789: Thu Jan 16 22:34:59 UTC 2014 > root@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 You cannot use the new vt(4) driver on 10.0-RELEASE. It is only available on 10-STABLE. This means that you cannot switch from X back to the sc console. That is not supported with kernel modesetting. You will either have to do without or upgrade to 10-STABLE. I'm on r269090 using a Radeon X 1650 Pro and it works fine. Good to know. Was wondering how that all fit... is vt tied with the graphical boot or separate altogether? After upgrading to 10-STABLE, use kldstat to see which modules are loaded by Xorg, and add them to /boot/loader.conf. Then you can enable vt. An excerpt from my /boot/loader.conf: # Kernel modules radeonkms_load="YES" drm2_load="YES" iicbus_load="YES" iic_load="YES" iicbb_load="YES" radeonkmsfw_R520_cp_load="YES" # Use the new vt driver. kern.vty=vt N.B: Do*not* use the `radeonkmsfw_R520_cp_load="YES"` line. It's not the correct firmware for your chip! For reference my kldstat looks like this atm: Id Refs Address Size Name 1 45 0xffffffff80200000 15f0310 kernel 2 1 0xffffffff81a12000 432d4 linux.ko 3 1 0xffffffff81a56000 116c16 radeonkms.ko 4 1 0xffffffff81b6d000 47147 drm2.ko 5 4 0xffffffff81bb5000 1ccf iicbus.ko 6 1 0xffffffff81bb7000 1a2a iic.ko 7 1 0xffffffff81bb9000 1ad8 iicbb.ko 8 1 0xffffffff81bbb000 1028 radeonkmsfw_RS780_pfp.ko 9 1 0xffffffff81bbd000 5b1f radeonkmsfw_RS780_me.ko 10 1 0xffffffff81bc3000 131b radeonkmsfw_R600_rlc.ko 11 1 0xffffffff81bc5000 18a6 radeonkmsfw_CEDAR_pfp.ko 12 1 0xffffffff81bc7000 1ca1 radeonkmsfw_CEDAR_me.ko 13 1 0xffffffff81bc9000 1329 radeonkmsfw_CEDAR_rlc.ko Hope that helps clear the picture so that you can give more focused help, but I will get back probably tomorrow once Xorg is rebuilt with the results of that step. Hope this helps... Roland -- R.F.Smith http://rsmith.home.xs4all.nl/ [plain text _non-HTML_ PGP/GnuPG encrypted/signed email much appreciated] pgp: 5753 3324 1661 B0FE 8D93 FCED 40F6 D5DC A38A 33E0 (keyID: A38A33E0) From owner-freebsd-x11@FreeBSD.ORG Sun Jul 27 12:09:29 2014 Return-Path: Delivered-To: freebsd-x11@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3350E939 for ; Sun, 27 Jul 2014 12:09:29 +0000 (UTC) Received: from smtp-vbr15.xs4all.nl (smtp-vbr15.xs4all.nl [194.109.24.35]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D972025A2 for ; Sun, 27 Jul 2014 12:09:28 +0000 (UTC) Received: from slackbox.erewhon.home (slackbox.xs4all.nl [83.162.243.5]) by smtp-vbr15.xs4all.nl (8.13.8/8.13.8) with ESMTP id s6RC9Ick096098; Sun, 27 Jul 2014 14:09:18 +0200 (CEST) (envelope-from rsmith@xs4all.nl) Received: by slackbox.erewhon.home (Postfix, from userid 1001) id 4C006123C9; Sun, 27 Jul 2014 14:09:18 +0200 (CEST) Date: Sun, 27 Jul 2014 14:09:18 +0200 From: Roland Smith To: Da Rock Subject: Re: Xorg, Radeon and KMS problems Message-ID: <20140727120918.GA74913@slackbox.erewhon.home> References: <53D39B39.9010407@herveybayaustralia.com.au> <20140726141107.GA1382@slackbox.erewhon.home> <53D4D549.2040505@herveybayaustralia.com.au> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="8t9RHnE3ZwKMSgU+" Content-Disposition: inline In-Reply-To: <53D4D549.2040505@herveybayaustralia.com.au> X-GPG-Fingerprint: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 X-GPG-Key: http://www.xs4all.nl/~rsmith/pubkey.txt X-GPG-Notice: If this message is not signed, don't assume I sent it! User-Agent: Mutt/1.5.23 (2014-03-12) X-Virus-Scanned: by XS4ALL Virus Scanner Cc: freebsd-x11@freebsd.org X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 12:09:29 -0000 --8t9RHnE3ZwKMSgU+ Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Jul 27, 2014 at 08:32:41PM +1000, Da Rock wrote: > God I have some weird shit going on atm... You're between a rock and a hard place? ;-) BTW, could you try to configure your e-mail program to use proper quote mar= ks (=E2=80=9C>=E2=80=9D)? It's kind of hard to find what you wrote without it. > Ok, haven't quite got it all in place yet - haven't had time to recompile > Xorg yet without hal. Setting "AutoAddDevices" to "off" is probably sufficient. And you only need to rebuild xorg-server AFAIK. > But I have done the preliminary xorg.conf and given > it a shot. It works... but I think I've made a discovery of weird > proportions. Being dual card I believe Xorg is writing to both cards to = one > screen. It kinda makes sense with the issues I'm having; what twigged me= is > this weird xsreensaver effect where there are 2 screensaver programs goi= ng > at once on the one screen - something that usually only happens if there > are 2 screens connected like an external monitor, except there's one > screensaver on each. Ok. Weird. But that could also be a bug in xscreensaver. Check if it is possible to disable one of the graphics chips in the BIOS. That could be a last resort fix. AFAIK Xorg doen not have proper support for using two graphics cards or switching beteen them. > What I reckon I need to do is to be able to take control of this process > and say I want the 4200 going to the built in, and the HD to the external > HDMI/VGA. Tried playing with that on 9.x but I've never been that good w= ith > Xorg and all its magic blackboxness :D In the device section for the chips, you can specify it which monitor secti= on to use. See xorg.conf(5) excerpt below. N.B: the output for the built in pa= nel is probably called =E2=80=9CLVDS=E2=80=9D. MONITOR SECTION The config file may have multiple Monitor sections. There should n= or- mally be at least one, for the monitor being used, but a default c= on- figuration will be created when one isn't specified. Monitor sections have the following format: Section "Monitor" Identifier "name" entries ... EndSection The only mandatory entry in a Monitor section is the Identifier ent= ry. The Identifier entry specifies the unique name for this monitor. = The Monitor section may be used to provide information about the specifi= ca- tions of the monitor, monitor-specific Options, and information ab= out the video modes to use with the monitor. With RandR 1.2-enabled drivers, monitor sections may be tied to s= pe- cific outputs of the video card. Using the name of the output defi= ned by the video driver plus the identifier of a monitor section, one as= so- ciates a monitor section with an output by adding an option to = the Device section in the following format: Option "Monitor-outputname" "monitorsection" (for example, Option "Monitor-VGA" "VGA monitor" for a VGA output) In the absence of specific association of monitor sections to outpu= ts, if a monitor section is present the server will associate it with = an output to preserve compatibility for previous single-head configu= ra- tions. But I guess you'll have to remove one of the cards from your xorg.conf. to force Xorg to use the other one. > Also, how does no hal work? What does that effect with regards other app= s? No HAL means you have to tell Xorg more about the hardware. But otherwise it works fine. I'm not sure what other stuff uses hal. I have never used it no= r missed it. But I'm using only a light-weight tiling window manager instead of a full f= ledged desktop environment. > Are you speaking of using the devd option in make config too? Nope. That's just for input devices. I'm not using that either. >> You cannot use the new vt(4) driver on 10.0-RELEASE. It is only availab= le >> on 10-STABLE. This means that you cannot switch from X back to the sc >> console. That is not supported with kernel modesetting. You will either >> have to do without or upgrade to 10-STABLE. I'm on r269090 using a Rade= on X >> 1650 Pro and it works fine. > > Good to know. Was wondering how that all fit... is vt tied with the > graphical boot or separate altogether? You need vt(4) to do a graphical boot, and to get an utf-8 capable console. > For reference my kldstat looks like this atm: > Id Refs Address Size Name > 1 45 0xffffffff80200000 15f0310 kernel > 2 1 0xffffffff81a12000 432d4 linux.ko > 3 1 0xffffffff81a56000 116c16 radeonkms.ko > 4 1 0xffffffff81b6d000 47147 drm2.ko > 5 4 0xffffffff81bb5000 1ccf iicbus.ko > 6 1 0xffffffff81bb7000 1a2a iic.ko > 7 1 0xffffffff81bb9000 1ad8 iicbb.ko > 8 1 0xffffffff81bbb000 1028 radeonkmsfw_RS780_pfp.ko > 9 1 0xffffffff81bbd000 5b1f radeonkmsfw_RS780_me.ko > 10 1 0xffffffff81bc3000 131b radeonkmsfw_R600_rlc.ko > 11 1 0xffffffff81bc5000 18a6 radeonkmsfw_CEDAR_pfp.ko > 12 1 0xffffffff81bc7000 1ca1 radeonkmsfw_CEDAR_me.ko > 13 1 0xffffffff81bc9000 1329 radeonkmsfw_CEDAR_rlc.ko You might want to try and disable the HD6300 and then run kldstat again, to see which radeon* modules are specific to the HD4200. Because those are the ones you need to load /boot/loader.conf to get vt(4) working on 10-STABLE. > Hope that helps clear the picture so that you can give more focused help, > but I will get back probably tomorrow once Xorg is rebuilt with the resu= lts > of that step. Hope this helps. Roland -- R.F.Smith http://rsmith.home.xs4all.nl/ [plain text _non-HTML_ PGP/GnuPG encrypted/signed email much appreciated] pgp: 5753 3324 1661 B0FE 8D93 FCED 40F6 D5DC A38A 33E0 (keyID: A38A33E0) --8t9RHnE3ZwKMSgU+ Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQIcBAEBAgAGBQJT1OvuAAoJEED21dyjijPgweIP/RRX0+vKXv6ozZSkHcqczkK9 ycmLEcROmA+NDR0x2RQ0++cPzobxbeiBTlOku6V1f8T/p2sv5O72oTpKGMBx8cag +XMX8me9eghRNQjJgEsWtFu9tmXwvpyMb7nSlnMjGsx7SquYFfkvxoEvjJO1wuSj SP1PQqXU2j4pJPhiGRyXfAF3eqh4LJNDN0NtP2pbEbkYLDRTbcVFteX3LC3EoC1F VMrO7MaM01lKw3mV/FzPvO9ts3BN5WNpTks3QKbTYDi0z1zzLFWne+xwwJ48K2TP KsPtBKeTqWOQ28sdhBzJvWmAY/1zU1CAyL+LyDw57csmcY6yYGZy4JUJBfvAm8P1 cwpLqjd9Sm0+o28fSf0Icpju2FLizh2H87fYmBLvfJxuqJnv63Uxya/bq1eGPfQE 0blxorcLmtvq3KKNIgj5djQFdkKbqZQ6gsFFVBVwgWtkamcb2hIPO/d3ffEqJQWE R4j4wWoxkeG5Zsrg5OV9EXAb/VtJFp9+6fx4UBBxU2GeWPItbHn7aSZQBveFx7lo JRiPbn6vULXF6A+uqHkua/fd9O4awlwbPq2FysjsGdtty8IBcC52K+RkKgKTXhVo tQ+C3yhnIt0fE1+2PnAs93BLQcu8WpCZGaX4RyEYUuHFTlN3Vq05FtnmFEoIDcjm kNY7+Bm24ZeKJ7HGel9B =4Uyp -----END PGP SIGNATURE----- --8t9RHnE3ZwKMSgU+-- From owner-freebsd-x11@FreeBSD.ORG Sun Jul 27 12:45:40 2014 Return-Path: Delivered-To: freebsd-x11@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E14AF2D2 for ; Sun, 27 Jul 2014 12:45:40 +0000 (UTC) Received: from mail.unitedinsong.com.au (mail.unitedinsong.com.au [150.101.178.33]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 20A4C28E8 for ; Sun, 27 Jul 2014 12:45:40 +0000 (UTC) Received: from laptop3.herveybayaustralia.com.au (laptop3.herveybayaustralia.com.au [192.168.0.185]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by mail.unitedinsong.com.au (Postfix) with ESMTPSA id B2BF427363; Sun, 27 Jul 2014 22:45:31 +1000 (EST) Message-ID: <53D4F46A.7010206@herveybayaustralia.com.au> Date: Sun, 27 Jul 2014 22:45:30 +1000 From: Da Rock User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.3.0 MIME-Version: 1.0 To: Roland Smith Subject: Re: Xorg, Radeon and KMS problems References: <53D39B39.9010407@herveybayaustralia.com.au> <20140726141107.GA1382@slackbox.erewhon.home> <53D4D549.2040505@herveybayaustralia.com.au> <20140727120918.GA74913@slackbox.erewhon.home> In-Reply-To: <20140727120918.GA74913@slackbox.erewhon.home> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Cc: freebsd-x11@freebsd.org X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 12:45:41 -0000 On 07/27/14 22:09, Roland Smith wrote: > On Sun, Jul 27, 2014 at 08:32:41PM +1000, Da Rock wrote: >> God I have some weird shit going on atm... > You're between a rock and a hard place? ;-) > > BTW, could you try to configure your e-mail program to use proper quote marks (“>”)? > It's kind of hard to find what you wrote without it. Yeah, part of the weird shit was just that. Normally the email app does, but for some #$%@ reason it wouldn't play ball.... so I just had to cut and paste and hope for the best. > >> Ok, haven't quite got it all in place yet - haven't had time to recompile >> Xorg yet without hal. > Setting "AutoAddDevices" to "off" is probably sufficient. And you only > need to rebuild xorg-server AFAIK. I'll give the conf option a shot. Takes a little while on my system to build, and its building some big stuff atm like thunderbird and libreoffice, so next day is latest I'd get it going. > >> But I have done the preliminary xorg.conf and given >> it a shot. It works... but I think I've made a discovery of weird >> proportions. Being dual card I believe Xorg is writing to both cards to one >> screen. It kinda makes sense with the issues I'm having; what twigged me is >> this weird xsreensaver effect where there are 2 screensaver programs going >> at once on the one screen - something that usually only happens if there >> are 2 screens connected like an external monitor, except there's one >> screensaver on each. > Ok. Weird. But that could also be a bug in xscreensaver. > > Check if it is possible to disable one of the graphics chips in the BIOS. > That could be a last resort fix. AFAIK Xorg doen not have proper support for > using two graphics cards or switching beteen them. Not that I'm aware of - HP take away a lot of fine tweaking options in bios for some stupid reason, and I went looking last time I was playing with the dual card setup and HD. I'll have another peek though. Who's looking at the support for multiple cards in Xorg then? Is there a wiki/blog or such I can follow, help out with? > >> What I reckon I need to do is to be able to take control of this process >> and say I want the 4200 going to the built in, and the HD to the external >> HDMI/VGA. Tried playing with that on 9.x but I've never been that good with >> Xorg and all its magic blackboxness :D > In the device section for the chips, you can specify it which monitor section > to use. See xorg.conf(5) excerpt below. N.B: the output for the built in panel > is probably called “LVDS”. > > MONITOR SECTION > > The config file may have multiple Monitor sections. There should nor- > mally be at least one, for the monitor being used, but a default con- > figuration will be created when one isn't specified. > > Monitor sections have the following format: > > Section "Monitor" > Identifier "name" > entries > ... > EndSection > > The only mandatory entry in a Monitor section is the Identifier entry. > > The Identifier entry specifies the unique name for this monitor. The > Monitor section may be used to provide information about the specifica- > tions of the monitor, monitor-specific Options, and information about > the video modes to use with the monitor. > > With RandR 1.2-enabled drivers, monitor sections may be tied to spe- > cific outputs of the video card. Using the name of the output defined > by the video driver plus the identifier of a monitor section, one asso- > ciates a monitor section with an output by adding an option to the > Device section in the following format: > > Option "Monitor-outputname" "monitorsection" > > (for example, Option "Monitor-VGA" "VGA monitor" for a VGA output) > > In the absence of specific association of monitor sections to outputs, > if a monitor section is present the server will associate it with an > output to preserve compatibility for previous single-head configura- > tions. > > But I guess you'll have to remove one of the cards from your xorg.conf. > to force Xorg to use the other one. This could be clearer. I think I tried playing with this to get it to do what I want, but I got muddled following this. Perhaps you might understand better - is this what it means?: Section "Device" Identifier "Card1" Driver "radeon" BoardName "Radeon HD 6300" BusID "PCI:2:0:0" Option "LVDS" "built-in" EndSection Section "Monitor" VendorName "built-in" Identifier "Monitor0" EndSection Or is there another way to figure out the outputs? This LVDS is from the xrandr output, not sure if its related or I'm supposed to use another name. > >> Also, how does no hal work? What does that effect with regards other apps? > No HAL means you have to tell Xorg more about the hardware. But otherwise it > works fine. I'm not sure what other stuff uses hal. I have never used it nor missed it. > > But I'm using only a light-weight tiling window manager instead of a full fledged > desktop environment. > >> Are you speaking of using the devd option in make config too? > Nope. That's just for input devices. I'm not using that either. Funny. In the ports make config it has one or the other, with hal default. It'd be nice to get away from hal... its been murder already ;) > >>> You cannot use the new vt(4) driver on 10.0-RELEASE. It is only available >>> on 10-STABLE. This means that you cannot switch from X back to the sc >>> console. That is not supported with kernel modesetting. You will either >>> have to do without or upgrade to 10-STABLE. I'm on r269090 using a Radeon X >>> 1650 Pro and it works fine. >> Good to know. Was wondering how that all fit... is vt tied with the >> graphical boot or separate altogether? > You need vt(4) to do a graphical boot, and to get an utf-8 capable console. > >> For reference my kldstat looks like this atm: >> Id Refs Address Size Name >> 1 45 0xffffffff80200000 15f0310 kernel >> 2 1 0xffffffff81a12000 432d4 linux.ko >> 3 1 0xffffffff81a56000 116c16 radeonkms.ko >> 4 1 0xffffffff81b6d000 47147 drm2.ko >> 5 4 0xffffffff81bb5000 1ccf iicbus.ko >> 6 1 0xffffffff81bb7000 1a2a iic.ko >> 7 1 0xffffffff81bb9000 1ad8 iicbb.ko >> 8 1 0xffffffff81bbb000 1028 radeonkmsfw_RS780_pfp.ko >> 9 1 0xffffffff81bbd000 5b1f radeonkmsfw_RS780_me.ko >> 10 1 0xffffffff81bc3000 131b radeonkmsfw_R600_rlc.ko >> 11 1 0xffffffff81bc5000 18a6 radeonkmsfw_CEDAR_pfp.ko >> 12 1 0xffffffff81bc7000 1ca1 radeonkmsfw_CEDAR_me.ko >> 13 1 0xffffffff81bc9000 1329 radeonkmsfw_CEDAR_rlc.ko > You might want to try and disable the HD6300 and then run kldstat again, to > see which radeon* modules are specific to the HD4200. Because those are the > ones you need to load /boot/loader.conf to get vt(4) working on 10-STABLE. > >> Hope that helps clear the picture so that you can give more focused help, >> but I will get back probably tomorrow once Xorg is rebuilt with the results >> of that step. > > Hope this helps. Definitely. Thanks! > > Roland > -- > R.F.Smith http://rsmith.home.xs4all.nl/ > [plain text _non-HTML_ PGP/GnuPG encrypted/signed email much appreciated] > pgp: 5753 3324 1661 B0FE 8D93 FCED 40F6 D5DC A38A 33E0 (keyID: A38A33E0) From owner-freebsd-x11@FreeBSD.ORG Sun Jul 27 14:03:25 2014 Return-Path: Delivered-To: freebsd-x11@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 36EDE72D for ; Sun, 27 Jul 2014 14:03:25 +0000 (UTC) Received: from smtp-vbr8.xs4all.nl (smtp-vbr8.xs4all.nl [194.109.24.28]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C3E6E2EE8 for ; Sun, 27 Jul 2014 14:03:24 +0000 (UTC) Received: from slackbox.erewhon.home (slackbox.xs4all.nl [83.162.243.5]) by smtp-vbr8.xs4all.nl (8.13.8/8.13.8) with ESMTP id s6RE3Kn1051966; Sun, 27 Jul 2014 16:03:20 +0200 (CEST) (envelope-from rsmith@xs4all.nl) Received: by slackbox.erewhon.home (Postfix, from userid 1001) id DBA57124BA; Sun, 27 Jul 2014 16:03:19 +0200 (CEST) Date: Sun, 27 Jul 2014 16:03:19 +0200 From: Roland Smith To: Da Rock Subject: Re: Xorg, Radeon and KMS problems Message-ID: <20140727140319.GA2754@slackbox.erewhon.home> References: <53D39B39.9010407@herveybayaustralia.com.au> <20140726141107.GA1382@slackbox.erewhon.home> <53D4D549.2040505@herveybayaustralia.com.au> <20140727120918.GA74913@slackbox.erewhon.home> <53D4F46A.7010206@herveybayaustralia.com.au> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Qxx1br4bt0+wmkIi" Content-Disposition: inline In-Reply-To: <53D4F46A.7010206@herveybayaustralia.com.au> X-GPG-Fingerprint: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 X-GPG-Key: http://www.xs4all.nl/~rsmith/pubkey.txt X-GPG-Notice: If this message is not signed, don't assume I sent it! User-Agent: Mutt/1.5.23 (2014-03-12) X-Virus-Scanned: by XS4ALL Virus Scanner Cc: freebsd-x11@freebsd.org X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 14:03:25 -0000 --Qxx1br4bt0+wmkIi Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Jul 27, 2014 at 10:45:30PM +1000, Da Rock wrote: > >> Ok, haven't quite got it all in place yet - haven't had time to reco= mpile > >> Xorg yet without hal. > > Setting "AutoAddDevices" to "off" is probably sufficient. And you only > > need to rebuild xorg-server AFAIK. > I'll give the conf option a shot. Takes a little while on my system to=20 > build, and its building some big stuff atm like thunderbird and=20 > libreoffice, so next day is latest I'd get it going. BTW, if you're updating ports, you might want to give the update to pkg-1.3= =2E1 a miss for now if you're running on amd64. It segfaults on that platform. > > Check if it is possible to disable one of the graphics chips in the BIO= S. > > That could be a last resort fix. AFAIK Xorg doen not have proper suppor= t for > > using two graphics cards or switching beteen them. > Not that I'm aware of - HP take away a lot of fine tweaking options in=20 > bios for some stupid reason, and I went looking last time I was playing= =20 > with the dual card setup and HD. I'll have another peek though. You should be able to disable one of the cards using device.hints(5). =46rom your pciconf output; vgapci0@pci0:1:5:0: class=3D0x030000 card=3D0x1445103c chip=3D0x9712= 1002 rev=3D0x00 hdr=3D0x00 vendor =3D 'Advanced Micro Devices [AMD] nee ATI' device =3D 'RS880M [Mobility Radeon HD 4200 Series]' class =3D display subclass =3D VGA ... vgapci1@pci0:2:0:0: class=3D0x030000 card=3D0x1445103c chip=3D0x68e4= 1002 rev=3D0x00 hdr=3D0x00 vendor =3D 'Advanced Micro Devices [AMD] nee ATI' device =3D 'Robson CE [AMD Radeon HD 6300 Series]' class =3D display subclass =3D VGA ... So you have two =E2=80=9Cvgapci=E2=80=9D devices. E.g. to disable the HD 63= 00, put hint.vgapci.1.disabled=3D"1" in /boot/device.hints and reboot. That should get rid of it. Additionally (but unrelated), on a laptop you might want to set hw.pci.do_power_nodriver=3D3 in /boot/loader.conf to power-down all hardware that's not attached to a driver. That might make your battery last longer. > Who's looking at the support for multiple cards in Xorg then? Is there a= =20 > wiki/blog or such I can follow, help out with? Not sure if anybody is. This is something only found on some laptops as a power-saving thing. And since most Xorg development is done on Linux, a solution might very well be Linux specific. > > But I guess you'll have to remove one of the cards from your xorg.conf. > > to force Xorg to use the other one. > This could be clearer. I think I tried playing with this to get it to do= =20 > what I want, but I got muddled following this. Perhaps you might=20 > understand better - is this what it means?: >=20 > Section "Device" > Identifier "Card1" > Driver "radeon" > BoardName "Radeon HD 6300" > BusID "PCI:2:0:0" > Option "LVDS" "built-in" Use this instead: Option "Monitor-LVDS" "Monitor0" But if you disable one of the chips, it might not be necessary. Good luck! Roland --=20 R.F.Smith http://rsmith.home.xs4all.nl/ [plain text _non-HTML_ PGP/GnuPG encrypted/signed email much appreciated] pgp: 5753 3324 1661 B0FE 8D93 FCED 40F6 D5DC A38A 33E0 (keyID: A38A33E0) --Qxx1br4bt0+wmkIi Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQIcBAEBAgAGBQJT1QanAAoJEED21dyjijPgP3oQAIjxWQ2LLZC1JveZEkyE+/XD C09u6nycVjVBzkT7moDb+6sondV189yaQg3z5Xr5Xy0tTm1ARC7tpuP7yngqL+Io pt6Nl5YZkmgHLclOYIi2VuS7FPYJ/46xnVUlS2VCyL/0rWZATXu2Y3zfgMa0By9T wSQO6Ei5ElytYQYbyHa49llTB0+DDidIleVCZiGaOl0a+Mz85CRzR81H+qAh9nai 1crxIBy7sQXBhEGcySoVMY3eI+wnHwNjphVDEmGHmDAnfdtdhhpr4cfAoGaq3NzR EHD591QeBTzrNPVIzHE1CwZhLeDVbHmmxlQVnhYJpU51+MdmymsGeJYypSdNbFM6 4GIXdqXzQUfVcEcS/kTRscDBR1YJ7otLumc/mnEWm10Rp+VtBTrE42JvCKWh3MC2 o8NlHJ9Xu/mPyG7UkuY59kfW/JMAlUrgamYQg4RjKtMNbXP+aRkw1ZotbBGP8Ouf h0Ow6RWdj9QQDBcbtkCZ6fWB48liMNazzaMC5K3nknJcbqfjKh7KukcklKjPcV1Y YzLx/kkEhZAbKV3J+DldR44A1OvMYHawBpoROlI5v5TRWlNsQgCdCCSNhGUCgIHL gGA49m+pRJhsRSBuxhOLV0UNosPE/wUPEN8TcHwnhrT4HEGxLU6Moxj0j+GNkneP iK6zuHaDB/ERhRrjezvz =kY1i -----END PGP SIGNATURE----- --Qxx1br4bt0+wmkIi-- From owner-freebsd-x11@FreeBSD.ORG Sun Jul 27 19:18:01 2014 Return-Path: Delivered-To: freebsd-x11@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 13F9BFB0 for ; Sun, 27 Jul 2014 19:18:01 +0000 (UTC) Received: from wonkity.com (wonkity.com [67.158.26.137]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "wonkity.com", Issuer "wonkity.com" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id B9A5129C1 for ; Sun, 27 Jul 2014 19:18:00 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.9/8.14.9) with ESMTP id s6RJHwC1001928 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Sun, 27 Jul 2014 13:17:58 -0600 (MDT) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.9/8.14.9/Submit) with ESMTP id s6RJHwB4001922; Sun, 27 Jul 2014 13:17:58 -0600 (MDT) (envelope-from wblock@wonkity.com) Date: Sun, 27 Jul 2014 13:17:58 -0600 (MDT) From: Warren Block To: Da Rock Subject: Re: Xorg, Radeon and KMS problems In-Reply-To: <53D4F46A.7010206@herveybayaustralia.com.au> Message-ID: References: <53D39B39.9010407@herveybayaustralia.com.au> <20140726141107.GA1382@slackbox.erewhon.home> <53D4D549.2040505@herveybayaustralia.com.au> <20140727120918.GA74913@slackbox.erewhon.home> <53D4F46A.7010206@herveybayaustralia.com.au> User-Agent: Alpine 2.11 (BSF 23 2013-08-11) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (wonkity.com [127.0.0.1]); Sun, 27 Jul 2014 13:17:58 -0600 (MDT) Cc: freebsd-x11@freebsd.org X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 19:18:01 -0000 On Sun, 27 Jul 2014, Da Rock wrote: >> Setting "AutoAddDevices" to "off" is probably sufficient. And you only >> need to rebuild xorg-server AFAIK. > I'll give the conf option a shot. Takes a little while on my system to build, > and its building some big stuff atm like thunderbird and libreoffice, so next > day is latest I'd get it going. It is not even necessary to rebuild xorg-server. Just setting "AutoAddDevices" "Off" prevents it from using HAL. Rebuilding it with the port options set to not use HAL removes that dependency. If you use xfce, HAL can be removed entirely. KDE and Gnome still depend on it, even when xorg-server does not. >> Check if it is possible to disable one of the graphics chips in the BIOS. >> That could be a last resort fix. AFAIK Xorg doen not have proper support >> for >> using two graphics cards or switching beteen them. > Not that I'm aware of - HP take away a lot of fine tweaking options in bios > for some stupid reason, and I went looking last time I was playing with the > dual card setup and HD. I'll have another peek though. > > Who's looking at the support for multiple cards in Xorg then? Is there a > wiki/blog or such I can follow, help out with? It might work. Fewer people use it now, since even low-end graphics cards have two or three outputs. This is something I've been meaning to test, and I have one or two machines available for that. I'll report back. From owner-freebsd-x11@FreeBSD.ORG Sun Jul 27 23:17:46 2014 Return-Path: Delivered-To: freebsd-x11@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8BFFEED1 for ; Sun, 27 Jul 2014 23:17:46 +0000 (UTC) Received: from wonkity.com (wonkity.com [67.158.26.137]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "wonkity.com", Issuer "wonkity.com" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 3E1B122D1 for ; Sun, 27 Jul 2014 23:17:46 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.9/8.14.9) with ESMTP id s6RNHhYp018543 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO) for ; Sun, 27 Jul 2014 17:17:44 -0600 (MDT) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.9/8.14.9/Submit) with ESMTP id s6RNHh2A018540 for ; Sun, 27 Jul 2014 17:17:43 -0600 (MDT) (envelope-from wblock@wonkity.com) Date: Sun, 27 Jul 2014 17:17:43 -0600 (MDT) From: Warren Block To: freebsd-x11@FreeBSD.org Subject: Multiple video cards Message-ID: User-Agent: Alpine 2.11 (BSF 23 2013-08-11) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=US-ASCII X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (wonkity.com [127.0.0.1]); Sun, 27 Jul 2014 17:17:44 -0600 (MDT) X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 23:17:46 -0000 Test system: FreeBSD 10-STABLE amd64 r269160 AMD A8-3850 APU (Radeon HD6550D) Radeon X1650 PCIe card Under IGX Configuration, the APU motherboard BIOS has a "Surround View" setting. When enabled, the onboard HD6550 GPU remains enabled when an additional video card is connected. With the HD6550 disabled, the X1650 works fine. pciconf shows only one video device. With the HD6550 enabled, both video devices show in pciconf, and X gives the "screens not found" error unless both are defined in xorg.conf. X starts, but xrandr only shows the HD6550, and only the monitors attached to the motherboard video connectors work. xrandr only shows that cards. There may be more settings required in xorg.conf. I think that Xinerama is obsolete, but don't know. Based on some Linux stuff: % xrandr --listproviders RandR 1.4 not supported Is there a right way to define multiple monitors on more than one card for the same virtual screen? From owner-freebsd-x11@FreeBSD.ORG Sun Jul 27 23:28:55 2014 Return-Path: Delivered-To: freebsd-x11@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4C7391DF for ; Sun, 27 Jul 2014 23:28:55 +0000 (UTC) Received: from mail.unitedinsong.com.au (mail.unitedinsong.com.au [150.101.178.33]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AAEA6247F for ; Sun, 27 Jul 2014 23:28:54 +0000 (UTC) Received: from laptop3.herveybayaustralia.com.au (laptop3.herveybayaustralia.com.au [192.168.0.185]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by mail.unitedinsong.com.au (Postfix) with ESMTPSA id 200C22737B; Mon, 28 Jul 2014 09:28:49 +1000 (EST) Message-ID: <53D58B2F.9000503@herveybayaustralia.com.au> Date: Mon, 28 Jul 2014 09:28:47 +1000 From: Da Rock User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.3.0 MIME-Version: 1.0 To: Roland Smith Subject: Re: Xorg, Radeon and KMS problems References: <53D39B39.9010407@herveybayaustralia.com.au> <20140726141107.GA1382@slackbox.erewhon.home> <53D4D549.2040505@herveybayaustralia.com.au> <20140727120918.GA74913@slackbox.erewhon.home> <53D4F46A.7010206@herveybayaustralia.com.au> <20140727140319.GA2754@slackbox.erewhon.home> In-Reply-To: <20140727140319.GA2754@slackbox.erewhon.home> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Cc: freebsd-x11@freebsd.org X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 23:28:55 -0000 On 07/28/14 00:03, Roland Smith wrote: > On Sun, Jul 27, 2014 at 10:45:30PM +1000, Da Rock wrote: >>>> Ok, haven't quite got it all in place yet - haven't had time to recompile >>>> Xorg yet without hal. >>> Setting "AutoAddDevices" to "off" is probably sufficient. And you only >>> need to rebuild xorg-server AFAIK. >> I'll give the conf option a shot. Takes a little while on my system to >> build, and its building some big stuff atm like thunderbird and >> libreoffice, so next day is latest I'd get it going. > BTW, if you're updating ports, you might want to give the update to pkg-1.3.1 > a miss for now if you're running on amd64. It segfaults on that platform. Good to know. I'm just trying to get it started, don't need more problems right now... > >>> Check if it is possible to disable one of the graphics chips in the BIOS. >>> That could be a last resort fix. AFAIK Xorg doen not have proper support for >>> using two graphics cards or switching beteen them. >> Not that I'm aware of - HP take away a lot of fine tweaking options in >> bios for some stupid reason, and I went looking last time I was playing >> with the dual card setup and HD. I'll have another peek though. > You should be able to disable one of the cards using device.hints(5). > > From your pciconf output; > > vgapci0@pci0:1:5:0: class=0x030000 card=0x1445103c chip=0x97121002 rev=0x00 > hdr=0x00 > vendor = 'Advanced Micro Devices [AMD] nee ATI' > device = 'RS880M [Mobility Radeon HD 4200 Series]' > class = display > subclass = VGA > ... > > vgapci1@pci0:2:0:0: class=0x030000 card=0x1445103c chip=0x68e41002 rev=0x00 > hdr=0x00 > vendor = 'Advanced Micro Devices [AMD] nee ATI' > device = 'Robson CE [AMD Radeon HD 6300 Series]' > class = display > subclass = VGA > ... > > So you have two “vgapci” devices. E.g. to disable the HD 6300, put > > hint.vgapci.1.disabled="1" > > in /boot/device.hints and reboot. That should get rid of it. I'll try that if I need to. See how it goes first - looking ok so far with the autoadddevices off. Question on that though: does that mean if I plug in a mouse it won't be useable? Or does moused take care of that? > > Additionally (but unrelated), on a laptop you might want to set > > hw.pci.do_power_nodriver=3 > > in /boot/loader.conf to power-down all hardware that's not attached to a > driver. That might make your battery last longer. Maybe I should have a look at starting there - documenting all these sysctls. That looks like a good one to know about on any system to save power. > >> Who's looking at the support for multiple cards in Xorg then? Is there a >> wiki/blog or such I can follow, help out with? > Not sure if anybody is. This is something only found on some laptops as a > power-saving thing. > > And since most Xorg development is done on Linux, a solution might very well > be Linux specific. I'll have a poke around then, and see what I can find. Maybe if the solution is not so linux specific it might be more use to the rest of us :) > > > >>> But I guess you'll have to remove one of the cards from your xorg.conf. >>> to force Xorg to use the other one. >> This could be clearer. I think I tried playing with this to get it to do >> what I want, but I got muddled following this. Perhaps you might >> understand better - is this what it means?: >> >> Section "Device" >> Identifier "Card1" >> Driver "radeon" >> BoardName "Radeon HD 6300" >> BusID "PCI:2:0:0" >> Option "LVDS" "built-in" > Use this instead: > Option "Monitor-LVDS" "Monitor0" > > But if you disable one of the chips, it might not be necessary. Dunno how I missed that vital clue in the man. I'll see how that goes then :) Cheers > > > Good luck! > > Roland From owner-freebsd-x11@FreeBSD.ORG Sun Jul 27 23:33:39 2014 Return-Path: Delivered-To: freebsd-x11@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A899541E for ; Sun, 27 Jul 2014 23:33:39 +0000 (UTC) Received: from mail.unitedinsong.com.au (mail.unitedinsong.com.au [150.101.178.33]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5C0452526 for ; Sun, 27 Jul 2014 23:33:38 +0000 (UTC) Received: from laptop3.herveybayaustralia.com.au (laptop3.herveybayaustralia.com.au [192.168.0.185]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by mail.unitedinsong.com.au (Postfix) with ESMTPSA id B4FC02737B; Mon, 28 Jul 2014 09:33:35 +1000 (EST) Message-ID: <53D58C4E.8020402@herveybayaustralia.com.au> Date: Mon, 28 Jul 2014 09:33:34 +1000 From: Da Rock User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.3.0 MIME-Version: 1.0 To: Warren Block Subject: Re: Xorg, Radeon and KMS problems References: <53D39B39.9010407@herveybayaustralia.com.au> <20140726141107.GA1382@slackbox.erewhon.home> <53D4D549.2040505@herveybayaustralia.com.au> <20140727120918.GA74913@slackbox.erewhon.home> <53D4F46A.7010206@herveybayaustralia.com.au> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-x11@freebsd.org X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 23:33:39 -0000 On 07/28/14 05:17, Warren Block wrote: > On Sun, 27 Jul 2014, Da Rock wrote: > >>> Setting "AutoAddDevices" to "off" is probably sufficient. And you only >>> need to rebuild xorg-server AFAIK. >> I'll give the conf option a shot. Takes a little while on my system >> to build, and its building some big stuff atm like thunderbird and >> libreoffice, so next day is latest I'd get it going. > > It is not even necessary to rebuild xorg-server. Just setting > "AutoAddDevices" "Off" prevents it from using HAL. Rebuilding it with > the port options set to not use HAL removes that dependency. If you > use xfce, HAL can be removed entirely. KDE and Gnome still depend on > it, even when xorg-server does not. I see. Trying that now... What about lxde? Seems to be the lightest, most user friendly; and I have rather illiterate users here. > >>> Check if it is possible to disable one of the graphics chips in the >>> BIOS. >>> That could be a last resort fix. AFAIK Xorg doen not have proper >>> support for >>> using two graphics cards or switching beteen them. >> Not that I'm aware of - HP take away a lot of fine tweaking options >> in bios for some stupid reason, and I went looking last time I was >> playing with the dual card setup and HD. I'll have another peek though. >> >> Who's looking at the support for multiple cards in Xorg then? Is >> there a wiki/blog or such I can follow, help out with? > > It might work. Fewer people use it now, since even low-end graphics > cards have two or three outputs. This is something I've been meaning > to test, and I have one or two machines available for that. I'll > report back. I have plenty - multiple outputs, multiple cards with multiple outputs, multiple cards sharing multiple outputs. Give me a test, and I can run it with the results you want returned. From owner-freebsd-x11@FreeBSD.ORG Sun Jul 27 23:52:27 2014 Return-Path: Delivered-To: freebsd-x11@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 49E415BC for ; Sun, 27 Jul 2014 23:52:27 +0000 (UTC) Received: from mail.unitedinsong.com.au (mail.unitedinsong.com.au [150.101.178.33]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 005242671 for ; Sun, 27 Jul 2014 23:52:26 +0000 (UTC) Received: from laptop3.herveybayaustralia.com.au (laptop3.herveybayaustralia.com.au [192.168.0.185]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by mail.unitedinsong.com.au (Postfix) with ESMTPSA id 1D5C62737B for ; Mon, 28 Jul 2014 09:52:22 +1000 (EST) Message-ID: <53D590B5.1080608@herveybayaustralia.com.au> Date: Mon, 28 Jul 2014 09:52:21 +1000 From: Da Rock User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.3.0 MIME-Version: 1.0 To: freebsd-x11@freebsd.org Subject: Re: Multiple video cards References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 23:52:27 -0000 On 07/28/14 09:17, Warren Block wrote: > Test system: > > FreeBSD 10-STABLE amd64 r269160 > AMD A8-3850 APU (Radeon HD6550D) > Radeon X1650 PCIe card > > Under IGX Configuration, the APU motherboard BIOS has a "Surround > View" setting. When enabled, the onboard HD6550 GPU remains enabled > when an additional video card is connected. > > With the HD6550 disabled, the X1650 works fine. pciconf shows only > one video device. > > With the HD6550 enabled, both video devices show in pciconf, and X > gives the "screens not found" error unless both are defined in > xorg.conf. X starts, but xrandr only shows the HD6550, and only the > monitors attached to the motherboard video connectors work. xrandr > only shows that cards. > > There may be more settings required in xorg.conf. I think that > Xinerama is obsolete, but don't know. From whatever I've read it is. xrandr is used rather than a formal definition and the virtual screen size is updated as required. I use this quite frequently for a presentation screen. Using xrandr you can determine mode, placement, etc. From that specific problem... not sure. I believe only one card can be used at a time unless defined in a certain way in the conf - but I think you already know that. But then that requires ServerLayout options set as well. It may even require using "screens". The linux guys have really obfuscated it all I reckon :) > > Based on some Linux stuff: > % xrandr --listproviders > RandR 1.4 not supported > > Is there a right way to define multiple monitors on more than one card > for the same virtual screen? I'd also be interested to know if there is a way to define multiple monitors on separate screens (screen0, screen1, etc as 0.0, 0.1, etc). > _______________________________________________ > freebsd-x11@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-x11 > To unsubscribe, send any mail to "freebsd-x11-unsubscribe@freebsd.org" From owner-freebsd-x11@FreeBSD.ORG Mon Jul 28 00:09:22 2014 Return-Path: Delivered-To: freebsd-x11@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 39F687D4 for ; Mon, 28 Jul 2014 00:09:22 +0000 (UTC) Received: from wonkity.com (wonkity.com [67.158.26.137]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "wonkity.com", Issuer "wonkity.com" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id D5B59279E for ; Mon, 28 Jul 2014 00:09:21 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.9/8.14.9) with ESMTP id s6S09K2d043819 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Sun, 27 Jul 2014 18:09:20 -0600 (MDT) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.9/8.14.9/Submit) with ESMTP id s6S09KfN043816; Sun, 27 Jul 2014 18:09:20 -0600 (MDT) (envelope-from wblock@wonkity.com) Date: Sun, 27 Jul 2014 18:09:20 -0600 (MDT) From: Warren Block To: Da Rock Subject: Re: Xorg, Radeon and KMS problems In-Reply-To: <53D58C4E.8020402@herveybayaustralia.com.au> Message-ID: References: <53D39B39.9010407@herveybayaustralia.com.au> <20140726141107.GA1382@slackbox.erewhon.home> <53D4D549.2040505@herveybayaustralia.com.au> <20140727120918.GA74913@slackbox.erewhon.home> <53D4F46A.7010206@herveybayaustralia.com.au> <53D58C4E.8020402@herveybayaustralia.com.au> User-Agent: Alpine 2.11 (BSF 23 2013-08-11) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (wonkity.com [127.0.0.1]); Sun, 27 Jul 2014 18:09:20 -0600 (MDT) Cc: freebsd-x11@freebsd.org X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Jul 2014 00:09:22 -0000 On Mon, 28 Jul 2014, Da Rock wrote: > On 07/28/14 05:17, Warren Block wrote: >> On Sun, 27 Jul 2014, Da Rock wrote: >> >>>> Setting "AutoAddDevices" to "off" is probably sufficient. And you only >>>> need to rebuild xorg-server AFAIK. >>> I'll give the conf option a shot. Takes a little while on my system to >>> build, and its building some big stuff atm like thunderbird and >>> libreoffice, so next day is latest I'd get it going. >> >> It is not even necessary to rebuild xorg-server. Just setting >> "AutoAddDevices" "Off" prevents it from using HAL. Rebuilding it with the >> port options set to not use HAL removes that dependency. If you use xfce, >> HAL can be removed entirely. KDE and Gnome still depend on it, even when >> xorg-server does not. > I see. Trying that now... > > What about lxde? Seems to be the lightest, most user friendly; and I have > rather illiterate users here. It reminded me of Windows 98 when I tried it. Depending on your use, that might be a benefit. >>>> Check if it is possible to disable one of the graphics chips in the BIOS. >>>> That could be a last resort fix. AFAIK Xorg doen not have proper support >>>> for >>>> using two graphics cards or switching beteen them. >>> Not that I'm aware of - HP take away a lot of fine tweaking options in >>> bios for some stupid reason, and I went looking last time I was playing >>> with the dual card setup and HD. I'll have another peek though. A lot of notebooks do not really have two discrete graphics cards. The Optimus setup is the standard Intel video along with an extra Nvidia GPU that can be used along with the Intel video for faster graphics at the cost of power usage. >>> Who's looking at the support for multiple cards in Xorg then? Is there a >>> wiki/blog or such I can follow, help out with? >> >> It might work. Fewer people use it now, since even low-end graphics cards >> have two or three outputs. This is something I've been meaning to test, >> and I have one or two machines available for that. I'll report back. > I have plenty - multiple outputs, multiple cards with multiple outputs, > multiple cards sharing multiple outputs. Give me a test, and I can run it > with the results you want returned. The first test I ran today showed the same type of problems Linux users report. xrandr only shows the first video card. From owner-freebsd-x11@FreeBSD.ORG Mon Jul 28 01:58:55 2014 Return-Path: Delivered-To: freebsd-x11@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D8579658 for ; Mon, 28 Jul 2014 01:58:55 +0000 (UTC) Received: from mail-pa0-x233.google.com (mail-pa0-x233.google.com [IPv6:2607:f8b0:400e:c03::233]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id AC73820F0 for ; Mon, 28 Jul 2014 01:58:55 +0000 (UTC) Received: by mail-pa0-f51.google.com with SMTP id ey11so9543639pad.38 for ; Sun, 27 Jul 2014 18:58:55 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=2KIlB64fpn/mrkl/C010TgkfSu0kMmqwubmHyC2P7ng=; b=vtxk6XBMg78e3SA9aBH2+kvjS6wD9CDbkeQJPLLQpjljrSYEfQzgvrPMLnUotjRHoC WIUbAACSERcGmkWZehpOlQFAdK4YrW1Akqdwv6Yy4E6S6cScRKvceiVADCQOSIGQ3fkl Q91HV/vw3FntUgXN2JM1c0RPMPq3julpB4dkI7KC5xCdBMsqpyFfhhbLHh1gP8trxqKy tP+SRJmNoIyjeGKPgxX33+43KgwObAfoSUrVKd6pvyKsdUob4FZSJqM1Ujs5qK6ZPx3T sGfNlyRB9qhd9XdyU++ROCjAsCCzDi2SScQSAM/mX1K7vkBazxiZivyMn3xfqjiSDHsh GTkQ== MIME-Version: 1.0 X-Received: by 10.70.37.198 with SMTP id a6mr9437032pdk.75.1406512735143; Sun, 27 Jul 2014 18:58:55 -0700 (PDT) Sender: kob6558@gmail.com Received: by 10.66.88.227 with HTTP; Sun, 27 Jul 2014 18:58:55 -0700 (PDT) In-Reply-To: <20140727140319.GA2754@slackbox.erewhon.home> References: <53D39B39.9010407@herveybayaustralia.com.au> <20140726141107.GA1382@slackbox.erewhon.home> <53D4D549.2040505@herveybayaustralia.com.au> <20140727120918.GA74913@slackbox.erewhon.home> <53D4F46A.7010206@herveybayaustralia.com.au> <20140727140319.GA2754@slackbox.erewhon.home> Date: Sun, 27 Jul 2014 18:58:55 -0700 X-Google-Sender-Auth: mg3p9zmyfVXRonCHEx7vQxD3RbE Message-ID: Subject: Re: Xorg, Radeon and KMS problems From: Kevin Oberman To: Roland Smith Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.18 Cc: "freebsd-x11@freebsd.org" X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Jul 2014 01:58:56 -0000 On Sun, Jul 27, 2014 at 7:03 AM, Roland Smith wrote: > On Sun, Jul 27, 2014 at 10:45:30PM +1000, Da Rock wrote: > > >> Ok, haven't quite got it all in place yet - haven't had time to > recompile > > >> Xorg yet without hal. > > > Setting "AutoAddDevices" to "off" is probably sufficient. And you only > > > need to rebuild xorg-server AFAIK. > > I'll give the conf option a shot. Takes a little while on my system to > > build, and its building some big stuff atm like thunderbird and > > libreoffice, so next day is latest I'd get it going. > > BTW, if you're updating ports, you might want to give the update to > pkg-1.3.1 > a miss for now if you're running on amd64. It segfaults on that platform. > > Not exactly a lot of samples, but my amd64 is working fine w/ pkg-1.3.1. I installed it and then updated several ports as well as running several other pkg commands without error. -- R. Kevin Oberman, Network Engineer, Retired E-mail: rkoberman@gmail.com From owner-freebsd-x11@FreeBSD.ORG Mon Jul 28 04:37:04 2014 Return-Path: Delivered-To: freebsd-x11@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 363BFCC3 for ; Mon, 28 Jul 2014 04:37:04 +0000 (UTC) Received: from mail.unitedinsong.com.au (mail.unitedinsong.com.au [150.101.178.33]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 712241A03 for ; Mon, 28 Jul 2014 04:37:02 +0000 (UTC) Received: from laptop3.herveybayaustralia.com.au (laptop3.herveybayaustralia.com.au [192.168.0.185]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by mail.unitedinsong.com.au (Postfix) with ESMTPSA id 80EF327372 for ; Mon, 28 Jul 2014 14:36:58 +1000 (EST) Message-ID: <53D5D368.2070307@herveybayaustralia.com.au> Date: Mon, 28 Jul 2014 14:36:56 +1000 From: Da Rock User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.3.0 MIME-Version: 1.0 To: freebsd-x11@freebsd.org Subject: Re: Xorg, Radeon and KMS problems References: <53D39B39.9010407@herveybayaustralia.com.au> <20140726141107.GA1382@slackbox.erewhon.home> <53D4D549.2040505@herveybayaustralia.com.au> <20140727120918.GA74913@slackbox.erewhon.home> <53D4F46A.7010206@herveybayaustralia.com.au> <20140727140319.GA2754@slackbox.erewhon.home> <53D58B2F.9000503@herveybayaustralia.com.au> In-Reply-To: <53D58B2F.9000503@herveybayaustralia.com.au> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Jul 2014 04:37:04 -0000 On 07/28/14 09:28, Da Rock wrote: > On 07/28/14 00:03, Roland Smith wrote: >> On Sun, Jul 27, 2014 at 10:45:30PM +1000, Da Rock wrote: >>>>> Ok, haven't quite got it all in place yet - haven't had time to >>>>> recompile >>>>> Xorg yet without hal. >>>> Setting "AutoAddDevices" to "off" is probably sufficient. And you only >>>> need to rebuild xorg-server AFAIK. >>> I'll give the conf option a shot. Takes a little while on my system to >>> build, and its building some big stuff atm like thunderbird and >>> libreoffice, so next day is latest I'd get it going. >> BTW, if you're updating ports, you might want to give the update to >> pkg-1.3.1 >> a miss for now if you're running on amd64. It segfaults on that >> platform. > Good to know. I'm just trying to get it started, don't need more > problems right now... >> >>>> Check if it is possible to disable one of the graphics chips in the >>>> BIOS. >>>> That could be a last resort fix. AFAIK Xorg doen not have proper >>>> support for >>>> using two graphics cards or switching beteen them. >>> Not that I'm aware of - HP take away a lot of fine tweaking options in >>> bios for some stupid reason, and I went looking last time I was playing >>> with the dual card setup and HD. I'll have another peek though. >> You should be able to disable one of the cards using device.hints(5). >> >> From your pciconf output; >> >> vgapci0@pci0:1:5:0: class=0x030000 card=0x1445103c >> chip=0x97121002 rev=0x00 >> hdr=0x00 >> vendor = 'Advanced Micro Devices [AMD] nee ATI' >> device = 'RS880M [Mobility Radeon HD 4200 Series]' >> class = display >> subclass = VGA >> ... >> >> vgapci1@pci0:2:0:0: class=0x030000 card=0x1445103c >> chip=0x68e41002 rev=0x00 >> hdr=0x00 >> vendor = 'Advanced Micro Devices [AMD] nee ATI' >> device = 'Robson CE [AMD Radeon HD 6300 Series]' >> class = display >> subclass = VGA >> ... >> >> So you have two “vgapci” devices. E.g. to disable the HD 6300, put >> >> hint.vgapci.1.disabled="1" >> >> in /boot/device.hints and reboot. That should get rid of it. > I'll try that if I need to. See how it goes first - looking ok so far > with the autoadddevices off. Question on that though: does that mean > if I plug in a mouse it won't be useable? Or does moused take care of > that? >> >> Additionally (but unrelated), on a laptop you might want to set >> >> hw.pci.do_power_nodriver=3 >> >> in /boot/loader.conf to power-down all hardware that's not attached to a >> driver. That might make your battery last longer. > Maybe I should have a look at starting there - documenting all these > sysctls. That looks like a good one to know about on any system to > save power. >> >>> Who's looking at the support for multiple cards in Xorg then? Is >>> there a >>> wiki/blog or such I can follow, help out with? >> Not sure if anybody is. This is something only found on some laptops >> as a >> power-saving thing. >> >> And since most Xorg development is done on Linux, a solution might >> very well >> be Linux specific. > I'll have a poke around then, and see what I can find. Maybe if the > solution is not so linux specific it might be more use to the rest of > us :) >> >> >> >>>> But I guess you'll have to remove one of the cards from your >>>> xorg.conf. >>>> to force Xorg to use the other one. >>> This could be clearer. I think I tried playing with this to get it >>> to do >>> what I want, but I got muddled following this. Perhaps you might >>> understand better - is this what it means?: >>> >>> Section "Device" >>> Identifier "Card1" >>> Driver "radeon" >>> BoardName "Radeon HD 6300" >>> BusID "PCI:2:0:0" >>> Option "LVDS" "built-in" >> Use this instead: >> Option "Monitor-LVDS" "Monitor0" >> >> But if you disable one of the chips, it might not be necessary. > Dunno how I missed that vital clue in the man. I'll see how that goes > then :) I haven't done a rebuild on Xorg yet, but general consensus is that its not necessary but just use autoadddevices option turned off. Results seem quite successful: Its started off looking quite well, and no dual screen effect on one screen (I'm fairly certain that was what was causing the issues). I've been running it now for the morning without degradation too, unlike previous symptoms. So I'd call that a success and as such solved. It would be good to get some better, clearer docs on all this so that the slightly thicker of us (namely myself) don't get lost in all the man pages trying things and nearly never getting it right :) So I might have a look at getting some clarity and writing it down somewhere, poking a question or two at this list if I may... Thanks all. > > Cheers >> >> >> Good luck! >> >> Roland > > _______________________________________________ > freebsd-x11@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-x11 > To unsubscribe, send any mail to "freebsd-x11-unsubscribe@freebsd.org" From owner-freebsd-x11@FreeBSD.ORG Mon Jul 28 06:37:53 2014 Return-Path: Delivered-To: freebsd-x11@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D6B38127 for ; Mon, 28 Jul 2014 06:37:53 +0000 (UTC) Received: from smtp-vbr12.xs4all.nl (smtp-vbr12.xs4all.nl [194.109.24.32]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 56B9F24BC for ; Mon, 28 Jul 2014 06:37:52 +0000 (UTC) Received: from slackbox.erewhon.home (slackbox.xs4all.nl [83.162.243.5]) by smtp-vbr12.xs4all.nl (8.13.8/8.13.8) with ESMTP id s6S6blWl019646; Mon, 28 Jul 2014 08:37:47 +0200 (CEST) (envelope-from rsmith@xs4all.nl) Received: by slackbox.erewhon.home (Postfix, from userid 1001) id A8C1B123D2; Mon, 28 Jul 2014 08:37:47 +0200 (CEST) Date: Mon, 28 Jul 2014 08:37:47 +0200 From: Roland Smith To: Kevin Oberman Subject: Re: pkg 1.3.1 Message-ID: <20140728063747.GA43339@slackbox.erewhon.home> References: <53D39B39.9010407@herveybayaustralia.com.au> <20140726141107.GA1382@slackbox.erewhon.home> <53D4D549.2040505@herveybayaustralia.com.au> <20140727120918.GA74913@slackbox.erewhon.home> <53D4F46A.7010206@herveybayaustralia.com.au> <20140727140319.GA2754@slackbox.erewhon.home> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="/04w6evG8XlLl3ft" Content-Disposition: inline In-Reply-To: X-GPG-Fingerprint: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 X-GPG-Key: http://www.xs4all.nl/~rsmith/pubkey.txt X-GPG-Notice: If this message is not signed, don't assume I sent it! User-Agent: Mutt/1.5.23 (2014-03-12) X-Virus-Scanned: by XS4ALL Virus Scanner Cc: "freebsd-x11@freebsd.org" X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Jul 2014 06:37:53 -0000 --/04w6evG8XlLl3ft Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Jul 27, 2014 at 06:58:55PM -0700, Kevin Oberman wrote: > BTW, if you're updating ports, you might want to give the update to pk= g-1.3.1 > a miss for now if you're running on amd64. It segfaults on that platfo= rm. > Not exactly a lot of samples, but my amd64 is working fine w/ pkg-1.3.1.= I > installed it and then updated several ports as well as running several > other pkg commands without error. As it turns out, the crash happened because of a duplicated line in pkg.conf. It was patched in r363076[1] of the ports tree and fixed in=20 pkg-1.3.2 (r363108)[2]. 1: http://svnweb.freebsd.org/ports?view=3Drevision&revision=3D363076 2: http://svnweb.freebsd.org/ports?view=3Drevision&revision=3D363108 Roland --=20 R.F.Smith http://rsmith.home.xs4all.nl/ [plain text _non-HTML_ PGP/GnuPG encrypted/signed email much appreciated] pgp: 5753 3324 1661 B0FE 8D93 FCED 40F6 D5DC A38A 33E0 (keyID: A38A33E0) --/04w6evG8XlLl3ft Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQIcBAEBAgAGBQJT1e+7AAoJEED21dyjijPgmTAQAIw0aYhKtgkt3h9Ie24i3BZB zFFyAhVYC8/do87duas1/U4VXjgLXyA72LdpMZ/ZrWSC3Vvxg8msi3ICFhwhEATU iVrg0ciyuM6/8nji79GzHSnHNV1ZD7nBC1UzlwWQkPiecQcyV8VdLik/MGR++a1/ ruYnwcxO6i4ct3I+t+ExZ9aBE2ZHOj4rViF0BAmKpbBYZo2r/s3W/MA4/UIdw2e4 Tfufzrt0QU/FavNta+9WxAavqDMQ0PcQXFpB6voll397VUk+Wck3eXqLzOY1GxZ/ /TWUsHduWiQNQdCa1koXJr3ojPf/5DUGwYaAKExiyAqo6JOiywP+g+ZPg9E83bZ2 C19z7M4jTOtm8a28YoJy7EJo+V/ZN7Q31WNz2hUsB5D+sH1ttuTkS2XDE/2hVFHN G/QmPW+z2iIoNkuz2OlPreTLTQiSZ39YML8Jb39ou9tNM1SBl2IlkfldRpPrj3vd tvzXcqG16tavvSYISmeNNNBGaO0e27bDAdjyvV6Uqi2tiCn69Tp0wO25QXyB3uiq Mk0vzxvBcz+XmmPYsYDyeuQ1oKBH5rz5RwcJwkbcRpwppGohcYtB6DOb41Kw0qsH iBrOWAH7+h+WCy4fV2XX13/U3dF0sXWSIoHsDpD5ze5IROteXkv5DSnWzv8/9ibf vofXV5WpttBClAjBQ1Pz =3T7c -----END PGP SIGNATURE----- --/04w6evG8XlLl3ft-- From owner-freebsd-x11@FreeBSD.ORG Mon Jul 28 20:10:08 2014 Return-Path: Delivered-To: freebsd-x11@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1CD98CD3; Mon, 28 Jul 2014 20:10:08 +0000 (UTC) Received: from tensor.andric.com (unknown [IPv6:2001:7b8:3a7:1:2d0:b7ff:fea0:8c26]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client CN "tensor.andric.com", Issuer "CAcert Class 3 Root" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id B1B6E2B58; Mon, 28 Jul 2014 20:10:07 +0000 (UTC) Received: from [IPv6:2001:7b8:3a7::3085:928:54a:e9f5] (unknown [IPv6:2001:7b8:3a7:0:3085:928:54a:e9f5]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by tensor.andric.com (Postfix) with ESMTPSA id 7DE685C44; Mon, 28 Jul 2014 22:10:01 +0200 (CEST) Content-Type: multipart/signed; boundary="Apple-Mail=_55EB2DEB-8D8A-4F5C-A793-D968CD475C2A"; protocol="application/pgp-signature"; micalg=pgp-sha1 Mime-Version: 1.0 (Mac OS X Mail 7.3 \(1878.6\)) Subject: Re: ATI radeon 3450 with new xorg From: Dimitry Andric In-Reply-To: <53CF65B0.7010504@dumbbell.fr> Date: Mon, 28 Jul 2014 22:09:39 +0200 Message-Id: References: <20140722222518.a5f098a3e5aa4f85407cb3b4@fbsd.es> <53CF65B0.7010504@dumbbell.fr> To: =?iso-8859-1?Q?Jean-S=E9bastien_P=E9dron?= X-Mailer: Apple Mail (2.1878.6) Cc: freebsd-x11@freebsd.org, Benjamin Kramer , Roman Divacky , =?iso-8859-1?Q?Rafael_Esp=EDndola?= X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Jul 2014 20:10:08 -0000 --Apple-Mail=_55EB2DEB-8D8A-4F5C-A793-D968CD475C2A Content-Type: multipart/mixed; boundary="Apple-Mail=_35009F46-8DF6-4532-8228-ACB58B4D428B" --Apple-Mail=_35009F46-8DF6-4532-8228-ACB58B4D428B Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=iso-8859-1 On 23 Jul 2014, at 09:35, Jean-S=E9bastien P=E9dron = wrote: > On 22.07.2014 22:25, Carlos Jacobo Puga Medina wrote: >> Currently I'm testing an ATI Radeon HD 3450 with the new Xorg=20 >> drivers on 11-CURRENT. It works partially due some ports aren't able >> to compile with CLANG and prefer GCC47. These ports are dri, libGL >> and libglapi. >>=20 >> % uname -a >> (...) 11.0-CURRENT FreeBSD 11.0-CURRENT #0 r268969 (...) i386 >>=20 >> % make -C /usr/ports/graphics/dri -V CC >> gcc47 >=20 > I now see that Mesa (libGL, dri, ...) is built with GCC on i386; never > noticed that before. See graphics/libGL/bsd.mesalib.mk: >=20 > # i386 triggers clang bug 19778. This happens with clang 3.4.1 and = older. > . if ${ARCH} =3D=3D i386 > USE_GCC=3Dyes > . endif >=20 > The bug is described here: > http://llvm.org/bugs/show_bug.cgi?id=3D19778 >=20 > I add Dimitry into the loop: Dimitry, do you have any news for this > Clang bug? I haven't seen any updates from upstream on this bug. I will try again to get some attention, but in the mean time, I propose the workaround patch which I have attached. This simply avoids the duplicate symbol definitions, and makes the libglapi port work with clang. The resulting assembly output looks the same in the places that count, but I do not have the proper hardware to test if the libglapi support really works as expected. Can somebody with actual GL hardware please verify that it doesn't blow up? > Buildling Mesa with GCC causes the usual libc++ vs. libstdc++ > incompatibilty: >=20 > libGL error: dlopen /usr/local/lib/dri/r600_dri.so failed > (/usr/local/lib/dri/r600_dri.so: Undefined symbol > = "_ZN4llvm13EngineBuilder12selectTargetERKNS_6TripleENS_9StringRefES4_RKNS_= 15SmallVectorImplISsEE") For this situation, Baptiste has created the devel/libc++ port, which can be compiled with gcc 4.8 or higher, and which should be compatible with the base libc++. See the graphics/rawtherapee port for an example. -Dimitry --Apple-Mail=_35009F46-8DF6-4532-8228-ACB58B4D428B Content-Disposition: attachment; filename=graphics__libGL-workaround-duplicate-asm-defs-1.diff Content-Type: application/octet-stream; name="graphics__libGL-workaround-duplicate-asm-defs-1.diff" Content-Transfer-Encoding: 7bit Index: graphics/libGL/bsd.mesalib.mk =================================================================== --- graphics/libGL/bsd.mesalib.mk (revision 362984) +++ graphics/libGL/bsd.mesalib.mk (working copy) @@ -57,10 +57,6 @@ src/glsl/tests/compare_ir src/mapi/glapi/gen/*.py \ src/mapi/mapi/mapi_abi.py -# i386 triggers clang bug 19778. This happens with clang 3.4.1 and older. -. if ${ARCH} == i386 -USE_GCC=yes -. endif .else CONFIGURE_ARGS+=--disable-glut --disable-glw --disable-glu Index: graphics/libGL/files/patch-src_mapi_mapi_entry_x86-64_tls.h =================================================================== --- graphics/libGL/files/patch-src_mapi_mapi_entry_x86-64_tls.h (revision 0) +++ graphics/libGL/files/patch-src_mapi_mapi_entry_x86-64_tls.h (working copy) @@ -0,0 +1,11 @@ +--- src/mapi/mapi/entry_x86-64_tls.h.orig 2013-10-05 05:59:22.000000000 +0200 ++++ src/mapi/mapi/entry_x86-64_tls.h 2014-07-28 21:47:24.000000000 +0200 +@@ -63,7 +63,7 @@ entry_patch_public(void) + { + } + +-static char ++extern char + x86_64_entry_start[]; + + mapi_func Index: graphics/libGL/files/patch-src_mapi_mapi_entry_x86_tls.h =================================================================== --- graphics/libGL/files/patch-src_mapi_mapi_entry_x86_tls.h (revision 0) +++ graphics/libGL/files/patch-src_mapi_mapi_entry_x86_tls.h (working copy) @@ -0,0 +1,13 @@ +--- src/mapi/mapi/entry_x86_tls.h.orig 2013-10-05 05:59:22.000000000 +0200 ++++ src/mapi/mapi/entry_x86_tls.h 2014-07-28 21:47:39.000000000 +0200 +@@ -73,8 +73,8 @@ __asm__(".text"); + extern unsigned long + x86_current_tls(); + +-static char x86_entry_start[]; +-static char x86_entry_end[]; ++extern char x86_entry_start[]; ++extern char x86_entry_end[]; + + void + entry_patch_public(void) Index: graphics/libGL/files/patch-src_mapi_mapi_entry_x86_tsd.h =================================================================== --- graphics/libGL/files/patch-src_mapi_mapi_entry_x86_tsd.h (revision 0) +++ graphics/libGL/files/patch-src_mapi_mapi_entry_x86_tsd.h (working copy) @@ -0,0 +1,13 @@ +--- src/mapi/mapi/entry_x86_tsd.h.orig 2013-10-05 05:59:22.000000000 +0200 ++++ src/mapi/mapi/entry_x86_tsd.h 2014-07-28 21:47:55.000000000 +0200 +@@ -60,8 +60,8 @@ __asm__(".balign 32\n" + #include + #include "u_execmem.h" + +-static const char x86_entry_start[]; +-static const char x86_entry_end[]; ++extern const char x86_entry_start[]; ++extern const char x86_entry_end[]; + + void + entry_patch_public(void) --Apple-Mail=_35009F46-8DF6-4532-8228-ACB58B4D428B Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=iso-8859-1 --Apple-Mail=_35009F46-8DF6-4532-8228-ACB58B4D428B-- --Apple-Mail=_55EB2DEB-8D8A-4F5C-A793-D968CD475C2A Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=signature.asc Content-Type: application/pgp-signature; name=signature.asc Content-Description: Message signed with OpenPGP using GPGMail -----BEGIN PGP SIGNATURE----- Version: GnuPG/MacGPG2 v2.0.22 (Darwin) iEYEARECAAYFAlPWrhYACgkQsF6jCi4glqOeyACeNZ0MxYrOK157W9VyYVjVkfi4 Hb0AnRAf/2Clf/vd/uDM2BRP8ZQT+VWy =F1Rj -----END PGP SIGNATURE----- --Apple-Mail=_55EB2DEB-8D8A-4F5C-A793-D968CD475C2A-- From owner-freebsd-x11@FreeBSD.ORG Tue Jul 29 16:14:37 2014 Return-Path: Delivered-To: freebsd-x11@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 86E88DF for ; Tue, 29 Jul 2014 16:14:37 +0000 (UTC) Received: from vulpes.vvelox.net (vulpes.vvelox.net [99.69.115.42]) by mx1.freebsd.org (Postfix) with ESMTP id 52C0C22D0 for ; Tue, 29 Jul 2014 16:14:37 +0000 (UTC) Received: from vixen42.vulpes.vvelox.net (vixen42.vulpes.vvelox.net [192.168.15.2]) (Authenticated sender: kitsune) by vulpes.vvelox.net (Postfix) with ESMTPA id D67F5493F503; Tue, 29 Jul 2014 11:08:52 -0500 (CDT) Date: Tue, 29 Jul 2014 11:08:58 -0500 From: "Zane C. B-H." To: Warren Block Subject: Re: Multiple video cards Message-ID: <20140729110858.04a2bb6b@vixen42.vulpes.vvelox.net> In-Reply-To: References: X-Mailer: Claws Mail 3.10.1 (GTK+ 2.24.22; amd64-portbld-freebsd10.0) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-x11@FreeBSD.org X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Jul 2014 16:14:37 -0000 On Sun, 27 Jul 2014 17:17:43 -0600 (MDT) Warren Block wrote: > Test system: > > FreeBSD 10-STABLE amd64 r269160 > AMD A8-3850 APU (Radeon HD6550D) > Radeon X1650 PCIe card > > Under IGX Configuration, the APU motherboard BIOS has a "Surround > View" setting. When enabled, the onboard HD6550 GPU remains > enabled when an additional video card is connected. > > With the HD6550 disabled, the X1650 works fine. pciconf shows only > one video device. > > With the HD6550 enabled, both video devices show in pciconf, and X > gives the "screens not found" error unless both are defined in > xorg.conf. X starts, but xrandr only shows the HD6550, and only > the monitors attached to the motherboard video connectors work. > xrandr only shows that cards. > > There may be more settings required in xorg.conf. I think that > Xinerama is obsolete, but don't know. > > Based on some Linux stuff: > % xrandr --listproviders > RandR 1.4 not supported > > Is there a right way to define multiple monitors on more than one > card for the same virtual screen? You are most likely looking at using Xinerama there, unless the Radeon driver has something specific for it like Nvidia driver does. The man page should give you a better idea of what exactly you need to do. As to configuring it, enable them both and do "X -configure" to build it. That should autodect all cards and shove them into a config. You will likely need to learn to do some tweaking as it rarely properly detects the proper driver to use, meaning it will default to "vesa". You will also need to setup all the screen you want to use in it. From owner-freebsd-x11@FreeBSD.ORG Tue Jul 29 17:09:32 2014 Return-Path: Delivered-To: freebsd-x11@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 195AF7C1 for ; Tue, 29 Jul 2014 17:09:32 +0000 (UTC) Received: from wonkity.com (wonkity.com [67.158.26.137]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "wonkity.com", Issuer "wonkity.com" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id B3EF4293A for ; Tue, 29 Jul 2014 17:09:31 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.9/8.14.9) with ESMTP id s6TH9TNn026477 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Tue, 29 Jul 2014 11:09:29 -0600 (MDT) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.9/8.14.9/Submit) with ESMTP id s6TH9TS7026474; Tue, 29 Jul 2014 11:09:29 -0600 (MDT) (envelope-from wblock@wonkity.com) Date: Tue, 29 Jul 2014 11:09:29 -0600 (MDT) From: Warren Block To: "Zane C. B-H." Subject: Re: Multiple video cards In-Reply-To: <20140729110858.04a2bb6b@vixen42.vulpes.vvelox.net> Message-ID: References: <20140729110858.04a2bb6b@vixen42.vulpes.vvelox.net> User-Agent: Alpine 2.11 (BSF 23 2013-08-11) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (wonkity.com [127.0.0.1]); Tue, 29 Jul 2014 11:09:29 -0600 (MDT) Cc: freebsd-x11@FreeBSD.org X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Jul 2014 17:09:32 -0000 On Tue, 29 Jul 2014, Zane C. B-H. wrote: > On Sun, 27 Jul 2014 17:17:43 -0600 (MDT) > Warren Block wrote: > >> Test system: >> >> FreeBSD 10-STABLE amd64 r269160 >> AMD A8-3850 APU (Radeon HD6550D) >> Radeon X1650 PCIe card >> >> Under IGX Configuration, the APU motherboard BIOS has a "Surround >> View" setting. When enabled, the onboard HD6550 GPU remains >> enabled when an additional video card is connected. >> >> With the HD6550 disabled, the X1650 works fine. pciconf shows only >> one video device. >> >> With the HD6550 enabled, both video devices show in pciconf, and X >> gives the "screens not found" error unless both are defined in >> xorg.conf. X starts, but xrandr only shows the HD6550, and only >> the monitors attached to the motherboard video connectors work. >> xrandr only shows that cards. >> >> There may be more settings required in xorg.conf. I think that >> Xinerama is obsolete, but don't know. >> >> Based on some Linux stuff: >> % xrandr --listproviders >> RandR 1.4 not supported >> >> Is there a right way to define multiple monitors on more than one >> card for the same virtual screen? > > You are most likely looking at using Xinerama there, unless the > Radeon driver has something specific for it like Nvidia driver does. > The man page should give you a better idea of what exactly you need > to do. Well, yes, except Xinerama is, I think, obsolete. It's was what we used back in the old days of single-output video boards. There should be a new xrandr way to do this. Whether that code is part of the version of xorg currently available in FreeBSD, I don't know. > As to configuring it, enable them both and do "X -configure" to build > it. That should autodect all cards and shove them into a config. Well, there is some conflict. After deleting xorg.conf.new and re-running Xorg -configure: (++) Using config file: "/root/xorg.conf.new" (II) [KMS] No DRICreatePCIBusID symbol, no kernel modesetting. (II) [KMS] No DRICreatePCIBusID symbol, no kernel modesetting. Segmentation fault at address 0x0 Fatal server error: Caught signal 11 (Segmentation fault). Server aborting So it manages to create xorg.conf.new, but then croaks. Given the repeat of that error, I'm guessing it fails once for each card. An attempt to use that xorg.conf.new gives the same results: only the monitor attached to the HD6550 comes on. > You will likely need to learn to do some tweaking as it rarely > properly detects the proper driver to use, meaning it will default to > "vesa". The vesa driver is used in the generated xorg.conf.new, but I think the conflict is between two instances of the radeon driver. I might try it with a single Radeon in a system with Intel video. From owner-freebsd-x11@FreeBSD.ORG Tue Jul 29 19:13:02 2014 Return-Path: Delivered-To: freebsd-x11@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B56C038C; Tue, 29 Jul 2014 19:13:02 +0000 (UTC) Received: from tensor.andric.com (unknown [IPv6:2001:7b8:3a7:1:2d0:b7ff:fea0:8c26]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client CN "tensor.andric.com", Issuer "CAcert Class 3 Root" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 3DC0227A1; Tue, 29 Jul 2014 19:13:02 +0000 (UTC) Received: from [IPv6:2001:7b8:3a7::c899:3aeb:9493:5ede] (unknown [IPv6:2001:7b8:3a7:0:c899:3aeb:9493:5ede]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by tensor.andric.com (Postfix) with ESMTPSA id 8B4D15C44; Tue, 29 Jul 2014 21:12:48 +0200 (CEST) Content-Type: multipart/signed; boundary="Apple-Mail=_5C3507DD-08E0-48C9-B402-19FDA7AA2912"; protocol="application/pgp-signature"; micalg=pgp-sha1 Mime-Version: 1.0 (Mac OS X Mail 7.3 \(1878.6\)) Subject: Re: ATI radeon 3450 with new xorg From: Dimitry Andric In-Reply-To: Date: Tue, 29 Jul 2014 21:12:29 +0200 Message-Id: References: <20140722222518.a5f098a3e5aa4f85407cb3b4@fbsd.es> <53CF65B0.7010504@dumbbell.fr> To: =?iso-8859-1?Q?Jean-S=E9bastien_P=E9dron?= X-Mailer: Apple Mail (2.1878.6) Cc: freebsd-x11@freebsd.org, Benjamin Kramer , Roman Divacky , =?iso-8859-1?Q?Rafael_Esp=EDndola?= X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Jul 2014 19:13:02 -0000 --Apple-Mail=_5C3507DD-08E0-48C9-B402-19FDA7AA2912 Content-Type: multipart/mixed; boundary="Apple-Mail=_915F7405-6DF3-4CAD-AA1D-8DC68F08990B" --Apple-Mail=_915F7405-6DF3-4CAD-AA1D-8DC68F08990B Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=iso-8859-1 On 28 Jul 2014, at 22:09, Dimitry Andric wrote: > On 23 Jul 2014, at 09:35, Jean-S=E9bastien P=E9dron = wrote: ... >> The bug is described here: >> http://llvm.org/bugs/show_bug.cgi?id=3D19778 >>=20 >> I add Dimitry into the loop: Dimitry, do you have any news for this >> Clang bug? >=20 > I haven't seen any updates from upstream on this bug. I will try = again > to get some attention, but in the mean time, I propose the workaround > patch which I have attached. This simply avoids the duplicate symbol > definitions, and makes the libglapi port work with clang. >=20 > The resulting assembly output looks the same in the places that count, > but I do not have the proper hardware to test if the libglapi support > really works as expected. Can somebody with actual GL hardware please > verify that it doesn't blow up? Here is an updated diff, which produces the same @GOTOFF accesses as were generated by gcc originally, by marking the symbols as hidden. This should work for both clang and gcc (base or ports). -Dimitry --Apple-Mail=_915F7405-6DF3-4CAD-AA1D-8DC68F08990B Content-Disposition: attachment; filename=graphics__libGL-workaround-duplicate-asm-defs-2.diff Content-Type: application/octet-stream; name="graphics__libGL-workaround-duplicate-asm-defs-2.diff" Content-Transfer-Encoding: 7bit Index: graphics/libGL/bsd.mesalib.mk =================================================================== --- graphics/libGL/bsd.mesalib.mk (revision 362984) +++ graphics/libGL/bsd.mesalib.mk (working copy) @@ -57,10 +57,6 @@ src/glsl/tests/compare_ir src/mapi/glapi/gen/*.py \ src/mapi/mapi/mapi_abi.py -# i386 triggers clang bug 19778. This happens with clang 3.4.1 and older. -. if ${ARCH} == i386 -USE_GCC=yes -. endif .else CONFIGURE_ARGS+=--disable-glut --disable-glw --disable-glu Index: graphics/libGL/files/patch-src_mapi_mapi_entry_x86-64_tls.h =================================================================== --- graphics/libGL/files/patch-src_mapi_mapi_entry_x86-64_tls.h (revision 0) +++ graphics/libGL/files/patch-src_mapi_mapi_entry_x86-64_tls.h (working copy) @@ -0,0 +1,13 @@ +--- src/mapi/mapi/entry_x86-64_tls.h.orig 2013-10-05 05:59:22.000000000 +0200 ++++ src/mapi/mapi/entry_x86-64_tls.h 2014-07-29 20:28:05.000000000 +0200 +@@ -63,8 +63,8 @@ entry_patch_public(void) + { + } + +-static char +-x86_64_entry_start[]; ++extern char ++x86_64_entry_start[] __attribute__((visibility("hidden"))); + + mapi_func + entry_get_public(int slot) Index: graphics/libGL/files/patch-src_mapi_mapi_entry_x86_tls.h =================================================================== --- graphics/libGL/files/patch-src_mapi_mapi_entry_x86_tls.h (revision 0) +++ graphics/libGL/files/patch-src_mapi_mapi_entry_x86_tls.h (working copy) @@ -0,0 +1,13 @@ +--- src/mapi/mapi/entry_x86_tls.h.orig 2013-10-05 05:59:22.000000000 +0200 ++++ src/mapi/mapi/entry_x86_tls.h 2014-07-29 20:28:05.000000000 +0200 +@@ -73,8 +73,8 @@ __asm__(".text"); + extern unsigned long + x86_current_tls(); + +-static char x86_entry_start[]; +-static char x86_entry_end[]; ++extern char x86_entry_start[] __attribute__((visibility("hidden"))); ++extern char x86_entry_end[] __attribute__((visibility("hidden"))); + + void + entry_patch_public(void) Index: graphics/libGL/files/patch-src_mapi_mapi_entry_x86_tsd.h =================================================================== --- graphics/libGL/files/patch-src_mapi_mapi_entry_x86_tsd.h (revision 0) +++ graphics/libGL/files/patch-src_mapi_mapi_entry_x86_tsd.h (working copy) @@ -0,0 +1,13 @@ +--- src/mapi/mapi/entry_x86_tsd.h.orig 2013-10-05 05:59:22.000000000 +0200 ++++ src/mapi/mapi/entry_x86_tsd.h 2014-07-29 20:28:05.000000000 +0200 +@@ -60,8 +60,8 @@ __asm__(".balign 32\n" + #include + #include "u_execmem.h" + +-static const char x86_entry_start[]; +-static const char x86_entry_end[]; ++extern const char x86_entry_start[] __attribute__((visibility("hidden"))); ++extern const char x86_entry_end[] __attribute__((visibility("hidden"))); + + void + entry_patch_public(void) --Apple-Mail=_915F7405-6DF3-4CAD-AA1D-8DC68F08990B Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=iso-8859-1 --Apple-Mail=_915F7405-6DF3-4CAD-AA1D-8DC68F08990B-- --Apple-Mail=_5C3507DD-08E0-48C9-B402-19FDA7AA2912 Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=signature.asc Content-Type: application/pgp-signature; name=signature.asc Content-Description: Message signed with OpenPGP using GPGMail -----BEGIN PGP SIGNATURE----- Version: GnuPG/MacGPG2 v2.0.22 (Darwin) iEYEARECAAYFAlPX8isACgkQsF6jCi4glqMbBgCg7VOUBaddSaJggPXGGhcl4BKN B1AAnRtqdN/j/ags6RRGm3DTyX11MCkt =Oc+t -----END PGP SIGNATURE----- --Apple-Mail=_5C3507DD-08E0-48C9-B402-19FDA7AA2912-- From owner-freebsd-x11@FreeBSD.ORG Wed Jul 30 09:52:03 2014 Return-Path: Delivered-To: x11@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 73855DD6 for ; Wed, 30 Jul 2014 09:52:03 +0000 (UTC) Received: from portscout.freebsd.org (portscout.freebsd.org [IPv6:2001:1900:2254:206a::50:6]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6071525DB for ; Wed, 30 Jul 2014 09:52:03 +0000 (UTC) Received: from portscout.freebsd.org ([127.0.1.123]) by portscout.freebsd.org (8.14.9/8.14.9) with ESMTP id s6U9q3g6036438 for ; Wed, 30 Jul 2014 09:52:03 GMT (envelope-from portscout@FreeBSD.org) Received: (from portscout@localhost) by portscout.freebsd.org (8.14.9/8.14.9/Submit) id s6U9q3NO036434; Wed, 30 Jul 2014 09:52:03 GMT (envelope-from portscout@FreeBSD.org) Message-Id: <201407300952.s6U9q3NO036434@portscout.freebsd.org> X-Authentication-Warning: portscout.freebsd.org: portscout set sender to portscout@FreeBSD.org using -f Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain MIME-Version: 1.0 Date: Wed, 30 Jul 2014 09:52:03 +0000 From: portscout@FreeBSD.org To: x11@freebsd.org Subject: FreeBSD ports you maintain which are out of date X-Mailer: portscout/0.8.1 X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Jul 2014 09:52:03 -0000 Dear port maintainer, The portscout new distfile checker has detected that one or more of your ports appears to be out of date. Please take the opportunity to check each of the ports listed below, and if possible and appropriate, submit/commit an update. If any ports have already been updated, you can safely ignore the entry. You will not be e-mailed again for any of the port/version combinations below. Full details can be found at the following URL: http://portscout.freebsd.org/x11@freebsd.org.html Port | Current version | New version ------------------------------------------------+-----------------+------------ graphics/libdrm | 2.4.52 | 2.4.56 ------------------------------------------------+-----------------+------------ If any of the above results are invalid, please check the following page for details on how to improve portscout's detection and selection of distfiles on a per-port basis: http://portscout.freebsd.org/info/portscout-portconfig.txt Thanks. From owner-freebsd-x11@FreeBSD.ORG Wed Jul 30 12:02:51 2014 Return-Path: Delivered-To: freebsd-x11@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 96145F0A; Wed, 30 Jul 2014 12:02:51 +0000 (UTC) Received: from erelay3.ox.registrar-servers.com (erelay3.ox.registrar-servers.com [192.64.117.2]) by mx1.freebsd.org (Postfix) with ESMTP id 726CD247A; Wed, 30 Jul 2014 12:02:50 +0000 (UTC) Received: from localhost (unknown [127.0.0.1]) by erelay1.ox.registrar-servers.com (Postfix) with ESMTP id 4ADA62204FAE; Wed, 30 Jul 2014 12:02:49 +0000 (UTC) Received: from erelay1.ox.registrar-servers.com ([127.0.0.1]) by localhost (erelay.ox.registrar-servers.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id Ok4qg2RgnVHq; Wed, 30 Jul 2014 08:02:48 -0400 (EDT) Received: from imap11.ox.privateemail.com (imap11.ox.privateemail.com [192.64.116.222]) by erelay1.ox.registrar-servers.com (Postfix) with ESMTP id 5B05F220658A; Wed, 30 Jul 2014 08:02:16 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by mail.privateemail.com (Postfix) with ESMTP id E93BF8800E2; Wed, 30 Jul 2014 08:02:15 -0400 (EDT) X-Virus-Scanned: Debian amavisd-new at imap11.ox.privateemail.com Received: from mail.privateemail.com ([127.0.0.1]) by localhost (imap11.ox.privateemail.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id tjQI3AA_nUyt; Wed, 30 Jul 2014 08:02:15 -0400 (EDT) Received: from localhost (226.Red-83-44-31.dynamicIP.rima-tde.net [83.44.31.226]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.privateemail.com (Postfix) with ESMTPSA id 8513F8800D5; Wed, 30 Jul 2014 08:02:14 -0400 (EDT) Date: Wed, 30 Jul 2014 14:01:33 +0200 From: Carlos Jacobo Puga Medina To: dim@freebsd.org, jean-sebastien.pedron@dumbbell.fr Subject: Re: ATI radeon 3450 with new xorg Message-Id: <20140730140133.52e2b326991439497eef6067@fbsd.es> X-Mailer: Sylpheed 3.4.2 (GTK+ 2.24.22; i386-portbld-freebsd11.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-x11@freebsd.org X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Jul 2014 12:02:51 -0000 Hi Dimitry, After applying your patch, my GPU works pretty well and now it supports direct rendering. % glxinfo | grep render direct rendering: Yes OpenGL renderer string: Gallium 0.4 on AMD RV620 GL_MESA_window_pos, GL_NV_blend_square, GL_NV_conditional_render, Thanks for your effort. -- Carlos Jacobo Puga Medina From owner-freebsd-x11@FreeBSD.ORG Wed Jul 30 14:50:11 2014 Return-Path: Delivered-To: freebsd-x11@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E7827812 for ; Wed, 30 Jul 2014 14:50:11 +0000 (UTC) Received: from mail.unitedinsong.com.au (mail.unitedinsong.com.au [150.101.178.33]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9BD6B2846 for ; Wed, 30 Jul 2014 14:50:11 +0000 (UTC) Received: from laptop3.herveybayaustralia.com.au (unknown [192.168.0.185]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by mail.unitedinsong.com.au (Postfix) with ESMTPSA id C7B0C2733D for ; Thu, 31 Jul 2014 00:50:02 +1000 (EST) Message-ID: <53D90619.8070803@herveybayaustralia.com.au> Date: Thu, 31 Jul 2014 00:50:01 +1000 From: Da Rock User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.3.0 MIME-Version: 1.0 To: freebsd-x11@freebsd.org Subject: Re: Multiple video cards References: <20140729110858.04a2bb6b@vixen42.vulpes.vvelox.net> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Jul 2014 14:50:12 -0000 On 07/30/14 03:09, Warren Block wrote: > On Tue, 29 Jul 2014, Zane C. B-H. wrote: > >> On Sun, 27 Jul 2014 17:17:43 -0600 (MDT) >> Warren Block wrote: >> >>> Test system: >>> >>> FreeBSD 10-STABLE amd64 r269160 >>> AMD A8-3850 APU (Radeon HD6550D) >>> Radeon X1650 PCIe card >>> >>> Under IGX Configuration, the APU motherboard BIOS has a "Surround >>> View" setting. When enabled, the onboard HD6550 GPU remains >>> enabled when an additional video card is connected. >>> >>> With the HD6550 disabled, the X1650 works fine. pciconf shows only >>> one video device. >>> >>> With the HD6550 enabled, both video devices show in pciconf, and X >>> gives the "screens not found" error unless both are defined in >>> xorg.conf. X starts, but xrandr only shows the HD6550, and only >>> the monitors attached to the motherboard video connectors work. >>> xrandr only shows that cards. >>> >>> There may be more settings required in xorg.conf. I think that >>> Xinerama is obsolete, but don't know. >>> >>> Based on some Linux stuff: >>> % xrandr --listproviders >>> RandR 1.4 not supported >>> >>> Is there a right way to define multiple monitors on more than one >>> card for the same virtual screen? >> >> You are most likely looking at using Xinerama there, unless the >> Radeon driver has something specific for it like Nvidia driver does. >> The man page should give you a better idea of what exactly you need >> to do. > > Well, yes, except Xinerama is, I think, obsolete. It's was what we > used back in the old days of single-output video boards. There should > be a new xrandr way to do this. Whether that code is part of the > version of xorg currently available in FreeBSD, I don't know. I doubt xrandr will have something new specifically for this, I got a bit more curious about the specifics of the setup and had a look. I was surprised to find that xrandr can't handle 2 cards, but there you go... apparently the linux crew don't like xinerama taking away their eye candy, can't fix it with xrandr, and have just brushed past it with "why would you want 2 cards anyway; 1 card has the power for all" :) This might actually prove useful to you though: http://nouveau.freedesktop.org/wiki/MultiMonitorDesktop/. It will be interesting to see what you achieve at the end of this if you get it to work. From owner-freebsd-x11@FreeBSD.ORG Wed Jul 30 14:52:49 2014 Return-Path: Delivered-To: freebsd-x11@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6C0DDAEC for ; Wed, 30 Jul 2014 14:52:49 +0000 (UTC) Received: from mail.unitedinsong.com.au (mail.unitedinsong.com.au [150.101.178.33]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A828B2901 for ; Wed, 30 Jul 2014 14:52:48 +0000 (UTC) Received: from laptop3.herveybayaustralia.com.au (unknown [192.168.0.185]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by mail.unitedinsong.com.au (Postfix) with ESMTPSA id CBD2A2733D for ; Thu, 31 Jul 2014 00:52:46 +1000 (EST) Message-ID: <53D906BD.2060708@herveybayaustralia.com.au> Date: Thu, 31 Jul 2014 00:52:45 +1000 From: Da Rock User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.3.0 MIME-Version: 1.0 To: freebsd-x11@freebsd.org Subject: Re: Multiple video cards References: <20140729110858.04a2bb6b@vixen42.vulpes.vvelox.net> <53D90619.8070803@herveybayaustralia.com.au> In-Reply-To: <53D90619.8070803@herveybayaustralia.com.au> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Jul 2014 14:52:49 -0000 On 07/31/14 00:50, Da Rock wrote: > On 07/30/14 03:09, Warren Block wrote: >> On Tue, 29 Jul 2014, Zane C. B-H. wrote: >> >>> On Sun, 27 Jul 2014 17:17:43 -0600 (MDT) >>> Warren Block wrote: >>> >>>> Test system: >>>> >>>> FreeBSD 10-STABLE amd64 r269160 >>>> AMD A8-3850 APU (Radeon HD6550D) >>>> Radeon X1650 PCIe card >>>> >>>> Under IGX Configuration, the APU motherboard BIOS has a "Surround >>>> View" setting. When enabled, the onboard HD6550 GPU remains >>>> enabled when an additional video card is connected. >>>> >>>> With the HD6550 disabled, the X1650 works fine. pciconf shows only >>>> one video device. >>>> >>>> With the HD6550 enabled, both video devices show in pciconf, and X >>>> gives the "screens not found" error unless both are defined in >>>> xorg.conf. X starts, but xrandr only shows the HD6550, and only >>>> the monitors attached to the motherboard video connectors work. >>>> xrandr only shows that cards. >>>> >>>> There may be more settings required in xorg.conf. I think that >>>> Xinerama is obsolete, but don't know. >>>> >>>> Based on some Linux stuff: >>>> % xrandr --listproviders >>>> RandR 1.4 not supported >>>> >>>> Is there a right way to define multiple monitors on more than one >>>> card for the same virtual screen? >>> >>> You are most likely looking at using Xinerama there, unless the >>> Radeon driver has something specific for it like Nvidia driver does. >>> The man page should give you a better idea of what exactly you need >>> to do. >> >> Well, yes, except Xinerama is, I think, obsolete. It's was what we >> used back in the old days of single-output video boards. There should >> be a new xrandr way to do this. Whether that code is part of the >> version of xorg currently available in FreeBSD, I don't know. > I doubt xrandr will have something new specifically for this, I got a > bit more curious about the specifics of the setup and had a look. I > was surprised to find that xrandr can't handle 2 cards, but there you > go... apparently the linux crew don't like xinerama taking away their > eye candy, can't fix it with xrandr, and have just brushed past it > with "why would you want 2 cards anyway; 1 card has the power for all" :) > > This might actually prove useful to you though: > http://nouveau.freedesktop.org/wiki/MultiMonitorDesktop/. It will be > interesting to see what you achieve at the end of this if you get it > to work. > _______________________________________________ > freebsd-x11@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-x11 > To unsubscribe, send any mail to "freebsd-x11-unsubscribe@freebsd.org" On 07/31/14 00:50, Da Rock wrote: > On 07/30/14 03:09, Warren Block wrote: >> On Tue, 29 Jul 2014, Zane C. B-H. wrote: >> >>> On Sun, 27 Jul 2014 17:17:43 -0600 (MDT) >>> Warren Block wrote: >>> >>>> Test system: >>>> >>>> FreeBSD 10-STABLE amd64 r269160 >>>> AMD A8-3850 APU (Radeon HD6550D) >>>> Radeon X1650 PCIe card >>>> >>>> Under IGX Configuration, the APU motherboard BIOS has a "Surround >>>> View" setting. When enabled, the onboard HD6550 GPU remains >>>> enabled when an additional video card is connected. >>>> >>>> With the HD6550 disabled, the X1650 works fine. pciconf shows only >>>> one video device. >>>> >>>> With the HD6550 enabled, both video devices show in pciconf, and X >>>> gives the "screens not found" error unless both are defined in >>>> xorg.conf. X starts, but xrandr only shows the HD6550, and only >>>> the monitors attached to the motherboard video connectors work. >>>> xrandr only shows that cards. >>>> >>>> There may be more settings required in xorg.conf. I think that >>>> Xinerama is obsolete, but don't know. >>>> >>>> Based on some Linux stuff: >>>> % xrandr --listproviders >>>> RandR 1.4 not supported >>>> >>>> Is there a right way to define multiple monitors on more than one >>>> card for the same virtual screen? >>> >>> You are most likely looking at using Xinerama there, unless the >>> Radeon driver has something specific for it like Nvidia driver does. >>> The man page should give you a better idea of what exactly you need >>> to do. >> >> Well, yes, except Xinerama is, I think, obsolete. It's was what we >> used back in the old days of single-output video boards. There should >> be a new xrandr way to do this. Whether that code is part of the >> version of xorg currently available in FreeBSD, I don't know. > I doubt xrandr will have something new specifically for this, I got a > bit more curious about the specifics of the setup and had a look. I > was surprised to find that xrandr can't handle 2 cards, but there you > go... apparently the linux crew don't like xinerama taking away their > eye candy, can't fix it with xrandr, and have just brushed past it > with "why would you want 2 cards anyway; 1 card has the power for all" :) > > This might actually prove useful to you though: > http://nouveau.freedesktop.org/wiki/MultiMonitorDesktop/. It will be > interesting to see what you achieve at the end of this if you get it > to work. Sorry - just thought of this: what about x2x? From owner-freebsd-x11@FreeBSD.ORG Wed Jul 30 16:46:40 2014 Return-Path: Delivered-To: freebsd-x11@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CC1591E1; Wed, 30 Jul 2014 16:46:40 +0000 (UTC) Received: from mail.kapsi.fi (mx1.kapsi.fi [IPv6:2001:1bc8:1004::1:25]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8695E2772; Wed, 30 Jul 2014 16:46:40 +0000 (UTC) Received: from 91-158-78-126.elisa-laajakaista.fi ([91.158.78.126] helo=[192.168.255.146]) by mail.kapsi.fi with esmtpsa (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1XCX1P-0004Xc-4R; Wed, 30 Jul 2014 19:46:35 +0300 References: <20140730140133.52e2b326991439497eef6067@fbsd.es> Mime-Version: 1.0 (1.0) In-Reply-To: <20140730140133.52e2b326991439497eef6067@fbsd.es> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Message-Id: <9FAAF553-C171-43D6-8F98-7682C524E78A@kapsi.fi> X-Mailer: iPad Mail (11D257) From: Arto Pekkanen Subject: Re: ATI radeon 3450 with new xorg Date: Wed, 30 Jul 2014 19:46:36 +0300 To: Carlos Jacobo Puga Medina X-SA-Exim-Connect-IP: 91.158.78.126 X-SA-Exim-Mail-From: isoa@kapsi.fi X-SA-Exim-Scanned: No (on mail.kapsi.fi); SAEximRunCond expanded to false Cc: "freebsd-x11@freebsd.org" , "dim@freebsd.org" X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Jul 2014 16:46:40 -0000 Is there a chance this patch would be MFC'd? Sorry to interrupt, just curious :) Ksym@iPad > On 30 Jul 2014, at 15:01, Carlos Jacobo Puga Medina wrote: >=20 > Hi Dimitry, >=20 > After applying your patch, my GPU works pretty well and now it supports di= rect rendering. >=20 > % glxinfo | grep render > direct rendering: Yes > OpenGL renderer string: Gallium 0.4 on AMD RV620 > GL_MESA_window_pos, GL_NV_blend_square, GL_NV_conditional_render,=20 >=20 > Thanks for your effort. > --=20 > Carlos Jacobo Puga Medina > _______________________________________________ > freebsd-x11@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-x11 > To unsubscribe, send any mail to "freebsd-x11-unsubscribe@freebsd.org" From owner-freebsd-x11@FreeBSD.ORG Wed Jul 30 17:31:02 2014 Return-Path: Delivered-To: freebsd-x11@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CB6C0AD; Wed, 30 Jul 2014 17:31:02 +0000 (UTC) Received: from erelay3.ox.registrar-servers.com (erelay3.ox.registrar-servers.com [192.64.117.2]) by mx1.freebsd.org (Postfix) with ESMTP id A24332BB3; Wed, 30 Jul 2014 17:31:02 +0000 (UTC) Received: from localhost (unknown [127.0.0.1]) by erelay1.ox.registrar-servers.com (Postfix) with ESMTP id 353F32204FDF; Wed, 30 Jul 2014 17:31:02 +0000 (UTC) Received: from erelay1.ox.registrar-servers.com ([127.0.0.1]) by localhost (erelay.ox.registrar-servers.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id awRZKkb-bv4V; Wed, 30 Jul 2014 13:31:01 -0400 (EDT) Received: from imap2.ox.privateemail.com (imap2.ox.privateemail.com [198.187.29.234]) by erelay1.ox.registrar-servers.com (Postfix) with ESMTP id 456642204E9B; Wed, 30 Jul 2014 13:31:01 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by mail.privateemail.com (Postfix) with ESMTP id B97C28C007D; Wed, 30 Jul 2014 13:31:00 -0400 (EDT) X-Virus-Scanned: Debian amavisd-new at imap2.ox.privateemail.com Received: from mail.privateemail.com ([127.0.0.1]) by localhost (imap2.ox.privateemail.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 1sNSdbUV4zef; Wed, 30 Jul 2014 13:31:00 -0400 (EDT) Received: from localhost (226.Red-83-44-31.dynamicIP.rima-tde.net [83.44.31.226]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.privateemail.com (Postfix) with ESMTPSA id F10558C007B; Wed, 30 Jul 2014 13:30:58 -0400 (EDT) Date: Wed, 30 Jul 2014 19:30:17 +0200 From: Carlos Jacobo Puga Medina To: Arto Pekkanen Subject: Re: ATI radeon 3450 with new xorg Message-Id: <20140730193017.351cd59d27bd010818be460c@fbsd.es> In-Reply-To: <9FAAF553-C171-43D6-8F98-7682C524E78A@kapsi.fi> References: <20140730140133.52e2b326991439497eef6067@fbsd.es> <9FAAF553-C171-43D6-8F98-7682C524E78A@kapsi.fi> X-Mailer: Sylpheed 3.4.2 (GTK+ 2.24.22; i386-portbld-freebsd11.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: "freebsd-x11@freebsd.org" , "dim@freebsd.org" X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Jul 2014 17:31:02 -0000 On Wed, 30 Jul 2014 19:46:36 +0300 Arto Pekkanen wrote: > Is there a chance this patch would be MFC'd? His patch fixes my problem, but I don't know if Dimitry is waiting for more opinions favourable before commit it. > > Sorry to interrupt, just curious :) You're welcome :) > > Ksym@iPad > > > On 30 Jul 2014, at 15:01, Carlos Jacobo Puga Medina wrote: > > > > Hi Dimitry, > > > > After applying your patch, my GPU works pretty well and now it supports direct rendering. > > > > % glxinfo | grep render > > direct rendering: Yes > > OpenGL renderer string: Gallium 0.4 on AMD RV620 > > GL_MESA_window_pos, GL_NV_blend_square, GL_NV_conditional_render, > > > > Thanks for your effort. > > -- > > Carlos Jacobo Puga Medina > > _______________________________________________ > > freebsd-x11@freebsd.org mailing list > > http://lists.freebsd.org/mailman/listinfo/freebsd-x11 > > To unsubscribe, send any mail to "freebsd-x11-unsubscribe@freebsd.org" -- Carlos Jacobo Puga Medina From owner-freebsd-x11@FreeBSD.ORG Wed Jul 30 22:16:14 2014 Return-Path: Delivered-To: freebsd-x11@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 474F477C for ; Wed, 30 Jul 2014 22:16:14 +0000 (UTC) Received: from tensor.andric.com (tensor.andric.com [87.251.56.140]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client CN "tensor.andric.com", Issuer "CAcert Class 3 Root" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 014312C6A for ; Wed, 30 Jul 2014 22:16:13 +0000 (UTC) Received: from [IPv6:2001:7b8:3a7::ad06:a651:e222:1f6a] (unknown [IPv6:2001:7b8:3a7:0:ad06:a651:e222:1f6a]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by tensor.andric.com (Postfix) with ESMTPSA id D7B3C5C44; Thu, 31 Jul 2014 00:16:04 +0200 (CEST) Content-Type: multipart/signed; boundary="Apple-Mail=_185179F9-A9E3-42CD-A5CC-FD9241DE7780"; protocol="application/pgp-signature"; micalg=pgp-sha1 Mime-Version: 1.0 (Mac OS X Mail 7.3 \(1878.6\)) Subject: Re: ATI radeon 3450 with new xorg From: Dimitry Andric In-Reply-To: <20140730193017.351cd59d27bd010818be460c@fbsd.es> Date: Thu, 31 Jul 2014 00:15:58 +0200 Message-Id: References: <20140730140133.52e2b326991439497eef6067@fbsd.es> <9FAAF553-C171-43D6-8F98-7682C524E78A@kapsi.fi> <20140730193017.351cd59d27bd010818be460c@fbsd.es> To: Carlos Jacobo Puga Medina X-Mailer: Apple Mail (2.1878.6) Cc: "freebsd-x11@freebsd.org" X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Jul 2014 22:16:14 -0000 --Apple-Mail=_185179F9-A9E3-42CD-A5CC-FD9241DE7780 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=us-ascii On 30 Jul 2014, at 19:30, Carlos Jacobo Puga Medina wrote: > On Wed, 30 Jul 2014 19:46:36 +0300 > Arto Pekkanen wrote: >> Is there a chance this patch would be MFC'd? I'm not sure how the branching works with ports, but this would probably be a good candidate for merging to whatever the latest "stable" branch is. > His patch fixes my problem, but I don't know if Dimitry is waiting for = more opinions favourable before commit it. Hi Carlos, Thanks for testing, it is good to know that it works on real hardware! I have only been able to test it on a virtualized environment myself...=20= In any case, I am not a ports committer, so the maintainer(s) should commit it, or give their approval for me to do so. -Dimitry --Apple-Mail=_185179F9-A9E3-42CD-A5CC-FD9241DE7780 Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=signature.asc Content-Type: application/pgp-signature; name=signature.asc Content-Description: Message signed with OpenPGP using GPGMail -----BEGIN PGP SIGNATURE----- Version: GnuPG/MacGPG2 v2.0.22 (Darwin) iEYEARECAAYFAlPZbqQACgkQsF6jCi4glqOIlgCfdFC+gWSHC8jPyDePCBfIvQOi ZPYAn0osAyvkGQ1L3uXwSvmh37Qc1aJB =wJ96 -----END PGP SIGNATURE----- --Apple-Mail=_185179F9-A9E3-42CD-A5CC-FD9241DE7780-- From owner-freebsd-x11@FreeBSD.ORG Wed Jul 30 22:31:06 2014 Return-Path: Delivered-To: freebsd-x11@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A87A7B60; Wed, 30 Jul 2014 22:31:06 +0000 (UTC) Received: from mail-ig0-x22f.google.com (mail-ig0-x22f.google.com [IPv6:2607:f8b0:4001:c05::22f]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6BDBE2E9E; Wed, 30 Jul 2014 22:31:06 +0000 (UTC) Received: by mail-ig0-f175.google.com with SMTP id uq10so8227872igb.14 for ; Wed, 30 Jul 2014 15:31:05 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=Xo5BDpVWV+RRhTKTikKiOikg/rqJGEeprbEGGdq45kg=; b=zlOrbfK9uj9jneAPfpsGVNwSMfJQbUppXM6RkNolEvh9uC9jTDtP9t8Q90MH++pfk1 kHxuVv+bVDJ2Rvt6MvEe5Wh4YeAy1yH68k+v1rs12LB8t+t7JD6xf0l1RQOJLWHzKHVO I+qIGVCtO/0/fcnG0X4SDrw0hyGKPcW27VBTXH+Xq4kkNfiRRqqoGETR+1rp8fW4RAsS IbExxD+9m/WJ6ciYBz2vT5pkzw3Y7C3ZL1Y/SmfPnWCIQC1LKFwKch3lt3kGgnOMmpUd ZVtXW+RM7lTQ4B9Zi/Ou8XUKunDaYLU10Tg033awvnfPsx1QYksQfrMEbz5qHbS9Z0iF I65g== MIME-Version: 1.0 X-Received: by 10.42.47.140 with SMTP id o12mr9662445icf.4.1406759465779; Wed, 30 Jul 2014 15:31:05 -0700 (PDT) Sender: kob6558@gmail.com Received: by 10.107.163.148 with HTTP; Wed, 30 Jul 2014 15:31:05 -0700 (PDT) In-Reply-To: References: <20140730140133.52e2b326991439497eef6067@fbsd.es> <9FAAF553-C171-43D6-8F98-7682C524E78A@kapsi.fi> <20140730193017.351cd59d27bd010818be460c@fbsd.es> Date: Wed, 30 Jul 2014 15:31:05 -0700 X-Google-Sender-Auth: gl5YhnhZt9Gj7m55X3nK1JPvbls Message-ID: Subject: Re: ATI radeon 3450 with new xorg From: Kevin Oberman To: Dimitry Andric Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.18 Cc: Carlos Jacobo Puga Medina , "freebsd-x11@freebsd.org" X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Jul 2014 22:31:06 -0000 On Wed, Jul 30, 2014 at 3:15 PM, Dimitry Andric wrote: > On 30 Jul 2014, at 19:30, Carlos Jacobo Puga Medina wrote: > > On Wed, 30 Jul 2014 19:46:36 +0300 > > Arto Pekkanen wrote: > >> Is there a chance this patch would be MFC'd? > > I'm not sure how the branching works with ports, but this would probably > be a good candidate for merging to whatever the latest "stable" branch > is. > > > > His patch fixes my problem, but I don't know if Dimitry is waiting for > more opinions favourable before commit it. > > Hi Carlos, > > Thanks for testing, it is good to know that it works on real hardware! > I have only been able to test it on a virtualized environment myself... > > In any case, I am not a ports committer, so the maintainer(s) should > commit it, or give their approval for me to do so. > > -Dimitry > > Dimitry and Carlos, Ports don't branch. They are only tagged at the points of FreeBSD releases, so all commits are to head. As a result, the term MFC is not appropriate. The patch simply needs to be committed to the tree. Since this port is maintained by x11@, this is the place to talk about it. But to get the patch committed, someone should open a bug at http://bugs.freebsd.org/bugzilla. Be sure to include the patch and report that it has been tested and buy whom.. -- R. Kevin Oberman, Network Engineer, Retired E-mail: rkoberman@gmail.com From owner-freebsd-x11@FreeBSD.ORG Wed Jul 30 23:00:42 2014 Return-Path: Delivered-To: freebsd-x11@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D86631F6; Wed, 30 Jul 2014 23:00:42 +0000 (UTC) Received: from erelay3.ox.registrar-servers.com (erelay3.ox.registrar-servers.com [192.64.117.2]) by mx1.freebsd.org (Postfix) with ESMTP id AE264214E; Wed, 30 Jul 2014 23:00:42 +0000 (UTC) Received: from localhost (unknown [127.0.0.1]) by erelay1.ox.registrar-servers.com (Postfix) with ESMTP id 1236A220521F; Wed, 30 Jul 2014 23:00:36 +0000 (UTC) Received: from erelay1.ox.registrar-servers.com ([127.0.0.1]) by localhost (erelay.ox.registrar-servers.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id Qyl92qFhQEZG; Wed, 30 Jul 2014 19:00:34 -0400 (EDT) Received: from imap1.ox.privateemail.com (imap1.ox.privateemail.com [198.187.29.233]) by erelay1.ox.registrar-servers.com (Postfix) with ESMTP id 7AEDA220521B; Wed, 30 Jul 2014 19:00:34 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by mail.privateemail.com (Postfix) with ESMTP id 1074AB0008A; Wed, 30 Jul 2014 19:00:34 -0400 (EDT) X-Virus-Scanned: Debian amavisd-new at imap1.ox.privateemail.com Received: from mail.privateemail.com ([127.0.0.1]) by localhost (imap1.ox.privateemail.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id ErQPvi1KG4cU; Wed, 30 Jul 2014 19:00:33 -0400 (EDT) Received: from [192.168.1.35] (227.Red-83-33-60.dynamicIP.rima-tde.net [83.33.60.227]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.privateemail.com (Postfix) with ESMTPSA id 3D75DB0007B; Wed, 30 Jul 2014 19:00:32 -0400 (EDT) User-Agent: K-9 Mail for Android In-Reply-To: References: <20140730140133.52e2b326991439497eef6067@fbsd.es> <9FAAF553-C171-43D6-8F98-7682C524E78A@kapsi.fi> <20140730193017.351cd59d27bd010818be460c@fbsd.es> MIME-Version: 1.0 Subject: Re: ATI radeon 3450 with new xorg From: Carlos Jacobo Puga Medina Date: Thu, 31 Jul 2014 01:00:27 +0200 To: Kevin Oberman ,Dimitry Andric Message-ID: <298d7205-8aca-4d40-b85c-b9485f46fe71@email.android.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Content-Filtered-By: Mailman/MimeDel 2.1.18 Cc: "freebsd-x11@freebsd.org" X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Jul 2014 23:00:43 -0000 Thanks for clarify it. Tomorrow I will file a bug providing more information to commit Dimitry's patch. On 31 de julio de 2014 00:31:05 CEST, Kevin Oberman wrote: >On Wed, Jul 30, 2014 at 3:15 PM, Dimitry Andric >wrote: > >> On 30 Jul 2014, at 19:30, Carlos Jacobo Puga Medina >wrote: >> > On Wed, 30 Jul 2014 19:46:36 +0300 >> > Arto Pekkanen wrote: >> >> Is there a chance this patch would be MFC'd? >> >> I'm not sure how the branching works with ports, but this would >probably >> be a good candidate for merging to whatever the latest "stable" >branch >> is. >> >> >> > His patch fixes my problem, but I don't know if Dimitry is waiting >for >> more opinions favourable before commit it. >> >> Hi Carlos, >> >> Thanks for testing, it is good to know that it works on real >hardware! >> I have only been able to test it on a virtualized environment >myself... >> >> In any case, I am not a ports committer, so the maintainer(s) should >> commit it, or give their approval for me to do so. >> >> -Dimitry >> >> Dimitry and Carlos, > >Ports don't branch. They are only tagged at the points of FreeBSD >releases, >so all commits are to head. As a result, the term MFC is not >appropriate. >The patch simply needs to be committed to the tree. Since this port is >maintained by x11@, this is the place to talk about it. But to get the >patch committed, someone should open a bug at >http://bugs.freebsd.org/bugzilla. Be sure to include the patch and >report >that it has been tested and buy whom.. >-- >R. Kevin Oberman, Network Engineer, Retired >E-mail: rkoberman@gmail.com -- Enviado desde mi teléfono con K-9 Mail. From owner-freebsd-x11@FreeBSD.ORG Thu Jul 31 07:09:11 2014 Return-Path: Delivered-To: freebsd-x11@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4F1F182A; Thu, 31 Jul 2014 07:09:11 +0000 (UTC) Received: from erelay3.ox.registrar-servers.com (erelay3.ox.registrar-servers.com [192.64.117.2]) by mx1.freebsd.org (Postfix) with ESMTP id 23ED321A0; Thu, 31 Jul 2014 07:09:10 +0000 (UTC) Received: from localhost (unknown [127.0.0.1]) by erelay1.ox.registrar-servers.com (Postfix) with ESMTP id 8A9A12204FF7; Thu, 31 Jul 2014 07:09:09 +0000 (UTC) Received: from erelay1.ox.registrar-servers.com ([127.0.0.1]) by localhost (erelay.ox.registrar-servers.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 1Bmof0GqQtwB; Thu, 31 Jul 2014 03:09:08 -0400 (EDT) Received: from imap1.ox.privateemail.com (imap1.ox.privateemail.com [198.187.29.233]) by erelay1.ox.registrar-servers.com (Postfix) with ESMTP id 4EFDD2204FF5; Thu, 31 Jul 2014 03:09:08 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by mail.privateemail.com (Postfix) with ESMTP id BFA5FB00085; Thu, 31 Jul 2014 03:09:07 -0400 (EDT) X-Virus-Scanned: Debian amavisd-new at imap1.ox.privateemail.com Received: from mail.privateemail.com ([127.0.0.1]) by localhost (imap1.ox.privateemail.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id a2FJiM9NeT0Z; Thu, 31 Jul 2014 03:09:07 -0400 (EDT) Received: from localhost (227.Red-83-33-60.dynamicIP.rima-tde.net [83.33.60.227]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.privateemail.com (Postfix) with ESMTPSA id 29695B0007B; Thu, 31 Jul 2014 03:09:05 -0400 (EDT) Date: Thu, 31 Jul 2014 09:08:23 +0200 From: Carlos Jacobo Puga Medina To: Carlos Jacobo Puga Medina Subject: Re: ATI radeon 3450 with new xorg Message-Id: <20140731090823.a295568ce982441f9be35548@fbsd.es> In-Reply-To: <298d7205-8aca-4d40-b85c-b9485f46fe71@email.android.com> References: <20140730140133.52e2b326991439497eef6067@fbsd.es> <9FAAF553-C171-43D6-8F98-7682C524E78A@kapsi.fi> <20140730193017.351cd59d27bd010818be460c@fbsd.es> <298d7205-8aca-4d40-b85c-b9485f46fe71@email.android.com> X-Mailer: Sylpheed 3.4.2 (GTK+ 2.24.22; i386-portbld-freebsd11.0) Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: Kevin Oberman , "freebsd-x11@freebsd.org" , Dimitry Andric X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Jul 2014 07:09:11 -0000 On Thu, 31 Jul 2014 01:00:27 +0200 Carlos Jacobo Puga Medina wrote: > Thanks for clarify it. Tomorrow I will file a bug providing more informat= ion to commit Dimitry's patch. >=20 I submitted the bug 192286. Cheers, > On 31 de julio de 2014 00:31:05 CEST, Kevin Oberman = wrote: > >On Wed, Jul 30, 2014 at 3:15 PM, Dimitry Andric > >wrote: > > > >> On 30 Jul 2014, at 19:30, Carlos Jacobo Puga Medina > >wrote: > >> > On Wed, 30 Jul 2014 19:46:36 +0300 > >> > Arto Pekkanen wrote: > >> >> Is there a chance this patch would be MFC'd? > >> > >> I'm not sure how the branching works with ports, but this would > >probably > >> be a good candidate for merging to whatever the latest "stable" > >branch > >> is. > >> > >> > >> > His patch fixes my problem, but I don't know if Dimitry is waiting > >for > >> more opinions favourable before commit it. > >> > >> Hi Carlos, > >> > >> Thanks for testing, it is good to know that it works on real > >hardware! > >> I have only been able to test it on a virtualized environment > >myself... > >> > >> In any case, I am not a ports committer, so the maintainer(s) should > >> commit it, or give their approval for me to do so. > >> > >> -Dimitry > >> > >> Dimitry and Carlos, > > > >Ports don't branch. They are only tagged at the points of FreeBSD > >releases, > >so all commits are to head. As a result, the term MFC is not > >appropriate. > >The patch simply needs to be committed to the tree. Since this port is > >maintained by x11@, this is the place to talk about it. But to get the > >patch committed, someone should open a bug at > >http://bugs.freebsd.org/bugzilla. Be sure to include the patch and > >report > >that it has been tested and buy whom.. > >-- > >R. Kevin Oberman, Network Engineer, Retired > >E-mail: rkoberman@gmail.com >=20 > --=20 > Enviado desde mi tel=E9fono con K-9 Mail. --=20 Carlos Jacobo Puga Medina From owner-freebsd-x11@FreeBSD.ORG Thu Jul 31 08:20:06 2014 Return-Path: Delivered-To: freebsd-x11@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A479E331; Thu, 31 Jul 2014 08:20:06 +0000 (UTC) Received: from mail.issp.ac.ru (mail.issp.ac.ru [77.236.34.3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "relay.issp.ac.ru", Issuer "relay.issp.ac.ru" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 243A3288F; Thu, 31 Jul 2014 08:20:05 +0000 (UTC) Received: from mercury.issp.ac.ru [77.236.34.155:1737] (HELO/EHLO mercury.ph.man.ac.uk, authenticated with PLAIN) by mail.issp.ac.ru with ESMTP/inet id s6V8KMJb072843 (using TLSv1/SSLv3, with cipher DHE-RSA-AES256-SHA (256 bits), verified NO) Thu, 31 Jul 2014 12:20:22 +0400 (MSK) X-Authentication-Warning: mail.issp.ac.ru: Host mercury.issp.ac.ru [77.236.34.155] claimed to be mercury.ph.man.ac.uk From: Max Brazhnikov To: freebsd-x11@freebsd.org Subject: Re: ATI radeon 3450 with new xorg Date: Thu, 31 Jul 2014 08:19:59 +0000 Message-ID: <1587561.EWNipSh9BT@mercury.ph.man.ac.uk> User-Agent: KMail/4.12.5 (FreeBSD/9.3-PRERELEASE; KDE/4.12.5; amd64; ; ) In-Reply-To: References: <20140730140133.52e2b326991439497eef6067@fbsd.es> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Cc: Carlos Jacobo Puga Medina , Kevin Oberman , Dimitry Andric X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Jul 2014 08:20:06 -0000 On Wed, 30 Jul 2014 15:31:05 -0700 Kevin Oberman wrote: > On Wed, Jul 30, 2014 at 3:15 PM, Dimitry Andric wrote: > > > On 30 Jul 2014, at 19:30, Carlos Jacobo Puga Medina wrote: > > > On Wed, 30 Jul 2014 19:46:36 +0300 > > > Arto Pekkanen wrote: > > >> Is there a chance this patch would be MFC'd? > > > > I'm not sure how the branching works with ports, but this would probably > > be a good candidate for merging to whatever the latest "stable" branch > > is. > > > > > > > His patch fixes my problem, but I don't know if Dimitry is waiting for > > more opinions favourable before commit it. > > > > Hi Carlos, > > > > Thanks for testing, it is good to know that it works on real hardware! > > I have only been able to test it on a virtualized environment myself... > > > > In any case, I am not a ports committer, so the maintainer(s) should > > commit it, or give their approval for me to do so. > > > > -Dimitry > > > > Dimitry and Carlos, > > Ports don't branch. They are only tagged at the points of FreeBSD releases, > so all commits are to head. As a result, the term MFC is not appropriate. oh, they do: http://svnweb.freebsd.org/ports/branches/2014Q3/ and MFC (MFH) is appropriate. > The patch simply needs to be committed to the tree. Since this port is > maintained by x11@, this is the place to talk about it. But to get the > patch committed, someone should open a bug at > http://bugs.freebsd.org/bugzilla. Be sure to include the patch and report > that it has been tested and buy whom.. > -- > R. Kevin Oberman, Network Engineer, Retired > E-mail: rkoberman@gmail.com > _______________________________________________ > freebsd-x11@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-x11 > To unsubscribe, send any mail to "freebsd-x11-unsubscribe@freebsd.org" From owner-freebsd-x11@FreeBSD.ORG Thu Jul 31 08:50:12 2014 Return-Path: Delivered-To: x11@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C30F6E37 for ; Thu, 31 Jul 2014 08:50:12 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AB8A92B5C for ; Thu, 31 Jul 2014 08:50:12 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s6V8oCm3006283 for ; Thu, 31 Jul 2014 08:50:12 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: x11@FreeBSD.org Subject: [Bug 192286] [PATCH] graphics/libGL: Fix build with Clang Date: Thu, 31 Jul 2014 08:50:12 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: marino@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: x11@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Jul 2014 08:50:12 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192286 John Marino changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Triage |Open Assignee|freebsd-ports-bugs@FreeBSD. |x11@FreeBSD.org |org | --- Comment #1 from John Marino --- Over to maintainer team -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-x11@FreeBSD.ORG Thu Jul 31 16:17:50 2014 Return-Path: Delivered-To: freebsd-x11@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8CC11D88; Thu, 31 Jul 2014 16:17:50 +0000 (UTC) Received: from mail-ie0-x230.google.com (mail-ie0-x230.google.com [IPv6:2607:f8b0:4001:c03::230]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 27F2A25B2; Thu, 31 Jul 2014 16:17:50 +0000 (UTC) Received: by mail-ie0-f176.google.com with SMTP id tr6so4120968ieb.35 for ; Thu, 31 Jul 2014 09:17:49 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=tEXJDph2gSExUWwMPxW5M402daj8LXieH6bes4eKZX8=; b=PBr58WOmnUKHu/22W5Y3XmI+b8pJ+Pz5olB5Kkqm5x0EuAfQux8eRnGhG2hrPfrYP9 Dplh+TQJMFi7I8xrdQI8/5kXW39fuXm/ju5w77s05RKfPdS9oSX3vLIBpdob/3vYNgca zxL1tUS+mIEBujcpeqDhjSBp5tuPYvlByt0gG7VAoZWyxuA6zbt+k861A+l9WUHJ/FO4 E+yiNjmKnPRunw0yQtqFV3TuAvmg5VO8uxCOm24R061e+xjW6F37GKAVhGJP7dK8C5xB pzQ9o20kpB7zsTUd5yPJb+8WVoa7UmAdZJG9OOCc48SBTNoj+3/+3xs0AFoOyUpd/+19 KGnw== MIME-Version: 1.0 X-Received: by 10.50.2.71 with SMTP id 7mr67070928igs.32.1406823469343; Thu, 31 Jul 2014 09:17:49 -0700 (PDT) Sender: kob6558@gmail.com Received: by 10.107.163.148 with HTTP; Thu, 31 Jul 2014 09:17:49 -0700 (PDT) In-Reply-To: <1587561.EWNipSh9BT@mercury.ph.man.ac.uk> References: <20140730140133.52e2b326991439497eef6067@fbsd.es> <1587561.EWNipSh9BT@mercury.ph.man.ac.uk> Date: Thu, 31 Jul 2014 09:17:49 -0700 X-Google-Sender-Auth: fjFwk3sYIjRRXJoP0Odoqmr6-U4 Message-ID: Subject: Re: ATI radeon 3450 with new xorg From: Kevin Oberman To: Max Brazhnikov Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.18 Cc: Carlos Jacobo Puga Medina , "freebsd-x11@freebsd.org" , Dimitry Andric X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Jul 2014 16:17:50 -0000 On Thu, Jul 31, 2014 at 1:19 AM, Max Brazhnikov wrote: > On Wed, 30 Jul 2014 15:31:05 -0700 Kevin Oberman wrote: > > On Wed, Jul 30, 2014 at 3:15 PM, Dimitry Andric wrote: > > > > > On 30 Jul 2014, at 19:30, Carlos Jacobo Puga Medina > wrote: > > > > On Wed, 30 Jul 2014 19:46:36 +0300 > > > > Arto Pekkanen wrote: > > > >> Is there a chance this patch would be MFC'd? > > > > > > I'm not sure how the branching works with ports, but this would > probably > > > be a good candidate for merging to whatever the latest "stable" branch > > > is. > > > > > > > > > > His patch fixes my problem, but I don't know if Dimitry is waiting > for > > > more opinions favourable before commit it. > > > > > > Hi Carlos, > > > > > > Thanks for testing, it is good to know that it works on real hardware! > > > I have only been able to test it on a virtualized environment myself... > > > > > > In any case, I am not a ports committer, so the maintainer(s) should > > > commit it, or give their approval for me to do so. > > > > > > -Dimitry > > > > > > Dimitry and Carlos, > > > > Ports don't branch. They are only tagged at the points of FreeBSD > releases, > > so all commits are to head. As a result, the term MFC is not appropriate. > > oh, they do: http://svnweb.freebsd.org/ports/branches/2014Q3/ > and MFC (MFH) is appropriate. > Thanks for the correction.I had assumed that quarterlies were just tags. So MFH is a valid thing, though it is not clear to me how often it is desirable to do so. This looks a like a good candidate, though thee may be reasons that x11@ sees that I don't. (Also, I don't currently use any Radeons.) -- R. Kevin Oberman, Network Engineer, Retired E-mail: rkoberman@gmail.com From owner-freebsd-x11@FreeBSD.ORG Thu Jul 31 22:25:11 2014 Return-Path: Delivered-To: x11@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 743B5DF5 for ; Thu, 31 Jul 2014 22:25:11 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5C8882180 for ; Thu, 31 Jul 2014 22:25:11 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s6VMPBNw032740 for ; Thu, 31 Jul 2014 22:25:11 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: x11@FreeBSD.org Subject: [Bug 191459] x11-drivers/xf86-input-keyboard - prevent segfaults for vt(4) users Date: Thu, 31 Jul 2014 22:25:10 +0000 X-Bugzilla-Reason: CC AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: vt X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: emaste@freebsd.org X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: x11@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Jul 2014 22:25:11 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191459 Ed Maste changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |vt -- You are receiving this mail because: You are on the CC list for the bug. You are the assignee for the bug. From owner-freebsd-x11@FreeBSD.ORG Sat Aug 2 09:36:03 2014 Return-Path: Delivered-To: freebsd-x11@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EF9CD542 for ; Sat, 2 Aug 2014 09:36:03 +0000 (UTC) Received: from mail.made4.biz (mail.made4.biz [IPv6:2001:41d0:2:c018::1:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B2A662812 for ; Sat, 2 Aug 2014 09:36:03 +0000 (UTC) Received: from 2a02-8428-011b-e000-0290-f5ff-fe9d-b78c.rev.sfr.net ([2a02:8428:11b:e000:290:f5ff:fe9d:b78c] helo=magellan.dumbbell.fr) by mail.made4.biz with esmtpsa (TLSv1:DHE-RSA-AES128-SHA:128) (Exim 4.82_1-5b7a7c0-XX (FreeBSD)) (envelope-from ) id 1XDVjN-0000u6-KE for freebsd-x11@freebsd.org; Sat, 02 Aug 2014 11:36:01 +0200 Message-ID: <53DCB0FA.8030301@dumbbell.fr> Date: Sat, 02 Aug 2014 11:35:54 +0200 From: =?ISO-8859-1?Q?Jean-S=E9bastien_P=E9dron?= User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.6.0 MIME-Version: 1.0 To: freebsd-x11@freebsd.org Subject: Re: Xorg, Radeon and KMS problems References: <53D39B39.9010407@herveybayaustralia.com.au> In-Reply-To: <53D39B39.9010407@herveybayaustralia.com.au> X-Enigmail-Version: 1.6 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="5ELkBwisrGhad490K6pPpn1MicWhsIh3t" X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Aug 2014 09:36:04 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --5ELkBwisrGhad490K6pPpn1MicWhsIh3t Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 26.07.2014 14:12, Da Rock wrote: > Just trying to sort out FreeBSD 10 - still - and after numerous issues = I > finally get Xorg to run, and failed. Hello! Did you solve your problems with X.Org? --=20 Jean-S=E9bastien P=E9dron --5ELkBwisrGhad490K6pPpn1MicWhsIh3t Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQJ8BAEBCgBmBQJT3LEBXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ2NzA4N0ZEMUFFQUUwRTEyREJDNkE2RjAz OUU5OTc2MUE1RkQ5NENDAAoJEDnpl2Gl/ZTMAsAQAIYcF5N6cfhyYd7rI3yBEM5q xFqZktFU6xWPoYxrJXh6w0fuJXvaE5RGD/eVq66/cSh5owy/PqVldFDIHxUo5Yo8 xMdDa3XkY1zgs6kpXIIUR4Eeq5PMw9oekDtW0RHx+EljTM6ZBDU22I8SBJYW4CWo W42ORB8PayeChPdagazBH5iY8obpjXo8GD1uzBbZqQI2M2RlUzgOHLtclvhb65MG q4lRQBOAOtZE+AW5nM2oD2HO2dM4wPsIRM85CT7Fr/2YFm2WDfXPYA86xkijMAQ0 HS7hEzpIgfne3j0as+mrchJRSVD+MRdfZLIiga5KJqS5b7tFTryMGp4yuyT2xiBf UkKMjBhRl9d0HcrF471H4zfg1WLgYKOG0opHd3H5MFi3Y4Dgo6BDcyT/iF5pFvhk PLfxnvYUx8TXwjZan+yyWubJ4laR5Z2oJYLGWAeXpW0sEq4W6ZLflq9QgP8vxmVF SQUJA2kHcK7v6et2wpl0+3nworIkRmYiWbGYoZ4LwTN8/Euw+pjNAxFzaJCB/NIV Oq14koLpF4hhg2zaOTmA3uX/YX6kN13ZXz2eMVAhjQ3ykAgl89TkkrwQKRYzp/Eh Iq+/cheao421OtTm5MeeIi7xte81HBdhQUp2y/wJy/7mLTPvQ6dIYrwFm00feKOH QI0WW7fjAcmtrTnaZh3E =LUfi -----END PGP SIGNATURE----- --5ELkBwisrGhad490K6pPpn1MicWhsIh3t-- From owner-freebsd-x11@FreeBSD.ORG Sat Aug 2 09:39:45 2014 Return-Path: Delivered-To: freebsd-x11@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8E7CB5A8 for ; Sat, 2 Aug 2014 09:39:45 +0000 (UTC) Received: from mail.made4.biz (mail.made4.biz [IPv6:2001:41d0:2:c018::1:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 51B742836 for ; Sat, 2 Aug 2014 09:39:45 +0000 (UTC) Received: from 2a02-8428-011b-e000-0290-f5ff-fe9d-b78c.rev.sfr.net ([2a02:8428:11b:e000:290:f5ff:fe9d:b78c] helo=magellan.dumbbell.fr) by mail.made4.biz with esmtpsa (TLSv1:DHE-RSA-AES128-SHA:128) (Exim 4.82_1-5b7a7c0-XX (FreeBSD)) (envelope-from ) id 1XDVmx-0000uj-JI for freebsd-x11@freebsd.org; Sat, 02 Aug 2014 11:39:43 +0200 Message-ID: <53DCB1DF.1070506@dumbbell.fr> Date: Sat, 02 Aug 2014 11:39:43 +0200 From: =?ISO-8859-1?Q?Jean-S=E9bastien_P=E9dron?= User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.6.0 MIME-Version: 1.0 To: freebsd-x11@freebsd.org Subject: Re: Multiple video cards References: In-Reply-To: X-Enigmail-Version: 1.6 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="gGGsXlnXs62KlDCOXDuOpsIBrfSJfjpJd" X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Aug 2014 09:39:45 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --gGGsXlnXs62KlDCOXDuOpsIBrfSJfjpJd Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 28.07.2014 01:17, Warren Block wrote: > With the HD6550 disabled, the X1650 works fine. pciconf shows only one= > video device. >=20 > With the HD6550 enabled, both video devices show in pciconf, and X give= s > the "screens not found" error unless both are defined in xorg.conf. X > starts, but xrandr only shows the HD6550, and only the monitors attache= d > to the motherboard video connectors work. xrandr only shows that cards= =2E Hello Warren! Could you please post the output of dmesg(8) after radeonkms is loaded? --=20 Jean-S=E9bastien P=E9dron --gGGsXlnXs62KlDCOXDuOpsIBrfSJfjpJd Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQJ8BAEBCgBmBQJT3LHfXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ2NzA4N0ZEMUFFQUUwRTEyREJDNkE2RjAz OUU5OTc2MUE1RkQ5NENDAAoJEDnpl2Gl/ZTMejAP/2SdrlhNalJTQLXhAgCr5/iC 6kHg0g3ufPS5Y+BcrHZq5IewN5XK4AWnlDevvO1G7Mfb+gwtoO+G2I1bjODdaRFf GCbS8GyD3q21khg6c/Eu8Q333oCXfziJ7nLR1T8kVpOiCYRbuH/FuwsPzDvtTrnz haKOapqFYn3XFSV9qB5t+IhJxWZOrlRqt+S+ePuMDYQhJ3v9av3teagJwMMz4fxF P5Z78wksQ935EQmlAIH/iVVldHqEU2IsfwWF9e0MHagURFa2fwh2voyvtLOIf3OL jx99DgH27mD7q9bUQaCdJ5MoqWyaCZvGqXN53+OiJ0jVQnh1+c2k1LiAb3wfgC59 biIJxmMzJZtzKHIuHRvsQOhGi6PeM3tWrTW88OrJJE6hbylEXupz1nhqCBbZ1mmn gxvbZG56PmDLcrU9mX6vw7lNs6X4JY7ovKYJUJQq5swxrDFHAjXCC7ANskKjJLCc IQunLJbjR0LjLTGyklU5TEs5rvDoZlk2WJtP8uhmEveucsmsFE2P5F8Df+rT5ZxK cGdDxtnZQqskFacJGPDkzu/qBsv5ugh1PEeJTqoY8YmkobpmHSqqmMw1GJgApW+G zzw5N6ATQk6X1lRWOBlyY7XFjcl+8eMrxyFReFIkOJZOtVTqeWoZe6F5+eI0ex7u kF0G+906Hgmte/nQ2f9R =AGDn -----END PGP SIGNATURE----- --gGGsXlnXs62KlDCOXDuOpsIBrfSJfjpJd-- From owner-freebsd-x11@FreeBSD.ORG Sat Aug 2 09:44:17 2014 Return-Path: Delivered-To: freebsd-x11@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 606AF73A for ; Sat, 2 Aug 2014 09:44:17 +0000 (UTC) Received: from mail.made4.biz (mail.made4.biz [IPv6:2001:41d0:2:c018::1:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2345028EF for ; Sat, 2 Aug 2014 09:44:17 +0000 (UTC) Received: from 2a02-8428-011b-e000-0290-f5ff-fe9d-b78c.rev.sfr.net ([2a02:8428:11b:e000:290:f5ff:fe9d:b78c] helo=magellan.dumbbell.fr) by mail.made4.biz with esmtpsa (TLSv1:DHE-RSA-AES128-SHA:128) (Exim 4.82_1-5b7a7c0-XX (FreeBSD)) (envelope-from ) id 1XDVrL-0000ws-DO for freebsd-x11@freebsd.org; Sat, 02 Aug 2014 11:44:15 +0200 Message-ID: <53DCB2EE.9030909@dumbbell.fr> Date: Sat, 02 Aug 2014 11:44:14 +0200 From: =?ISO-8859-1?Q?Jean-S=E9bastien_P=E9dron?= User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.6.0 MIME-Version: 1.0 To: freebsd-x11@freebsd.org Subject: Re: Supporting i386-wine-devel WITH_NEW_XORG References: <2625382.dAdXyb0tIr@dragon.dg> <53D22235.6030504@dumbbell.fr> In-Reply-To: <53D22235.6030504@dumbbell.fr> X-Enigmail-Version: 1.6 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="IEaJIrM3KmXBj9qjpIwghu4WxlvFSdm78" X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Aug 2014 09:44:17 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --IEaJIrM3KmXBj9qjpIwghu4WxlvFSdm78 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 25.07.2014 11:24, Jean-S=E9bastien P=E9dron wrote: > Next, to run StarCraft II, I needed libtxc_dxtn.so. This library is > dlopened by libGL to enable texture compression. I prepared a port in > xorg-dev's repository: > http://trillian.chruetertee.ch/ports/browser/trunk/graphics/libtxc_dxtn= >=20 > It's not in the ports tree yet; I hope Koop can push it soon :) Koop Mast added graphics/libtxc_dxtn. --=20 Jean-S=E9bastien P=E9dron --IEaJIrM3KmXBj9qjpIwghu4WxlvFSdm78 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQJ8BAEBCgBmBQJT3LLvXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ2NzA4N0ZEMUFFQUUwRTEyREJDNkE2RjAz OUU5OTc2MUE1RkQ5NENDAAoJEDnpl2Gl/ZTM7VkP/jv/hNmmxnImbCc4sY+6dyFW rENnozFuk6Nv8FRGYJI6pWHwKDyW4NUjYK08Ic/vbiXfeMRQIguIQVxFOR00/0Po OA+jGl/Hm81Et7kGtXXNTQFmt7rtQmGT6U97kYxbTrPHYrCFFDV5HTG/3fdllkDs wM9H6+MYLhpUVll0D1d56JKKEdp422zPgrToVlFFriednUUU5dLIs/cgbafgfIpo okBv02W031TQzhCt1u+QYYH57lYJ20hfz+BstM3qAv1EQvh1vxrhjYvfyb0PW/aS jl/uyQk1apX5eIRBlEKrIXvLrGQJUv8AVr4WxniP7tWwVAsmA35q459yA2dyOdWA S04D2Phl7XhWjB6lZHYMG7UocyrZ9bJtyE7ljNkG2A8S2gJf3n/w1yoJR/BtQQ9T N9kwXDdBZ9qYm064EYOcyeyela6SKIQkqUF7ulBbGRlHXKATW66HFnHTDWph+Ug7 n3lkvmWFrT4rwxxxtTI4gx/LGA/qtCiFfSxvEnkiO3I/j1vSemj7/sfLndZUMLm1 E9QD0D0aGpXioPVU/FiXwZh/uRYW0xUxCqJ/3Pm4VZgFuBpncK0om/vGonWDGJIj kQpG9RUZL6nyaxyluBZHmcgFP7waOrFQE6zp2CFsR3uQv5VJlPGx2FYN7SrFNTDc 7oM9WvcFnhT7CdjuJa66 =G55K -----END PGP SIGNATURE----- --IEaJIrM3KmXBj9qjpIwghu4WxlvFSdm78-- From owner-freebsd-x11@FreeBSD.ORG Sat Aug 2 09:46:35 2014 Return-Path: Delivered-To: freebsd-x11@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BCEFE7A1 for ; Sat, 2 Aug 2014 09:46:35 +0000 (UTC) Received: from mail.made4.biz (mail.made4.biz [IPv6:2001:41d0:2:c018::1:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 80510290F for ; Sat, 2 Aug 2014 09:46:35 +0000 (UTC) Received: from 2a02-8428-011b-e000-0290-f5ff-fe9d-b78c.rev.sfr.net ([2a02:8428:11b:e000:290:f5ff:fe9d:b78c] helo=magellan.dumbbell.fr) by mail.made4.biz with esmtpsa (TLSv1:DHE-RSA-AES128-SHA:128) (Exim 4.82_1-5b7a7c0-XX (FreeBSD)) (envelope-from ) id 1XDVtZ-0000xT-Nn for freebsd-x11@freebsd.org; Sat, 02 Aug 2014 11:46:33 +0200 Message-ID: <53DCB379.9050109@dumbbell.fr> Date: Sat, 02 Aug 2014 11:46:33 +0200 From: =?ISO-8859-1?Q?Jean-S=E9bastien_P=E9dron?= User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.6.0 MIME-Version: 1.0 To: freebsd-x11@freebsd.org Subject: Re: Supporting i386-wine-devel WITH_NEW_XORG References: <53D22235.6030504@dumbbell.fr> <53D38F02.6060801@gmail.com> In-Reply-To: <53D38F02.6060801@gmail.com> X-Enigmail-Version: 1.6 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="G1R7t9Dxvve4o4D4hPOvGvImd1iKnWHRf" X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Aug 2014 09:46:35 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --G1R7t9Dxvve4o4D4hPOvGvImd1iKnWHRf Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 26.07.2014 13:20, Jan Kokem=FCller wrote: > FWIW, I'm currently using Mesa 10.2.1 and updated X related ports from > the freebsd-x11-experimental repo on a 4th gen Intel chip (GMA 4500MHD,= > G45). Acceleration works fine. Maybe that Mesa limitation is only valid= > for Sandy Bridge and higher? To be honest, I don't know, you're probably right. Thanks for letting us know that Mesa 10.2 works fine on your i915! --=20 Jean-S=E9bastien P=E9dron --G1R7t9Dxvve4o4D4hPOvGvImd1iKnWHRf Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQJ8BAEBCgBmBQJT3LN5XxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ2NzA4N0ZEMUFFQUUwRTEyREJDNkE2RjAz OUU5OTc2MUE1RkQ5NENDAAoJEDnpl2Gl/ZTMcFYP/1Yps93I4rNEAINj6IPCu8cK jC/iVPYgkkKDM77wr13T28PAdBjb2sEEP87L6b/nCVOpt1VgMjomf3hAtrfK1pUd XwLaw9fgoC6eUmBxUaLyG7mAbr7dS/e4SAaeql3H9eQEM1ydcC4arSSStRAqDYq/ tdRDUleZhpW+kT5xmBrlHEvKrSH3DT6RLKUPS33Hu3Hj8tcsPi47NtORkQO5HmLA GbGJ6I+6Y5l0IflTQN1WjcHUMWDufTeCb9iFW7RRhnFJ7fGxdUAcAx/SzCKm5xT/ phPbot9w7ZgHYZ7DEcFLgXEZgrTxx8APDxIjNirFM5wsYUak5eGjefvKxEm9ikHA OSSJ2MJhuem5i2u4Hh6yCN9+apGhAeyUwV6YKiaz/aosUnT4fPLOzUIT0k3BYOqE QO5lWyCNR1SE5PfGGJTpmaGINqKN17BF0kjB434AIzU3Lxh3YmdsYiUSKA8nV4D7 T4zOVNq2ODRjPWKvkpg0GAgcpT8BDJLhFChPNkPRK9/Qae0wv2IZIAEr8lNyA3tq ZnGTyICZXtXJQ/gsOz/yufCRbLnLcEruS2bea/EjNRexnDgtvWCviwlzXinG/H9M byAliHKpkdp8AeEiaoogIOXmv61la2lBpYRss8iGBJbIN8fi6YUlyK7IntI9A/7W Vc3sHukdSnAp6kZkYjfr =z0t1 -----END PGP SIGNATURE----- --G1R7t9Dxvve4o4D4hPOvGvImd1iKnWHRf-- From owner-freebsd-x11@FreeBSD.ORG Sat Aug 2 09:52:33 2014 Return-Path: Delivered-To: freebsd-x11@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5002F86B; Sat, 2 Aug 2014 09:52:33 +0000 (UTC) Received: from mail.made4.biz (mail.made4.biz [IPv6:2001:41d0:2:c018::1:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 102242A16; Sat, 2 Aug 2014 09:52:33 +0000 (UTC) Received: from 2a02-8428-011b-e000-0290-f5ff-fe9d-b78c.rev.sfr.net ([2a02:8428:11b:e000:290:f5ff:fe9d:b78c] helo=magellan.dumbbell.fr) by mail.made4.biz with esmtpsa (TLSv1:DHE-RSA-AES128-SHA:128) (Exim 4.82_1-5b7a7c0-XX (FreeBSD)) (envelope-from ) id 1XDVzL-0000yk-8r; Sat, 02 Aug 2014 11:52:31 +0200 Message-ID: <53DCB4DA.7090906@dumbbell.fr> Date: Sat, 02 Aug 2014 11:52:26 +0200 From: =?ISO-8859-1?Q?Jean-S=E9bastien_P=E9dron?= User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.6.0 MIME-Version: 1.0 To: Dimitry Andric Subject: Re: ATI radeon 3450 with new xorg References: <20140722222518.a5f098a3e5aa4f85407cb3b4@fbsd.es> <53CF65B0.7010504@dumbbell.fr> In-Reply-To: X-Enigmail-Version: 1.6 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="jhgbJ6AARDj2QHSEgf6CVD2uV0qgldvwx" Cc: freebsd-x11@freebsd.org, Benjamin Kramer , Roman Divacky , =?ISO-8859-1?Q?Rafael_Esp=EDndola?= X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Aug 2014 09:52:33 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --jhgbJ6AARDj2QHSEgf6CVD2uV0qgldvwx Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 28.07.2014 22:09, Dimitry Andric wrote: >> libGL error: dlopen /usr/local/lib/dri/r600_dri.so failed >> (/usr/local/lib/dri/r600_dri.so: Undefined symbol >> "_ZN4llvm13EngineBuilder12selectTargetERKNS_6TripleENS_9StringRefES4_R= KNS_15SmallVectorImplISsEE") >=20 > For this situation, Baptiste has created the devel/libc++ port, which > can be compiled with gcc 4.8 or higher, and which should be compatible > with the base libc++. See the graphics/rawtherapee port for an example= =2E I tried that with graphics/darktable (which can take advantage of OpenMP, like graphics/rawtherapee) but it resulted in a very unstable software. I didn't have the time to debug this further. --=20 Jean-S=E9bastien P=E9dron --jhgbJ6AARDj2QHSEgf6CVD2uV0qgldvwx Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQJ8BAEBCgBmBQJT3LTfXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ2NzA4N0ZEMUFFQUUwRTEyREJDNkE2RjAz OUU5OTc2MUE1RkQ5NENDAAoJEDnpl2Gl/ZTMP2oP/RSsYRbNnQCzmG/GOHuFQkFy X4SedTOuHQzA/tyHJd2q5r3klwwtLo65QbFA8BrvqedHVAGwC36+yGtF6vYxv8Hm UauPq2aTl8xX7ThTRC5XJ/qmPV9clg/tXU9sQ3lIgZ/2o/0xQ1F5YbeS6B1w1kLL j7IKpHa4raRET9zkv6xMC6YpQShO8PF2I2D5os3g+D5auN3PmeEidTJN6lKywW+L NhvmRwrf9y066ABeCV/qJ6ImJowgzvMInH+oJFEM4l/RgeAg9nfQDA3LihPZ04Gt XyG9lAgj/fEbaGoGyFExKWX0f+Y1XoWOgdph5inyghMZu3tBW1Wb132mrLwh4Glw Ky4UkRmDaVJYLqv0TC+qU7rUKD3fFqY6wwIJ1e2NRzDnn2iuctFfqFQkT/w4RmDQ 4XuhTJ4PhKaMdpwBZvF4fGctlY3nwEASpvT+eL4Lrjg5tQCNvpI11yfzWzJ0cSK8 yuKBhZQtDwVTGFpV+5QLDngbIpvJ8tDOOcNQvR3So9hODS9Q/bD4IozgBfhSq6kg Lvg0G5s/uWulobDSvAErCxHPG0B5vAjRRWqLT8sqX+RwRKtY3jBw5g8ilhpfSdCB tBvHIkx9Jof8WzypFB+obfbXetfifpeWEvufQ7GfjRAEN7wOlkDfFqnwrjrJNGCn 2LUY9tC8szJ9DLIm90vD =eCXA -----END PGP SIGNATURE----- --jhgbJ6AARDj2QHSEgf6CVD2uV0qgldvwx-- From owner-freebsd-x11@FreeBSD.ORG Sat Aug 2 10:04:33 2014 Return-Path: Delivered-To: x11@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E1577AE5 for ; Sat, 2 Aug 2014 10:04:33 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C9DB82BA3 for ; Sat, 2 Aug 2014 10:04:33 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s72A4XPv064726 for ; Sat, 2 Aug 2014 10:04:33 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: x11@FreeBSD.org Subject: [Bug 192286] [PATCH] graphics/libGL: Fix build with Clang Date: Sat, 02 Aug 2014 10:04:33 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: dumbbell@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: x11@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.isobsolete attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Aug 2014 10:04:34 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192286 Jean-Sebastien Pedron changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #145174|0 |1 is obsolete| | --- Comment #2 from Jean-Sebastien Pedron --- Created attachment 145241 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=145241&action=edit Workaround Clang issue with Mesa on i386 While the LLVM bug is fixed upstream, Dimitry Andric posted a Mesa patch on freebsd-x11@ to workaround the problem: http://lists.freebsd.org/pipermail/freebsd-x11/2014-July/014844.html It was tested successfully by the OP: http://lists.freebsd.org/pipermail/freebsd-x11/2014-July/014846.html I attach this patch to this report. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-x11@FreeBSD.ORG Sat Aug 2 10:08:43 2014 Return-Path: Delivered-To: x11@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 71100B95 for ; Sat, 2 Aug 2014 10:08:43 +0000 (UTC) Received: from portscout.freebsd.org (portscout.freebsd.org [IPv6:2001:1900:2254:206a::50:6]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5E6FC2C65 for ; Sat, 2 Aug 2014 10:08:43 +0000 (UTC) Received: from portscout.freebsd.org ([127.0.1.123]) by portscout.freebsd.org (8.14.9/8.14.9) with ESMTP id s72A8hVE067266 for ; Sat, 2 Aug 2014 10:08:43 GMT (envelope-from portscout@FreeBSD.org) Received: (from portscout@localhost) by portscout.freebsd.org (8.14.9/8.14.9/Submit) id s72A8hsw067265; Sat, 2 Aug 2014 10:08:43 GMT (envelope-from portscout@FreeBSD.org) Message-Id: <201408021008.s72A8hsw067265@portscout.freebsd.org> X-Authentication-Warning: portscout.freebsd.org: portscout set sender to portscout@FreeBSD.org using -f Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain MIME-Version: 1.0 Date: Sat, 2 Aug 2014 10:08:43 +0000 From: portscout@FreeBSD.org To: x11@freebsd.org Subject: FreeBSD ports you maintain which are out of date X-Mailer: portscout/0.8.1 X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Aug 2014 10:08:43 -0000 Dear port maintainer, The portscout new distfile checker has detected that one or more of your ports appears to be out of date. Please take the opportunity to check each of the ports listed below, and if possible and appropriate, submit/commit an update. If any ports have already been updated, you can safely ignore the entry. You will not be e-mailed again for any of the port/version combinations below. Full details can be found at the following URL: http://portscout.freebsd.org/x11@freebsd.org.html Port | Current version | New version ------------------------------------------------+-----------------+------------ x11/libxcb | 1.10 | 1.11 ------------------------------------------------+-----------------+------------ If any of the above results are invalid, please check the following page for details on how to improve portscout's detection and selection of distfiles on a per-port basis: http://portscout.freebsd.org/info/portscout-portconfig.txt Thanks.