diff options
Diffstat (limited to 'include/drm/drm.h')
| -rw-r--r-- | include/drm/drm.h | 8 | 
1 files changed, 8 insertions, 0 deletions
| diff --git a/include/drm/drm.h b/include/drm/drm.h index 229a29f9..d1dc3e38 100644 --- a/include/drm/drm.h +++ b/include/drm/drm.h @@ -635,6 +635,13 @@ struct drm_get_cap {   */  #define DRM_CLIENT_CAP_UNIVERSAL_PLANES 2 +/** + * DRM_CLIENT_CAP_ATOMIC + * + * If set to 1, the DRM core will allow atomic modesetting requests. + */ +#define DRM_CLIENT_CAP_ATOMIC		3 +  /** DRM_IOCTL_SET_CLIENT_CAP ioctl argument type */  struct drm_set_client_cap {  	__u64 capability; @@ -758,6 +765,7 @@ struct drm_prime_handle {  #define DRM_IOCTL_MODE_OBJ_GETPROPERTIES	DRM_IOWR(0xB9, struct drm_mode_obj_get_properties)  #define DRM_IOCTL_MODE_OBJ_SETPROPERTY	DRM_IOWR(0xBA, struct drm_mode_obj_set_property)  #define DRM_IOCTL_MODE_CURSOR2		DRM_IOWR(0xBB, struct drm_mode_cursor2) +#define DRM_IOCTL_MODE_ATOMIC		DRM_IOWR(0xBC, struct drm_mode_atomic)  /**   * Device specific ioctls should only be in their respective headers | 
