xref: /OK3568_Linux_fs/kernel/include/drm/drm_modeset_helper.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /*
2*4882a593Smuzhiyun  * Copyright (c) 2016 Intel Corporation
3*4882a593Smuzhiyun  *
4*4882a593Smuzhiyun  * Permission to use, copy, modify, distribute, and sell this software and its
5*4882a593Smuzhiyun  * documentation for any purpose is hereby granted without fee, provided that
6*4882a593Smuzhiyun  * the above copyright notice appear in all copies and that both that copyright
7*4882a593Smuzhiyun  * notice and this permission notice appear in supporting documentation, and
8*4882a593Smuzhiyun  * that the name of the copyright holders not be used in advertising or
9*4882a593Smuzhiyun  * publicity pertaining to distribution of the software without specific,
10*4882a593Smuzhiyun  * written prior permission.  The copyright holders make no representations
11*4882a593Smuzhiyun  * about the suitability of this software for any purpose.  It is provided "as
12*4882a593Smuzhiyun  * is" without express or implied warranty.
13*4882a593Smuzhiyun  *
14*4882a593Smuzhiyun  * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
15*4882a593Smuzhiyun  * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
16*4882a593Smuzhiyun  * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
17*4882a593Smuzhiyun  * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
18*4882a593Smuzhiyun  * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
19*4882a593Smuzhiyun  * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
20*4882a593Smuzhiyun  * OF THIS SOFTWARE.
21*4882a593Smuzhiyun  */
22*4882a593Smuzhiyun 
23*4882a593Smuzhiyun #ifndef __DRM_KMS_HELPER_H__
24*4882a593Smuzhiyun #define __DRM_KMS_HELPER_H__
25*4882a593Smuzhiyun 
26*4882a593Smuzhiyun struct drm_crtc;
27*4882a593Smuzhiyun struct drm_crtc_funcs;
28*4882a593Smuzhiyun struct drm_device;
29*4882a593Smuzhiyun struct drm_framebuffer;
30*4882a593Smuzhiyun struct drm_mode_fb_cmd2;
31*4882a593Smuzhiyun 
32*4882a593Smuzhiyun void drm_helper_move_panel_connectors_to_head(struct drm_device *);
33*4882a593Smuzhiyun 
34*4882a593Smuzhiyun void drm_helper_mode_fill_fb_struct(struct drm_device *dev,
35*4882a593Smuzhiyun 				    struct drm_framebuffer *fb,
36*4882a593Smuzhiyun 				    const struct drm_mode_fb_cmd2 *mode_cmd);
37*4882a593Smuzhiyun 
38*4882a593Smuzhiyun int drm_crtc_init(struct drm_device *dev, struct drm_crtc *crtc,
39*4882a593Smuzhiyun 		  const struct drm_crtc_funcs *funcs);
40*4882a593Smuzhiyun 
41*4882a593Smuzhiyun int drm_mode_config_helper_suspend(struct drm_device *dev);
42*4882a593Smuzhiyun int drm_mode_config_helper_resume(struct drm_device *dev);
43*4882a593Smuzhiyun 
44*4882a593Smuzhiyun #endif
45