diff options
author | Eric Anholt <eric@anholt.net> | 2008-07-17 16:56:42 -0700 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2008-07-18 12:10:41 -0700 |
commit | f5c2f00e2f99732311c9a35a91b6adc93047c51b (patch) | |
tree | 8f06e43af39f7bd483e66c07c5ff9815a15866e0 | |
parent | 78f1fc9cbcb383d42d903a8b9febdcf3c438ea7c (diff) |
intel-gem: Leave 8xx tiling on until we find any issues.
-rw-r--r-- | linux-core/i915_gem_tiling.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/linux-core/i915_gem_tiling.c b/linux-core/i915_gem_tiling.c index ddf83ce4..2841ff1f 100644 --- a/linux-core/i915_gem_tiling.c +++ b/linux-core/i915_gem_tiling.c @@ -206,6 +206,12 @@ i915_gem_detect_bit_6_swizzle(struct drm_device *dev) swizzle_x = I915_BIT_6_SWIZZLE_UNKNOWN; swizzle_y = I915_BIT_6_SWIZZLE_UNKNOWN; } + } else { + /* As far as we know, the 865 doesn't have these bit 6 + * swizzling issues. + */ + swizzle_x = I915_BIT_6_SWIZZLE_NONE; + swizzle_y = I915_BIT_6_SWIZZLE_NONE; } iounmap(mchbar); |