6484245: auto-config: radeon: misc fixes to radeon driver - revision to 6436994
authorHenry Zhao <Henry.Zhao@Sun.COM>
Mon, 08 Jan 2007 12:11:28 -0800
changeset 93 89e049e34cf2
parent 92 af073ce61549
child 94 a675736d0a5b
6484245: auto-config: radeon: misc fixes to radeon driver - revision to 6436994
XORG_NV/sun-src/xf86-video-ati-6.5.8.0/src/radeon_mergedfb.c
--- a/XORG_NV/sun-src/xf86-video-ati-6.5.8.0/src/radeon_mergedfb.c	Thu Jan 04 12:58:20 2007 -0800
+++ b/XORG_NV/sun-src/xf86-video-ati-6.5.8.0/src/radeon_mergedfb.c	Mon Jan 08 12:11:28 2007 -0800
@@ -209,18 +209,14 @@
     mode->VSyncEnd += dy;
     mode->VTotal += dy;
 
-    /* This is needed for not generating negative refesh rates in xrandr with the
-       faked DotClock below 
-     */
-    if (!(mode->VRefresh))
-        mode->VRefresh = mode->Clock * 1000.0 / mode->HTotal / mode->VTotal;
-
-     /* Provide a sophisticated fake DotClock in order to trick the vidmode
+     /* Provide a fake VRefresh/DotClock in order to trick the vidmode
       * extension to allow selecting among a number of modes whose merged result
       * looks identical but consists of different modes for CRT1 and CRT2
       */
-    mode->Clock = (((i->Clock >> 3) + i->HTotal) << 16) | ((j->Clock >> 2) + j->HTotal);
-    mode->Clock ^= ((i->VTotal << 19) | (j->VTotal << 3));
+    mode->VRefresh = (float)((i->Clock * 1000.0 / i->HTotal / i->VTotal) * 100 +
+	(j->Clock * 1000.0 / j->HTotal / j->VTotal));
+
+    mode->Clock = (int)(mode->VRefresh * 0.001 * mode->HTotal * mode->VTotal);
 
     if( ((mode->HDisplay * ((pScrn->bitsPerPixel + 7) / 8) * mode->VDisplay) > 
 	(pScrn->videoRam * 1024)) ||