diff options
author | Dave Airlie <airlied@redhat.com> | 2007-11-21 08:53:44 +1000 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2007-11-21 08:53:48 +1000 |
commit | 20083b0695987b25e442ecbdec24f3cb6f1ac2ae (patch) | |
tree | baa4b51ceca9df8c36df18355e4b11426ce2e792 | |
parent | e4bc3e1e7bb45571367d41b5328ff2590810b0f9 (diff) |
LVDS on r500/r600 needs some work disable mobile chips for now
-rw-r--r-- | src/radeon_driver.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/radeon_driver.c b/src/radeon_driver.c index 8a798319..b8da9892 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@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; |