Date: Wed, 1 Dec 2004 16:21:10 -0500 From: Jung-uk Kim <jkim@niksun.com> To: James Earl <james@icionline.ca> Cc: freebsd-amd64@freebsd.org Subject: Re: Radeon 9250 (was Re: Matrox G550) Message-ID: <200412011621.10090.jkim@niksun.com> In-Reply-To: <1102021676.97315.5.camel@serious.ab.hsia.telus.net> References: <20041201120130.B680C16A4E8@hub.freebsd.org> <200412011534.25235.jkim@niksun.com> <1102021676.97315.5.camel@serious.ab.hsia.telus.net>
next in thread | previous in thread | raw e-mail | index | archive | help
--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--
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200412011621.10090.jkim>