From owner-freebsd-amd64@FreeBSD.ORG Wed Jun 22 22:16:40 2005 Return-Path: X-Original-To: freebsd-amd64@freebsd.org Delivered-To: freebsd-amd64@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3E3E016A41C for ; Wed, 22 Jun 2005 22:16:40 +0000 (GMT) (envelope-from vkushnir@i.kiev.ua) Received: from horse.iptelecom.net.ua (horse.iptelecom.net.ua [212.9.224.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id 62D2343D1D for ; Wed, 22 Jun 2005 22:16:39 +0000 (GMT) (envelope-from vkushnir@i.kiev.ua) Received: from h148.240.159.dialup.iptcom.net ([213.159.240.148]:39621 "EHLO kushnir1.kiev.ua" ident: "SOCKFAULT1" whoson: "vkushnir") by horse.iptelecom.net.ua with ESMTP id S1219399AbVFVWQh (INRCPT ); Thu, 23 Jun 2005 01:16:37 +0300 Received: from kushnir1.kiev.ua (kushnir1.kiev.ua [10.0.0.1]) by kushnir1.kiev.ua (8.13.4/8.13.3) with ESMTP id j5MMGXOW004607 for ; Thu, 23 Jun 2005 01:16:33 +0300 (EEST) (envelope-from vkushnir@i.kiev.ua) Date: Thu, 23 Jun 2005 01:16:33 +0300 (EEST) From: Vladimir Kushnir X-X-Sender: vkushnir@kushnir1.kiev.ua To: freebsd-amd64@freebsd.org In-Reply-To: <20050614000247.X30515@kushnir1.kiev.ua> Message-ID: <20050623011049.R3714@kushnir1.kiev.ua> References: <20050614000247.X30515@kushnir1.kiev.ua> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Subject: SOLVED: nForce4 + PCIE Radeons - anybody? X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Jun 2005 22:16:40 -0000 Replying to myself. On Tue, 14 Jun 2005, Vladimir Kushnir wrote: > Hi all, > Has anybody had any luck with this combination? So far no matter what I do > stock X (xorg-server) just hangs my box, and xorg-server-snapshot displays > absolutely distorted picture (wrong timings?) with xterm pulled over entire > screen and so forth :-( > Box: -CURRENT (the same was with 5.4 release), Athlon64 (naturally :-), Asus > A8N SLI (not Deluxe), Sapphire Radeon X600 > It appears this is a (bug? feature?) of Xorg: Radeons X600 Series (ID 0x5B62) aren't included in correct CHIP_FAMILY in driver. Workaround: add ChipID 0x5b60 to "Device" section of xorg.conf (passing for X300). More permanent solution: apply this one-liner: *** programs/Xserver/hw/xfree86/drivers/ati/radeon_driver.c.orig Thu Jun 23 00:56:51 2005 --- programs/Xserver/hw/xfree86/drivers/ati/radeon_driver.c Thu Jun 23 00:57:08 2005 *************** *** 2496,2501 **** --- 2496,2502 ---- case PCI_CHIP_RV370_5460: case PCI_CHIP_RV370_5464: info->IsMobility = TRUE; + case PCI_CHIP_RV370_5B62: case PCI_CHIP_RV370_5B60: case PCI_CHIP_RV370_5B64: case PCI_CHIP_RV370_5B65: Regards, Vladimir