From owner-freebsd-amd64@FreeBSD.ORG Wed Dec 1 21:21:12 2004 Return-Path: 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 7FBA316A4CE; Wed, 1 Dec 2004 21:21:12 +0000 (GMT) Received: from anuket.mj.niksun.com (gwnew.niksun.com [65.115.46.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D00543D55; Wed, 1 Dec 2004 21:21:12 +0000 (GMT) (envelope-from jkim@niksun.com) Received: from [10.70.0.244] (daemon.mj.niksun.com [10.70.0.244]) by anuket.mj.niksun.com (8.13.1/8.12.11) with ESMTP id iB1LLAON061981; Wed, 1 Dec 2004 16:21:11 -0500 (EST) (envelope-from jkim@niksun.com) From: Jung-uk Kim Organization: Niksun, Inc. To: James Earl Date: Wed, 1 Dec 2004 16:21:10 -0500 User-Agent: KMail/1.6.2 References: <20041201120130.B680C16A4E8@hub.freebsd.org> <200412011534.25235.jkim@niksun.com> <1102021676.97315.5.camel@serious.ab.hsia.telus.net> In-Reply-To: <1102021676.97315.5.camel@serious.ab.hsia.telus.net> MIME-Version: 1.0 Content-Disposition: inline Content-Type: Multipart/Mixed; boundary="Boundary-00=_GXjrBEUL25trHht" Message-Id: <200412011621.10090.jkim@niksun.com> X-Virus-Scanned: clamd / ClamAV version 0.75.1, clamav-milter version 0.75c on anuket.mj.niksun.com X-Virus-Status: Clean cc: anholt@freebsd.org cc: freebsd-amd64@freebsd.org Subject: Re: Radeon 9250 (was Re: Matrox G550) X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.1 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, 01 Dec 2004 21:21:12 -0000 --Boundary-00=_GXjrBEUL25trHht Content-Type: text/plain; charset="euc-kr" Content-Transfer-Encoding: 7bit Content-Disposition: inline On Thursday 02 December 2004 04:07 pm, James Earl wrote: > Even though the radeon manpage doesn't list the 9250 (6.7.0), I was > assuming the 9250 is basically the same as a 9200. Is this true? Yes. > Does your 9200 exhibit the same problems as Roland Smith describes? Fixed now and patch attached. BTW, I am using Xorg 6.8.0. Jung-uk Kim --Boundary-00=_GXjrBEUL25trHht Content-Type: text/plain; charset="euc-kr"; name="drm64.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="drm64.diff" --- src/sys/dev/drm/drm_os_freebsd.h.orig Wed Dec 1 16:16:40 2004 +++ src/sys/dev/drm/drm_os_freebsd.h Wed Dec 1 15:59:19 2004 @@ -275,9 +275,9 @@ #define DRM_COPY_TO_USER_UNCHECKED(arg1, arg2, arg3) \ copyout(arg2, arg1, arg3) #define DRM_GET_USER_UNCHECKED(val, uaddr) \ - ((val) = fuword(uaddr), 0) + ((val) = fuword32(uaddr), 0) #define DRM_PUT_USER_UNCHECKED(uaddr, val) \ - suword(uaddr, val) + suword32(uaddr, val) /* DRM_READMEMORYBARRIER() prevents reordering of reads. * DRM_WRITEMEMORYBARRIER() prevents reordering of writes. --Boundary-00=_GXjrBEUL25trHht--