xf86-video-ati: Branch 'atombios-support'

Dave Airlie airlied at kemper.freedesktop.org
Tue Nov 20 15:20:19 PST 2007


 src/radeon_driver.c |   10 ++++++++++
 1 file changed, 10 insertions(+)

New commits:
commit 20083b0695987b25e442ecbdec24f3cb6f1ac2ae
Author: Dave Airlie <airlied at redhat.com>
Date:   Wed Nov 21 08:53:44 2007 +1000

    LVDS on r500/r600 needs some work disable mobile chips for now

diff --git a/src/radeon_driver.c b/src/radeon_driver.c
index 8a79831..b8da989 100644
--- a/src/radeon_driver.c
+++ b/src/radeon_driver.c
@@ -1683,11 +1683,21 @@ static Bool RADEONPreInitChipType(ScrnInfoPtr pScrn)
     if (info->ChipFamily >= CHIP_FAMILY_R600) {
         xf86DrvMsg(pScrn->scrnIndex, X_WARNING,
                    "R600 support is mostly incomplete and very experimental\n");
+	if (info->IsMobility) {
+	  xf86DrvMsg(pScrn->scrnIndex, X_WARNING,
+		     "R600 mobility support is incomplete. You need to force enable it in the code for testing until developers are sure about it.\n");
+	  return FALSE;
+	}
     }
 
     if ((info->ChipFamily >= CHIP_FAMILY_RV515) && (info->ChipFamily < CHIP_FAMILY_R600)) {
 	xf86DrvMsg(pScrn->scrnIndex, X_WARNING,
                    "R500 support is under development. Please report any issues to xorg-driver-ati at lists.x.org\n");
+	if (info->IsMobility) {
+	  	xf86DrvMsg(pScrn->scrnIndex, X_WARNING,
+			   "R500 mobility support is incomplete. You need to force enable it in the code for testing until developers are sure about it.\n");
+		return FALSE;
+	}
     }
 
     from               = X_PROBED;


More information about the xorg-commit mailing list