radeon_fb.c 10.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
/*
 * 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>
27
#include <linux/slab.h>
28 29 30 31 32 33 34 35 36
#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"

37 38
#include "drm_fb_helper.h"

39 40
#include <linux/vga_switcheroo.h>

41 42 43 44
/* object hierarchy -
   this contains a helper + a radeon fb
   the helper contains a pointer to radeon framebuffer baseclass.
*/
45
struct radeon_fbdev {
46
	struct drm_fb_helper helper;
47 48 49
	struct radeon_framebuffer rfb;
	struct list_head fbdev_list;
	struct radeon_device *rdev;
50 51 52 53
};

static struct fb_ops radeonfb_ops = {
	.owner = THIS_MODULE,
54
	.fb_check_var = drm_fb_helper_check_var,
55
	.fb_set_par = drm_fb_helper_set_par,
56 57 58
	.fb_fillrect = cfb_fillrect,
	.fb_copyarea = cfb_copyarea,
	.fb_imageblit = cfb_imageblit,
59 60
	.fb_pan_display = drm_fb_helper_pan_display,
	.fb_blank = drm_fb_helper_blank,
61
	.fb_setcmap = drm_fb_helper_setcmap,
62 63
	.fb_debug_enter = drm_fb_helper_debug_enter,
	.fb_debug_leave = drm_fb_helper_debug_leave,
64 65 66
};


67
int radeon_align_pitch(struct radeon_device *rdev, int width, int bpp, bool tiled)
68 69
{
	int aligned = width;
70
	int align_large = (ASIC_IS_AVIVO(rdev)) || tiled;
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
	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;
}

91
static void radeonfb_destroy_pinned_object(struct drm_gem_object *gobj)
92
{
93
	struct radeon_bo *rbo = gem_to_radeon_bo(gobj);
94 95 96 97 98
	int ret;

	ret = radeon_bo_reserve(rbo, false);
	if (likely(ret == 0)) {
		radeon_bo_kunmap(rbo);
99
		radeon_bo_unpin(rbo);
100 101 102 103
		radeon_bo_unreserve(rbo);
	}
	drm_gem_object_unreference_unlocked(gobj);
}
104

105
static int radeonfb_create_pinned_object(struct radeon_fbdev *rfbdev,
106
					 struct drm_mode_fb_cmd2 *mode_cmd,
107
					 struct drm_gem_object **gobj_p)
108
{
109
	struct radeon_device *rdev = rfbdev->rdev;
110
	struct drm_gem_object *gobj = NULL;
111
	struct radeon_bo *rbo = NULL;
112
	bool fb_tiled = false; /* useful for testing */
113
	u32 tiling_flags = 0;
114 115
	int ret;
	int aligned_size, size;
116
	int height = mode_cmd->height;
117 118
	u32 bpp, depth;

119
	drm_fb_get_bpp_depth(mode_cmd->pixel_format, &depth, &bpp);
120 121

	/* need to align pitch with crtc limits */
122 123
	mode_cmd->pitches[0] = radeon_align_pitch(rdev, mode_cmd->width, bpp,
						  fb_tiled) * ((bpp + 1) / 8);
124

125 126
	if (rdev->family >= CHIP_R600)
		height = ALIGN(mode_cmd->height, 8);
127
	size = mode_cmd->pitches[0] * height;
128 129
	aligned_size = ALIGN(size, PAGE_SIZE);
	ret = radeon_gem_object_create(rdev, aligned_size, 0,
130
				       RADEON_GEM_DOMAIN_VRAM,
131
				       false, true,
132
				       &gobj);
133
	if (ret) {
134 135 136
		printk(KERN_ERR "failed to allocate framebuffer (%d)\n",
		       aligned_size);
		return -ENOMEM;
137
	}
138
	rbo = gem_to_radeon_bo(gobj);
139

140
	if (fb_tiled)
141 142 143
		tiling_flags = RADEON_TILING_MACRO;

#ifdef __BIG_ENDIAN
144
	switch (bpp) {
145 146 147 148 149 150 151 152 153 154
	case 32:
		tiling_flags |= RADEON_TILING_SWAP_32BIT;
		break;
	case 16:
		tiling_flags |= RADEON_TILING_SWAP_16BIT;
	default:
		break;
	}
#endif

155 156
	if (tiling_flags) {
		ret = radeon_bo_set_tiling_flags(rbo,
157
						 tiling_flags | RADEON_TILING_SURFACE,
158
						 mode_cmd->pitches[0]);
159 160 161
		if (ret)
			dev_err(rdev->dev, "FB failed to set tiling flags\n");
	}
162

163

164 165 166
	ret = radeon_bo_reserve(rbo, false);
	if (unlikely(ret != 0))
		goto out_unref;
167
	ret = radeon_bo_pin(rbo, RADEON_GEM_DOMAIN_VRAM, NULL);
168 169 170 171 172 173
	if (ret) {
		radeon_bo_unreserve(rbo);
		goto out_unref;
	}
	if (fb_tiled)
		radeon_bo_check_tiling(rbo, 0, 0);
174
	ret = radeon_bo_kmap(rbo, NULL);
175
	radeon_bo_unreserve(rbo);
176 177 178
	if (ret) {
		goto out_unref;
	}
179

180 181 182 183 184 185 186 187 188 189 190 191 192 193
	*gobj_p = gobj;
	return 0;
out_unref:
	radeonfb_destroy_pinned_object(gobj);
	*gobj_p = NULL;
	return ret;
}

