drm/msm: basic KMS driver for snapdragon
The snapdragon chips have multiple different display controllers,
depending on which chip variant/version. (As far as I can tell, current
devices have either MDP3 or MDP4, and upcoming devices have MDSS.) And
then external to the display controller are HDMI, DSI, etc. blocks which
may be shared across devices which have different display controller
blocks.
To more easily add support for different display controller blocks, the
display controller specific bits are split out into a "kms" module,
which provides the kms plane/crtc/encoder objects.
The external HDMI, DSI, etc. blocks are part encoder, and part connector
currently. But I think I will pull in the drm_bridge patches from
chromeos tree, and split them into a bridge+connector, with the
registers that need to be set in modeset handled by the bridge. This
would remove the 'msm_connector' base class. But some things need to be
double checked to make sure I could get the correct ON/OFF sequencing..
This patch adds support for mdp4 crtc (including hw cursor), dtv encoder
(part of MDP4 block), and hdmi.
Signed-off-by: Rob Clark <robdclark@gmail.com>
2013-06-27 00:44:06 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2013 Red Hat
|
|
|
|
* Author: Rob Clark <robdclark@gmail.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License version 2 as published by
|
|
|
|
* the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along with
|
|
|
|
* this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "msm_drv.h"
|
|
|
|
|
|
|
|
#include "drm_crtc.h"
|
|
|
|
#include "drm_fb_helper.h"
|
2014-06-19 04:55:27 +08:00
|
|
|
#include "msm_gem.h"
|
|
|
|
|
|
|
|
extern int msm_gem_mmap_obj(struct drm_gem_object *obj,
|
|
|
|
struct vm_area_struct *vma);
|
|
|
|
static int msm_fbdev_mmap(struct fb_info *info, struct vm_area_struct *vma);
|
drm/msm: basic KMS driver for snapdragon
The snapdragon chips have multiple different display controllers,
depending on which chip variant/version. (As far as I can tell, current
devices have either MDP3 or MDP4, and upcoming devices have MDSS.) And
then external to the display controller are HDMI, DSI, etc. blocks which
may be shared across devices which have different display controller
blocks.
To more easily add support for different display controller blocks, the
display controller specific bits are split out into a "kms" module,
which provides the kms plane/crtc/encoder objects.
The external HDMI, DSI, etc. blocks are part encoder, and part connector
currently. But I think I will pull in the drm_bridge patches from
chromeos tree, and split them into a bridge+connector, with the
registers that need to be set in modeset handled by the bridge. This
would remove the 'msm_connector' base class. But some things need to be
double checked to make sure I could get the correct ON/OFF sequencing..
This patch adds support for mdp4 crtc (including hw cursor), dtv encoder
(part of MDP4 block), and hdmi.
Signed-off-by: Rob Clark <robdclark@gmail.com>
2013-06-27 00:44:06 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* fbdev funcs, to implement legacy fbdev interface on top of drm driver
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define to_msm_fbdev(x) container_of(x, struct msm_fbdev, base)
|
|
|
|
|
|
|
|
struct msm_fbdev {
|
|
|
|
struct drm_fb_helper base;
|
|
|
|
struct drm_framebuffer *fb;
|
|
|
|
struct drm_gem_object *bo;
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct fb_ops msm_fb_ops = {
|
|
|
|
.owner = THIS_MODULE,
|
|
|
|
|
|
|
|
/* Note: to properly handle manual update displays, we wrap the
|
|
|
|
* basic fbdev ops which write to the framebuffer
|
|
|
|
*/
|
|
|
|
.fb_read = fb_sys_read,
|
|
|
|
.fb_write = fb_sys_write,
|
|
|
|
.fb_fillrect = sys_fillrect,
|
|
|
|
.fb_copyarea = sys_copyarea,
|
|
|
|
.fb_imageblit = sys_imageblit,
|
2014-06-19 04:55:27 +08:00
|
|
|
.fb_mmap = msm_fbdev_mmap,
|
drm/msm: basic KMS driver for snapdragon
The snapdragon chips have multiple different display controllers,
depending on which chip variant/version. (As far as I can tell, current
devices have either MDP3 or MDP4, and upcoming devices have MDSS.) And
then external to the display controller are HDMI, DSI, etc. blocks which
may be shared across devices which have different display controller
blocks.
To more easily add support for different display controller blocks, the
display controller specific bits are split out into a "kms" module,
which provides the kms plane/crtc/encoder objects.
The external HDMI, DSI, etc. blocks are part encoder, and part connector
currently. But I think I will pull in the drm_bridge patches from
chromeos tree, and split them into a bridge+connector, with the
registers that need to be set in modeset handled by the bridge. This
would remove the 'msm_connector' base class. But some things need to be
double checked to make sure I could get the correct ON/OFF sequencing..
This patch adds support for mdp4 crtc (including hw cursor), dtv encoder
(part of MDP4 block), and hdmi.
Signed-off-by: Rob Clark <robdclark@gmail.com>
2013-06-27 00:44:06 +08:00
|
|
|
|
|
|
|
.fb_check_var = drm_fb_helper_check_var,
|
|
|
|
.fb_set_par = drm_fb_helper_set_par,
|
|
|
|
.fb_pan_display = drm_fb_helper_pan_display,
|
|
|
|
.fb_blank = drm_fb_helper_blank,
|
|
|
|
.fb_setcmap = drm_fb_helper_setcmap,
|
|
|
|
};
|
|
|
|
|
2014-06-19 04:55:27 +08:00
|
|
|
static int msm_fbdev_mmap(struct fb_info *info, struct vm_area_struct *vma)
|
|
|
|
{
|
|
|
|
struct drm_fb_helper *helper = (struct drm_fb_helper *)info->par;
|
|
|
|
struct msm_fbdev *fbdev = to_msm_fbdev(helper);
|
|
|
|
struct drm_gem_object *drm_obj = fbdev->bo;
|
|
|
|
struct drm_device *dev = helper->dev;
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
if (drm_device_is_unplugged(dev))
|
|
|
|
return -ENODEV;
|
|
|
|
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
|
|
|
|
|
|
|
ret = drm_gem_mmap_obj(drm_obj, drm_obj->size, vma);
|
|
|
|
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
|
|
|
if (ret) {
|
|
|
|
pr_err("%s:drm_gem_mmap_obj fail\n", __func__);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
return msm_gem_mmap_obj(drm_obj, vma);
|
|
|
|
}
|
|
|
|
|
drm/msm: basic KMS driver for snapdragon
The snapdragon chips have multiple different display controllers,
depending on which chip variant/version. (As far as I can tell, current
devices have either MDP3 or MDP4, and upcoming devices have MDSS.) And
then external to the display controller are HDMI, DSI, etc. blocks which
may be shared across devices which have different display controller
blocks.
To more easily add support for different display controller blocks, the
display controller specific bits are split out into a "kms" module,
which provides the kms plane/crtc/encoder objects.
The external HDMI, DSI, etc. blocks are part encoder, and part connector
currently. But I think I will pull in the drm_bridge patches from
chromeos tree, and split them into a bridge+connector, with the
registers that need to be set in modeset handled by the bridge. This
would remove the 'msm_connector' base class. But some things need to be
double checked to make sure I could get the correct ON/OFF sequencing..
This patch adds support for mdp4 crtc (including hw cursor), dtv encoder
(part of MDP4 block), and hdmi.
Signed-off-by: Rob Clark <robdclark@gmail.com>
2013-06-27 00:44:06 +08:00
|
|
|
static int msm_fbdev_create(struct drm_fb_helper *helper,
|
|
|
|
struct drm_fb_helper_surface_size *sizes)
|
|
|
|
{
|
|
|
|
struct msm_fbdev *fbdev = to_msm_fbdev(helper);
|
|
|
|
struct drm_device *dev = helper->dev;
|
|
|
|
struct drm_framebuffer *fb = NULL;
|
|
|
|
struct fb_info *fbi = NULL;
|
|
|
|
struct drm_mode_fb_cmd2 mode_cmd = {0};
|
2014-06-03 00:17:29 +08:00
|
|
|
uint32_t paddr;
|
drm/msm: basic KMS driver for snapdragon
The snapdragon chips have multiple different display controllers,
depending on which chip variant/version. (As far as I can tell, current
devices have either MDP3 or MDP4, and upcoming devices have MDSS.) And
then external to the display controller are HDMI, DSI, etc. blocks which
may be shared across devices which have different display controller
blocks.
To more easily add support for different display controller blocks, the
display controller specific bits are split out into a "kms" module,
which provides the kms plane/crtc/encoder objects.
The external HDMI, DSI, etc. blocks are part encoder, and part connector
currently. But I think I will pull in the drm_bridge patches from
chromeos tree, and split them into a bridge+connector, with the
registers that need to be set in modeset handled by the bridge. This
would remove the 'msm_connector' base class. But some things need to be
double checked to make sure I could get the correct ON/OFF sequencing..
This patch adds support for mdp4 crtc (including hw cursor), dtv encoder
(part of MDP4 block), and hdmi.
Signed-off-by: Rob Clark <robdclark@gmail.com>
2013-06-27 00:44:06 +08:00
|
|
|
int ret, size;
|
|
|
|
|
|
|
|
sizes->surface_bpp = 32;
|
2014-04-25 20:50:08 +08:00
|
|
|
sizes->surface_depth = 24;
|
drm/msm: basic KMS driver for snapdragon
The snapdragon chips have multiple different display controllers,
depending on which chip variant/version. (As far as I can tell, current
devices have either MDP3 or MDP4, and upcoming devices have MDSS.) And
then external to the display controller are HDMI, DSI, etc. blocks which
may be shared across devices which have different display controller
blocks.
To more easily add support for different display controller blocks, the
display controller specific bits are split out into a "kms" module,
which provides the kms plane/crtc/encoder objects.
The external HDMI, DSI, etc. blocks are part encoder, and part connector
currently. But I think I will pull in the drm_bridge patches from
chromeos tree, and split them into a bridge+connector, with the
registers that need to be set in modeset handled by the bridge. This
would remove the 'msm_connector' base class. But some things need to be
double checked to make sure I could get the correct ON/OFF sequencing..
This patch adds support for mdp4 crtc (including hw cursor), dtv encoder
(part of MDP4 block), and hdmi.
Signed-off-by: Rob Clark <robdclark@gmail.com>
2013-06-27 00:44:06 +08:00
|
|
|
|
|
|
|
DBG("create fbdev: %dx%d@%d (%dx%d)", sizes->surface_width,
|
|
|
|
sizes->surface_height, sizes->surface_bpp,
|
|
|
|
sizes->fb_width, sizes->fb_height);
|
|
|
|
|
|
|
|
mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp,
|
|
|
|
sizes->surface_depth);
|
|
|
|
|
|
|
|
mode_cmd.width = sizes->surface_width;
|
|
|
|
mode_cmd.height = sizes->surface_height;
|
|
|
|
|
|
|
|
mode_cmd.pitches[0] = align_pitch(
|
|
|
|
mode_cmd.width, sizes->surface_bpp);
|
|
|
|
|
|
|
|
/* allocate backing bo */
|
|
|
|
size = mode_cmd.pitches[0] * mode_cmd.height;
|
|
|
|
DBG("allocating %d bytes for fb %d", size, dev->primary->index);
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
|
|
|
fbdev->bo = msm_gem_new(dev, size, MSM_BO_SCANOUT | MSM_BO_WC);
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
if (IS_ERR(fbdev->bo)) {
|
|
|
|
ret = PTR_ERR(fbdev->bo);
|
|
|
|
fbdev->bo = NULL;
|
|
|
|
dev_err(dev->dev, "failed to allocate buffer object: %d\n", ret);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
fb = msm_framebuffer_init(dev, &mode_cmd, &fbdev->bo);
|
|
|
|
if (IS_ERR(fb)) {
|
|
|
|
dev_err(dev->dev, "failed to allocate fb\n");
|
|
|
|
/* note: if fb creation failed, we can't rely on fb destroy
|
|
|
|
* to unref the bo:
|
|
|
|
*/
|
|
|
|
drm_gem_object_unreference(fbdev->bo);
|
|
|
|
ret = PTR_ERR(fb);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
|
|
|
|
2014-06-19 04:55:27 +08:00
|
|
|
/*
|
|
|
|
* NOTE: if we can be guaranteed to be able to map buffer
|
|
|
|
* in panic (ie. lock-safe, etc) we could avoid pinning the
|
|
|
|
* buffer now:
|
|
|
|
*/
|
|
|
|
ret = msm_gem_get_iova_locked(fbdev->bo, 0, &paddr);
|
|
|
|
if (ret) {
|
|
|
|
dev_err(dev->dev, "failed to get buffer obj iova: %d\n", ret);
|
|
|
|
goto fail;
|
|
|
|
}
|
drm/msm: basic KMS driver for snapdragon
The snapdragon chips have multiple different display controllers,
depending on which chip variant/version. (As far as I can tell, current
devices have either MDP3 or MDP4, and upcoming devices have MDSS.) And
then external to the display controller are HDMI, DSI, etc. blocks which
may be shared across devices which have different display controller
blocks.
To more easily add support for different display controller blocks, the
display controller specific bits are split out into a "kms" module,
which provides the kms plane/crtc/encoder objects.
The external HDMI, DSI, etc. blocks are part encoder, and part connector
currently. But I think I will pull in the drm_bridge patches from
chromeos tree, and split them into a bridge+connector, with the
registers that need to be set in modeset handled by the bridge. This
would remove the 'msm_connector' base class. But some things need to be
double checked to make sure I could get the correct ON/OFF sequencing..
This patch adds support for mdp4 crtc (including hw cursor), dtv encoder
(part of MDP4 block), and hdmi.
Signed-off-by: Rob Clark <robdclark@gmail.com>
2013-06-27 00:44:06 +08:00
|
|
|
|
|
|
|
fbi = framebuffer_alloc(0, dev->dev);
|
|
|
|
if (!fbi) {
|
|
|
|
dev_err(dev->dev, "failed to allocate fb info\n");
|
|
|
|
ret = -ENOMEM;
|
|
|
|
goto fail_unlock;
|
|
|
|
}
|
|
|
|
|
|
|
|
DBG("fbi=%p, dev=%p", fbi, dev);
|
|
|
|
|
|
|
|
fbdev->fb = fb;
|
|
|
|
helper->fb = fb;
|
|
|
|
helper->fbdev = fbi;
|
|
|
|
|
|
|
|
fbi->par = helper;
|
|
|
|
fbi->flags = FBINFO_DEFAULT;
|
|
|
|
fbi->fbops = &msm_fb_ops;
|
|
|
|
|
|
|
|
strcpy(fbi->fix.id, "msm");
|
|
|
|
|
|
|
|
ret = fb_alloc_cmap(&fbi->cmap, 256, 0);
|
|
|
|
if (ret) {
|
|
|
|
ret = -ENOMEM;
|
|
|
|
goto fail_unlock;
|
|
|
|
}
|
|
|
|
|
|
|
|
drm_fb_helper_fill_fix(fbi, fb->pitches[0], fb->depth);
|
|
|
|
drm_fb_helper_fill_var(fbi, helper, sizes->fb_width, sizes->fb_height);
|
|
|
|
|
|
|
|
dev->mode_config.fb_base = paddr;
|
|
|
|
|
|
|
|
fbi->screen_base = msm_gem_vaddr_locked(fbdev->bo);
|
|
|
|
fbi->screen_size = fbdev->bo->size;
|
|
|
|
fbi->fix.smem_start = paddr;
|
|
|
|
fbi->fix.smem_len = fbdev->bo->size;
|
|
|
|
|
|
|
|
DBG("par=%p, %dx%d", fbi->par, fbi->var.xres, fbi->var.yres);
|
|
|
|
DBG("allocated %dx%d fb", fbdev->fb->width, fbdev->fb->height);
|
|
|
|
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
fail_unlock:
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
fail:
|
|
|
|
|
|
|
|
if (ret) {
|
|
|
|
if (fbi)
|
|
|
|
framebuffer_release(fbi);
|
|
|
|
if (fb) {
|
|
|
|
drm_framebuffer_unregister_private(fb);
|
|
|
|
drm_framebuffer_remove(fb);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void msm_crtc_fb_gamma_set(struct drm_crtc *crtc,
|
|
|
|
u16 red, u16 green, u16 blue, int regno)
|
|
|
|
{
|
|
|
|
DBG("fbdev: set gamma");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void msm_crtc_fb_gamma_get(struct drm_crtc *crtc,
|
|
|
|
u16 *red, u16 *green, u16 *blue, int regno)
|
|
|
|
{
|
|
|
|
DBG("fbdev: get gamma");
|
|
|
|
}
|
|
|
|
|
2014-06-27 23:19:23 +08:00
|
|
|
static const struct drm_fb_helper_funcs msm_fb_helper_funcs = {
|
drm/msm: basic KMS driver for snapdragon
The snapdragon chips have multiple different display controllers,
depending on which chip variant/version. (As far as I can tell, current
devices have either MDP3 or MDP4, and upcoming devices have MDSS.) And
then external to the display controller are HDMI, DSI, etc. blocks which
may be shared across devices which have different display controller
blocks.
To more easily add support for different display controller blocks, the
display controller specific bits are split out into a "kms" module,
which provides the kms plane/crtc/encoder objects.
The external HDMI, DSI, etc. blocks are part encoder, and part connector
currently. But I think I will pull in the drm_bridge patches from
chromeos tree, and split them into a bridge+connector, with the
registers that need to be set in modeset handled by the bridge. This
would remove the 'msm_connector' base class. But some things need to be
double checked to make sure I could get the correct ON/OFF sequencing..
This patch adds support for mdp4 crtc (including hw cursor), dtv encoder
(part of MDP4 block), and hdmi.
Signed-off-by: Rob Clark <robdclark@gmail.com>
2013-06-27 00:44:06 +08:00
|
|
|
.gamma_set = msm_crtc_fb_gamma_set,
|
|
|
|
.gamma_get = msm_crtc_fb_gamma_get,
|
|
|
|
.fb_probe = msm_fbdev_create,
|
|
|
|
};
|
|
|
|
|
|
|
|
/* initialize fbdev helper */
|
|
|
|
struct drm_fb_helper *msm_fbdev_init(struct drm_device *dev)
|
|
|
|
{
|
|
|
|
struct msm_drm_private *priv = dev->dev_private;
|
|
|
|
struct msm_fbdev *fbdev = NULL;
|
|
|
|
struct drm_fb_helper *helper;
|
2014-06-19 04:55:27 +08:00
|
|
|
int ret;
|
drm/msm: basic KMS driver for snapdragon
The snapdragon chips have multiple different display controllers,
depending on which chip variant/version. (As far as I can tell, current
devices have either MDP3 or MDP4, and upcoming devices have MDSS.) And
then external to the display controller are HDMI, DSI, etc. blocks which
may be shared across devices which have different display controller
blocks.
To more easily add support for different display controller blocks, the
display controller specific bits are split out into a "kms" module,
which provides the kms plane/crtc/encoder objects.
The external HDMI, DSI, etc. blocks are part encoder, and part connector
currently. But I think I will pull in the drm_bridge patches from
chromeos tree, and split them into a bridge+connector, with the
registers that need to be set in modeset handled by the bridge. This
would remove the 'msm_connector' base class. But some things need to be
double checked to make sure I could get the correct ON/OFF sequencing..
This patch adds support for mdp4 crtc (including hw cursor), dtv encoder
(part of MDP4 block), and hdmi.
Signed-off-by: Rob Clark <robdclark@gmail.com>
2013-06-27 00:44:06 +08:00
|
|
|
|
|
|
|
fbdev = kzalloc(sizeof(*fbdev), GFP_KERNEL);
|
|
|
|
if (!fbdev)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
helper = &fbdev->base;
|
|
|
|
|
2014-06-27 23:19:24 +08:00
|
|
|
drm_fb_helper_prepare(dev, helper, &msm_fb_helper_funcs);
|
drm/msm: basic KMS driver for snapdragon
The snapdragon chips have multiple different display controllers,
depending on which chip variant/version. (As far as I can tell, current
devices have either MDP3 or MDP4, and upcoming devices have MDSS.) And
then external to the display controller are HDMI, DSI, etc. blocks which
may be shared across devices which have different display controller
blocks.
To more easily add support for different display controller blocks, the
display controller specific bits are split out into a "kms" module,
which provides the kms plane/crtc/encoder objects.
The external HDMI, DSI, etc. blocks are part encoder, and part connector
currently. But I think I will pull in the drm_bridge patches from
chromeos tree, and split them into a bridge+connector, with the
registers that need to be set in modeset handled by the bridge. This
would remove the 'msm_connector' base class. But some things need to be
double checked to make sure I could get the correct ON/OFF sequencing..
This patch adds support for mdp4 crtc (including hw cursor), dtv encoder
(part of MDP4 block), and hdmi.
Signed-off-by: Rob Clark <robdclark@gmail.com>
2013-06-27 00:44:06 +08:00
|
|
|
|
|
|
|
ret = drm_fb_helper_init(dev, helper,
|
|
|
|
priv->num_crtcs, priv->num_connectors);
|
|
|
|
if (ret) {
|
|
|
|
dev_err(dev->dev, "could not init fbdev: ret=%d\n", ret);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
drm_fb_helper_single_add_all_connectors(helper);
|
|
|
|
|
|
|
|
/* disable all the possible outputs/crtcs before entering KMS mode */
|
|
|
|
drm_helper_disable_unused_functions(dev);
|
|
|
|
|
|
|
|
drm_fb_helper_initial_config(helper, 32);
|
|
|
|
|
|
|
|
priv->fbdev = helper;
|
|
|
|
|
|
|
|
return helper;
|
|
|
|
|
|
|
|
fail:
|
|
|
|
kfree(fbdev);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void msm_fbdev_free(struct drm_device *dev)
|
|
|
|
{
|
|
|
|
struct msm_drm_private *priv = dev->dev_private;
|
|
|
|
struct drm_fb_helper *helper = priv->fbdev;
|
|
|
|
struct msm_fbdev *fbdev;
|
|
|
|
struct fb_info *fbi;
|
|
|
|
|
|
|
|
DBG();
|
|
|
|
|
|
|
|
fbi = helper->fbdev;
|
|
|
|
|
|
|
|
/* only cleanup framebuffer if it is present */
|
|
|
|
if (fbi) {
|
|
|
|
unregister_framebuffer(fbi);
|
|
|
|
framebuffer_release(fbi);
|
|
|
|
}
|
|
|
|
|
|
|
|
drm_fb_helper_fini(helper);
|
|
|
|
|
|
|
|
fbdev = to_msm_fbdev(priv->fbdev);
|
|
|
|
|
|
|
|
/* this will free the backing object */
|
|
|
|
if (fbdev->fb) {
|
|
|
|
drm_framebuffer_unregister_private(fbdev->fb);
|
|
|
|
drm_framebuffer_remove(fbdev->fb);
|
|
|
|
}
|
|
|
|
|
|
|
|
kfree(fbdev);
|
|
|
|
|
|
|
|
priv->fbdev = NULL;
|
|
|
|
}
|