2011-10-04 10:19:01 +00:00
|
|
|
/* exynos_drm_fbdev.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 17:30:17 +00: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 10:19:01 +00:00
|
|
|
*/
|
|
|
|
|
2012-10-02 17:01:07 +00:00
|
|
|
#include <drm/drmP.h>
|
|
|
|
#include <drm/drm_crtc.h>
|
|
|
|
#include <drm/drm_fb_helper.h>
|
|
|
|
#include <drm/drm_crtc_helper.h>
|
2013-08-06 11:52:04 +00:00
|
|
|
#include <drm/exynos_drm.h>
|
2011-10-04 10:19:01 +00:00
|
|
|
|
|
|
|
#include "exynos_drm_drv.h"
|
|
|
|
#include "exynos_drm_fb.h"
|
2013-08-12 23:46:40 +00:00
|
|
|
#include "exynos_drm_fbdev.h"
|
2011-11-12 06:23:32 +00:00
|
|
|
#include "exynos_drm_gem.h"
|
2012-12-21 08:59:20 +00:00
|
|
|
#include "exynos_drm_iommu.h"
|
2011-10-04 10:19:01 +00:00
|
|
|
|
|
|
|
#define MAX_CONNECTOR 4
|
|
|
|
#define PREFERRED_BPP 32
|
|
|
|
|
|
|
|
#define to_exynos_fbdev(x) container_of(x, struct exynos_drm_fbdev,\
|
|
|
|
drm_fb_helper)
|
|
|
|
|
|
|
|
struct exynos_drm_fbdev {
|
2011-12-13 05:46:57 +00:00
|
|
|
struct drm_fb_helper drm_fb_helper;
|
|
|
|
struct exynos_drm_gem_obj *exynos_gem_obj;
|
2011-10-04 10:19:01 +00:00
|
|
|
};
|
|
|
|
|
2012-11-19 08:25:28 +00:00
|
|
|
static int exynos_drm_fb_mmap(struct fb_info *info,
|
|
|
|
struct vm_area_struct *vma)
|
|
|
|
{
|
|
|
|
struct drm_fb_helper *helper = info->par;
|
|
|
|
struct exynos_drm_fbdev *exynos_fbd = to_exynos_fbdev(helper);
|
|
|
|
struct exynos_drm_gem_obj *exynos_gem_obj = exynos_fbd->exynos_gem_obj;
|
|
|
|
struct exynos_drm_gem_buf *buffer = exynos_gem_obj->buffer;
|
|
|
|
unsigned long vm_size;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
vma->vm_flags |= VM_IO | VM_DONTEXPAND | VM_DONTDUMP;
|
|
|
|
|
|
|
|
vm_size = vma->vm_end - vma->vm_start;
|
|
|
|
|
|
|
|
if (vm_size > buffer->size)
|
|
|
|
return -EINVAL;
|
|
|
|
|
2012-12-07 08:51:27 +00:00
|
|
|
ret = dma_mmap_attrs(helper->dev->dev, vma, buffer->pages,
|
2012-11-19 08:25:28 +00:00
|
|
|
buffer->dma_addr, buffer->size, &buffer->dma_attrs);
|
|
|
|
if (ret < 0) {
|
|
|
|
DRM_ERROR("failed to mmap.\n");
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-10-04 10:19:01 +00:00
|
|
|
static struct fb_ops exynos_drm_fb_ops = {
|
|
|
|
.owner = THIS_MODULE,
|
2012-11-19 08:25:28 +00:00
|
|
|
.fb_mmap = exynos_drm_fb_mmap,
|
2011-10-04 10:19:01 +00:00
|
|
|
.fb_fillrect = cfb_fillrect,
|
|
|
|
.fb_copyarea = cfb_copyarea,
|
|
|
|
.fb_imageblit = cfb_imageblit,
|
|
|
|
.fb_check_var = drm_fb_helper_check_var,
|
2012-02-01 10:38:37 +00:00
|
|
|
.fb_set_par = drm_fb_helper_set_par,
|
2011-10-04 10:19:01 +00:00
|
|
|
.fb_blank = drm_fb_helper_blank,
|
|
|
|
.fb_pan_display = drm_fb_helper_pan_display,
|
|
|
|
.fb_setcmap = drm_fb_helper_setcmap,
|
|
|
|
};
|
|
|
|
|
2011-10-14 04:29:46 +00:00
|
|
|
static int exynos_drm_fbdev_update(struct drm_fb_helper *helper,
|
2011-11-04 04:44:38 +00:00
|
|
|
struct drm_framebuffer *fb)
|
2011-10-04 10:19:01 +00:00
|
|
|
{
|
|
|
|
struct fb_info *fbi = helper->fbdev;
|
|
|
|
struct drm_device *dev = helper->dev;
|
2011-11-12 06:23:32 +00:00
|
|
|
struct exynos_drm_gem_buf *buffer;
|
2011-11-04 04:44:38 +00:00
|
|
|
unsigned int size = fb->width * fb->height * (fb->bits_per_pixel >> 3);
|
2011-10-14 04:29:46 +00:00
|
|
|
unsigned long offset;
|
2011-10-04 10:19:01 +00:00
|
|
|
|
2011-12-19 22:06:49 +00:00
|
|
|
drm_fb_helper_fill_fix(fbi, fb->pitches[0], fb->depth);
|
2011-11-04 04:44:38 +00:00
|
|
|
drm_fb_helper_fill_var(fbi, helper, fb->width, fb->height);
|
2011-10-04 10:19:01 +00:00
|
|
|
|
2011-12-15 05:36:22 +00:00
|
|
|
/* RGB formats use only one buffer */
|
|
|
|
buffer = exynos_drm_fb_buffer(fb, 0);
|
2011-11-12 06:23:32 +00:00
|
|
|
if (!buffer) {
|
2014-03-24 15:53:10 +00:00
|
|
|
DRM_DEBUG_KMS("buffer is null.\n");
|
2011-10-14 04:29:46 +00:00
|
|
|
return -EFAULT;
|
|
|
|
}
|
2011-10-04 10:19:01 +00:00
|
|
|
|
2012-12-07 08:51:27 +00:00
|
|
|
/* map pages with kernel virtual space. */
|
|
|
|
if (!buffer->kvaddr) {
|
2012-12-21 08:59:20 +00:00
|
|
|
if (is_drm_iommu_supported(dev)) {
|
|
|
|
unsigned int nr_pages = buffer->size >> PAGE_SHIFT;
|
|
|
|
|
2013-09-05 11:31:36 +00:00
|
|
|
buffer->kvaddr = (void __iomem *) vmap(buffer->pages,
|
|
|
|
nr_pages, VM_MAP,
|
2012-12-07 08:51:27 +00:00
|
|
|
pgprot_writecombine(PAGE_KERNEL));
|
2012-12-21 08:59:20 +00:00
|
|
|
} else {
|
|
|
|
phys_addr_t dma_addr = buffer->dma_addr;
|
|
|
|
if (dma_addr)
|
2013-09-05 11:31:36 +00:00
|
|
|
buffer->kvaddr = (void __iomem *)phys_to_virt(dma_addr);
|
2012-12-21 08:59:20 +00:00
|
|
|
else
|
|
|
|
buffer->kvaddr = (void __iomem *)NULL;
|
|
|
|
}
|
2012-12-07 08:51:27 +00:00
|
|
|
if (!buffer->kvaddr) {
|
|
|
|
DRM_ERROR("failed to map pages to kernel space.\n");
|
|
|
|
return -EIO;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-20 11:05:56 +00:00
|
|
|
/* buffer count to framebuffer always is 1 at booting time. */
|
|
|
|
exynos_drm_fb_set_buf_cnt(fb, 1);
|
|
|
|
|
2011-10-14 04:29:46 +00:00
|
|
|
offset = fbi->var.xoffset * (fb->bits_per_pixel >> 3);
|
2011-12-19 22:06:49 +00:00
|
|
|
offset += fbi->var.yoffset * fb->pitches[0];
|
2011-10-04 10:19:01 +00:00
|
|
|
|
2011-11-12 06:23:32 +00:00
|
|
|
fbi->screen_base = buffer->kvaddr + offset;
|
2011-10-04 10:19:01 +00:00
|
|
|
fbi->screen_size = size;
|
2014-09-01 12:28:00 +00:00
|
|
|
fbi->fix.smem_len = size;
|
2011-10-14 04:29:46 +00:00
|
|
|
|
|
|
|
return 0;
|
2011-10-04 10:19:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int exynos_drm_fbdev_create(struct drm_fb_helper *helper,
|
|
|
|
struct drm_fb_helper_surface_size *sizes)
|
|
|
|
{
|
|
|
|
struct exynos_drm_fbdev *exynos_fbdev = to_exynos_fbdev(helper);
|
2011-12-13 05:46:57 +00:00
|
|
|
struct exynos_drm_gem_obj *exynos_gem_obj;
|
2011-10-04 10:19:01 +00:00
|
|
|
struct drm_device *dev = helper->dev;
|
|
|
|
struct fb_info *fbi;
|
2011-12-08 06:05:19 +00:00
|
|
|
struct drm_mode_fb_cmd2 mode_cmd = { 0 };
|
2011-10-04 10:19:01 +00:00
|
|
|
struct platform_device *pdev = dev->platformdev;
|
2011-12-13 05:46:57 +00:00
|
|
|
unsigned long size;
|
2011-10-04 10:19:01 +00:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
DRM_DEBUG_KMS("surface width(%d), height(%d) and bpp(%d\n",
|
|
|
|
sizes->surface_width, sizes->surface_height,
|
|
|
|
sizes->surface_bpp);
|
|
|
|
|
|
|
|
mode_cmd.width = sizes->surface_width;
|
|
|
|
mode_cmd.height = sizes->surface_height;
|
2011-12-08 06:05:19 +00:00
|
|
|
mode_cmd.pitches[0] = sizes->surface_width * (sizes->surface_bpp >> 3);
|
|
|
|
mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp,
|
|
|
|
sizes->surface_depth);
|
2011-10-04 10:19:01 +00:00
|
|
|
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
|
|
|
|
|
|
|
fbi = framebuffer_alloc(0, &pdev->dev);
|
|
|
|
if (!fbi) {
|
|
|
|
DRM_ERROR("failed to allocate fb info.\n");
|
|
|
|
ret = -ENOMEM;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2011-12-13 05:46:57 +00:00
|
|
|
size = mode_cmd.pitches[0] * mode_cmd.height;
|
2012-03-16 09:47:05 +00:00
|
|
|
|
2013-08-06 11:52:04 +00:00
|
|
|
exynos_gem_obj = exynos_drm_gem_create(dev, EXYNOS_BO_CONTIG, size);
|
|
|
|
/*
|
|
|
|
* If physically contiguous memory allocation fails and if IOMMU is
|
|
|
|
* supported then try to get buffer from non physically contiguous
|
|
|
|
* memory area.
|
|
|
|
*/
|
|
|
|
if (IS_ERR(exynos_gem_obj) && is_drm_iommu_supported(dev)) {
|
|
|
|
dev_warn(&pdev->dev, "contiguous FB allocation failed, falling back to non-contiguous\n");
|
|
|
|
exynos_gem_obj = exynos_drm_gem_create(dev, EXYNOS_BO_NONCONTIG,
|
|
|
|
size);
|
|
|
|
}
|
|
|
|
|
2011-12-13 05:46:57 +00:00
|
|
|
if (IS_ERR(exynos_gem_obj)) {
|
|
|
|
ret = PTR_ERR(exynos_gem_obj);
|
2012-12-07 09:06:43 +00:00
|
|
|
goto err_release_framebuffer;
|
2011-12-13 05:46:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
exynos_fbdev->exynos_gem_obj = exynos_gem_obj;
|
|
|
|
|
|
|
|
helper->fb = exynos_drm_framebuffer_init(dev, &mode_cmd,
|
|
|
|
&exynos_gem_obj->base);
|
2013-04-29 06:57:05 +00:00
|
|
|
if (IS_ERR(helper->fb)) {
|
2011-10-04 10:19:01 +00:00
|
|
|
DRM_ERROR("failed to create drm framebuffer.\n");
|
2011-12-13 05:46:57 +00:00
|
|
|
ret = PTR_ERR(helper->fb);
|
2012-12-07 09:06:43 +00:00
|
|
|
goto err_destroy_gem;
|
2011-10-04 10:19:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
helper->fbdev = fbi;
|
|
|
|
|
|
|
|
fbi->par = helper;
|
|
|
|
fbi->flags = FBINFO_FLAG_DEFAULT;
|
|
|
|
fbi->fbops = &exynos_drm_fb_ops;
|
|
|
|
|
|
|
|
ret = fb_alloc_cmap(&fbi->cmap, 256, 0);
|
|
|
|
if (ret) {
|
|
|
|
DRM_ERROR("failed to allocate cmap.\n");
|
2012-12-07 09:06:43 +00:00
|
|
|
goto err_destroy_framebuffer;
|
2011-10-04 10:19:01 +00:00
|
|
|
}
|
|
|
|
|
2011-11-04 04:44:38 +00:00
|
|
|
ret = exynos_drm_fbdev_update(helper, helper->fb);
|
2012-12-07 09:06:43 +00:00
|
|
|
if (ret < 0)
|
|
|
|
goto err_dealloc_cmap;
|
|
|
|
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
err_dealloc_cmap:
|
|
|
|
fb_dealloc_cmap(&fbi->cmap);
|
|
|
|
err_destroy_framebuffer:
|
|
|
|
drm_framebuffer_cleanup(helper->fb);
|
|
|
|
err_destroy_gem:
|
|
|
|
exynos_drm_gem_destroy(exynos_gem_obj);
|
|
|
|
err_release_framebuffer:
|
|
|
|
framebuffer_release(fbi);
|
2011-10-04 10:19:01 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* if failed, all resources allocated above would be released by
|
|
|
|
* drm_mode_config_cleanup() when drm_load() had been called prior
|
|
|
|
* to any specific driver such as fimd or hdmi driver.
|
|
|
|
*/
|
|
|
|
out:
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-06-27 15:19:23 +00:00
|
|
|
static const struct drm_fb_helper_funcs exynos_drm_fb_helper_funcs = {
|
2013-01-21 22:42:49 +00:00
|
|
|
.fb_probe = exynos_drm_fbdev_create,
|
2011-10-04 10:19:01 +00:00
|
|
|
};
|
|
|
|
|
2014-04-17 10:07:22 +00:00
|
|
|
static bool exynos_drm_fbdev_is_anything_connected(struct drm_device *dev)
|
2014-03-28 11:52:38 +00:00
|
|
|
{
|
|
|
|
struct drm_connector *connector;
|
|
|
|
bool ret = false;
|
|
|
|
|
|
|
|
mutex_lock(&dev->mode_config.mutex);
|
|
|
|
list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
|
|
|
|
if (connector->status != connector_status_connected)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
ret = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
mutex_unlock(&dev->mode_config.mutex);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-10-04 10:19:01 +00:00
|
|
|
int exynos_drm_fbdev_init(struct drm_device *dev)
|
|
|
|
{
|
|
|
|
struct exynos_drm_fbdev *fbdev;
|
|
|
|
struct exynos_drm_private *private = dev->dev_private;
|
|
|
|
struct drm_fb_helper *helper;
|
|
|
|
unsigned int num_crtc;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (!dev->mode_config.num_crtc || !dev->mode_config.num_connector)
|
|
|
|
return 0;
|
|
|
|
|
2014-03-28 11:52:38 +00:00
|
|
|
if (!exynos_drm_fbdev_is_anything_connected(dev))
|
|
|
|
return 0;
|
|
|
|
|
2011-10-04 10:19:01 +00:00
|
|
|
fbdev = kzalloc(sizeof(*fbdev), GFP_KERNEL);
|
2013-08-19 10:04:55 +00:00
|
|
|
if (!fbdev)
|
2011-10-04 10:19:01 +00:00
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
private->fb_helper = helper = &fbdev->drm_fb_helper;
|
2014-06-27 15:19:24 +00:00
|
|
|
|
|
|
|
drm_fb_helper_prepare(dev, helper, &exynos_drm_fb_helper_funcs);
|
2011-10-04 10:19:01 +00:00
|
|
|
|
|
|
|
num_crtc = dev->mode_config.num_crtc;
|
|
|
|
|
|
|
|
ret = drm_fb_helper_init(dev, helper, num_crtc, MAX_CONNECTOR);
|
|
|
|
if (ret < 0) {
|
|
|
|
DRM_ERROR("failed to initialize drm fb helper.\n");
|
|
|
|
goto err_init;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = drm_fb_helper_single_add_all_connectors(helper);
|
|
|
|
if (ret < 0) {
|
|
|
|
DRM_ERROR("failed to register drm_fb_helper_connector.\n");
|
|
|
|
goto err_setup;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-01-20 22:12:54 +00:00
|
|
|
/* disable all the possible outputs/crtcs before entering KMS mode */
|
|
|
|
drm_helper_disable_unused_functions(dev);
|
|
|
|
|
2011-10-04 10:19:01 +00:00
|
|
|
ret = drm_fb_helper_initial_config(helper, PREFERRED_BPP);
|
|
|
|
if (ret < 0) {
|
|
|
|
DRM_ERROR("failed to set up hw configuration.\n");
|
|
|
|
goto err_setup;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
err_setup:
|
|
|
|
drm_fb_helper_fini(helper);
|
|
|
|
|
|
|
|
err_init:
|
|
|
|
private->fb_helper = NULL;
|
|
|
|
kfree(fbdev);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void exynos_drm_fbdev_destroy(struct drm_device *dev,
|
|
|
|
struct drm_fb_helper *fb_helper)
|
|
|
|
{
|
2012-12-07 08:51:27 +00:00
|
|
|
struct exynos_drm_fbdev *exynos_fbd = to_exynos_fbdev(fb_helper);
|
|
|
|
struct exynos_drm_gem_obj *exynos_gem_obj = exynos_fbd->exynos_gem_obj;
|
2011-10-04 10:19:01 +00:00
|
|
|
struct drm_framebuffer *fb;
|
|
|
|
|
2012-12-21 08:59:20 +00:00
|
|
|
if (is_drm_iommu_supported(dev) && exynos_gem_obj->buffer->kvaddr)
|
2012-12-07 08:51:27 +00:00
|
|
|
vunmap(exynos_gem_obj->buffer->kvaddr);
|
|
|
|
|
2011-10-04 10:19:01 +00:00
|
|
|
/* release drm framebuffer and real buffer */
|
|
|
|
if (fb_helper->fb && fb_helper->fb->funcs) {
|
|
|
|
fb = fb_helper->fb;
|
drm: revamp framebuffer cleanup interfaces
We have two classes of framebuffer
- Created by the driver (atm only for fbdev), and the driver holds
onto the last reference count until destruction.
- Created by userspace and associated with a given fd. These
framebuffers will be reaped when their assoiciated fb is closed.
Now these two cases are set up differently, the framebuffers are on
different lists and hence destruction needs to clean up different
things. Also, for userspace framebuffers we remove them from any
current usage, whereas for internal framebuffers it is assumed that
the driver has done this already.
Long story short, we need two different ways to cleanup such drivers.
Three functions are involved in total:
- drm_framebuffer_remove: Convenience function which removes the fb
from all active usage and then drops the passed-in reference.
- drm_framebuffer_unregister_private: Will remove driver-private
framebuffers from relevant lists and drop the corresponding
references. Should be called for driver-private framebuffers before
dropping the last reference (or like for a lot of the drivers where
the fbdev is embedded someplace else, before doing the cleanup
manually).
- drm_framebuffer_cleanup: Final cleanup for both classes of fbs,
should be called by the driver's ->destroy callback once the last
reference is gone.
This patch just rolls out the new interfaces and updates all drivers
(by adding calls to drm_framebuffer_unregister_private at all the
right places)- no functional changes yet. Follow-on patches will move
drm core code around and update the lifetime management for
framebuffers, so that we are no longer required to keep framebuffers
alive by locking mode_config.mutex.
I've also updated the kerneldoc already.
vmwgfx seems to again be a bit special, at least I haven't figured out
how the fbdev support in that driver works. It smells like it's
external though.
v2: The i915 driver creates another private framebuffer in the
load-detect code. Adjust its cleanup code, too.
Reviewed-by: Rob Clark <rob@ti.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2012-12-10 19:42:17 +00:00
|
|
|
if (fb) {
|
|
|
|
drm_framebuffer_unregister_private(fb);
|
2012-09-05 21:48:38 +00:00
|
|
|
drm_framebuffer_remove(fb);
|
drm: revamp framebuffer cleanup interfaces
We have two classes of framebuffer
- Created by the driver (atm only for fbdev), and the driver holds
onto the last reference count until destruction.
- Created by userspace and associated with a given fd. These
framebuffers will be reaped when their assoiciated fb is closed.
Now these two cases are set up differently, the framebuffers are on
different lists and hence destruction needs to clean up different
things. Also, for userspace framebuffers we remove them from any
current usage, whereas for internal framebuffers it is assumed that
the driver has done this already.
Long story short, we need two different ways to cleanup such drivers.
Three functions are involved in total:
- drm_framebuffer_remove: Convenience function which removes the fb
from all active usage and then drops the passed-in reference.
- drm_framebuffer_unregister_private: Will remove driver-private
framebuffers from relevant lists and drop the corresponding
references. Should be called for driver-private framebuffers before
dropping the last reference (or like for a lot of the drivers where
the fbdev is embedded someplace else, before doing the cleanup
manually).
- drm_framebuffer_cleanup: Final cleanup for both classes of fbs,
should be called by the driver's ->destroy callback once the last
reference is gone.
This patch just rolls out the new interfaces and updates all drivers
(by adding calls to drm_framebuffer_unregister_private at all the
right places)- no functional changes yet. Follow-on patches will move
drm core code around and update the lifetime management for
framebuffers, so that we are no longer required to keep framebuffers
alive by locking mode_config.mutex.
I've also updated the kerneldoc already.
vmwgfx seems to again be a bit special, at least I haven't figured out
how the fbdev support in that driver works. It smells like it's
external though.
v2: The i915 driver creates another private framebuffer in the
load-detect code. Adjust its cleanup code, too.
Reviewed-by: Rob Clark <rob@ti.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2012-12-10 19:42:17 +00:00
|
|
|
}
|
2011-10-04 10:19:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* release linux framebuffer */
|
|
|
|
if (fb_helper->fbdev) {
|
|
|
|
struct fb_info *info;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
info = fb_helper->fbdev;
|
|
|
|
ret = unregister_framebuffer(info);
|
|
|
|
if (ret < 0)
|
|
|
|
DRM_DEBUG_KMS("failed unregister_framebuffer()\n");
|
|
|
|
|
|
|
|
if (info->cmap.len)
|
|
|
|
fb_dealloc_cmap(&info->cmap);
|
|
|
|
|
|
|
|
framebuffer_release(info);
|
|
|
|
}
|
|
|
|
|
|
|
|
drm_fb_helper_fini(fb_helper);
|
|
|
|
}
|
|
|
|
|
|
|
|
void exynos_drm_fbdev_fini(struct drm_device *dev)
|
|
|
|
{
|
|
|
|
struct exynos_drm_private *private = dev->dev_private;
|
|
|
|
struct exynos_drm_fbdev *fbdev;
|
|
|
|
|
|
|
|
if (!private || !private->fb_helper)
|
|
|
|
return;
|
|
|
|
|
|
|
|
fbdev = to_exynos_fbdev(private->fb_helper);
|
|
|
|
|
2011-12-13 05:46:57 +00:00
|
|
|
if (fbdev->exynos_gem_obj)
|
|
|
|
exynos_drm_gem_destroy(fbdev->exynos_gem_obj);
|
|
|
|
|
2011-10-04 10:19:01 +00:00
|
|
|
exynos_drm_fbdev_destroy(dev, private->fb_helper);
|
|
|
|
kfree(fbdev);
|
|
|
|
private->fb_helper = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void exynos_drm_fbdev_restore_mode(struct drm_device *dev)
|
|
|
|
{
|
|
|
|
struct exynos_drm_private *private = dev->dev_private;
|
|
|
|
|
|
|
|
if (!private || !private->fb_helper)
|
|
|
|
return;
|
|
|
|
|
2014-05-30 16:29:48 +00:00
|
|
|
drm_fb_helper_restore_fbdev_mode_unlocked(private->fb_helper);
|
2011-10-04 10:19:01 +00:00
|
|
|
}
|