blob: 9cdf6a35bc2c3f4efbd5daab2a9506078308aa31 [file] [log] [blame]
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001/*
2 * Copyright © 2007 David Airlie
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
22 *
23 * Authors:
24 * David Airlie
25 */
Jerome Glisse771fe6b2009-06-05 14:42:42 +020026#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090027#include <linux/slab.h>
Jerome Glisse771fe6b2009-06-05 14:42:42 +020028#include <linux/fb.h>
Jerome Glisse771fe6b2009-06-05 14:42:42 +020029
30#include "drmP.h"
31#include "drm.h"
32#include "drm_crtc.h"
33#include "drm_crtc_helper.h"
34#include "radeon_drm.h"
35#include "radeon.h"
36
Dave Airlie785b93e2009-08-28 15:46:53 +100037#include "drm_fb_helper.h"
38
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100039#include <linux/vga_switcheroo.h>
40
Dave Airlie38651672010-03-30 05:34:13 +000041/* object hierarchy -
42 this contains a helper + a radeon fb
43 the helper contains a pointer to radeon framebuffer baseclass.
44*/
Dave Airlie8be48d92010-03-30 05:34:14 +000045struct radeon_fbdev {
Dave Airlie785b93e2009-08-28 15:46:53 +100046 struct drm_fb_helper helper;
Dave Airlie38651672010-03-30 05:34:13 +000047 struct radeon_framebuffer rfb;
48 struct list_head fbdev_list;
49 struct radeon_device *rdev;
Jerome Glisse771fe6b2009-06-05 14:42:42 +020050};
51
Jerome Glisse771fe6b2009-06-05 14:42:42 +020052static struct fb_ops radeonfb_ops = {
53 .owner = THIS_MODULE,
Michel Dänzerc88f9f02009-09-15 17:09:30 +020054 .fb_check_var = drm_fb_helper_check_var,
Dave Airlie785b93e2009-08-28 15:46:53 +100055 .fb_set_par = drm_fb_helper_set_par,
Jerome Glisse771fe6b2009-06-05 14:42:42 +020056 .fb_fillrect = cfb_fillrect,
57 .fb_copyarea = cfb_copyarea,
58 .fb_imageblit = cfb_imageblit,
Dave Airlie785b93e2009-08-28 15:46:53 +100059 .fb_pan_display = drm_fb_helper_pan_display,
60 .fb_blank = drm_fb_helper_blank,
Dave Airlie068143d2009-10-05 09:58:02 +100061 .fb_setcmap = drm_fb_helper_setcmap,
Jerome Glisse771fe6b2009-06-05 14:42:42 +020062};
63
Jerome Glisse771fe6b2009-06-05 14:42:42 +020064
Dave Airliee024e112009-06-24 09:48:08 +100065static int radeon_align_pitch(struct radeon_device *rdev, int width, int bpp, bool tiled)
Jerome Glisse771fe6b2009-06-05 14:42:42 +020066{
67 int aligned = width;
Dave Airliee024e112009-06-24 09:48:08 +100068 int align_large = (ASIC_IS_AVIVO(rdev)) || tiled;
Jerome Glisse771fe6b2009-06-05 14:42:42 +020069 int pitch_mask = 0;
70
71 switch (bpp / 8) {
72 case 1:
73 pitch_mask = align_large ? 255 : 127;
74 break;
75 case 2:
76 pitch_mask = align_large ? 127 : 31;
77 break;
78 case 3:
79 case 4:
80 pitch_mask = align_large ? 63 : 15;
81 break;
82 }
83
84 aligned += pitch_mask;
85 aligned &= ~pitch_mask;
86 return aligned;
87}
88
Dave Airlie8be48d92010-03-30 05:34:14 +000089static void radeonfb_destroy_pinned_object(struct drm_gem_object *gobj)
Jerome Glisse771fe6b2009-06-05 14:42:42 +020090{
Dave Airlie8be48d92010-03-30 05:34:14 +000091 struct radeon_bo *rbo = gobj->driver_private;
92 int ret;
93
94 ret = radeon_bo_reserve(rbo, false);
95 if (likely(ret == 0)) {
96 radeon_bo_kunmap(rbo);
Dave Airlie29d08b32010-09-27 16:17:17 +100097 radeon_bo_unpin(rbo);
Dave Airlie8be48d92010-03-30 05:34:14 +000098 radeon_bo_unreserve(rbo);
99 }
Dave Airlie29d08b32010-09-27 16:17:17 +1000100 drm_gem_object_handle_unreference(gobj);
Dave Airlie8be48d92010-03-30 05:34:14 +0000101 drm_gem_object_unreference_unlocked(gobj);
102}
103
104static int radeonfb_create_pinned_object(struct radeon_fbdev *rfbdev,
105 struct drm_mode_fb_cmd *mode_cmd,
106 struct drm_gem_object **gobj_p)
107{
108 struct radeon_device *rdev = rfbdev->rdev;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200109 struct drm_gem_object *gobj = NULL;
Jerome Glisse4c788672009-11-20 14:29:23 +0100110 struct radeon_bo *rbo = NULL;
Dave Airliee024e112009-06-24 09:48:08 +1000111 bool fb_tiled = false; /* useful for testing */
Michel Dänzerc88f9f02009-09-15 17:09:30 +0200112 u32 tiling_flags = 0;
Dave Airlie8be48d92010-03-30 05:34:14 +0000113 int ret;
114 int aligned_size, size;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200115
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200116 /* need to align pitch with crtc limits */
Dave Airlie8be48d92010-03-30 05:34:14 +0000117 mode_cmd->pitch = radeon_align_pitch(rdev, mode_cmd->width, mode_cmd->bpp, fb_tiled) * ((mode_cmd->bpp + 1) / 8);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200118
Dave Airlie8be48d92010-03-30 05:34:14 +0000119 size = mode_cmd->pitch * mode_cmd->height;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200120 aligned_size = ALIGN(size, PAGE_SIZE);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200121 ret = radeon_gem_object_create(rdev, aligned_size, 0,
Dave Airlie8be48d92010-03-30 05:34:14 +0000122 RADEON_GEM_DOMAIN_VRAM,
Dave Airlie4dfe9472010-08-23 08:27:47 +1000123 false, true,
Dave Airlie8be48d92010-03-30 05:34:14 +0000124 &gobj);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200125 if (ret) {
Dave Airlie8be48d92010-03-30 05:34:14 +0000126 printk(KERN_ERR "failed to allocate framebuffer (%d)\n",
127 aligned_size);
128 return -ENOMEM;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200129 }
Jerome Glisse4c788672009-11-20 14:29:23 +0100130 rbo = gobj->driver_private;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200131
Dave Airliee024e112009-06-24 09:48:08 +1000132 if (fb_tiled)
Michel Dänzerc88f9f02009-09-15 17:09:30 +0200133 tiling_flags = RADEON_TILING_MACRO;
134
135#ifdef __BIG_ENDIAN
Dave Airlie8be48d92010-03-30 05:34:14 +0000136 switch (mode_cmd->bpp) {
Michel Dänzerc88f9f02009-09-15 17:09:30 +0200137 case 32:
138 tiling_flags |= RADEON_TILING_SWAP_32BIT;
139 break;
140 case 16:
141 tiling_flags |= RADEON_TILING_SWAP_16BIT;
142 default:
143 break;
144 }
145#endif
146
Jerome Glisse4c788672009-11-20 14:29:23 +0100147 if (tiling_flags) {
148 ret = radeon_bo_set_tiling_flags(rbo,
Dave Airlie8be48d92010-03-30 05:34:14 +0000149 tiling_flags | RADEON_TILING_SURFACE,
150 mode_cmd->pitch);
Jerome Glisse4c788672009-11-20 14:29:23 +0100151 if (ret)
152 dev_err(rdev->dev, "FB failed to set tiling flags\n");
153 }
Dave Airlie8be48d92010-03-30 05:34:14 +0000154
Dave Airlie38651672010-03-30 05:34:13 +0000155
Jerome Glisse4c788672009-11-20 14:29:23 +0100156 ret = radeon_bo_reserve(rbo, false);
157 if (unlikely(ret != 0))
158 goto out_unref;
Dave Airlie8be48d92010-03-30 05:34:14 +0000159 ret = radeon_bo_pin(rbo, RADEON_GEM_DOMAIN_VRAM, NULL);
Jerome Glissef92e93e2009-06-22 18:15:58 +0200160 if (ret) {
Jerome Glisse4c788672009-11-20 14:29:23 +0100161 radeon_bo_unreserve(rbo);
162 goto out_unref;
163 }
164 if (fb_tiled)
165 radeon_bo_check_tiling(rbo, 0, 0);
Dave Airlie8be48d92010-03-30 05:34:14 +0000166 ret = radeon_bo_kmap(rbo, NULL);
Jerome Glisse4c788672009-11-20 14:29:23 +0100167 radeon_bo_unreserve(rbo);
168 if (ret) {
Jerome Glissef92e93e2009-06-22 18:15:58 +0200169 goto out_unref;
170 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200171
Dave Airlie8be48d92010-03-30 05:34:14 +0000172 *gobj_p = gobj;
173 return 0;
174out_unref:
175 radeonfb_destroy_pinned_object(gobj);
176 *gobj_p = NULL;
177 return ret;
178}
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200179
Dave Airlie8be48d92010-03-30 05:34:14 +0000180static int radeonfb_create(struct radeon_fbdev *rfbdev,
181 struct drm_fb_helper_surface_size *sizes)
182{
183 struct radeon_device *rdev = rfbdev->rdev;
184 struct fb_info *info;
185 struct drm_framebuffer *fb = NULL;
186 struct drm_mode_fb_cmd mode_cmd;
187 struct drm_gem_object *gobj = NULL;
188 struct radeon_bo *rbo = NULL;
189 struct device *device = &rdev->pdev->dev;
190 int ret;
191 unsigned long tmp;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200192
Dave Airlie8be48d92010-03-30 05:34:14 +0000193 mode_cmd.width = sizes->surface_width;
194 mode_cmd.height = sizes->surface_height;
195
196 /* avivo can't scanout real 24bpp */
197 if ((sizes->surface_bpp == 24) && ASIC_IS_AVIVO(rdev))
198 sizes->surface_bpp = 32;
199
200 mode_cmd.bpp = sizes->surface_bpp;
201 mode_cmd.depth = sizes->surface_depth;
202
203 ret = radeonfb_create_pinned_object(rfbdev, &mode_cmd, &gobj);
204 rbo = gobj->driver_private;
205
206 /* okay we have an object now allocate the framebuffer */
207 info = framebuffer_alloc(0, device);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200208 if (info == NULL) {
209 ret = -ENOMEM;
210 goto out_unref;
211 }
Dave Airlie785b93e2009-08-28 15:46:53 +1000212
Dave Airlie8be48d92010-03-30 05:34:14 +0000213 info->par = rfbdev;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200214
Dave Airlie8be48d92010-03-30 05:34:14 +0000215 radeon_framebuffer_init(rdev->ddev, &rfbdev->rfb, &mode_cmd, gobj);
216
Dave Airlie38651672010-03-30 05:34:13 +0000217 fb = &rfbdev->rfb.base;
218
219 /* setup helper */
220 rfbdev->helper.fb = fb;
221 rfbdev->helper.fbdev = info;
Dave Airlie38651672010-03-30 05:34:13 +0000222
Dave Airlie8be48d92010-03-30 05:34:14 +0000223 memset_io(rbo->kptr, 0x0, radeon_bo_size(rbo));
Dave Airliebf8e8282009-08-17 10:20:47 +1000224
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200225 strcpy(info->fix.id, "radeondrmfb");
Dave Airlie785b93e2009-08-28 15:46:53 +1000226
Dave Airlie068143d2009-10-05 09:58:02 +1000227 drm_fb_helper_fill_fix(info, fb->pitch, fb->depth);
Dave Airlie785b93e2009-08-28 15:46:53 +1000228
Jesse Barnes8fd4bd22010-06-23 12:56:12 -0700229 info->flags = FBINFO_DEFAULT | FBINFO_CAN_FORCE_OUTPUT;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200230 info->fbops = &radeonfb_ops;
Dave Airlie785b93e2009-08-28 15:46:53 +1000231
Dave Airlie8be48d92010-03-30 05:34:14 +0000232 tmp = radeon_bo_gpu_offset(rbo) - rdev->mc.vram_start;
Jerome Glissef92e93e2009-06-22 18:15:58 +0200233 info->fix.smem_start = rdev->mc.aper_base + tmp;
Dave Airlie8be48d92010-03-30 05:34:14 +0000234 info->fix.smem_len = radeon_bo_size(rbo);
235 info->screen_base = rbo->kptr;
236 info->screen_size = radeon_bo_size(rbo);
Dave Airlie785b93e2009-08-28 15:46:53 +1000237
Dave Airlie38651672010-03-30 05:34:13 +0000238 drm_fb_helper_fill_var(info, &rfbdev->helper, sizes->fb_width, sizes->fb_height);
Dave Airlieed8f0d92009-07-29 17:07:38 +1000239
240 /* setup aperture base/size for vesafb takeover */
Marcin Slusarz1471ca92010-05-16 17:27:03 +0200241 info->apertures = alloc_apertures(1);
242 if (!info->apertures) {
243 ret = -ENOMEM;
244 goto out_unref;
245 }
246 info->apertures->ranges[0].base = rdev->ddev->mode_config.fb_base;
247 info->apertures->ranges[0].size = rdev->mc.real_vram_size;
Dave Airlieed8f0d92009-07-29 17:07:38 +1000248
Michel Dänzer696d4df2009-06-23 16:12:53 +0200249 info->fix.mmio_start = 0;
250 info->fix.mmio_len = 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200251 info->pixmap.size = 64*1024;
252 info->pixmap.buf_align = 8;
253 info->pixmap.access_align = 32;
254 info->pixmap.flags = FB_PIXMAP_SYSTEM;
255 info->pixmap.scan_align = 1;
Dave Airlie4abe3522010-03-30 05:34:18 +0000256
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200257 if (info->screen_base == NULL) {
258 ret = -ENOSPC;
259 goto out_unref;
260 }
Dave Airlie4abe3522010-03-30 05:34:18 +0000261
262 ret = fb_alloc_cmap(&info->cmap, 256, 0);
263 if (ret) {
264 ret = -ENOMEM;
265 goto out_unref;
266 }
267
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200268 DRM_INFO("fb mappable at 0x%lX\n", info->fix.smem_start);
269 DRM_INFO("vram apper at 0x%lX\n", (unsigned long)rdev->mc.aper_base);
Dave Airlie8be48d92010-03-30 05:34:14 +0000270 DRM_INFO("size %lu\n", (unsigned long)radeon_bo_size(rbo));
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200271 DRM_INFO("fb depth is %d\n", fb->depth);
272 DRM_INFO(" pitch is %d\n", fb->pitch);
273
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000274 vga_switcheroo_client_fb_set(rdev->ddev->pdev, info);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200275 return 0;
276
277out_unref:
Jerome Glisse4c788672009-11-20 14:29:23 +0100278 if (rbo) {
Dave Airlie8be48d92010-03-30 05:34:14 +0000279
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200280 }
Jerome Glissef92e93e2009-06-22 18:15:58 +0200281 if (fb && ret) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200282 drm_gem_object_unreference(gobj);
283 drm_framebuffer_cleanup(fb);
284 kfree(fb);
285 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200286 return ret;
287}
288
Dave Airlie8be48d92010-03-30 05:34:14 +0000289static int radeon_fb_find_or_create_single(struct drm_fb_helper *helper,
290 struct drm_fb_helper_surface_size *sizes)
Dave Airlie38651672010-03-30 05:34:13 +0000291{
Dave Airlie8be48d92010-03-30 05:34:14 +0000292 struct radeon_fbdev *rfbdev = (struct radeon_fbdev *)helper;
Dave Airlie38651672010-03-30 05:34:13 +0000293 int new_fb = 0;
294 int ret;
295
Dave Airlie8be48d92010-03-30 05:34:14 +0000296 if (!helper->fb) {
297 ret = radeonfb_create(rfbdev, sizes);
Dave Airlie38651672010-03-30 05:34:13 +0000298 if (ret)
299 return ret;
Dave Airlie38651672010-03-30 05:34:13 +0000300 new_fb = 1;
Dave Airlie38651672010-03-30 05:34:13 +0000301 }
Dave Airlie38651672010-03-30 05:34:13 +0000302 return new_fb;
303}
304
Dave Airlied50ba252009-09-23 14:44:08 +1000305static char *mode_option;
306int radeon_parse_options(char *options)
307{
308 char *this_opt;
309
310 if (!options || !*options)
311 return 0;
312
313 while ((this_opt = strsep(&options, ",")) != NULL) {
314 if (!*this_opt)
315 continue;
316 mode_option = this_opt;
317 }
318 return 0;
319}
320
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000321void radeon_fb_output_poll_changed(struct radeon_device *rdev)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200322{
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000323 drm_fb_helper_hotplug_event(&rdev->mode_info.rfbdev->helper);
Dave Airlie5c4426a2010-03-30 05:34:17 +0000324}
325
Dave Airlie8be48d92010-03-30 05:34:14 +0000326static int radeon_fbdev_destroy(struct drm_device *dev, struct radeon_fbdev *rfbdev)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200327{
328 struct fb_info *info;
Dave Airlie38651672010-03-30 05:34:13 +0000329 struct radeon_framebuffer *rfb = &rfbdev->rfb;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200330
Dave Airlie8be48d92010-03-30 05:34:14 +0000331 if (rfbdev->helper.fbdev) {
332 info = rfbdev->helper.fbdev;
Dave Airlie4abe3522010-03-30 05:34:18 +0000333
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200334 unregister_framebuffer(info);
Dave Airlie4abe3522010-03-30 05:34:18 +0000335 if (info->cmap.len)
336 fb_dealloc_cmap(&info->cmap);
Dave Airlie8be48d92010-03-30 05:34:14 +0000337 framebuffer_release(info);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200338 }
339
Dave Airlie8be48d92010-03-30 05:34:14 +0000340 if (rfb->obj) {
Dave Airlie29d08b32010-09-27 16:17:17 +1000341 radeonfb_destroy_pinned_object(rfb->obj);
342 rfb->obj = NULL;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200343 }
Dave Airlie4abe3522010-03-30 05:34:18 +0000344 drm_fb_helper_fini(&rfbdev->helper);
Dave Airlie38651672010-03-30 05:34:13 +0000345 drm_framebuffer_cleanup(&rfb->base);
Dave Airlie785b93e2009-08-28 15:46:53 +1000346
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200347 return 0;
348}
Dave Airlie4abe3522010-03-30 05:34:18 +0000349
350static struct drm_fb_helper_funcs radeon_fb_helper_funcs = {
351 .gamma_set = radeon_crtc_fb_gamma_set,
352 .gamma_get = radeon_crtc_fb_gamma_get,
353 .fb_probe = radeon_fb_find_or_create_single,
Dave Airlie4abe3522010-03-30 05:34:18 +0000354};
Dave Airlie38651672010-03-30 05:34:13 +0000355
356int radeon_fbdev_init(struct radeon_device *rdev)
357{
Dave Airlie8be48d92010-03-30 05:34:14 +0000358 struct radeon_fbdev *rfbdev;
Dave Airlie4abe3522010-03-30 05:34:18 +0000359 int bpp_sel = 32;
Chris Wilson5a793952010-06-06 10:50:03 +0100360 int ret;
Dave Airlie4abe3522010-03-30 05:34:18 +0000361
362 /* select 8 bpp console on RN50 or 16MB cards */
363 if (ASIC_IS_RN50(rdev) || rdev->mc.real_vram_size <= (32*1024*1024))
364 bpp_sel = 8;
Dave Airlie8be48d92010-03-30 05:34:14 +0000365
366 rfbdev = kzalloc(sizeof(struct radeon_fbdev), GFP_KERNEL);
367 if (!rfbdev)
368 return -ENOMEM;
369
370 rfbdev->rdev = rdev;
371 rdev->mode_info.rfbdev = rfbdev;
Dave Airlie4abe3522010-03-30 05:34:18 +0000372 rfbdev->helper.funcs = &radeon_fb_helper_funcs;
Dave Airlie8be48d92010-03-30 05:34:14 +0000373
Chris Wilson5a793952010-06-06 10:50:03 +0100374 ret = drm_fb_helper_init(rdev->ddev, &rfbdev->helper,
375 rdev->num_crtc,
376 RADEONFB_CONN_LIMIT);
377 if (ret) {
378 kfree(rfbdev);
379 return ret;
380 }
381
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000382 drm_fb_helper_single_add_all_connectors(&rfbdev->helper);
Dave Airlie4abe3522010-03-30 05:34:18 +0000383 drm_fb_helper_initial_config(&rfbdev->helper, bpp_sel);
Dave Airlie38651672010-03-30 05:34:13 +0000384 return 0;
385}
386
387void radeon_fbdev_fini(struct radeon_device *rdev)
388{
Dave Airlie8be48d92010-03-30 05:34:14 +0000389 if (!rdev->mode_info.rfbdev)
390 return;
391
Dave Airlie38651672010-03-30 05:34:13 +0000392 radeon_fbdev_destroy(rdev->ddev, rdev->mode_info.rfbdev);
Dave Airlie8be48d92010-03-30 05:34:14 +0000393 kfree(rdev->mode_info.rfbdev);
Dave Airlie38651672010-03-30 05:34:13 +0000394 rdev->mode_info.rfbdev = NULL;
395}
396
397void radeon_fbdev_set_suspend(struct radeon_device *rdev, int state)
398{
399 fb_set_suspend(rdev->mode_info.rfbdev->helper.fbdev, state);
400}
401
402int radeon_fbdev_total_size(struct radeon_device *rdev)
403{
404 struct radeon_bo *robj;
405 int size = 0;
406
407 robj = rdev->mode_info.rfbdev->rfb.obj->driver_private;
408 size += radeon_bo_size(robj);
409 return size;
410}
411
412bool radeon_fbdev_robj_is_fb(struct radeon_device *rdev, struct radeon_bo *robj)
413{
414 if (robj == rdev->mode_info.rfbdev->rfb.obj->driver_private)
415 return true;
416 return false;
417}