2011-10-04 19:19:01 +09:00
/* exynos_drm_fb.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-18 02:30:17 +09: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 19:19:01 +09:00
*/
2012-10-02 18:01:07 +01:00
# include <drm/drmP.h>
# include <drm/drm_crtc.h>
# include <drm/drm_crtc_helper.h>
# include <drm/drm_fb_helper.h>
2015-06-01 12:04:52 -03:00
# include <drm/drm_atomic.h>
2015-06-01 12:04:46 -03:00
# include <drm/drm_atomic_helper.h>
2012-10-20 07:53:42 -07:00
# include <uapi/drm/exynos_drm.h>
2011-10-04 19:19:01 +09:00
2011-10-18 16:58:05 +09:00
# include "exynos_drm_drv.h"
2011-10-04 19:19:01 +09:00
# include "exynos_drm_fb.h"
2014-03-17 11:27:17 +01:00
# include "exynos_drm_fbdev.h"
2012-10-20 07:53:42 -07:00
# include "exynos_drm_iommu.h"
2014-02-19 21:02:55 +09:00
# include "exynos_drm_crtc.h"
2011-10-04 19:19:01 +09:00
# define to_exynos_fb(x) container_of(x, struct exynos_drm_fb, fb)
/*
* exynos specific framebuffer structure .
*
* @ fb : drm framebuffer obejct .
2015-10-02 09:33:47 +09:00
* @ exynos_gem : array of exynos specific gem object containing a gem object .
2011-10-04 19:19:01 +09:00
*/
struct exynos_drm_fb {
2015-10-02 09:33:47 +09:00
struct drm_framebuffer fb ;
struct exynos_drm_gem * exynos_gem [ MAX_FB_BUFFER ] ;
2015-11-30 14:53:21 +01:00
dma_addr_t dma_addr [ MAX_FB_BUFFER ] ;
2011-10-04 19:19:01 +09:00
} ;
2012-10-20 07:53:42 -07:00
static int check_fb_gem_memory_type ( struct drm_device * drm_dev ,
2015-10-02 09:33:47 +09:00
struct exynos_drm_gem * exynos_gem )
2012-10-20 07:53:42 -07:00
{
unsigned int flags ;
/*
* if exynos drm driver supports iommu then framebuffer can use
* all the buffer types .
*/
if ( is_drm_iommu_supported ( drm_dev ) )
return 0 ;
2015-10-02 09:33:47 +09:00
flags = exynos_gem - > flags ;
2012-10-20 07:53:42 -07:00
/*
2016-08-08 17:48:20 -06:00
* Physically non - contiguous memory type for framebuffer is not
* supported without IOMMU .
2012-10-20 07:53:42 -07:00
*/
if ( IS_NONCONTIG_BUFFER ( flags ) ) {
2016-08-08 17:48:20 -06:00
DRM_ERROR ( " Non-contiguous GEM memory is not supported. \n " ) ;
2012-10-20 07:53:42 -07:00
return - EINVAL ;
}
return 0 ;
}
2011-10-04 19:19:01 +09:00
static void exynos_drm_fb_destroy ( struct drm_framebuffer * fb )
{
struct exynos_drm_fb * exynos_fb = to_exynos_fb ( fb ) ;
2012-05-16 17:08:56 +02:00
unsigned int i ;
2011-10-04 19:19:01 +09:00
drm_framebuffer_cleanup ( fb ) ;
2015-10-02 09:33:47 +09:00
for ( i = 0 ; i < ARRAY_SIZE ( exynos_fb - > exynos_gem ) ; i + + ) {
2012-05-16 17:08:56 +02:00
struct drm_gem_object * obj ;
2015-10-02 09:33:47 +09:00
if ( exynos_fb - > exynos_gem [ i ] = = NULL )
2012-05-16 17:08:56 +02:00
continue ;
2015-10-02 09:33:47 +09:00
obj = & exynos_fb - > exynos_gem [ i ] - > base ;
2012-05-16 17:08:56 +02:00
drm_gem_object_unreference_unlocked ( obj ) ;
}
2011-10-04 19:19:01 +09:00
kfree ( exynos_fb ) ;
exynos_fb = NULL ;
}
static int exynos_drm_fb_create_handle ( struct drm_framebuffer * fb ,
struct drm_file * file_priv ,
unsigned int * handle )
{
struct exynos_drm_fb * exynos_fb = to_exynos_fb ( fb ) ;
return drm_gem_handle_create ( file_priv ,
2015-10-02 09:33:47 +09:00
& exynos_fb - > exynos_gem [ 0 ] - > base , handle ) ;
2011-10-04 19:19:01 +09:00
}
2015-12-15 12:21:06 +01:00
static const struct drm_framebuffer_funcs exynos_drm_fb_funcs = {
2011-10-04 19:19:01 +09:00
. destroy = exynos_drm_fb_destroy ,
. create_handle = exynos_drm_fb_create_handle ,
} ;
2011-12-13 14:46:57 +09:00
struct drm_framebuffer *
exynos_drm_framebuffer_init ( struct drm_device * dev ,
2015-11-11 19:11:29 +02:00
const struct drm_mode_fb_cmd2 * mode_cmd ,
2015-10-02 09:33:47 +09:00
struct exynos_drm_gem * * exynos_gem ,
2015-09-01 16:22:52 +09:00
int count )
2011-10-04 19:19:01 +09:00
{
struct exynos_drm_fb * exynos_fb ;
2015-09-01 16:22:52 +09:00
int i ;
2011-10-04 19:19:01 +09:00
int ret ;
exynos_fb = kzalloc ( sizeof ( * exynos_fb ) , GFP_KERNEL ) ;
2013-08-19 19:04:55 +09:00
if ( ! exynos_fb )
2011-10-04 19:19:01 +09:00
return ERR_PTR ( - ENOMEM ) ;
2015-09-01 16:22:52 +09:00
for ( i = 0 ; i < count ; i + + ) {
2015-10-02 09:33:47 +09:00
ret = check_fb_gem_memory_type ( dev , exynos_gem [ i ] ) ;
2015-09-01 16:22:52 +09:00
if ( ret < 0 )
goto err ;
2015-10-02 09:33:47 +09:00
exynos_fb - > exynos_gem [ i ] = exynos_gem [ i ] ;
2015-11-30 14:53:21 +01:00
exynos_fb - > dma_addr [ i ] = exynos_gem [ i ] - > dma_addr
+ mode_cmd - > offsets [ i ] ;
2015-09-01 16:22:52 +09:00
}
drm: Pass 'dev' to drm_helper_mode_fill_fb_struct()
Pass the drm_device to drm_helper_mode_fill_fb_struct() so that we can
populate fb->dev early. Will make it easier to use the fb before we
register it.
@@
identifier fb, mode_cmd;
@@
void drm_helper_mode_fill_fb_struct(
+ struct drm_device *dev,
struct drm_framebuffer *fb,
const struct drm_mode_fb_cmd2 *mode_cmd
);
@@
identifier fb, mode_cmd;
@@
void drm_helper_mode_fill_fb_struct(
+ struct drm_device *dev,
struct drm_framebuffer *fb,
const struct drm_mode_fb_cmd2 *mode_cmd
)
{ ... }
@@
function func;
identifier dev;
expression E1, E2;
@@
func(struct drm_device *dev, ...)
{
...
drm_helper_mode_fill_fb_struct(
+ dev,
E1, E2);
...
}
@@
expression E1, E2;
@@
drm_helper_mode_fill_fb_struct(
+ dev,
E1, E2);
v2: Rerun spatch due to code changes
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1481748539-18283-1-git-send-email-ville.syrjala@linux.intel.com
2016-12-14 22:48:59 +02:00
drm_helper_mode_fill_fb_struct ( dev , & exynos_fb - > fb , mode_cmd ) ;
2015-09-01 16:22:47 +09:00
2011-12-13 14:46:57 +09:00
ret = drm_framebuffer_init ( dev , & exynos_fb - > fb , & exynos_drm_fb_funcs ) ;
2015-09-01 16:22:52 +09:00
if ( ret < 0 ) {
2011-12-13 14:46:57 +09:00
DRM_ERROR ( " failed to initialize framebuffer \n " ) ;
2015-09-01 16:22:52 +09:00
goto err ;
2011-10-04 19:19:01 +09:00
}
2011-12-13 14:46:57 +09:00
return & exynos_fb - > fb ;
2015-09-01 16:22:52 +09:00
err :
kfree ( exynos_fb ) ;
return ERR_PTR ( ret ) ;
2011-10-04 19:19:01 +09:00
}
2011-12-13 14:46:57 +09:00
static struct drm_framebuffer *
exynos_user_fb_create ( struct drm_device * dev , struct drm_file * file_priv ,
2015-11-11 19:11:29 +02:00
const struct drm_mode_fb_cmd2 * mode_cmd )
2011-10-04 19:19:01 +09:00
{
2015-10-02 09:33:47 +09:00
struct exynos_drm_gem * exynos_gem [ MAX_FB_BUFFER ] ;
2011-12-13 14:46:57 +09:00
struct drm_gem_object * obj ;
2015-09-01 16:22:53 +09:00
struct drm_framebuffer * fb ;
int i ;
int ret ;
2011-12-15 14:36:22 +09:00
2015-09-01 16:22:53 +09:00
for ( i = 0 ; i < drm_format_num_planes ( mode_cmd - > pixel_format ) ; i + + ) {
2016-05-09 11:04:54 +01:00
obj = drm_gem_object_lookup ( file_priv , mode_cmd - > handles [ i ] ) ;
2011-12-15 14:36:22 +09:00
if ( ! obj ) {
DRM_ERROR ( " failed to lookup gem object \n " ) ;
2013-02-12 21:23:54 +09:00
ret = - ENOENT ;
2015-09-01 16:22:51 +09:00
goto err ;
2011-12-15 14:36:22 +09:00
}
2015-10-02 09:33:47 +09:00
exynos_gem [ i ] = to_exynos_gem ( obj ) ;
2011-12-15 14:36:22 +09:00
}
2015-10-02 09:33:47 +09:00
fb = exynos_drm_framebuffer_init ( dev , mode_cmd , exynos_gem , i ) ;
2015-09-01 16:22:53 +09:00
if ( IS_ERR ( fb ) ) {
ret = PTR_ERR ( fb ) ;
2015-09-01 16:22:51 +09:00
goto err ;
2012-12-14 13:39:03 +09:00
}
2015-09-01 16:22:53 +09:00
return fb ;
2013-02-12 21:23:54 +09:00
2015-09-01 16:22:51 +09:00
err :
2015-09-01 16:22:53 +09:00
while ( i - - )
2015-10-02 09:33:47 +09:00
drm_gem_object_unreference_unlocked ( & exynos_gem [ i ] - > base ) ;
2013-02-12 21:23:54 +09:00
return ERR_PTR ( ret ) ;
2011-10-04 19:19:01 +09:00
}
2015-11-30 14:53:21 +01:00
dma_addr_t exynos_drm_fb_dma_addr ( struct drm_framebuffer * fb , int index )
2011-10-04 19:19:01 +09:00
{
struct exynos_drm_fb * exynos_fb = to_exynos_fb ( fb ) ;
2011-12-15 14:36:22 +09:00
if ( index > = MAX_FB_BUFFER )
2015-11-30 14:53:21 +01:00
return DMA_ERROR_CODE ;
2011-12-15 14:36:22 +09:00
2015-11-30 14:53:21 +01:00
return exynos_fb - > dma_addr [ index ] ;
2011-10-04 19:19:01 +09:00
}
2017-01-20 12:51:41 +09:00
static void exynos_drm_atomic_commit_tail ( struct drm_atomic_state * state )
{
struct drm_device * dev = state - > dev ;
drm_atomic_helper_commit_modeset_disables ( dev , state ) ;
drm_atomic_helper_commit_modeset_enables ( dev , state ) ;
/*
* Exynos can ' t update planes with CRTCs and encoders disabled ,
* its updates routines , specially for FIMD , requires the clocks
* to be enabled . So it is necessary to handle the modeset operations
* * before * the commit_planes ( ) step , this way it will always
* have the relevant clocks enabled to perform the update .
*/
drm_atomic_helper_commit_planes ( dev , state ,
DRM_PLANE_COMMIT_ACTIVE_ONLY ) ;
drm_atomic_helper_commit_hw_done ( state ) ;
drm_atomic_helper_wait_for_vblanks ( dev , state ) ;
drm_atomic_helper_cleanup_planes ( dev , state ) ;
}
static struct drm_mode_config_helper_funcs exynos_drm_mode_config_helpers = {
. atomic_commit_tail = exynos_drm_atomic_commit_tail ,
} ;
2012-05-17 13:27:23 +02:00
static const struct drm_mode_config_funcs exynos_drm_mode_config_funcs = {
2011-12-13 14:46:57 +09:00
. fb_create = exynos_user_fb_create ,
2011-10-18 16:58:05 +09:00
. output_poll_changed = exynos_drm_output_poll_changed ,
2016-10-10 17:50:56 +03:00
. atomic_check = exynos_atomic_check ,
2017-01-20 12:51:41 +09:00
. atomic_commit = drm_atomic_helper_commit ,
2011-10-04 19:19:01 +09:00
} ;
void exynos_drm_mode_config_init ( struct drm_device * dev )
{
dev - > mode_config . min_width = 0 ;
dev - > mode_config . min_height = 0 ;
/*
* set max width and height as default value ( 4096 x4096 ) .
* this value would be used to check framebuffer size limitation
* at drm_mode_addfb ( ) .
*/
dev - > mode_config . max_width = 4096 ;
dev - > mode_config . max_height = 4096 ;
dev - > mode_config . funcs = & exynos_drm_mode_config_funcs ;
2017-01-20 12:51:41 +09:00
dev - > mode_config . helper_private = & exynos_drm_mode_config_helpers ;
2011-10-04 19:19:01 +09:00
}