From owner-freebsd-x11@FreeBSD.ORG Tue Feb 14 19:46:32 2006 Return-Path: X-Original-To: freebsd-x11@freebsd.org Delivered-To: freebsd-x11@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 448A316A420 for ; Tue, 14 Feb 2006 19:46:32 +0000 (GMT) (envelope-from valencid@uci.edu) Received: from scanner2.ics.uci.edu (scanner2.ics.uci.edu [128.195.1.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0708043D45 for ; Tue, 14 Feb 2006 19:46:31 +0000 (GMT) (envelope-from valencid@uci.edu) Received: from [128.200.38.147] (schark12.ics.uci.edu [128.200.38.147]) by scanner2.ics.uci.edu (8.13.5/8.13.5) with ESMTP id k1EJhsUp008583 for ; Tue, 14 Feb 2006 11:43:55 -0800 (PST) Message-ID: <43F232FA.5010805@uci.edu> Date: Tue, 14 Feb 2006 11:43:54 -0800 From: Daniel Jesus Valencia Sanchez User-Agent: Thunderbird 1.5 (X11/20060213) MIME-Version: 1.0 To: freebsd-x11@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-ICS-MailScanner: Found to be clean X-ICS-MailScanner-SpamCheck: not spam, SpamAssassin (score=0, required 5, autolearn=disabled) X-ICS-MailScanner-From: valencid@uci.edu Subject: x11 MergedFB is now working in my X300 ATI RADEON X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.5 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, 14 Feb 2006 19:46:32 -0000 Hi all, I was so frustrated that I got those hard locks in my box when trying to use two monitors in MergedFB, that I searched everywhere (including the archives of this list) and couldn't find anything to solve it. A little of RTFM taught me of a few options that I could tweak, and *FINALLY* I made it work properly (well, cuasi-properly, for the performance is a little degraded). So, for the information of anyone that could care (like the french guy), here it goes... The option that saved my life is: Option "NoAccel" "true" in Section "Device" My complete xorg.conf is: Section "Module" Load "dbe" # Double buffer extension SubSection "extmod" Option "omit xfree86-dga" # don't initialise the DGA extension EndSubSection Load "type1" # Load "speedo" Load "freetype" # Load "xtt" Load "glx" EndSection Section "Files" RgbPath "/usr/X11R6/lib/X11/rgb" FontPath "/usr/X11R6/lib/X11/fonts/misc/" FontPath "/usr/X11R6/lib/X11/fonts/TTF/" FontPath "/usr/X11R6/lib/X11/fonts/Type1/" # FontPath "/usr/X11R6/lib/X11/fonts/CID/" FontPath "/usr/X11R6/lib/X11/fonts/75dpi/" FontPath "/usr/X11R6/lib/X11/fonts/100dpi/" FontPath "/usr/X11R6/lib/X11/fonts/local/" # FontPath "/usr/X11R6/lib/X11/fonts/Speedo/" # FontPath "/usr/X11R6/lib/X11/fonts/TrueType/" # FontPath "/usr/X11R6/lib/X11/fonts/freefont/" ModulePath "/usr/X11R6/lib/modules" EndSection Section "InputDevice" Identifier "Keyboard1" Driver "kbd" Option "AutoRepeat" "250 30" Option "XkbRules" "xorg" Option "XkbModel" "pc105" Option "XkbLayout" "us" EndSection Section "InputDevice" Identifier "Mouse1" Driver "mouse" Option "Protocol" "Auto" # Auto detect Option "Device" "/dev/sysmouse" Option "ZAxisMapping" "4 5 6 7" EndSection Section "Monitor" Identifier "Sceptre" HorizSync 15-80 VertRefresh 50-90 EndSection Section "Device" Identifier "Diamond" Driver "radeon" Option "MergedFB" "true" Option "CRT2Position" "RightOf" Option "NoAccel" "true" Option "MetaModes" "1280x1024-1280x1024" # Option "RenderAccel" "false" Option "MergedXineramaCRT2IsScreen0" "true" EndSection Section "Screen" Identifier "My Screen" Device "Diamond" Monitor "Sceptre" DefaultDepth 24 Subsection "Display" Depth 24 Modes "1280x1024" ViewPort 0 0 Virtual 2560 1024 EndSubsectiOn EndSection Section "ServerLayout" Identifier "Simple Layout" Screen "My Screen" InputDevice "Mouse1" "CorePointer" InputDevice "Keyboard1" "CoreKeyboard" EndSection ====================== Greet'z - Daniel