2008-11-08 01:05:41 +03:00
/*
* Copyright © 2006 Keith Packard
* Copyright © 2007 - 2008 Dave Airlie
* Copyright © 2007 - 2008 Intel Corporation
* Jesse Barnes < jesse . barnes @ intel . com >
*
* Permission is hereby granted , free of charge , to any person obtaining a
* copy of this software and associated documentation files ( the " Software " ) ,
* to deal in the Software without restriction , including without limitation
* the rights to use , copy , modify , merge , publish , distribute , sublicense ,
* and / or sell copies of the Software , and to permit persons to whom the
* Software is furnished to do so , subject to the following conditions :
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software .
*
* THE SOFTWARE IS PROVIDED " AS IS " , WITHOUT WARRANTY OF ANY KIND , EXPRESS OR
* IMPLIED , INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY ,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT . IN NO EVENT SHALL
* THE COPYRIGHT HOLDER ( S ) OR AUTHOR ( S ) BE LIABLE FOR ANY CLAIM , DAMAGES OR
* OTHER LIABILITY , WHETHER IN AN ACTION OF CONTRACT , TORT OR OTHERWISE ,
* ARISING FROM , OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE .
*/
/*
* The DRM mode setting helper functions are common code for drivers to use if
* they wish . Drivers are not forced to use this code in their
* implementations but it would be useful if they code they do use at least
* provides a consistent interface and operation to userspace
*/
# ifndef __DRM_CRTC_HELPER_H__
# define __DRM_CRTC_HELPER_H__
# include <linux/spinlock.h>
# include <linux/types.h>
# include <linux/idr.h>
# include <linux/fb.h>
2014-12-17 18:41:42 +03:00
# include <drm/drm_crtc.h>
2015-12-04 11:45:44 +03:00
# include <drm/drm_modeset_helper_vtables.h>
2016-08-12 23:48:39 +03:00
# include <drm/drm_modeset_helper.h>
2008-11-08 01:05:41 +03:00
extern void drm_helper_disable_unused_functions ( struct drm_device * dev ) ;
extern int drm_crtc_helper_set_config ( struct drm_mode_set * set ) ;
extern bool drm_crtc_helper_set_mode ( struct drm_crtc * crtc ,
struct drm_display_mode * mode ,
2008-12-18 06:14:46 +03:00
int x , int y ,
struct drm_framebuffer * old_fb ) ;
2008-11-08 01:05:41 +03:00
extern bool drm_helper_crtc_in_use ( struct drm_crtc * crtc ) ;
2009-08-19 02:56:44 +04:00
extern bool drm_helper_encoder_in_use ( struct drm_encoder * encoder ) ;
2008-11-08 01:05:41 +03:00
2015-07-21 12:34:55 +03:00
extern int drm_helper_connector_dpms ( struct drm_connector * connector , int mode ) ;
2009-05-31 07:42:28 +04:00
2014-01-24 01:28:30 +04:00
extern void drm_helper_resume_force_mode ( struct drm_device * dev ) ;
2014-04-10 12:51:11 +04:00
2014-10-29 13:13:47 +03:00
int drm_helper_crtc_mode_set ( struct drm_crtc * crtc , struct drm_display_mode * mode ,
struct drm_display_mode * adjusted_mode , int x , int y ,
struct drm_framebuffer * old_fb ) ;
int drm_helper_crtc_mode_set_base ( struct drm_crtc * crtc , int x , int y ,
struct drm_framebuffer * old_fb ) ;
2014-04-10 12:51:11 +04:00
/* drm_probe_helper.c */
extern int drm_helper_probe_single_connector_modes ( struct drm_connector
* connector , uint32_t maxX ,
uint32_t maxY ) ;
2010-05-07 10:42:51 +04:00
extern void drm_kms_helper_poll_init ( struct drm_device * dev ) ;
extern void drm_kms_helper_poll_fini ( struct drm_device * dev ) ;
2013-10-18 18:11:28 +04:00
extern bool drm_helper_hpd_irq_event ( struct drm_device * dev ) ;
2012-10-23 22:23:32 +04:00
extern void drm_kms_helper_hotplug_event ( struct drm_device * dev ) ;
2010-06-01 03:09:06 +04:00
extern void drm_kms_helper_poll_disable ( struct drm_device * dev ) ;
extern void drm_kms_helper_poll_enable ( struct drm_device * dev ) ;
2015-09-23 17:13:00 +03:00
extern void drm_kms_helper_poll_enable_locked ( struct drm_device * dev ) ;
2011-12-20 02:33:24 +04:00
2008-11-08 01:05:41 +03:00
# endif