diff options
author | Alex Deucher <alexdeucher@gmail.com> | 2011-03-15 13:13:06 -0400 |
---|---|---|
committer | Alex Deucher <alexdeucher@gmail.com> | 2011-03-15 13:13:06 -0400 |
commit | 8567b8cd9e136ef69906e02286b3752db2404741 (patch) | |
tree | 14ba9d39c5142e42ae52fc50016fa95bff52293e /src | |
parent | 4d350497012fa31a417ada662006e2d64db2a4b5 (diff) |
APU: no tiling yet
Signed-off-by: Alex Deucher <alexdeucher@gmail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/radeon_kms.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/radeon_kms.c b/src/radeon_kms.c index 125a1326..07601708 100644 --- a/src/radeon_kms.c +++ b/src/radeon_kms.c @@ -651,6 +651,10 @@ Bool RADEONPreInit_KMS(ScrnInfoPtr pScrn, int flags) } else xf86DrvMsg(pScrn->scrnIndex, X_INFO, "R6xx+ KMS Color Tiling requires radeon drm 2.6.0 or newer\n"); + + /* don't support tiling on APUs yet */ + if (info->ChipFamily == CHIP_FAMILY_PALM) + info->allowColorTiling = FALSE; } else info->allowColorTiling = xf86ReturnOptValBool(info->Options, OPTION_COLOR_TILING, colorTilingDefault); |