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>
2010-10-13 23:09:44 +04:00
enum mode_set_atomic {
LEAVE_ATOMIC_MODE_SET ,
ENTER_ATOMIC_MODE_SET ,
} ;
2012-05-17 15:27:20 +04:00
/**
* drm_crtc_helper_funcs - helper operations for CRTCs
* @ mode_fixup : try to fixup proposed mode for this connector
* @ mode_set : set this mode
*
* The helper operations are called by the mid - layer CRTC helper .
*/
2008-11-08 01:05:41 +03:00
struct drm_crtc_helper_funcs {
/*
* Control power levels on the CRTC . If the mode passed in is
* unsupported , the provider must use the next lowest power level .
*/
void ( * dpms ) ( struct drm_crtc * crtc , int mode ) ;
void ( * prepare ) ( struct drm_crtc * crtc ) ;
void ( * commit ) ( struct drm_crtc * crtc ) ;
/* Provider can fixup or change mode timings before modeset occurs */
bool ( * mode_fixup ) ( struct drm_crtc * crtc ,
2012-07-17 19:56:50 +04:00
const struct drm_display_mode * mode ,
2008-11-08 01:05:41 +03:00
struct drm_display_mode * adjusted_mode ) ;
/* Actually set the mode */
2009-02-11 16:25:09 +03:00
int ( * 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 ) ;
2008-11-08 01:05:41 +03:00
/* Move the crtc on the current fb to the given position *optional* */
2009-02-11 16:25:09 +03:00
int ( * mode_set_base ) ( struct drm_crtc * crtc , int x , int y ,
struct drm_framebuffer * old_fb ) ;
2010-08-05 18:22:31 +04:00
int ( * mode_set_base_atomic ) ( struct drm_crtc * crtc ,
2010-09-26 15:47:25 +04:00
struct drm_framebuffer * fb , int x , int y ,
2010-10-13 23:09:44 +04:00
enum mode_set_atomic ) ;
2009-10-05 03:58:02 +04:00
/* reload the current crtc LUT */
void ( * load_lut ) ( struct drm_crtc * crtc ) ;
2010-06-12 01:04:35 +04:00
/* disable crtc when not in use - more explicit than dpms off */
void ( * disable ) ( struct drm_crtc * crtc ) ;
2008-11-08 01:05:41 +03:00
} ;
2012-05-17 15:27:20 +04:00
/**
* drm_encoder_helper_funcs - helper operations for encoders
* @ mode_fixup : try to fixup proposed mode for this connector
* @ mode_set : set this mode
*
* The helper operations are called by the mid - layer CRTC helper .
*/
2008-11-08 01:05:41 +03:00
struct drm_encoder_helper_funcs {
void ( * dpms ) ( struct drm_encoder * encoder , int mode ) ;
void ( * save ) ( struct drm_encoder * encoder ) ;
void ( * restore ) ( struct drm_encoder * encoder ) ;
bool ( * mode_fixup ) ( struct drm_encoder * encoder ,
2012-07-17 19:56:50 +04:00
const struct drm_display_mode * mode ,
2008-11-08 01:05:41 +03:00
struct drm_display_mode * adjusted_mode ) ;
void ( * prepare ) ( struct drm_encoder * encoder ) ;
void ( * commit ) ( struct drm_encoder * encoder ) ;
void ( * mode_set ) ( struct drm_encoder * encoder ,
struct drm_display_mode * mode ,
struct drm_display_mode * adjusted_mode ) ;
2009-02-24 03:09:34 +03:00
struct drm_crtc * ( * get_crtc ) ( struct drm_encoder * encoder ) ;
2008-11-08 01:05:41 +03:00
/* detect for DAC style encoders */
enum drm_connector_status ( * detect ) ( struct drm_encoder * encoder ,
struct drm_connector * connector ) ;
2009-08-31 09:16:30 +04:00
/* disable encoder when not in use - more explicit than dpms off */
void ( * disable ) ( struct drm_encoder * encoder ) ;
2008-11-08 01:05:41 +03:00
} ;
2012-05-17 15:27:20 +04:00
/**
* drm_connector_helper_funcs - helper operations for connectors
* @ get_modes : get mode list for this connector
2014-04-02 14:29:46 +04:00
* @ mode_valid ( optional ) : is this mode valid on the given connector ?
2012-05-17 15:27:20 +04:00
*
* The helper operations are called by the mid - layer CRTC helper .
*/
2008-11-08 01:05:41 +03:00
struct drm_connector_helper_funcs {
int ( * get_modes ) ( struct drm_connector * connector ) ;
2013-11-28 19:29:17 +04:00
enum drm_mode_status ( * mode_valid ) ( struct drm_connector * connector ,
struct drm_display_mode * mode ) ;
2008-11-08 01:05:41 +03:00
struct drm_encoder * ( * best_encoder ) ( struct drm_connector * connector ) ;
} ;
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
2009-05-31 07:42:28 +04:00
extern void drm_helper_connector_dpms ( struct drm_connector * connector , int mode ) ;
2012-10-27 17:52:04 +04:00
extern void drm_helper_move_panel_connectors_to_head ( struct drm_device * ) ;
2014-01-24 01:16:24 +04:00
extern void drm_helper_mode_fill_fb_struct ( struct drm_framebuffer * fb ,
struct drm_mode_fb_cmd2 * mode_cmd ) ;
2008-11-08 01:05:41 +03:00
static inline void drm_crtc_helper_add ( struct drm_crtc * crtc ,
const struct drm_crtc_helper_funcs * funcs )
{
crtc - > helper_private = ( void * ) funcs ;
}
static inline void drm_encoder_helper_add ( struct drm_encoder * encoder ,
const struct drm_encoder_helper_funcs * funcs )
{
encoder - > helper_private = ( void * ) funcs ;
}
2010-03-30 09:34:15 +04:00
static inline void drm_connector_helper_add ( struct drm_connector * connector ,
2008-11-08 01:05:41 +03:00
const struct drm_connector_helper_funcs * funcs )
{
connector - > helper_private = ( void * ) funcs ;
}
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
/* drm_probe_helper.c */
extern int drm_helper_probe_single_connector_modes ( struct drm_connector
* connector , uint32_t maxX ,
uint32_t maxY ) ;
2014-05-01 03:26:53 +04:00
extern int drm_helper_probe_single_connector_modes_nomerge ( 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 ) ;
2011-12-20 02:33:24 +04:00
2008-11-08 01:05:41 +03:00
# endif