static int radeonfb_create(struct radeon_fbdev *rfbdev,
			   struct drm_fb_helper_surface_size *sizes)
{
	struct radeon_device *rdev = rfbdev->rdev;
	struct fb_info *info;
	struct drm_framebuffer *fb = NULL;
194
	struct drm_mode_fb_cmd2 mode_cmd;
195 196 197 198 199 200 201 202 203 204 205 206 207
	struct drm_gem_object *gobj = NULL;
	struct radeon_bo *rbo = NULL;
	struct device *device = &rdev->pdev->dev;
	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;

208 209
	mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp,
							  sizes->surface_depth);
210

211
	ret = radeonfb_create_pinned_object(rfbdev, &mode_cmd, &gobj);
212 213 214 215 216
	if (ret) {
		DRM_ERROR("failed to create fbcon object %d\n", ret);
		return ret;
	}

217
	rbo = gem_to_radeon_bo(gobj);
218

219 220
	/* okay we have an object now allocate the framebuffer */
	info = framebuffer_alloc(0, device);
221 222 223 224
	if (info == NULL) {
		ret = -ENOMEM;
		goto out_unref;
	}
225

226
	info->par = rfbdev;
227

228 229 230 231 232
	ret = radeon_framebuffer_init(rdev->ddev, &rfbdev->rfb, &mode_cmd, gobj);
	if (ret) {
		DRM_ERROR("failed to initalise framebuffer %d\n", ret);
		goto out_unref;
	}
233

234 235 236 237 238 239
	fb = &rfbdev->rfb.base;

	/* setup helper */
	rfbdev->helper.fb = fb;
	rfbdev->helper.fbdev = info;

240
	memset_io(rbo->kptr, 0x0, radeon_bo_size(rbo));
241

242
	strcpy(info->fix.id, "radeondrmfb");
243

244
	drm_fb_helper_fill_fix(info, fb->pitches[0], fb->depth);
245

246
	info->flags = FBINFO_DEFAULT | FBINFO_CAN_FORCE_OUTPUT;
247
	info->fbops = &radeonfb_ops;
248

249
	tmp = radeon_bo_gpu_offset(rbo) - rdev->mc.vram_start;
250
	info->fix.smem_start = rdev->mc.aper_base + tmp;
251 252 253
	info->fix.smem_len = radeon_bo_size(rbo);
	info->screen_base = rbo->kptr;
	info->screen_size = radeon_bo_size(rbo);
254

255
	drm_fb_helper_fill_var(info, &rfbdev->helper, sizes->fb_width, sizes->fb_height);
256 257

	/* setup aperture base/size for vesafb takeover */
258 259 260 261 262 263
	info->apertures = alloc_apertures(1);
	if (!info->apertures) {
		ret = -ENOMEM;
		goto out_unref;
	}
	info->apertures->ranges[0].base = rdev->ddev->mode_config.fb_base;
264
	info->apertures->ranges[0].size = rdev->mc.aper_size;
265

266 267 268 269 270
	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;
271

272 273 274 275
	if (info->screen_base == NULL) {
		ret = -ENOSPC;
		goto out_unref;
	}
276 277 278 279 280 281 282

	ret = fb_alloc_cmap(&info->cmap, 256, 0);
	if (ret) {
		ret = -ENOMEM;
		goto out_unref;
	}

283 284
	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);
285
	DRM_INFO("size %lu\n", (unsigned long)radeon_bo_size(rbo));
