diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-04-14 13:16:40 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-04-14 13:16:40 -0700 |
commit | b897e6fbc49dd84b2634bca664344d503b907ce9 (patch) | |
tree | d3d55c07e0122fe42d88b01033454666b2325002 /include/drm | |
parent | 6f66cbc63081fd70e3191b4dbb796746780e5ae1 (diff) | |
parent | 68c84342171034120c8a1f6dfb8ef51b14250f11 (diff) | |
download | linux-3.10-b897e6fbc49dd84b2634bca664344d503b907ce9.tar.gz linux-3.10-b897e6fbc49dd84b2634bca664344d503b907ce9.tar.bz2 linux-3.10-b897e6fbc49dd84b2634bca664344d503b907ce9.zip |
Merge branch 'drm-intel-next' of git://git.kernel.org/pub/scm/linux/kernel/git/anholt/drm-intel
* 'drm-intel-next' of git://git.kernel.org/pub/scm/linux/kernel/git/anholt/drm-intel:
drm/i915: fix scheduling while holding the new active list spinlock
drm/i915: Allow tiling of objects with bit 17 swizzling by the CPU.
drm/i915: Correctly set the write flag for get_user_pages in pread.
drm/i915: Fix use of uninitialized var in 40a5f0de
drm/i915: indicate framebuffer restore key in SysRq help message
drm/i915: sync hdmi detection by hdmi identifier with 2D
drm/i915: Fix a mismerge of the IGD patch (new .find_pll hooks missed)
drm/i915: Implement batch and ring buffer dumping
Diffstat (limited to 'include/drm')
-rw-r--r-- | include/drm/i915_drm.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/drm/i915_drm.h b/include/drm/i915_drm.h index 67e3353a56d..95962fa8398 100644 --- a/include/drm/i915_drm.h +++ b/include/drm/i915_drm.h @@ -594,6 +594,9 @@ struct drm_i915_gem_busy { #define I915_BIT_6_SWIZZLE_9_10_11 4 /* Not seen by userland */ #define I915_BIT_6_SWIZZLE_UNKNOWN 5 +/* Seen by userland. */ +#define I915_BIT_6_SWIZZLE_9_17 6 +#define I915_BIT_6_SWIZZLE_9_10_17 7 struct drm_i915_gem_set_tiling { /** Handle of the buffer to have its tiling state updated */ |