2009-06-05 19:42:42 +07:00
|
|
|
/*
|
|
|
|
* Copyright © 2007 David Airlie
|
|
|
|
*
|
|
|
|
* 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 (including the next
|
|
|
|
* paragraph) 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 AUTHORS OR COPYRIGHT HOLDERS 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.
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* David Airlie
|
|
|
|
*/
|
|
|
|
#include <linux/module.h>
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 15:04:11 +07:00
|
|
|
#include <linux/slab.h>
|
2009-06-05 19:42:42 +07:00
|
|
|
#include <linux/fb.h>
|
|
|
|
|
2012-10-03 00:01:07 +07:00
|
|
|
#include <drm/drmP.h>
|
|
|
|
#include <drm/drm_crtc.h>
|
|
|
|
#include <drm/drm_crtc_helper.h>
|
|
|
|
#include <drm/radeon_drm.h>
|
2009-06-05 19:42:42 +07:00
|
|
|
#include "radeon.h"
|
|
|
|
|
2012-10-03 00:01:07 +07:00
|
|
|
#include <drm/drm_fb_helper.h>
|
2009-08-28 12:46:53 +07:00
|
|
|
|
2010-02-01 12:38:10 +07:00
|
|
|
#include <linux/vga_switcheroo.h>
|
|
|
|
|
2010-03-30 12:34:13 +07:00
|
|
|
/* object hierarchy -
|
2016-03-16 18:56:45 +07:00
|
|
|
* this contains a helper + a radeon fb
|
|
|
|
* the helper contains a pointer to radeon framebuffer baseclass.
|
|
|
|
*/
|
2010-03-30 12:34:14 +07:00
|
|
|
struct radeon_fbdev {
|
2009-08-28 12:46:53 +07:00
|
|
|
struct drm_fb_helper helper;
|
2010-03-30 12:34:13 +07:00
|
|
|
struct radeon_framebuffer rfb;
|
|
|
|
struct radeon_device *rdev;
|
2009-06-05 19:42:42 +07:00
|
|
|
};
|
|
|
|
|
|
|
|
static struct fb_ops radeonfb_ops = {
|
|
|
|
.owner = THIS_MODULE,
|
2009-09-15 22:09:30 +07:00
|
|
|
.fb_check_var = drm_fb_helper_check_var,
|
2015-10-01 01:47:38 +07:00
|
|
|
.fb_set_par = drm_fb_helper_set_par,
|
2015-07-31 17:51:54 +07:00
|
|
|
.fb_fillrect = drm_fb_helper_cfb_fillrect,
|
|
|
|
.fb_copyarea = drm_fb_helper_cfb_copyarea,
|
|
|
|
.fb_imageblit = drm_fb_helper_cfb_imageblit,
|
2009-08-28 12:46:53 +07:00
|
|
|
.fb_pan_display = drm_fb_helper_pan_display,
|
|
|
|
.fb_blank = drm_fb_helper_blank,
|
2009-10-05 06:58:02 +07:00
|
|
|
.fb_setcmap = drm_fb_helper_setcmap,
|
2010-09-26 18:47:23 +07:00
|
|
|
.fb_debug_enter = drm_fb_helper_debug_enter,
|
|
|
|
.fb_debug_leave = drm_fb_helper_debug_leave,
|
2009-06-05 19:42:42 +07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-02-07 09:16:14 +07:00
|
|
|
int radeon_align_pitch(struct radeon_device *rdev, int width, int bpp, bool tiled)
|
2009-06-05 19:42:42 +07:00
|
|
|
{
|
|
|
|
int aligned = width;
|
2009-06-24 06:48:08 +07:00
|
|
|
int align_large = (ASIC_IS_AVIVO(rdev)) || tiled;
|
2009-06-05 19:42:42 +07:00
|
|
|
int pitch_mask = 0;
|
|
|
|
|
|
|
|
switch (bpp / 8) {
|
|
|
|
case 1:
|
|
|
|
pitch_mask = align_large ? 255 : 127;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
pitch_mask = align_large ? 127 : 31;
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
case 4:
|
|
|
|
pitch_mask = align_large ? 63 : 15;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
aligned += pitch_mask;
|
|
|
|
aligned &= ~pitch_mask;
|
|
|
|
return aligned;
|
|
|
|
}
|
|
|
|
|
2010-03-30 12:34:14 +07:00
|
|
|
static void radeonfb_destroy_pinned_object(struct drm_gem_object *gobj)
|
2009-06-05 19:42:42 +07:00
|
|
|
{
|
2011-02-18 23:59:17 +07:00
|
|
|
struct radeon_bo *rbo = gem_to_radeon_bo(gobj);
|
2010-03-30 12:34:14 +07:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = radeon_bo_reserve(rbo, false);
|
|
|
|
if (likely(ret == 0)) {
|
|
|
|
radeon_bo_kunmap(rbo);
|
2010-09-27 13:17:17 +07:00
|
|
|
radeon_bo_unpin(rbo);
|
2010-03-30 12:34:14 +07:00
|
|
|
radeon_bo_unreserve(rbo);
|
|
|
|
}
|
|
|
|
drm_gem_object_unreference_unlocked(gobj);
|
|
|
|
}
|
2009-08-28 12:46:53 +07:00
|
|
|
|
2010-03-30 12:34:14 +07:00
|
|
|
static int radeonfb_create_pinned_object(struct radeon_fbdev *rfbdev,
|
2011-11-15 05:51:28 +07:00
|
|
|
struct drm_mode_fb_cmd2 *mode_cmd,
|
2010-03-30 12:34:14 +07:00
|
|
|
struct drm_gem_object **gobj_p)
|
2009-06-05 19:42:42 +07:00
|
|
|
{
|
2010-03-30 12:34:14 +07:00
|
|
|
struct radeon_device *rdev = rfbdev->rdev;
|
2009-06-05 19:42:42 +07:00
|
|
|
struct drm_gem_object *gobj = NULL;
|
2009-11-20 20:29:23 +07:00
|
|
|
struct radeon_bo *rbo = NULL;
|
2009-06-24 06:48:08 +07:00
|
|
|
bool fb_tiled = false; /* useful for testing */
|
2009-09-15 22:09:30 +07:00
|
|
|
u32 tiling_flags = 0;
|
2010-03-30 12:34:14 +07:00
|
|
|
int ret;
|
|
|
|
int aligned_size, size;
|
2011-02-18 12:51:57 +07:00
|
|
|
int height = mode_cmd->height;
|
2011-11-15 05:51:28 +07:00
|
|
|
u32 bpp, depth;
|
|
|
|
|
2011-11-30 03:02:54 +07:00
|
|
|
drm_fb_get_bpp_depth(mode_cmd->pixel_format, &depth, &bpp);
|
2009-06-05 19:42:42 +07:00
|
|
|
|
|
|
|
/* need to align pitch with crtc limits */
|
2011-11-15 05:51:28 +07:00
|
|
|
mode_cmd->pitches[0] = radeon_align_pitch(rdev, mode_cmd->width, bpp,
|
|
|
|
fb_tiled) * ((bpp + 1) / 8);
|
2009-06-05 19:42:42 +07:00
|
|
|
|
2011-02-18 12:51:57 +07:00
|
|
|
if (rdev->family >= CHIP_R600)
|
|
|
|
height = ALIGN(mode_cmd->height, 8);
|
2011-11-15 05:51:28 +07:00
|
|
|
size = mode_cmd->pitches[0] * height;
|
2009-06-05 19:42:42 +07:00
|
|
|
aligned_size = ALIGN(size, PAGE_SIZE);
|
|
|
|
ret = radeon_gem_object_create(rdev, aligned_size, 0,
|
2010-03-30 12:34:14 +07:00
|
|
|
RADEON_GEM_DOMAIN_VRAM,
|
2014-07-21 18:27:27 +07:00
|
|
|
0, true, &gobj);
|
2009-06-05 19:42:42 +07:00
|
|
|
if (ret) {
|
2010-03-30 12:34:14 +07:00
|
|
|
printk(KERN_ERR "failed to allocate framebuffer (%d)\n",
|
|
|
|
aligned_size);
|
|
|
|
return -ENOMEM;
|
2009-06-05 19:42:42 +07:00
|
|
|
}
|
2011-02-18 23:59:17 +07:00
|
|
|
rbo = gem_to_radeon_bo(gobj);
|
2009-06-05 19:42:42 +07:00
|
|
|
|
2009-06-24 06:48:08 +07:00
|
|
|
if (fb_tiled)
|
2009-09-15 22:09:30 +07:00
|
|
|
tiling_flags = RADEON_TILING_MACRO;
|
|
|
|
|
|
|
|
#ifdef __BIG_ENDIAN
|
2011-11-29 18:42:50 +07:00
|
|
|
switch (bpp) {
|
2009-09-15 22:09:30 +07:00
|
|
|
case 32:
|
|
|
|
tiling_flags |= RADEON_TILING_SWAP_32BIT;
|
|
|
|
break;
|
|
|
|
case 16:
|
|
|
|
tiling_flags |= RADEON_TILING_SWAP_16BIT;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-11-20 20:29:23 +07:00
|
|
|
if (tiling_flags) {
|
|
|
|
ret = radeon_bo_set_tiling_flags(rbo,
|
2010-03-30 12:34:14 +07:00
|
|
|
tiling_flags | RADEON_TILING_SURFACE,
|
2011-11-15 05:51:28 +07:00
|
|
|
mode_cmd->pitches[0]);
|
2009-11-20 20:29:23 +07:00
|
|
|
if (ret)
|
|
|
|
dev_err(rdev->dev, "FB failed to set tiling flags\n");
|
|
|
|
}
|
2010-03-30 12:34:14 +07:00
|
|
|
|
2010-03-30 12:34:13 +07:00
|
|
|
|
2009-11-20 20:29:23 +07:00
|
|
|
ret = radeon_bo_reserve(rbo, false);
|
|
|
|
if (unlikely(ret != 0))
|
|
|
|
goto out_unref;
|
2012-03-14 23:12:42 +07:00
|
|
|
/* Only 27 bit offset for legacy CRTC */
|
|
|
|
ret = radeon_bo_pin_restricted(rbo, RADEON_GEM_DOMAIN_VRAM,
|
|
|
|
ASIC_IS_AVIVO(rdev) ? 0 : 1 << 27,
|
|
|
|
NULL);
|
2009-11-20 20:29:23 +07:00
|
|
|
if (ret) {
|
|
|
|
radeon_bo_unreserve(rbo);
|
|
|
|
goto out_unref;
|
|
|
|
}
|
|
|
|
if (fb_tiled)
|
|
|
|
radeon_bo_check_tiling(rbo, 0, 0);
|
2010-03-30 12:34:14 +07:00
|
|
|
ret = radeon_bo_kmap(rbo, NULL);
|
2009-11-20 20:29:23 +07:00
|
|
|
radeon_bo_unreserve(rbo);
|
2009-06-22 23:15:58 +07:00
|
|
|
if (ret) {
|
|
|
|
goto out_unref;
|
|
|
|
}
|
2009-06-05 19:42:42 +07:00
|
|
|
|
2010-03-30 12:34:14 +07:00
|
|
|
*gobj_p = gobj;
|
|
|
|
return 0;
|
|
|
|
out_unref:
|
|
|
|
radeonfb_destroy_pinned_object(gobj);
|
|
|
|
*gobj_p = NULL;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2013-01-22 05:42:49 +07:00
|
|
|
static int radeonfb_create(struct drm_fb_helper *helper,
|
2010-03-30 12:34:14 +07:00
|
|
|
struct drm_fb_helper_surface_size *sizes)
|
|
|
|
{
|
2014-09-14 23:40:16 +07:00
|
|
|
struct radeon_fbdev *rfbdev =
|
|
|
|
container_of(helper, struct radeon_fbdev, helper);
|
2010-03-30 12:34:14 +07:00
|
|
|
struct radeon_device *rdev = rfbdev->rdev;
|
|
|
|
struct fb_info *info;
|
|
|
|
struct drm_framebuffer *fb = NULL;
|
2011-11-15 05:51:28 +07:00
|
|
|
struct drm_mode_fb_cmd2 mode_cmd;
|
2010-03-30 12:34:14 +07:00
|
|
|
struct drm_gem_object *gobj = NULL;
|
|
|
|
struct radeon_bo *rbo = NULL;
|
|
|
|
int ret;
|
|
|
|
unsigned long tmp;
|
|
|
|
|
|
|
|
mode_cmd.width = sizes->surface_width;
|
|
|
|
mode_cmd.height = sizes->surface_height;
|
|
|
|
|
|
|
|
/* avivo can't scanout real 24bpp */
|
|
|
|
if ((sizes->surface_bpp == 24) && ASIC_IS_AVIVO(rdev))
|
|
|
|
sizes->surface_bpp = 32;
|
|
|
|
|
2011-11-15 05:51:28 +07:00
|
|
|
mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp,
|
|
|
|
sizes->surface_depth);
|
2009-06-05 19:42:42 +07:00
|
|
|
|
2010-03-30 12:34:14 +07:00
|
|
|
ret = radeonfb_create_pinned_object(rfbdev, &mode_cmd, &gobj);
|
2012-03-06 17:44:40 +07:00
|
|
|
if (ret) {
|
|
|
|
DRM_ERROR("failed to create fbcon object %d\n", ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-02-18 23:59:17 +07:00
|
|
|
rbo = gem_to_radeon_bo(gobj);
|
2009-06-05 19:42:42 +07:00
|
|
|
|
2010-03-30 12:34:14 +07:00
|
|
|
/* okay we have an object now allocate the framebuffer */
|
2015-07-31 17:51:54 +07:00
|
|
|
info = drm_fb_helper_alloc_fbi(helper);
|
|
|
|
if (IS_ERR(info)) {
|
|
|
|
ret = PTR_ERR(info);
|
2009-06-05 19:42:42 +07:00
|
|
|
goto out_unref;
|
|
|
|
}
|
2009-08-28 12:46:53 +07:00
|
|
|
|
2010-03-30 12:34:14 +07:00
|
|
|
info->par = rfbdev;
|
2015-07-09 01:08:12 +07:00
|
|
|
info->skip_vt_switch = true;
|
2009-06-05 19:42:42 +07:00
|
|
|
|
2012-03-06 17:44:40 +07:00
|
|
|
ret = radeon_framebuffer_init(rdev->ddev, &rfbdev->rfb, &mode_cmd, gobj);
|
|
|
|
if (ret) {
|
2013-05-21 21:13:12 +07:00
|
|
|
DRM_ERROR("failed to initialize framebuffer %d\n", ret);
|
2015-07-31 17:51:54 +07:00
|
|
|
goto out_destroy_fbi;
|
2012-03-06 17:44:40 +07:00
|
|
|
}
|
2010-03-30 12:34:14 +07:00
|
|
|
|
2010-03-30 12:34:13 +07:00
|
|
|
fb = &rfbdev->rfb.base;
|
|
|
|
|
|
|
|
/* setup helper */
|
|
|
|
rfbdev->helper.fb = fb;
|
|
|
|
|
2010-03-30 12:34:14 +07:00
|
|
|
memset_io(rbo->kptr, 0x0, radeon_bo_size(rbo));
|
2009-08-17 07:20:47 +07:00
|
|
|
|
2009-06-05 19:42:42 +07:00
|
|
|
strcpy(info->fix.id, "radeondrmfb");
|
2009-08-28 12:46:53 +07:00
|
|
|
|
2011-12-20 05:06:49 +07:00
|
|
|
drm_fb_helper_fill_fix(info, fb->pitches[0], fb->depth);
|
2011-01-15 06:27:00 +07:00
|
|
|
|
2010-06-24 02:56:12 +07:00
|
|
|
info->flags = FBINFO_DEFAULT | FBINFO_CAN_FORCE_OUTPUT;
|
2009-06-05 19:42:42 +07:00
|
|
|
info->fbops = &radeonfb_ops;
|
2009-08-28 12:46:53 +07:00
|
|
|
|
2010-03-30 12:34:14 +07:00
|
|
|
tmp = radeon_bo_gpu_offset(rbo) - rdev->mc.vram_start;
|
2009-06-22 23:15:58 +07:00
|
|
|
info->fix.smem_start = rdev->mc.aper_base + tmp;
|
2010-03-30 12:34:14 +07:00
|
|
|
info->fix.smem_len = radeon_bo_size(rbo);
|
|
|
|
info->screen_base = rbo->kptr;
|
|
|
|
info->screen_size = radeon_bo_size(rbo);
|
2009-08-28 12:46:53 +07:00
|
|
|
|
2010-03-30 12:34:13 +07:00
|
|
|
drm_fb_helper_fill_var(info, &rfbdev->helper, sizes->fb_width, sizes->fb_height);
|
2009-07-29 14:07:38 +07:00
|
|
|
|
|
|
|
/* setup aperture base/size for vesafb takeover */
|
2010-05-16 22:27:03 +07:00
|
|
|
info->apertures->ranges[0].base = rdev->ddev->mode_config.fb_base;
|
2010-12-20 07:54:48 +07:00
|
|
|
info->apertures->ranges[0].size = rdev->mc.aper_size;
|
2009-07-29 14:07:38 +07:00
|
|
|
|
2012-02-06 16:58:19 +07:00
|
|
|
/* Use default scratch pixmap (info->pixmap.flags = FB_PIXMAP_SYSTEM) */
|
2010-03-30 12:34:18 +07:00
|
|
|
|
2009-06-05 19:42:42 +07:00
|
|
|
if (info->screen_base == NULL) {
|
|
|
|
ret = -ENOSPC;
|
2015-07-31 17:51:54 +07:00
|
|
|
goto out_destroy_fbi;
|
2010-03-30 12:34:18 +07:00
|
|
|
}
|
|
|
|
|
2009-06-05 19:42:42 +07:00
|
|
|
DRM_INFO("fb mappable at 0x%lX\n", info->fix.smem_start);
|
|
|
|
DRM_INFO("vram apper at 0x%lX\n", (unsigned long)rdev->mc.aper_base);
|
2010-03-30 12:34:14 +07:00
|
|
|
DRM_INFO("size %lu\n", (unsigned long)radeon_bo_size(rbo));
|
2009-06-05 19:42:42 +07:00
|
|
|
DRM_INFO("fb depth is %d\n", fb->depth);
|
2011-12-20 05:06:49 +07:00
|
|
|
DRM_INFO(" pitch is %d\n", fb->pitches[0]);
|
2009-06-05 19:42:42 +07:00
|
|
|
|
2010-02-01 12:38:10 +07:00
|
|
|
vga_switcheroo_client_fb_set(rdev->ddev->pdev, info);
|
2009-06-05 19:42:42 +07:00
|
|
|
return 0;
|
|
|
|
|
2015-07-31 17:51:54 +07:00
|
|
|
out_destroy_fbi:
|
|
|
|
drm_fb_helper_release_fbi(helper);
|
2009-06-05 19:42:42 +07:00
|
|
|
out_unref:
|
2009-11-20 20:29:23 +07:00
|
|
|
if (rbo) {
|
2010-03-30 12:34:14 +07:00
|
|
|
|
2009-06-05 19:42:42 +07:00
|
|
|
}
|
2009-06-22 23:15:58 +07:00
|
|
|
if (fb && ret) {
|
2015-11-23 16:32:38 +07:00
|
|
|
drm_gem_object_unreference_unlocked(gobj);
|
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-11 02:42:17 +07:00
|
|
|
drm_framebuffer_unregister_private(fb);
|
2009-06-05 19:42:42 +07:00
|
|
|
drm_framebuffer_cleanup(fb);
|
|
|
|
kfree(fb);
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2010-05-07 13:42:51 +07:00
|
|
|
void radeon_fb_output_poll_changed(struct radeon_device *rdev)
|
2009-06-05 19:42:42 +07:00
|
|
|
{
|
2016-03-11 03:55:26 +07:00
|
|
|
if (rdev->mode_info.rfbdev)
|
|
|
|
drm_fb_helper_hotplug_event(&rdev->mode_info.rfbdev->helper);
|
2009-06-05 19:42:42 +07:00
|
|
|
}
|
|
|
|
|
2010-03-30 12:34:14 +07:00
|
|
|
static int radeon_fbdev_destroy(struct drm_device *dev, struct radeon_fbdev *rfbdev)
|
2009-06-05 19:42:42 +07:00
|
|
|
{
|
2010-03-30 12:34:13 +07:00
|
|
|
struct radeon_framebuffer *rfb = &rfbdev->rfb;
|
2009-06-05 19:42:42 +07:00
|
|
|
|
2015-07-31 17:51:54 +07:00
|
|
|
drm_fb_helper_unregister_fbi(&rfbdev->helper);
|
|
|
|
drm_fb_helper_release_fbi(&rfbdev->helper);
|
2009-06-05 19:42:42 +07:00
|
|
|
|
2010-03-30 12:34:14 +07:00
|
|
|
if (rfb->obj) {
|
2010-09-27 13:17:17 +07:00
|
|
|
radeonfb_destroy_pinned_object(rfb->obj);
|
|
|
|
rfb->obj = NULL;
|
2009-06-05 19:42:42 +07:00
|
|
|
}
|
2010-03-30 12:34:18 +07:00
|
|
|
drm_fb_helper_fini(&rfbdev->helper);
|
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-11 02:42:17 +07:00
|
|
|
drm_framebuffer_unregister_private(&rfb->base);
|
2010-03-30 12:34:13 +07:00
|
|
|
drm_framebuffer_cleanup(&rfb->base);
|
2009-06-05 19:42:42 +07:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2009-08-28 12:46:53 +07:00
|
|
|
|
2014-06-27 22:19:23 +07:00
|
|
|
static const struct drm_fb_helper_funcs radeon_fb_helper_funcs = {
|
2010-03-30 12:34:18 +07:00
|
|
|
.gamma_set = radeon_crtc_fb_gamma_set,
|
|
|
|
.gamma_get = radeon_crtc_fb_gamma_get,
|
2013-01-22 05:42:49 +07:00
|
|
|
.fb_probe = radeonfb_create,
|
2010-03-30 12:34:18 +07:00
|
|
|
};
|
2010-03-30 12:34:13 +07:00
|
|
|
|
|
|
|
int radeon_fbdev_init(struct radeon_device *rdev)
|
|
|
|
{
|
2010-03-30 12:34:14 +07:00
|
|
|
struct radeon_fbdev *rfbdev;
|
2010-03-30 12:34:18 +07:00
|
|
|
int bpp_sel = 32;
|
2010-06-06 16:50:03 +07:00
|
|
|
int ret;
|
2010-03-30 12:34:18 +07:00
|
|
|
|
2016-03-11 03:55:26 +07:00
|
|
|
/* don't enable fbdev if no connectors */
|
|
|
|
if (list_empty(&rdev->ddev->mode_config.connector_list))
|
|
|
|
return 0;
|
|
|
|
|
2010-03-30 12:34:18 +07:00
|
|
|
/* select 8 bpp console on RN50 or 16MB cards */
|
|
|
|
if (ASIC_IS_RN50(rdev) || rdev->mc.real_vram_size <= (32*1024*1024))
|
|
|
|
bpp_sel = 8;
|
2010-03-30 12:34:14 +07:00
|
|
|
|
|
|
|
rfbdev = kzalloc(sizeof(struct radeon_fbdev), GFP_KERNEL);
|
|
|
|
if (!rfbdev)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
rfbdev->rdev = rdev;
|
|
|
|
rdev->mode_info.rfbdev = rfbdev;
|
2014-06-27 22:19:24 +07:00
|
|
|
|
|
|
|
drm_fb_helper_prepare(rdev->ddev, &rfbdev->helper,
|
|
|
|
&radeon_fb_helper_funcs);
|
2010-03-30 12:34:14 +07:00
|
|
|
|
2010-06-06 16:50:03 +07:00
|
|
|
ret = drm_fb_helper_init(rdev->ddev, &rfbdev->helper,
|
|
|
|
rdev->num_crtc,
|
|
|
|
RADEONFB_CONN_LIMIT);
|
2014-12-19 17:21:32 +07:00
|
|
|
if (ret)
|
|
|
|
goto free;
|
2010-06-06 16:50:03 +07:00
|
|
|
|
2014-12-19 17:21:32 +07:00
|
|
|
ret = drm_fb_helper_single_add_all_connectors(&rfbdev->helper);
|
|
|
|
if (ret)
|
|
|
|
goto fini;
|
2013-01-21 05:12:54 +07:00
|
|
|
|
|
|
|
/* disable all the possible outputs/crtcs before entering KMS mode */
|
|
|
|
drm_helper_disable_unused_functions(rdev->ddev);
|
|
|
|
|
2014-12-19 17:21:32 +07:00
|
|
|
ret = drm_fb_helper_initial_config(&rfbdev->helper, bpp_sel);
|
|
|
|
if (ret)
|
|
|
|
goto fini;
|
|
|
|
|
2009-06-05 19:42:42 +07:00
|
|
|
return 0;
|
2014-12-19 17:21:32 +07:00
|
|
|
|
|
|
|
fini:
|
|
|
|
drm_fb_helper_fini(&rfbdev->helper);
|
|
|
|
free:
|
|
|
|
kfree(rfbdev);
|
|
|
|
return ret;
|
2010-03-30 12:34:13 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
void radeon_fbdev_fini(struct radeon_device *rdev)
|
|
|
|
{
|
2010-03-30 12:34:14 +07:00
|
|
|
if (!rdev->mode_info.rfbdev)
|
|
|
|
return;
|
|
|
|
|
2010-03-30 12:34:13 +07:00
|
|
|
radeon_fbdev_destroy(rdev->ddev, rdev->mode_info.rfbdev);
|
2010-03-30 12:34:14 +07:00
|
|
|
kfree(rdev->mode_info.rfbdev);
|
2010-03-30 12:34:13 +07:00
|
|
|
rdev->mode_info.rfbdev = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void radeon_fbdev_set_suspend(struct radeon_device *rdev, int state)
|
|
|
|
{
|
2016-03-11 03:55:26 +07:00
|
|
|
if (rdev->mode_info.rfbdev)
|
|
|
|
fb_set_suspend(rdev->mode_info.rfbdev->helper.fbdev, state);
|
2010-03-30 12:34:13 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
bool radeon_fbdev_robj_is_fb(struct radeon_device *rdev, struct radeon_bo *robj)
|
|
|
|
{
|
2016-03-11 03:55:26 +07:00
|
|
|
if (!rdev->mode_info.rfbdev)
|
|
|
|
return false;
|
|
|
|
|
2011-02-18 23:59:17 +07:00
|
|
|
if (robj == gem_to_radeon_bo(rdev->mode_info.rfbdev->rfb.obj))
|
2010-03-30 12:34:13 +07:00
|
|
|
return true;
|
|
|
|
return false;
|
2009-06-05 19:42:42 +07:00
|
|
|
}
|
2015-02-24 06:23:59 +07:00
|
|
|
|
|
|
|
void radeon_fb_add_connector(struct radeon_device *rdev, struct drm_connector *connector)
|
|
|
|
{
|
2016-03-11 03:55:26 +07:00
|
|
|
if (rdev->mode_info.rfbdev)
|
|
|
|
drm_fb_helper_add_one_connector(&rdev->mode_info.rfbdev->helper, connector);
|
2015-02-24 06:23:59 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
void radeon_fb_remove_connector(struct radeon_device *rdev, struct drm_connector *connector)
|
|
|
|
{
|
2016-03-11 03:55:26 +07:00
|
|
|
if (rdev->mode_info.rfbdev)
|
|
|
|
drm_fb_helper_remove_one_connector(&rdev->mode_info.rfbdev->helper, connector);
|
2015-02-24 06:23:59 +07:00
|
|
|
}
|
2015-10-03 03:52:58 +07:00
|
|
|
|
|
|
|
void radeon_fbdev_restore_mode(struct radeon_device *rdev)
|
|
|
|
{
|
|
|
|
struct radeon_fbdev *rfbdev = rdev->mode_info.rfbdev;
|
|
|
|
struct drm_fb_helper *fb_helper;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (!rfbdev)
|
|
|
|
return;
|
|
|
|
|
|
|
|
fb_helper = &rfbdev->helper;
|
|
|
|
|
|
|
|
ret = drm_fb_helper_restore_fbdev_mode_unlocked(fb_helper);
|
|
|
|
if (ret)
|
|
|
|
DRM_DEBUG("failed to restore crtc mode\n");
|
|
|
|
}
|