diff options
Diffstat (limited to 'drivers/char/drm/i915_drm.h')
-rw-r--r-- | drivers/char/drm/i915_drm.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/char/drm/i915_drm.h b/drivers/char/drm/i915_drm.h index 6af83e613f27..8926beb5a61f 100644 --- a/drivers/char/drm/i915_drm.h +++ b/drivers/char/drm/i915_drm.h | |||
@@ -132,6 +132,7 @@ typedef struct _drm_i915_sarea { | |||
132 | #define DRM_I915_DESTROY_HEAP 0x0c | 132 | #define DRM_I915_DESTROY_HEAP 0x0c |
133 | #define DRM_I915_SET_VBLANK_PIPE 0x0d | 133 | #define DRM_I915_SET_VBLANK_PIPE 0x0d |
134 | #define DRM_I915_GET_VBLANK_PIPE 0x0e | 134 | #define DRM_I915_GET_VBLANK_PIPE 0x0e |
135 | #define DRM_I915_VBLANK_SWAP 0x0f | ||
135 | 136 | ||
136 | #define DRM_IOCTL_I915_INIT DRM_IOW( DRM_COMMAND_BASE + DRM_I915_INIT, drm_i915_init_t) | 137 | #define DRM_IOCTL_I915_INIT DRM_IOW( DRM_COMMAND_BASE + DRM_I915_INIT, drm_i915_init_t) |
137 | #define DRM_IOCTL_I915_FLUSH DRM_IO ( DRM_COMMAND_BASE + DRM_I915_FLUSH) | 138 | #define DRM_IOCTL_I915_FLUSH DRM_IO ( DRM_COMMAND_BASE + DRM_I915_FLUSH) |
@@ -243,4 +244,12 @@ typedef struct drm_i915_vblank_pipe { | |||
243 | int pipe; | 244 | int pipe; |
244 | } drm_i915_vblank_pipe_t; | 245 | } drm_i915_vblank_pipe_t; |
245 | 246 | ||
247 | /* Schedule buffer swap at given vertical blank: | ||
248 | */ | ||
249 | typedef struct drm_i915_vblank_swap { | ||
250 | drm_drawable_t drawable; | ||
251 | unsigned int pipe; | ||
252 | unsigned int sequence; | ||
253 | } drm_i915_vblank_swap_t; | ||
254 | |||
246 | #endif /* _I915_DRM_H_ */ | 255 | #endif /* _I915_DRM_H_ */ |