2011-10-04 14:19:01 +04:00
/* exynos_drm_crtc.c
*
* Copyright ( c ) 2011 Samsung Electronics Co . , Ltd .
* Authors :
* Inki Dae < inki . dae @ samsung . com >
* Joonyoung Shim < jy0922 . shim @ samsung . com >
* Seung - Woo Kim < sw0312 . kim @ samsung . com >
*
2012-12-17 21:30:17 +04:00
* This program is free software ; you can redistribute it and / or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation ; either version 2 of the License , or ( at your
* option ) any later version .
2011-10-04 14:19:01 +04:00
*/
2012-10-02 21:01:07 +04:00
# include <drm/drmP.h>
# include <drm/drm_crtc_helper.h>
2011-10-04 14:19:01 +04:00
2013-08-13 03:46:40 +04:00
# include "exynos_drm_crtc.h"
2011-10-04 14:19:01 +04:00
# include "exynos_drm_drv.h"
# include "exynos_drm_encoder.h"
2012-06-27 09:27:04 +04:00
# include "exynos_drm_plane.h"
2011-10-04 14:19:01 +04:00
static void exynos_drm_crtc_dpms ( struct drm_crtc * crtc , int mode )
{
2011-11-04 12:04:45 +04:00
struct exynos_drm_crtc * exynos_crtc = to_exynos_crtc ( crtc ) ;
2011-10-04 14:19:01 +04:00
2011-11-04 12:04:45 +04:00
DRM_DEBUG_KMS ( " crtc[%d] mode[%d] \n " , crtc - > base . id , mode ) ;
2011-12-06 06:06:54 +04:00
if ( exynos_crtc - > dpms = = mode ) {
DRM_DEBUG_KMS ( " desired dpms mode is same as previous one. \n " ) ;
return ;
}
2013-05-21 11:55:58 +04:00
if ( mode > DRM_MODE_DPMS_ON ) {
/* wait for the completion of page flip. */
2014-07-17 13:01:17 +04:00
if ( ! wait_event_timeout ( exynos_crtc - > pending_flip_queue ,
2015-04-01 19:02:12 +03:00
( exynos_crtc - > event = = NULL ) , HZ / 20 ) )
exynos_crtc - > event = NULL ;
2014-10-10 16:31:55 +04:00
drm_crtc_vblank_off ( crtc ) ;
2013-05-21 11:55:58 +04:00
}
2015-01-18 12:16:23 +03:00
if ( exynos_crtc - > ops - > dpms )
exynos_crtc - > ops - > dpms ( exynos_crtc , mode ) ;
2014-02-19 16:02:55 +04:00
2012-06-27 09:27:09 +04:00
exynos_crtc - > dpms = mode ;
2014-10-10 16:31:55 +04:00
if ( mode = = DRM_MODE_DPMS_ON )
drm_crtc_vblank_on ( crtc ) ;
2011-10-04 14:19:01 +04:00
}
static void exynos_drm_crtc_prepare ( struct drm_crtc * crtc )
{
/* drm framework doesn't check NULL. */
}
static void exynos_drm_crtc_commit ( struct drm_crtc * crtc )
{
2011-11-04 12:04:45 +04:00
struct exynos_drm_crtc * exynos_crtc = to_exynos_crtc ( crtc ) ;
2014-11-14 03:17:46 +03:00
struct exynos_drm_plane * exynos_plane = to_exynos_plane ( crtc - > primary ) ;
2011-11-04 12:04:45 +04:00
2012-08-20 16:29:25 +04:00
exynos_drm_crtc_dpms ( crtc , DRM_MODE_DPMS_ON ) ;
2014-02-19 16:02:55 +04:00
2015-01-18 12:16:23 +03:00
if ( exynos_crtc - > ops - > win_commit )
exynos_crtc - > ops - > win_commit ( exynos_crtc , exynos_plane - > zpos ) ;
2011-10-04 14:19:01 +04:00
}
static bool
exynos_drm_crtc_mode_fixup ( struct drm_crtc * crtc ,
2012-07-17 19:56:50 +04:00
const struct drm_display_mode * mode ,
2011-10-04 14:19:01 +04:00
struct drm_display_mode * adjusted_mode )
{
2014-01-31 01:19:19 +04:00
struct exynos_drm_crtc * exynos_crtc = to_exynos_crtc ( crtc ) ;
2015-01-18 12:16:23 +03:00
if ( exynos_crtc - > ops - > mode_fixup )
return exynos_crtc - > ops - > mode_fixup ( exynos_crtc , mode ,
adjusted_mode ) ;
2014-01-31 01:19:19 +04:00
2011-10-04 14:19:01 +04:00
return true ;
}
2015-06-01 18:04:43 +03:00
static void
exynos_drm_crtc_mode_set_nofb ( struct drm_crtc * crtc )
2011-10-04 14:19:01 +04:00
{
2012-06-27 09:27:05 +04:00
struct exynos_drm_crtc * exynos_crtc = to_exynos_crtc ( crtc ) ;
2012-09-14 08:29:47 +04:00
2015-06-01 18:04:43 +03:00
if ( exynos_crtc - > ops - > commit )
exynos_crtc - > ops - > commit ( exynos_crtc ) ;
2011-10-04 14:19:01 +04:00
}
2012-06-27 09:27:10 +04:00
static void exynos_drm_crtc_disable ( struct drm_crtc * crtc )
{
2014-01-31 01:19:17 +04:00
struct drm_plane * plane ;
int ret ;
2012-06-27 09:27:10 +04:00
exynos_drm_crtc_dpms ( crtc , DRM_MODE_DPMS_OFF ) ;
2014-01-31 01:19:17 +04:00
2014-04-02 02:22:31 +04:00
drm_for_each_legacy_plane ( plane , & crtc - > dev - > mode_config . plane_list ) {
2014-01-31 01:19:17 +04:00
if ( plane - > crtc ! = crtc )
continue ;
ret = plane - > funcs - > disable_plane ( plane ) ;
if ( ret )
DRM_ERROR ( " Failed to disable plane %d \n " , ret ) ;
}
2012-06-27 09:27:10 +04:00
}
2011-10-04 14:19:01 +04:00
static struct drm_crtc_helper_funcs exynos_crtc_helper_funcs = {
. dpms = exynos_drm_crtc_dpms ,
. prepare = exynos_drm_crtc_prepare ,
. commit = exynos_drm_crtc_commit ,
. mode_fixup = exynos_drm_crtc_mode_fixup ,
2015-06-01 18:04:43 +03:00
. mode_set = drm_helper_crtc_mode_set ,
. mode_set_nofb = exynos_drm_crtc_mode_set_nofb ,
. mode_set_base = drm_helper_crtc_mode_set_base ,
2012-06-27 09:27:10 +04:00
. disable = exynos_drm_crtc_disable ,
2011-10-04 14:19:01 +04:00
} ;
static int exynos_drm_crtc_page_flip ( struct drm_crtc * crtc ,
2013-07-23 05:49:58 +04:00
struct drm_framebuffer * fb ,
struct drm_pending_vblank_event * event ,
uint32_t page_flip_flags )
2011-10-04 14:19:01 +04:00
{
struct drm_device * dev = crtc - > dev ;
struct exynos_drm_crtc * exynos_crtc = to_exynos_crtc ( crtc ) ;
2014-11-25 21:18:34 +03:00
unsigned int crtc_w , crtc_h ;
2015-04-01 19:02:12 +03:00
int ret ;
2011-10-04 14:19:01 +04:00
2012-09-11 13:25:21 +04:00
/* when the page flip is requested, crtc's dpms should be on */
if ( exynos_crtc - > dpms > DRM_MODE_DPMS_ON ) {
DRM_ERROR ( " failed page flip request. \n " ) ;
return - EINVAL ;
}
2015-04-01 19:02:12 +03:00
if ( ! event )
return - EINVAL ;
2011-10-04 14:19:01 +04:00
2015-04-01 19:02:12 +03:00
spin_lock_irq ( & dev - > event_lock ) ;
if ( exynos_crtc - > event ) {
ret = - EBUSY ;
goto out ;
}
2011-10-14 08:29:51 +04:00
2015-06-01 18:04:41 +03:00
ret = exynos_check_plane ( crtc - > primary , fb ) ;
if ( ret )
goto out ;
2015-04-01 19:02:12 +03:00
ret = drm_vblank_get ( dev , exynos_crtc - > pipe ) ;
if ( ret ) {
DRM_DEBUG ( " failed to acquire vblank counter \n " ) ;
goto out ;
}
2011-10-14 08:29:51 +04:00
2015-04-01 19:02:12 +03:00
exynos_crtc - > event = event ;
spin_unlock_irq ( & dev - > event_lock ) ;
2011-10-04 14:19:01 +04:00
2015-04-01 19:02:12 +03:00
/*
* the pipe from user always is 0 so we can set pipe number
* of current owner to event .
*/
event - > pipe = exynos_crtc - > pipe ;
crtc - > primary - > fb = fb ;
crtc_w = fb - > width - crtc - > x ;
crtc_h = fb - > height - crtc - > y ;
2015-06-01 18:04:41 +03:00
exynos_update_plane ( crtc - > primary , crtc , fb , 0 , 0 ,
crtc_w , crtc_h , crtc - > x < < 16 , crtc - > y < < 16 ,
crtc_w < < 16 , crtc_h < < 16 ) ;
2015-04-01 19:02:12 +03:00
return 0 ;
2011-10-04 14:19:01 +04:00
out :
2015-04-01 19:02:12 +03:00
spin_unlock_irq ( & dev - > event_lock ) ;
2011-10-04 14:19:01 +04:00
return ret ;
}
static void exynos_drm_crtc_destroy ( struct drm_crtc * crtc )
{
struct exynos_drm_crtc * exynos_crtc = to_exynos_crtc ( crtc ) ;
struct exynos_drm_private * private = crtc - > dev - > dev_private ;
private - > crtc [ exynos_crtc - > pipe ] = NULL ;
drm_crtc_cleanup ( crtc ) ;
kfree ( exynos_crtc ) ;
}
static struct drm_crtc_funcs exynos_crtc_funcs = {
. set_config = drm_crtc_helper_set_config ,
. page_flip = exynos_drm_crtc_page_flip ,
. destroy = exynos_drm_crtc_destroy ,
} ;
2015-01-18 12:16:23 +03:00
struct exynos_drm_crtc * exynos_drm_crtc_create ( struct drm_device * drm_dev ,
2015-05-07 03:04:45 +03:00
struct drm_plane * plane ,
int pipe ,
enum exynos_drm_output_type type ,
const struct exynos_drm_crtc_ops * ops ,
void * ctx )
2011-10-04 14:19:01 +04:00
{
struct exynos_drm_crtc * exynos_crtc ;
2014-11-26 21:43:27 +03:00
struct exynos_drm_private * private = drm_dev - > dev_private ;
2011-10-04 14:19:01 +04:00
struct drm_crtc * crtc ;
2014-09-19 16:58:53 +04:00
int ret ;
2011-10-04 14:19:01 +04:00
exynos_crtc = kzalloc ( sizeof ( * exynos_crtc ) , GFP_KERNEL ) ;
2013-08-19 14:04:55 +04:00
if ( ! exynos_crtc )
2015-01-18 12:16:23 +03:00
return ERR_PTR ( - ENOMEM ) ;
2011-10-04 14:19:01 +04:00
2013-05-21 11:55:58 +04:00
init_waitqueue_head ( & exynos_crtc - > pending_flip_queue ) ;
2014-02-19 16:02:55 +04:00
exynos_crtc - > dpms = DRM_MODE_DPMS_OFF ;
2014-11-04 23:25:27 +03:00
exynos_crtc - > pipe = pipe ;
2014-11-06 00:51:35 +03:00
exynos_crtc - > type = type ;
2015-01-18 12:16:23 +03:00
exynos_crtc - > ops = ops ;
exynos_crtc - > ctx = ctx ;
2012-06-27 09:27:04 +04:00
2014-11-03 23:20:29 +03:00
crtc = & exynos_crtc - > base ;
2011-10-04 14:19:01 +04:00
2014-11-04 23:25:27 +03:00
private - > crtc [ pipe ] = crtc ;
2011-10-04 14:19:01 +04:00
2014-11-26 21:43:27 +03:00
ret = drm_crtc_init_with_planes ( drm_dev , crtc , plane , NULL ,
2014-09-19 16:58:53 +04:00
& exynos_crtc_funcs ) ;
if ( ret < 0 )
goto err_crtc ;
2011-10-04 14:19:01 +04:00
drm_crtc_helper_add ( crtc , & exynos_crtc_helper_funcs ) ;
2015-01-18 12:16:23 +03:00
return exynos_crtc ;
2014-09-19 16:58:53 +04:00
err_crtc :
plane - > funcs - > destroy ( plane ) ;
kfree ( exynos_crtc ) ;
2015-01-18 12:16:23 +03:00
return ERR_PTR ( ret ) ;
2011-10-04 14:19:01 +04:00
}
2014-02-19 16:02:55 +04:00
int exynos_drm_crtc_enable_vblank ( struct drm_device * dev , int pipe )
2011-10-04 14:19:01 +04:00
{
struct exynos_drm_private * private = dev - > dev_private ;
2011-12-06 06:06:54 +04:00
struct exynos_drm_crtc * exynos_crtc =
2014-02-19 16:02:55 +04:00
to_exynos_crtc ( private - > crtc [ pipe ] ) ;
2011-10-04 14:19:01 +04:00
2011-12-06 06:06:54 +04:00
if ( exynos_crtc - > dpms ! = DRM_MODE_DPMS_ON )
return - EPERM ;
2015-01-18 12:16:23 +03:00
if ( exynos_crtc - > ops - > enable_vblank )
exynos_crtc - > ops - > enable_vblank ( exynos_crtc ) ;
2011-10-04 14:19:01 +04:00
return 0 ;
}
2014-02-19 16:02:55 +04:00
void exynos_drm_crtc_disable_vblank ( struct drm_device * dev , int pipe )
2011-10-04 14:19:01 +04:00
{
struct exynos_drm_private * private = dev - > dev_private ;
2011-12-06 06:06:54 +04:00
struct exynos_drm_crtc * exynos_crtc =
2014-02-19 16:02:55 +04:00
to_exynos_crtc ( private - > crtc [ pipe ] ) ;
2011-10-04 14:19:01 +04:00
2011-12-06 06:06:54 +04:00
if ( exynos_crtc - > dpms ! = DRM_MODE_DPMS_ON )
return ;
2015-01-18 12:16:23 +03:00
if ( exynos_crtc - > ops - > disable_vblank )
exynos_crtc - > ops - > disable_vblank ( exynos_crtc ) ;
2011-10-04 14:19:01 +04:00
}
2013-01-03 14:44:04 +04:00
2014-02-19 16:02:55 +04:00
void exynos_drm_crtc_finish_pageflip ( struct drm_device * dev , int pipe )
2013-01-03 14:44:04 +04:00
{
struct exynos_drm_private * dev_priv = dev - > dev_private ;
2014-02-19 16:02:55 +04:00
struct drm_crtc * drm_crtc = dev_priv - > crtc [ pipe ] ;
2013-05-21 11:55:58 +04:00
struct exynos_drm_crtc * exynos_crtc = to_exynos_crtc ( drm_crtc ) ;
2013-01-03 14:44:04 +04:00
unsigned long flags ;
spin_lock_irqsave ( & dev - > event_lock , flags ) ;
2015-04-01 19:02:12 +03:00
if ( exynos_crtc - > event ) {
2013-01-03 14:44:04 +04:00
2015-04-01 19:02:12 +03:00
drm_send_vblank_event ( dev , - 1 , exynos_crtc - > event ) ;
2014-02-19 16:02:55 +04:00
drm_vblank_put ( dev , pipe ) ;
2013-05-21 11:55:58 +04:00
wake_up ( & exynos_crtc - > pending_flip_queue ) ;
2015-04-01 19:02:12 +03:00
2013-01-03 14:44:04 +04:00
}
2015-04-01 19:02:12 +03:00
exynos_crtc - > event = NULL ;
2013-01-03 14:44:04 +04:00
spin_unlock_irqrestore ( & dev - > event_lock , flags ) ;
}
2014-02-19 16:02:55 +04:00
void exynos_drm_crtc_complete_scanout ( struct drm_framebuffer * fb )
{
2015-01-18 12:16:23 +03:00
struct exynos_drm_crtc * exynos_crtc ;
2014-02-19 16:02:55 +04:00
struct drm_device * dev = fb - > dev ;
struct drm_crtc * crtc ;
/*
* make sure that overlay data are updated to real hardware
* for all encoders .
*/
list_for_each_entry ( crtc , & dev - > mode_config . crtc_list , head ) {
2015-01-18 12:16:23 +03:00
exynos_crtc = to_exynos_crtc ( crtc ) ;
2014-02-19 16:02:55 +04:00
/*
* wait for vblank interrupt
* - this makes sure that overlay data are updated to
* real hardware .
*/
2015-01-18 12:16:23 +03:00
if ( exynos_crtc - > ops - > wait_for_vblank )
exynos_crtc - > ops - > wait_for_vblank ( exynos_crtc ) ;
2014-02-19 16:02:55 +04:00
}
}
2014-05-09 09:25:20 +04:00
int exynos_drm_crtc_get_pipe_from_type ( struct drm_device * drm_dev ,
unsigned int out_type )
{
struct drm_crtc * crtc ;
list_for_each_entry ( crtc , & drm_dev - > mode_config . crtc_list , head ) {
struct exynos_drm_crtc * exynos_crtc ;
exynos_crtc = to_exynos_crtc ( crtc ) ;
2014-11-06 00:51:35 +03:00
if ( exynos_crtc - > type = = out_type )
2014-11-04 23:44:47 +03:00
return exynos_crtc - > pipe ;
2014-05-09 09:25:20 +04:00
}
return - EPERM ;
}
2014-07-17 13:01:19 +04:00
void exynos_drm_crtc_te_handler ( struct drm_crtc * crtc )
{
2015-01-18 12:16:23 +03:00
struct exynos_drm_crtc * exynos_crtc = to_exynos_crtc ( crtc ) ;
2014-07-17 13:01:19 +04:00
2015-01-18 12:16:23 +03:00
if ( exynos_crtc - > ops - > te_handler )
exynos_crtc - > ops - > te_handler ( exynos_crtc ) ;
2014-07-17 13:01:19 +04:00
}