diff options
author | Dave Airlie <airlied@redhat.com> | 2007-11-20 13:41:55 +1000 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2007-11-20 13:41:55 +1000 |
commit | f6fbbacc17bf9b1073d3e993b225987fd9173182 (patch) | |
tree | b0fb7e063d68cf4351538680ee8b9b61e55a7200 | |
parent | 45a8b083c123b820c008f04ab857a64a8facec14 (diff) |
atombios: add warnings for r500 and r600
-rw-r--r-- | src/radeon_driver.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/radeon_driver.c b/src/radeon_driver.c index 90b1fe53..17f9b81b 100644 --- a/src/radeon_driver.c +++ b/src/radeon_driver.c @@ -1641,6 +1641,15 @@ static Bool RADEONPreInitChipType(ScrnInfoPtr pScrn) break; } + if (info->ChipFamily >= CHIP_FAMILY_R600) { + xf86DrvMsg(pScrn->scrnIndex, X_WARNING, + "R600 support is mostly incomplete and very experimental\n"); + } + + 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"); + } from = X_PROBED; info->LinearAddr = PCI_REGION_BASE(info->PciInfo, 0, REGION_MEM) & ~0x1ffffffUL; |