summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuca Tettamanti <kronos.it@gmail.com>2009-10-24 16:45:23 -0400
committerAlex Deucher <alexdeucher@gmail.com>2009-10-24 16:45:23 -0400
commitf0d9d80fee4176eaba9435a9539f29d0eefe2a87 (patch)
treecd2ca0eeb853183c0cff8de93aa01c9a45d51188
parentac499c3c0ea92f83ebd8127bb8cb5de625de6c94 (diff)
Disable color tiling on r600/r700
Not supported yet.
-rw-r--r--src/radeon_kms.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/radeon_kms.c b/src/radeon_kms.c
index b3fe20cd..8e46a8a2 100644
--- a/src/radeon_kms.c
+++ b/src/radeon_kms.c
@@ -411,6 +411,10 @@ Bool RADEONPreInit_KMS(ScrnInfoPtr pScrn, int flags)
info->allowColorTiling = xf86ReturnOptValBool(info->Options,
OPTION_COLOR_TILING, FALSE);
+ if (info->ChipFamily >= CHIP_FAMILY_R600) {
+ xf86DrvMsg(pScrn->scrnIndex, X_WARNING, "Color tiling is not yet supported on R600/R700\n");
+ info->allowColorTiling = FALSE;
+ }
xf86DrvMsg(pScrn->scrnIndex, X_INFO,
"KMS Color Tiling: %sabled\n", info->allowColorTiling ? "en" : "dis");