Michael wrote:
> On Tue, May 28, 2002 at 08:43:44PM -0400, Al Tobey wrote:
> 
>>Same thing with a UP kernel ...
>>Yes, the kernel module was built fresh from the CVS tree.
>>
>>Should this not be happening?
>>
> 
> No, subject to bugs / or the possiblity that everything's not in place.
> 
> My guess, if it isn't some bug with 7000ve support, is the 128mb agp
> size, try 64mb and see if it works.
> 
> 
>>Am I an idiot for trying to use the TCL driver on a non-TCL card?
>>
> 
> Not at all. The TCL driver should detect and disable the TCL parts,
> which are only 3d anyway and you're dying before then.

That's the theory - I don't have one to test with.

If it's the X server playing up before you even get to start a 3d client, try 
this patch, applied in the programs/Xserver/hw/xfree86/drivers/ati directory.

Some people report mobility cards actually having TCL hardware (just disabled 
in the windows drivers), so I may have to allow them to tweak this...

diff -u -r1.21.2.4 radeon_dri.c
--- radeon_dri.c        21 May 2002 17:26:27 -0000      1.21.2.4
+++ radeon_dri.c        29 May 2002 07:37:13 -0000
@@ -1189,7 +1189,14 @@
      ctx->se_vport_zscale  = 0x00000000;
      ctx->se_vport_zoffset = 0x00000000;

-    ctx->se_cntl_status = (RADEON_VC_NO_SWAP);
+    if (info->IsM6) {
+       ctx->se_cntl_status = (RADEON_VC_NO_SWAP |
+ 
                      RADEON_TCL_BYPASS);
+    }
+    else {
+       ctx->se_cntl_status = (RADEON_VC_NO_SWAP);
+    }
+

      ctx->re_top_left = ((0 << RADEON_RE_LEFT_SHIFT) |
         
        (0 << RADEON_RE_TOP_SHIFT) );


_______________________________________________________________

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

_______________________________________________
Dri-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/dri-devel

Reply via email to