2009-06-05 06:42:42 -06: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
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
* Modularization
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/fb.h>
|
|
|
|
|
|
|
|
#include "drmP.h"
|
|
|
|
#include "drm.h"
|
|
|
|
#include "drm_crtc.h"
|
|
|
|
#include "drm_crtc_helper.h"
|
|
|
|
#include "radeon_drm.h"
|
|
|
|
#include "radeon.h"
|
|
|
|
|
2009-08-27 23:46:53 -06:00
|
|
|
#include "drm_fb_helper.h"
|
|
|
|
|
2010-01-31 22:38:10 -07:00
|
|
|
#include <linux/vga_switcheroo.h>
|
|
|
|
|
2010-03-29 23:34:13 -06:00
|
|
|
/* object hierarchy -
|
|
|
|
this contains a helper + a radeon fb
|
|
|
|
the helper contains a pointer to radeon framebuffer baseclass.
|
|
|
|
*/
|
|
|
|
struct radeon_kernel_fbdev {
|
2009-08-27 23:46:53 -06:00
|
|
|
struct drm_fb_helper helper;
|
2010-03-29 23:34:13 -06:00
|
|
|
struct radeon_framebuffer rfb;
|
|
|
|
struct list_head fbdev_list;
|
|
|
|
struct radeon_device *rdev;
|
2009-06-05 06:42:42 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
static struct fb_ops radeonfb_ops = {
|
|
|
|
.owner = THIS_MODULE,
|
2009-09-15 09:09:30 -06:00
|
|
|
.fb_check_var = drm_fb_helper_check_var,
|
2009-08-27 23:46:53 -06:00
|
|
|
.fb_set_par = drm_fb_helper_set_par,
|
|
|
|
.fb_setcolreg = drm_fb_helper_setcolreg,
|
2009-06-05 06:42:42 -06:00
|
|
|
.fb_fillrect = cfb_fillrect,
|
|
|
|
.fb_copyarea = cfb_copyarea,
|
|
|
|
.fb_imageblit = cfb_imageblit,
|
2009-08-27 23:46:53 -06:00
|
|
|
.fb_pan_display = drm_fb_helper_pan_display,
|
|
|
|
.fb_blank = drm_fb_helper_blank,
|
2009-10-04 17:58:02 -06:00
|
|
|
.fb_setcmap = drm_fb_helper_setcmap,
|
2009-06-05 06:42:42 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2009-06-23 17:48:08 -06:00
|
|
|
static int radeon_align_pitch(struct radeon_device *rdev, int width, int bpp, bool tiled)
|
2009-06-05 06:42:42 -06:00
|
|
|
{
|
|
|
|
int aligned = width;
|
2009-06-23 17:48:08 -06:00
|
|
|
int align_large = (ASIC_IS_AVIVO(rdev)) || tiled;
|
2009-06-05 06:42:42 -06: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;
|
|
|
|
}
|
|
|
|
|
2009-08-27 23:46:53 -06:00
|
|
|
static struct drm_fb_helper_funcs radeon_fb_helper_funcs = {
|
|
|
|
.gamma_set = radeon_crtc_fb_gamma_set,
|
2009-10-05 21:54:01 -06:00
|
|
|
.gamma_get = radeon_crtc_fb_gamma_get,
|
2009-08-27 23:46:53 -06:00
|
|
|
};
|
|
|
|
|
2010-03-29 23:34:13 -06:00
|
|
|
static int radeonfb_create(struct drm_device *dev,
|
|
|
|
struct drm_fb_helper_surface_size *sizes,
|
|
|
|
struct radeon_kernel_fbdev **rfbdev_p)
|
2009-06-05 06:42:42 -06:00
|
|
|
{
|
2009-08-27 23:46:53 -06:00
|
|
|
struct radeon_device *rdev = dev->dev_private;
|
2009-06-05 06:42:42 -06:00
|
|
|
struct fb_info *info;
|
2010-03-29 23:34:13 -06:00
|
|
|
struct radeon_kernel_fbdev *rfbdev;
|
2009-06-22 10:15:58 -06:00
|
|
|
struct drm_framebuffer *fb = NULL;
|
2009-06-05 06:42:42 -06:00
|
|
|
struct drm_mode_fb_cmd mode_cmd;
|
|
|
|
struct drm_gem_object *gobj = NULL;
|
2009-11-20 06:29:23 -07:00
|
|
|
struct radeon_bo *rbo = NULL;
|
2009-06-05 06:42:42 -06:00
|
|
|
struct device *device = &rdev->pdev->dev;
|
|
|
|
int size, aligned_size, ret;
|
2009-06-22 10:15:58 -06:00
|
|
|
u64 fb_gpuaddr;
|
2009-06-05 06:42:42 -06:00
|
|
|
void *fbptr = NULL;
|
2009-06-22 10:15:58 -06:00
|
|
|
unsigned long tmp;
|
2009-06-23 17:48:08 -06:00
|
|
|
bool fb_tiled = false; /* useful for testing */
|
2009-09-15 09:09:30 -06:00
|
|
|
u32 tiling_flags = 0;
|
2009-06-05 06:42:42 -06:00
|
|
|
|
2010-03-29 23:34:13 -06:00
|
|
|
mode_cmd.width = sizes->surface_width;
|
|
|
|
mode_cmd.height = sizes->surface_height;
|
2009-10-05 21:54:01 -06:00
|
|
|
|
|
|
|
/* avivo can't scanout real 24bpp */
|
2010-03-29 23:34:13 -06:00
|
|
|
if ((sizes->surface_bpp == 24) && ASIC_IS_AVIVO(rdev))
|
|
|
|
sizes->surface_bpp = 32;
|
2009-10-05 21:54:01 -06:00
|
|
|
|
2010-03-29 23:34:13 -06:00
|
|
|
mode_cmd.bpp = sizes->surface_bpp;
|
2009-06-05 06:42:42 -06:00
|
|
|
/* need to align pitch with crtc limits */
|
2009-06-23 17:48:08 -06:00
|
|
|
mode_cmd.pitch = radeon_align_pitch(rdev, mode_cmd.width, mode_cmd.bpp, fb_tiled) * ((mode_cmd.bpp + 1) / 8);
|
2010-03-29 23:34:13 -06:00
|
|
|
mode_cmd.depth = sizes->surface_depth;
|
2009-06-05 06:42:42 -06:00
|
|
|
|
|
|
|
size = mode_cmd.pitch * mode_cmd.height;
|
|
|
|
aligned_size = ALIGN(size, PAGE_SIZE);
|
|
|
|
|
|
|
|
ret = radeon_gem_object_create(rdev, aligned_size, 0,
|
2009-06-22 10:15:58 -06:00
|
|
|
RADEON_GEM_DOMAIN_VRAM,
|
|
|
|
false, ttm_bo_type_kernel,
|
2009-11-20 06:29:23 -07:00
|
|
|
&gobj);
|
2009-06-05 06:42:42 -06:00
|
|
|
if (ret) {
|
2009-06-22 10:15:58 -06:00
|
|
|
printk(KERN_ERR "failed to allocate framebuffer (%d %d)\n",
|
2010-03-29 23:34:13 -06:00
|
|
|
sizes->surface_width, sizes->surface_height);
|
2009-06-05 06:42:42 -06:00
|
|
|
ret = -ENOMEM;
|
|
|
|
goto out;
|
|
|
|
}
|
2009-11-20 06:29:23 -07:00
|
|
|
rbo = gobj->driver_private;
|
2009-06-05 06:42:42 -06:00
|
|
|
|
2009-06-23 17:48:08 -06:00
|
|
|
if (fb_tiled)
|
2009-09-15 09:09:30 -06:00
|
|
|
tiling_flags = RADEON_TILING_MACRO;
|
|
|
|
|
|
|
|
#ifdef __BIG_ENDIAN
|
|
|
|
switch (mode_cmd.bpp) {
|
|
|
|
case 32:
|
|
|
|
tiling_flags |= RADEON_TILING_SWAP_32BIT;
|
|
|
|
break;
|
|
|
|
case 16:
|
|
|
|
tiling_flags |= RADEON_TILING_SWAP_16BIT;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-11-20 06:29:23 -07:00
|
|
|
if (tiling_flags) {
|
|
|
|
ret = radeon_bo_set_tiling_flags(rbo,
|
|
|
|
tiling_flags | RADEON_TILING_SURFACE,
|
|
|
|
mode_cmd.pitch);
|
|
|
|
if (ret)
|
|
|
|
dev_err(rdev->dev, "FB failed to set tiling flags\n");
|
|
|
|
}
|
2009-06-05 06:42:42 -06:00
|
|
|
mutex_lock(&rdev->ddev->struct_mutex);
|
2010-03-29 23:34:13 -06:00
|
|
|
|
2009-11-20 06:29:23 -07:00
|
|
|
ret = radeon_bo_reserve(rbo, false);
|
|
|
|
if (unlikely(ret != 0))
|
|
|
|
goto out_unref;
|
|
|
|
ret = radeon_bo_pin(rbo, RADEON_GEM_DOMAIN_VRAM, &fb_gpuaddr);
|
|
|
|
if (ret) {
|
|
|
|
radeon_bo_unreserve(rbo);
|
|
|
|
goto out_unref;
|
|
|
|
}
|
|
|
|
if (fb_tiled)
|
|
|
|
radeon_bo_check_tiling(rbo, 0, 0);
|
|
|
|
ret = radeon_bo_kmap(rbo, &fbptr);
|
|
|
|
radeon_bo_unreserve(rbo);
|
2009-06-22 10:15:58 -06:00
|
|
|
if (ret) {
|
|
|
|
goto out_unref;
|
|
|
|
}
|
2009-06-05 06:42:42 -06:00
|
|
|
|
2010-03-29 23:34:13 -06:00
|
|
|
info = framebuffer_alloc(sizeof(struct radeon_kernel_fbdev), device);
|
2009-06-05 06:42:42 -06:00
|
|
|
if (info == NULL) {
|
|
|
|
ret = -ENOMEM;
|
|
|
|
goto out_unref;
|
|
|
|
}
|
2009-08-27 23:46:53 -06:00
|
|
|
|
2009-06-05 06:42:42 -06:00
|
|
|
rfbdev = info->par;
|
2010-03-29 23:34:13 -06:00
|
|
|
rfbdev->rdev = rdev;
|
|
|
|
radeon_framebuffer_init(dev, &rfbdev->rfb, &mode_cmd, gobj);
|
|
|
|
fb = &rfbdev->rfb.base;
|
|
|
|
|
|
|
|
/* setup helper */
|
|
|
|
rfbdev->helper.fb = fb;
|
|
|
|
rfbdev->helper.fbdev = info;
|
2009-08-27 23:46:53 -06:00
|
|
|
rfbdev->helper.funcs = &radeon_fb_helper_funcs;
|
|
|
|
rfbdev->helper.dev = dev;
|
2010-03-29 23:34:13 -06:00
|
|
|
|
|
|
|
*rfbdev_p = rfbdev;
|
|
|
|
|
2010-02-01 14:02:25 -07:00
|
|
|
ret = drm_fb_helper_init_crtc_count(&rfbdev->helper, rdev->num_crtc,
|
2009-08-27 23:46:53 -06:00
|
|
|
RADEONFB_CONN_LIMIT);
|
|
|
|
if (ret)
|
|
|
|
goto out_unref;
|
2009-06-05 06:42:42 -06:00
|
|
|
|
2010-02-08 19:31:08 -07:00
|
|
|
memset_io(fbptr, 0x0, aligned_size);
|
2009-08-16 18:20:47 -06:00
|
|
|
|
2009-06-05 06:42:42 -06:00
|
|
|
strcpy(info->fix.id, "radeondrmfb");
|
2009-08-27 23:46:53 -06:00
|
|
|
|
2009-10-04 17:58:02 -06:00
|
|
|
drm_fb_helper_fill_fix(info, fb->pitch, fb->depth);
|
2009-08-27 23:46:53 -06:00
|
|
|
|
2009-06-05 06:42:42 -06:00
|
|
|
info->flags = FBINFO_DEFAULT;
|
|
|
|
info->fbops = &radeonfb_ops;
|
2009-08-27 23:46:53 -06:00
|
|
|
|
drm/radeon/kms: simplify memory controller setup V2
Get rid of _location and use _start/_end also simplify the
computation of vram_start|end & gtt_start|end. For R1XX-R2XX
we place VRAM at the same address of PCI aperture, those GPU
shouldn't have much memory and seems to behave better when
setup that way. For R3XX and newer we place VRAM at 0. For
R6XX-R7XX AGP we place VRAM before or after AGP aperture this
might limit to limit the VRAM size but it's very unlikely.
For IGP we don't change the VRAM placement.
Tested on (compiz,quake3,suspend/resume):
PCI/PCIE:RV280,R420,RV515,RV570,RV610,RV710
AGP:RV100,RV280,R420,RV350,RV620(RPB*),RV730
IGP:RS480(RPB*),RS690,RS780(RPB*),RS880
RPB: resume previously broken
V2 correct commit message to reflect more accurately the bug
and move VRAM placement to 0 for most of the GPU to avoid
limiting VRAM.
Signed-off-by: Jerome Glisse <jglisse@redhat.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2010-02-17 14:54:29 -07:00
|
|
|
tmp = fb_gpuaddr - rdev->mc.vram_start;
|
2009-06-22 10:15:58 -06:00
|
|
|
info->fix.smem_start = rdev->mc.aper_base + tmp;
|
2009-06-05 06:42:42 -06:00
|
|
|
info->fix.smem_len = size;
|
|
|
|
info->screen_base = fbptr;
|
|
|
|
info->screen_size = size;
|
2009-08-27 23:46:53 -06:00
|
|
|
|
2010-03-29 23:34:13 -06:00
|
|
|
drm_fb_helper_fill_var(info, &rfbdev->helper, sizes->fb_width, sizes->fb_height);
|
2009-07-29 01:07:38 -06:00
|
|
|
|
|
|
|
/* setup aperture base/size for vesafb takeover */
|
|
|
|
info->aperture_base = rdev->ddev->mode_config.fb_base;
|
|
|
|
info->aperture_size = rdev->mc.real_vram_size;
|
|
|
|
|
2009-06-23 08:12:53 -06:00
|
|
|
info->fix.mmio_start = 0;
|
|
|
|
info->fix.mmio_len = 0;
|
2009-06-05 06:42:42 -06:00
|
|
|
info->pixmap.size = 64*1024;
|
|
|
|
info->pixmap.buf_align = 8;
|
|
|
|
info->pixmap.access_align = 32;
|
|
|
|
info->pixmap.flags = FB_PIXMAP_SYSTEM;
|
|
|
|
info->pixmap.scan_align = 1;
|
|
|
|
if (info->screen_base == NULL) {
|
|
|
|
ret = -ENOSPC;
|
|
|
|
goto out_unref;
|
|
|
|
}
|
|
|
|
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);
|
|
|
|
DRM_INFO("size %lu\n", (unsigned long)size);
|
|
|
|
DRM_INFO("fb depth is %d\n", fb->depth);
|
|
|
|
DRM_INFO(" pitch is %d\n", fb->pitch);
|
|
|
|
|
|
|
|
|
|
|
|
mutex_unlock(&rdev->ddev->struct_mutex);
|
2010-01-31 22:38:10 -07:00
|
|
|
vga_switcheroo_client_fb_set(rdev->ddev->pdev, info);
|
2009-06-05 06:42:42 -06:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
out_unref:
|
2009-11-20 06:29:23 -07:00
|
|
|
if (rbo) {
|
|
|
|
ret = radeon_bo_reserve(rbo, false);
|
|
|
|
if (likely(ret == 0)) {
|
|
|
|
radeon_bo_kunmap(rbo);
|
|
|
|
radeon_bo_unreserve(rbo);
|
|
|
|
}
|
2009-06-05 06:42:42 -06:00
|
|
|
}
|
2009-06-22 10:15:58 -06:00
|
|
|
if (fb && ret) {
|
2009-06-05 06:42:42 -06:00
|
|
|
drm_gem_object_unreference(gobj);
|
|
|
|
drm_framebuffer_cleanup(fb);
|
|
|
|
kfree(fb);
|
|
|
|
}
|
|
|
|
drm_gem_object_unreference(gobj);
|
|
|
|
mutex_unlock(&rdev->ddev->struct_mutex);
|
|
|
|
out:
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2010-03-29 23:34:13 -06:00
|
|
|
static int radeon_fb_find_or_create_single(struct drm_device *dev,
|
|
|
|
struct drm_fb_helper_surface_size *sizes,
|
|
|
|
struct drm_fb_helper **fb_ptr)
|
|
|
|
{
|
|
|
|
struct radeon_device *rdev = dev->dev_private;
|
|
|
|
struct radeon_kernel_fbdev *rfbdev = NULL;
|
|
|
|
int new_fb = 0;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (!rdev->mode_info.rfbdev) {
|
|
|
|
ret = radeonfb_create(dev, sizes,
|
|
|
|
&rfbdev);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
rdev->mode_info.rfbdev = rfbdev;
|
|
|
|
new_fb = 1;
|
|
|
|
} else {
|
|
|
|
rfbdev = rdev->mode_info.rfbdev;
|
|
|
|
if (rfbdev->rfb.base.width < sizes->surface_width ||
|
|
|
|
rfbdev->rfb.base.height < sizes->surface_height) {
|
|
|
|
DRM_ERROR("Framebuffer not large enough to scale console onto.\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*fb_ptr = &rfbdev->helper;
|
|
|
|
return new_fb;
|
|
|
|
}
|
|
|
|
|
drm/kms: start adding command line interface using fb.
[note this requires an fb patch posted to linux-fbdev-devel already]
This uses the normal video= command line option to control the kms
output setup at boot time. It is used to override the autodetection
done by kms.
video= normally takes a framebuffer as the first parameter, in kms
it will take a connector name, DVI-I-1, or LVDS-1 etc. If no output
connector is specified the mode string will apply to all connectors.
The mode specification used will match down the probed modes, and if
no mode is found it will add a CVT mode that matches.
video=1024x768 - all connectors match a 1024x768 mode or add a CVT on
video=VGA-1:1024x768, VGA-1 connector gets mode only.
The same strings as used in current fb modedb.c are used, except I've
added three more letters, e, D, d, e = enable, D = enable Digital,
d = disable, which allow a connector to be forced into a certain state.
Signed-off-by: Dave Airlie <airlied@redhat.com>
2009-09-22 22:44:08 -06:00
|
|
|
static char *mode_option;
|
|
|
|
int radeon_parse_options(char *options)
|
|
|
|
{
|
|
|
|
char *this_opt;
|
|
|
|
|
|
|
|
if (!options || !*options)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
while ((this_opt = strsep(&options, ",")) != NULL) {
|
|
|
|
if (!*this_opt)
|
|
|
|
continue;
|
|
|
|
mode_option = this_opt;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-03-29 23:34:13 -06:00
|
|
|
static int radeonfb_probe(struct drm_device *dev)
|
2009-06-05 06:42:42 -06:00
|
|
|
{
|
2009-11-17 20:39:34 -07:00
|
|
|
struct radeon_device *rdev = dev->dev_private;
|
|
|
|
int bpp_sel = 32;
|
|
|
|
|
|
|
|
/* 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-29 23:34:13 -06:00
|
|
|
return drm_fb_helper_single_fb_probe(dev, bpp_sel, &radeon_fb_find_or_create_single);
|
|
|
|
}
|
|
|
|
|
|
|
|
void radeonfb_hotplug(struct drm_device *dev)
|
|
|
|
{
|
|
|
|
drm_helper_fb_hotplug_event(dev);
|
|
|
|
|
|
|
|
radeonfb_probe(dev);
|
2009-06-05 06:42:42 -06:00
|
|
|
}
|
|
|
|
|
2010-03-29 23:34:13 -06:00
|
|
|
static int radeon_fbdev_destroy(struct drm_device *dev, struct radeon_kernel_fbdev *rfbdev)
|
2009-06-05 06:42:42 -06:00
|
|
|
{
|
|
|
|
struct fb_info *info;
|
2010-03-29 23:34:13 -06:00
|
|
|
struct radeon_framebuffer *rfb = &rfbdev->rfb;
|
2009-11-20 06:29:23 -07:00
|
|
|
struct radeon_bo *rbo;
|
|
|
|
int r;
|
2009-06-05 06:42:42 -06:00
|
|
|
|
2010-03-29 23:34:13 -06:00
|
|
|
rbo = rfb->obj->driver_private;
|
|
|
|
info = rfbdev->helper.fbdev;
|
|
|
|
unregister_framebuffer(info);
|
|
|
|
r = radeon_bo_reserve(rbo, false);
|
|
|
|
if (likely(r == 0)) {
|
|
|
|
radeon_bo_kunmap(rbo);
|
|
|
|
radeon_bo_unpin(rbo);
|
|
|
|
radeon_bo_unreserve(rbo);
|
2009-06-05 06:42:42 -06:00
|
|
|
}
|
|
|
|
|
2010-03-29 23:34:13 -06:00
|
|
|
drm_fb_helper_free(&rfbdev->helper);
|
|
|
|
drm_framebuffer_cleanup(&rfb->base);
|
|
|
|
if (rfb->obj)
|
|
|
|
drm_gem_object_unreference_unlocked(rfb->obj);
|
|
|
|
|
|
|
|
framebuffer_release(info);
|
2009-08-27 23:46:53 -06:00
|
|
|
|
2009-06-05 06:42:42 -06:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
MODULE_LICENSE("GPL");
|
2010-03-29 23:34:13 -06:00
|
|
|
|
|
|
|
int radeon_fbdev_init(struct radeon_device *rdev)
|
|
|
|
{
|
|
|
|
drm_helper_initial_config(rdev->ddev);
|
|
|
|
radeonfb_probe(rdev->ddev);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void radeon_fbdev_fini(struct radeon_device *rdev)
|
|
|
|
{
|
|
|
|
radeon_fbdev_destroy(rdev->ddev, rdev->mode_info.rfbdev);
|
|
|
|
rdev->mode_info.rfbdev = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void radeon_fbdev_set_suspend(struct radeon_device *rdev, int state)
|
|
|
|
{
|
|
|
|
fb_set_suspend(rdev->mode_info.rfbdev->helper.fbdev, state);
|
|
|
|
}
|
|
|
|
|
|
|
|
int radeon_fbdev_total_size(struct radeon_device *rdev)
|
|
|
|
{
|
|
|
|
struct radeon_bo *robj;
|
|
|
|
int size = 0;
|
|
|
|
|
|
|
|
robj = rdev->mode_info.rfbdev->rfb.obj->driver_private;
|
|
|
|
size += radeon_bo_size(robj);
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool radeon_fbdev_robj_is_fb(struct radeon_device *rdev, struct radeon_bo *robj)
|
|
|
|
{
|
|
|
|
if (robj == rdev->mode_info.rfbdev->rfb.obj->driver_private)
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|