286
	DRM_INFO("fb depth is %d\n", fb->depth);
287
	DRM_INFO("   pitch is %d\n", fb->pitches[0]);
288

289
	vga_switcheroo_client_fb_set(rdev->ddev->pdev, info);
290 291 292
	return 0;

out_unref:
293
	if (rbo) {
294

295
	}
296
	if (fb && ret) {
297 298 299 300 301 302 303
		drm_gem_object_unreference(gobj);
		drm_framebuffer_cleanup(fb);
		kfree(fb);
	}
	return ret;
}

304 305
static int radeon_fb_find_or_create_single(struct drm_fb_helper *helper,
					   struct drm_fb_helper_surface_size *sizes)
306
{
307
	struct radeon_fbdev *rfbdev = (struct radeon_fbdev *)helper;
308 309 310
	int new_fb = 0;
	int ret;

311 312
	if (!helper->fb) {
		ret = radeonfb_create(rfbdev, sizes);
313 314 315 316 317 318 319
		if (ret)
			return ret;
		new_fb = 1;
	}
	return new_fb;
}

320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335
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;
}

336
void radeon_fb_output_poll_changed(struct radeon_device *rdev)
337
{
338
	drm_fb_helper_hotplug_event(&rdev->mode_info.rfbdev->helper);
339 340
}

341
static int radeon_fbdev_destroy(struct drm_device *dev, struct radeon_fbdev *rfbdev)
342 343
{
	struct fb_info *info;
344
	struct radeon_framebuffer *rfb = &rfbdev->rfb;
345

346 347
	if (rfbdev->helper.fbdev) {
		info = rfbdev->helper.fbdev;
348

349
		unregister_framebuffer(info);
350 351
		if (info->cmap.len)
			fb_dealloc_cmap(&info->cmap);
352
		framebuffer_release(info);
353 354
	}

355
	if (rfb->obj) {
356 357
		radeonfb_destroy_pinned_object(rfb->obj);
		rfb->obj = NULL;
358
	}
359
	drm_fb_helper_fini(&rfbdev->helper);
360
	drm_framebuffer_cleanup(&rfb->base);
361 362 363

	return 0;
}
364

365 366 367 368 369
static struct drm_fb_helper_funcs radeon_fb_helper_funcs = {
	.gamma_set = radeon_crtc_fb_gamma_set,
	.gamma_get = radeon_crtc_fb_gamma_get,
	.fb_probe = radeon_fb_find_or_create_single,
};
370 371 372

int radeon_fbdev_init(struct radeon_device *rdev)
{
373
	struct radeon_fbdev *rfbdev;
374
	int bpp_sel = 32;
375
	int ret;
376 377 378 379

	/* 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;
380 381 382 383 384 385 386

	rfbdev = kzalloc(sizeof(struct radeon_fbdev), GFP_KERNEL);
	if (!rfbdev)
		return -ENOMEM;

	rfbdev->rdev = rdev;
	rdev->mode_info.rfbdev = rfbdev;
387
	rfbdev->helper.funcs = &radeon_fb_helper_funcs;
388

389 390 391 392 393 394 395 396
	ret = drm_fb_helper_init(rdev->ddev, &rfbdev->helper,
				 rdev->num_crtc,
				 RADEONFB_CONN_LIMIT);
	if (ret) {
		kfree(rfbdev);
		return ret;
	}

397
	drm_fb_helper_single_add_all_connectors(&rfbdev->helper);
398
	drm_fb_helper_initial_config(&rfbdev->helper, bpp_sel);
399
	return 0;
400 401 402 403
}

void radeon_fbdev_fini(struct radeon_device *rdev)
{
404 405 406
	if (!rdev->mode_info.rfbdev)
		return;

407
	radeon_fbdev_destroy(rdev->ddev, rdev->mode_info.rfbdev);
408
	kfree(rdev->mode_info.rfbdev);
409 410 411 412 413 414 415 416 417 418 419 420 421
	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;

422
	robj = gem_to_radeon_bo(rdev->mode_info.rfbdev->rfb.obj);
423 424 425 426 427 428
	size += radeon_bo_size(robj);
	return size;
}

bool radeon_fbdev_robj_is_fb(struct radeon_device *rdev, struct radeon_bo *robj)
{
429
	if (robj == gem_to_radeon_bo(rdev->mode_info.rfbdev->rfb.obj))
430 431
		return true;
	return false;
432
}