2008-11-07 14:05:41 -08: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 16:41:42 +01:00
# include <drm/drm_crtc.h>
2010-10-13 14:09:44 -05:00
enum mode_set_atomic {
LEAVE_ATOMIC_MODE_SET ,
ENTER_ATOMIC_MODE_SET ,
} ;
2012-05-17 13:27:20 +02:00
/**
2014-12-17 16:41:43 +01:00
* struct drm_crtc_helper_funcs - helper operations for CRTCs
* @ dpms : set power state
* @ prepare : prepare the CRTC , called before @ mode_set
* @ commit : commit changes to CRTC , called after @ mode_set
* @ mode_fixup : try to fixup proposed mode for this CRTC
2012-05-17 13:27:20 +02:00
* @ mode_set : set this mode
2014-12-17 16:41:43 +01:00
* @ mode_set_nofb : set mode only ( no scanout buffer attached )
* @ mode_set_base : update the scanout buffer
* @ mode_set_base_atomic : non - blocking mode set ( used for kgdb support )
* @ load_lut : load color palette
* @ disable : disable CRTC when no longer in use
2015-01-22 16:36:24 +01:00
* @ enable : enable CRTC
2014-12-17 16:41:43 +01:00
* @ atomic_check : check for validity of an atomic state
* @ atomic_begin : begin atomic update
* @ atomic_flush : flush atomic update
2012-05-17 13:27:20 +02:00
*
* The helper operations are called by the mid - layer CRTC helper .
2015-01-22 16:36:24 +01:00
*
* Note that with atomic helpers @ dpms , @ prepare and @ commit hooks are
* deprecated . Used @ enable and @ disable instead exclusively .
*
* With legacy crtc helpers there ' s a big semantic difference between @ disable
* and the other hooks : @ disable also needs to release any resources acquired in
* @ mode_set ( like shared PLLs ) .
2012-05-17 13:27:20 +02:00
*/
2008-11-07 14:05:41 -08: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 17:56:50 +02:00
const struct drm_display_mode * mode ,
2008-11-07 14:05:41 -08:00
struct drm_display_mode * adjusted_mode ) ;
/* Actually set the mode */
2009-02-11 13:25:09 +00: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 ) ;
2015-02-22 12:24:20 +01:00
/* Actually set the mode for atomic helpers, optional */
2014-10-29 11:13:47 +01:00
void ( * mode_set_nofb ) ( struct drm_crtc * crtc ) ;
2008-11-07 14:05:41 -08:00
/* Move the crtc on the current fb to the given position *optional* */
2009-02-11 13:25:09 +00:00
int ( * mode_set_base ) ( struct drm_crtc * crtc , int x , int y ,
struct drm_framebuffer * old_fb ) ;
2010-08-05 09:22:31 -05:00
int ( * mode_set_base_atomic ) ( struct drm_crtc * crtc ,
2010-09-26 06:47:25 -05:00
struct drm_framebuffer * fb , int x , int y ,
2010-10-13 14:09:44 -05:00
enum mode_set_atomic ) ;
2009-10-05 09:58:02 +10:00
/* reload the current crtc LUT */
void ( * load_lut ) ( struct drm_crtc * crtc ) ;
2010-06-11 17:04:35 -04:00
void ( * disable ) ( struct drm_crtc * crtc ) ;
2015-01-22 16:36:24 +01:00
void ( * enable ) ( struct drm_crtc * crtc ) ;
2014-11-05 00:14:14 +01:00
/* atomic helpers */
int ( * atomic_check ) ( struct drm_crtc * crtc ,
struct drm_crtc_state * state ) ;
void ( * atomic_begin ) ( struct drm_crtc * crtc ) ;
void ( * atomic_flush ) ( struct drm_crtc * crtc ) ;
2008-11-07 14:05:41 -08:00
} ;
2012-05-17 13:27:20 +02:00
/**
2014-12-17 16:41:43 +01:00
* struct drm_encoder_helper_funcs - helper operations for encoders
* @ dpms : set power state
* @ save : save connector state
* @ restore : restore connector state
2012-05-17 13:27:20 +02:00
* @ mode_fixup : try to fixup proposed mode for this connector
2014-12-17 16:41:43 +01:00
* @ prepare : part of the disable sequence , called before the CRTC modeset
* @ commit : called after the CRTC modeset
2015-02-22 12:24:20 +01:00
* @ mode_set : set this mode , optional for atomic helpers
2014-12-17 16:41:43 +01:00
* @ get_crtc : return CRTC that the encoder is currently attached to
* @ detect : connection status detection
* @ disable : disable encoder when not in use ( overrides DPMS off )
2015-01-22 16:36:24 +01:00
* @ enable : enable encoder
2014-12-03 16:44:34 +01:00
* @ atomic_check : check for validity of an atomic update
2012-05-17 13:27:20 +02:00
*
* The helper operations are called by the mid - layer CRTC helper .
2015-01-22 16:36:24 +01:00
*
* Note that with atomic helpers @ dpms , @ prepare and @ commit hooks are
* deprecated . Used @ enable and @ disable instead exclusively .
*
* With legacy crtc helpers there ' s a big semantic difference between @ disable
* and the other hooks : @ disable also needs to release any resources acquired in
* @ mode_set ( like shared PLLs ) .
2012-05-17 13:27:20 +02:00
*/
2008-11-07 14:05:41 -08: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 17:56:50 +02:00
const struct drm_display_mode * mode ,
2008-11-07 14:05:41 -08: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-23 16:09:34 -08:00
struct drm_crtc * ( * get_crtc ) ( struct drm_encoder * encoder ) ;
2008-11-07 14:05:41 -08:00
/* detect for DAC style encoders */
enum drm_connector_status ( * detect ) ( struct drm_encoder * encoder ,
struct drm_connector * connector ) ;
2009-08-31 15:16:30 +10:00
void ( * disable ) ( struct drm_encoder * encoder ) ;
2015-01-28 09:34:27 +10:00
2015-01-22 16:36:24 +01:00
void ( * enable ) ( struct drm_encoder * encoder ) ;
2014-12-03 16:44:34 +01:00
/* atomic helpers */
int ( * atomic_check ) ( struct drm_encoder * encoder ,
struct drm_crtc_state * crtc_state ,
struct drm_connector_state * conn_state ) ;
2008-11-07 14:05:41 -08:00
} ;
2012-05-17 13:27:20 +02:00
/**
2014-12-17 16:41:43 +01:00
* struct drm_connector_helper_funcs - helper operations for connectors
2012-05-17 13:27:20 +02:00
* @ get_modes : get mode list for this connector
2014-12-17 16:41:43 +01:00
* @ mode_valid : is this mode valid on the given connector ? ( optional )
* @ best_encoder : return the preferred encoder for this connector
2012-05-17 13:27:20 +02:00
*
* The helper operations are called by the mid - layer CRTC helper .
*/
2008-11-07 14:05:41 -08:00
struct drm_connector_helper_funcs {
int ( * get_modes ) ( struct drm_connector * connector ) ;
2013-11-28 15:29:17 +00:00
enum drm_mode_status ( * mode_valid ) ( struct drm_connector * connector ,
struct drm_display_mode * mode ) ;
2008-11-07 14:05:41 -08: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-17 22:14:46 -05:00
int x , int y ,
struct drm_framebuffer * old_fb ) ;
2008-11-07 14:05:41 -08:00
extern bool drm_helper_crtc_in_use ( struct drm_crtc * crtc ) ;
2009-08-19 00:56:44 +02:00
extern bool drm_helper_encoder_in_use ( struct drm_encoder * encoder ) ;
2008-11-07 14:05:41 -08:00
2009-05-30 20:42:28 -07:00
extern void drm_helper_connector_dpms ( struct drm_connector * connector , int mode ) ;
2012-10-27 15:52:04 +02:00
extern void drm_helper_move_panel_connectors_to_head ( struct drm_device * ) ;
2014-01-23 22:16:24 +01:00
extern void drm_helper_mode_fill_fb_struct ( struct drm_framebuffer * fb ,
struct drm_mode_fb_cmd2 * mode_cmd ) ;
2008-11-07 14:05:41 -08: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 05:34:15 +00:00
static inline void drm_connector_helper_add ( struct drm_connector * connector ,
2008-11-07 14:05:41 -08:00
const struct drm_connector_helper_funcs * funcs )
{
connector - > helper_private = ( void * ) funcs ;
}
2014-01-23 22:28:30 +01:00
extern void drm_helper_resume_force_mode ( struct drm_device * dev ) ;
2014-04-10 10:51:11 +02:00
2014-10-29 11:13:47 +01: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 10:51:11 +02: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 09:26:53 +10:00
extern int drm_helper_probe_single_connector_modes_nomerge ( struct drm_connector
* connector ,
uint32_t maxX ,
uint32_t maxY ) ;
2010-05-07 06:42:51 +00: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 16:11:28 +02:00
extern bool drm_helper_hpd_irq_event ( struct drm_device * dev ) ;
2012-10-23 18:23:32 +00:00
extern void drm_kms_helper_hotplug_event ( struct drm_device * dev ) ;
2010-06-01 09:09:06 +10: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 00:33:24 +02:00
2008-11-07 14:05:41 -08:00
# endif