xref: /OK3568_Linux_fs/kernel/include/drm/drm_atomic_uapi.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /*
2*4882a593Smuzhiyun  * Copyright (C) 2014 Red Hat
3*4882a593Smuzhiyun  * Copyright (C) 2014 Intel Corp.
4*4882a593Smuzhiyun  * Copyright (C) 2018 Intel Corp.
5*4882a593Smuzhiyun  *
6*4882a593Smuzhiyun  * Permission is hereby granted, free of charge, to any person obtaining a
7*4882a593Smuzhiyun  * copy of this software and associated documentation files (the "Software"),
8*4882a593Smuzhiyun  * to deal in the Software without restriction, including without limitation
9*4882a593Smuzhiyun  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10*4882a593Smuzhiyun  * and/or sell copies of the Software, and to permit persons to whom the
11*4882a593Smuzhiyun  * Software is furnished to do so, subject to the following conditions:
12*4882a593Smuzhiyun  *
13*4882a593Smuzhiyun  * The above copyright notice and this permission notice shall be included in
14*4882a593Smuzhiyun  * all copies or substantial portions of the Software.
15*4882a593Smuzhiyun  *
16*4882a593Smuzhiyun  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17*4882a593Smuzhiyun  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18*4882a593Smuzhiyun  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
19*4882a593Smuzhiyun  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
20*4882a593Smuzhiyun  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21*4882a593Smuzhiyun  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22*4882a593Smuzhiyun  * OTHER DEALINGS IN THE SOFTWARE.
23*4882a593Smuzhiyun  *
24*4882a593Smuzhiyun  * Authors:
25*4882a593Smuzhiyun  * Rob Clark <robdclark@gmail.com>
26*4882a593Smuzhiyun  * Daniel Vetter <daniel.vetter@ffwll.ch>
27*4882a593Smuzhiyun  */
28*4882a593Smuzhiyun 
29*4882a593Smuzhiyun #ifndef DRM_ATOMIC_UAPI_H_
30*4882a593Smuzhiyun #define DRM_ATOMIC_UAPI_H_
31*4882a593Smuzhiyun 
32*4882a593Smuzhiyun struct drm_crtc_state;
33*4882a593Smuzhiyun struct drm_display_mode;
34*4882a593Smuzhiyun struct drm_property_blob;
35*4882a593Smuzhiyun struct drm_plane_state;
36*4882a593Smuzhiyun struct drm_crtc;
37*4882a593Smuzhiyun struct drm_connector_state;
38*4882a593Smuzhiyun struct dma_fence;
39*4882a593Smuzhiyun struct drm_framebuffer;
40*4882a593Smuzhiyun 
41*4882a593Smuzhiyun int __must_check
42*4882a593Smuzhiyun drm_atomic_set_mode_for_crtc(struct drm_crtc_state *state,
43*4882a593Smuzhiyun 			     const struct drm_display_mode *mode);
44*4882a593Smuzhiyun int __must_check
45*4882a593Smuzhiyun drm_atomic_set_mode_prop_for_crtc(struct drm_crtc_state *state,
46*4882a593Smuzhiyun 				  struct drm_property_blob *blob);
47*4882a593Smuzhiyun int __must_check
48*4882a593Smuzhiyun drm_atomic_set_crtc_for_plane(struct drm_plane_state *plane_state,
49*4882a593Smuzhiyun 			      struct drm_crtc *crtc);
50*4882a593Smuzhiyun void drm_atomic_set_fb_for_plane(struct drm_plane_state *plane_state,
51*4882a593Smuzhiyun 				 struct drm_framebuffer *fb);
52*4882a593Smuzhiyun void drm_atomic_set_fence_for_plane(struct drm_plane_state *plane_state,
53*4882a593Smuzhiyun 				    struct dma_fence *fence);
54*4882a593Smuzhiyun int __must_check
55*4882a593Smuzhiyun drm_atomic_set_crtc_for_connector(struct drm_connector_state *conn_state,
56*4882a593Smuzhiyun 				  struct drm_crtc *crtc);
57*4882a593Smuzhiyun 
58*4882a593Smuzhiyun #endif
59