From owner-freebsd-hardware@FreeBSD.ORG Thu Jun 26 23:29:15 2008 Return-Path: Delivered-To: freebsd-hardware@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4DDCC1065674 for ; Thu, 26 Jun 2008 23:29:15 +0000 (UTC) (envelope-from vincentfrancois.pro@gmail.com) Received: from rv-out-0506.google.com (rv-out-0506.google.com [209.85.198.224]) by mx1.freebsd.org (Postfix) with ESMTP id 215538FC25 for ; Thu, 26 Jun 2008 23:29:15 +0000 (UTC) (envelope-from vincentfrancois.pro@gmail.com) Received: by rv-out-0506.google.com with SMTP id b25so258088rvf.43 for ; Thu, 26 Jun 2008 16:29:14 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:mime-version:content-type; bh=E/2L2rIwyqX3ggED90NTzJrdxxBQP/cj8WWZe9ByGhQ=; b=hEqQtJQUHSQKekS1mi2KHiLywQbnxr0J3hjtlyH5zfbWpN0O9C2qF2PLlmecW+KLBg bzwZZhTMoMC+FKTShGhz7ml2OSIQI6oPyVxLvtiQnXZSSC2wFGcGsFzknO2Jj1mt1FVU pvw4QAwYfd6KxuobKDMgzNAAGMc2OnLpR85AE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type; b=DQa67VmxPyRZTdQvL/qa/+vcXbl76O45/bGYwf9suTGZkqBYu5Nz11HNrwmf6eaLrf yfHka/aZer/Lomv3cDMVtD+ldEH9G6xTmSaWhiCrl1GXpTdZ2/63r9KroLbp4YuRQVr2 i0zACBsNQaDg2A9MMlYfg7rq/z3v8wjnqzMGc= Received: by 10.114.144.1 with SMTP id r1mr701414wad.136.1214521261975; Thu, 26 Jun 2008 16:01:01 -0700 (PDT) Received: by 10.114.197.15 with HTTP; Thu, 26 Jun 2008 16:01:01 -0700 (PDT) Message-ID: <14b028c20806261601n7c3ceb56n54e4116ef151dd4c@mail.gmail.com> Date: Fri, 27 Jun 2008 01:01:01 +0200 From: "=?ISO-8859-1?Q?Vincent_Fran=E7ois?=" To: freebsd-hardware@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: FreeBSD 7.0 Release, Radeon RV350 9600 M10 Rev 0, System Freeze X-BeenThere: freebsd-hardware@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: General discussion of FreeBSD hardware List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Jun 2008 23:29:15 -0000 FreeBSD 7.0 Release Graphic card : ATI RV350 Radeon 9600 M10 Rev 0 Xorg 1.4.0 Hello, I had a problem with the driver for the ATI Mobility 9600. At the start of the X Server, the system froze ! To solve this problem, I performed the operations listed below: 1) update the ports # portsnap fetch update 2) remove the xf86-video-ati package 2.1) detect version # pkg_version -v | grep xf86-video-ati xf86-video-ati-x.x.x x.x.x : version of package 2.2) delete package # pkg_delete xf86-video-ati.x.x.x 3) make and install new driver # cd /usr/ports/x11-driver/xf86-video-ati #make ... #make install 4) create new xorg config file (choose radeon driver) # xorgconfig 5) modify xorg config file ( /etc/X11/xorg.conf ) 5.1) modify device section Section "Device" Identifier "** ATI Radeon (Generic) [radeon]" Driver "radeon" VideoRam 131072 Option "DRI" "no" # Add this line BusID "PCI:1:0:0" # Add this line, for find the bus address use "pciconf -lv" EndSection 6) start server # startx Normaly, the X server now works ---- I tested with drm, it's ok. If you want to use the drm, here's how: 1) modify /etc/X11/xorg.conf, in section "Module" add: Load "drm" Load "radeon" # I'm not sure... 2) load radeon module # kldload radeon 3) start X server # startx