omap_plane.c 11.5 KB
Newer Older
1
/*
R
Rob Clark 已提交
2
 * drivers/gpu/drm/omapdrm/omap_plane.c
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
 *
 * Copyright (C) 2011 Texas Instruments
 * Author: Rob Clark <rob.clark@linaro.org>
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 as published by
 * the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 *
 * You should have received a copy of the GNU General Public License along with
 * this program.  If not, see <http://www.gnu.org/licenses/>.
 */

R
Rob Clark 已提交
20
#include "drm_flip_work.h"
21

22
#include "omap_drv.h"
23
#include "omap_dmm_tiler.h"
24 25 26 27 28 29 30 31 32 33 34

/* some hackery because omapdss has an 'enum omap_plane' (which would be
 * better named omap_plane_id).. and compiler seems unhappy about having
 * both a 'struct omap_plane' and 'enum omap_plane'
 */
#define omap_plane _omap_plane

/*
 * plane funcs
 */

35 36 37 38 39
struct callback {
	void (*fxn)(void *);
	void *arg;
};

40 41 42 43
#define to_omap_plane(x) container_of(x, struct omap_plane, base)

struct omap_plane {
	struct drm_plane base;
44 45
	int id;  /* TODO rename omap_plane -> omap_plane_id in omapdss so I can use the enum */
	const char *name;
46
	struct omap_overlay_info info;
47
	struct omap_drm_apply apply;
48

49 50
	/* position/orientation of scanout within the fb: */
	struct omap_drm_window win;
51
	bool enabled;
52 53 54

	/* last fb that we pinned: */
	struct drm_framebuffer *pinned_fb;
55

56 57
	uint32_t nformats;
	uint32_t formats[32];
58

59
	struct omap_drm_irq error_irq;
60

R
Rob Clark 已提交
61 62
	/* for deferring bo unpin's until next post_apply(): */
	struct drm_flip_work unpin_work;
63

64 65
	// XXX maybe get rid of this and handle vblank in crtc too?
	struct callback apply_done_cb;
66
};
67

68
static void omap_plane_unpin_worker(struct drm_flip_work *work, void *val)
69
{
R
Rob Clark 已提交
70 71 72
	struct omap_plane *omap_plane =
			container_of(work, struct omap_plane, unpin_work);
	struct drm_device *dev = omap_plane->base.dev;
73

R
Rob Clark 已提交
74 75 76 77
	omap_framebuffer_unpin(val);
	mutex_lock(&dev->mode_config.mutex);
	drm_framebuffer_unreference(val);
	mutex_unlock(&dev->mode_config.mutex);
78 79
}

80
/* update which fb (if any) is pinned for scanout */
81 82
static int omap_plane_update_pin(struct drm_plane *plane,
				 struct drm_framebuffer *fb)
83 84
{
	struct omap_plane *omap_plane = to_omap_plane(plane);
85 86 87
	struct drm_framebuffer *pinned_fb = omap_plane->pinned_fb;

	if (pinned_fb != fb) {
R
Rob Clark 已提交
88
		int ret = 0;
89 90 91

		DBG("%p -> %p", pinned_fb, fb);

R
Rob Clark 已提交
92
		if (fb) {
93
			drm_framebuffer_reference(fb);
R
Rob Clark 已提交
94 95
			ret = omap_framebuffer_pin(fb);
		}
96 97

		if (pinned_fb)
R
Rob Clark 已提交
98
			drm_flip_work_queue(&omap_plane->unpin_work, pinned_fb);
99 100 101 102

		if (ret) {
			dev_err(plane->dev->dev, "could not swap %p -> %p\n",
					omap_plane->pinned_fb, fb);
R
Rob Clark 已提交
103
			drm_framebuffer_unreference(fb);
104 105 106
			omap_plane->pinned_fb = NULL;
			return ret;
		}
107 108 109 110

		omap_plane->pinned_fb = fb;
	}

111
	return 0;
112 113
}

114
static void omap_plane_pre_apply(struct omap_drm_apply *apply)
115
{
116 117
	struct omap_plane *omap_plane =
			container_of(apply, struct omap_plane, apply);
118
	struct omap_drm_window *win = &omap_plane->win;
119 120 121 122 123 124
	struct drm_plane *plane = &omap_plane->base;
	struct drm_device *dev = plane->dev;
	struct omap_overlay_info *info = &omap_plane->info;
	struct drm_crtc *crtc = plane->crtc;
	enum omap_channel channel;
	bool enabled = omap_plane->enabled && crtc;
125
	int ret;
126

127 128 129
	DBG("%s, enabled=%d", omap_plane->name, enabled);

	/* if fb has changed, pin new fb: */
130
	omap_plane_update_pin(plane, enabled ? plane->fb : NULL);
131 132 133

	if (!enabled) {
		dispc_ovl_enable(omap_plane->id, false);
134
		return;
135
	}
136

137 138 139
	channel = omap_crtc_channel(crtc);

	/* update scanout: */
140
	omap_framebuffer_update_scanout(plane->fb, win, info);
141

142 143
	DBG("%dx%d -> %dx%d (%d)", info->width, info->height,
			info->out_width, info->out_height,
144
			info->screen_width);
R
Russell King 已提交
145 146
	DBG("%d,%d %pad %pad", info->pos_x, info->pos_y,
			&info->paddr, &info->p_uv_addr);
147 148

	/* and finally, update omapdss: */
149 150
	ret = dispc_ovl_setup(omap_plane->id, info, false,
			      omap_crtc_timings(crtc), false);
151 152 153 154 155 156 157 158 159 160 161 162 163 164
	if (ret) {
		dev_err(dev->dev, "dispc_ovl_setup failed: %d\n", ret);
		return;
	}

	dispc_ovl_enable(omap_plane->id, true);
	dispc_ovl_set_channel_out(omap_plane->id, channel);
}

static void omap_plane_post_apply(struct omap_drm_apply *apply)
{
	struct omap_plane *omap_plane =
			container_of(apply, struct omap_plane, apply);
	struct drm_plane *plane = &omap_plane->base;
R
Rob Clark 已提交
165
	struct omap_drm_private *priv = plane->dev->dev_private;
166 167 168 169 170
	struct callback cb;

	cb = omap_plane->apply_done_cb;
	omap_plane->apply_done_cb.fxn = NULL;

R
Rob Clark 已提交
171
	drm_flip_work_commit(&omap_plane->unpin_work, priv->wq);
172 173 174 175 176

	if (cb.fxn)
		cb.fxn(cb.arg);
}

177
static int omap_plane_apply(struct drm_plane *plane)
178 179 180 181 182 183
{
	if (plane->crtc) {
		struct omap_plane *omap_plane = to_omap_plane(plane);
		return omap_crtc_apply(plane->crtc, &omap_plane->apply);
	}
	return 0;
184 185
}

186
int omap_plane_mode_set(struct drm_plane *plane,
187 188 189 190 191 192
			struct drm_crtc *crtc, struct drm_framebuffer *fb,
			int crtc_x, int crtc_y,
			unsigned int crtc_w, unsigned int crtc_h,
			unsigned int src_x, unsigned int src_y,
			unsigned int src_w, unsigned int src_h,
			void (*fxn)(void *), void *arg)
193 194
{
	struct omap_plane *omap_plane = to_omap_plane(plane);
195 196 197 198 199 200
	struct omap_drm_window *win = &omap_plane->win;

	win->crtc_x = crtc_x;
	win->crtc_y = crtc_y;
	win->crtc_w = crtc_w;
	win->crtc_h = crtc_h;
201

202 203 204 205
	win->src_x = src_x;
	win->src_y = src_y;
	win->src_w = src_w;
	win->src_h = src_h;
206

207 208 209 210 211 212 213 214 215 216
	if (fxn) {
		/* omap_crtc should ensure that a new page flip
		 * isn't permitted while there is one pending:
		 */
		BUG_ON(omap_plane->apply_done_cb.fxn);

		omap_plane->apply_done_cb.fxn = fxn;
		omap_plane->apply_done_cb.arg = arg;
	}

217
	return omap_plane_apply(plane);
218 219
}

220 221 222 223 224 225 226
static int omap_plane_update(struct drm_plane *plane,
		struct drm_crtc *crtc, struct drm_framebuffer *fb,
		int crtc_x, int crtc_y,
		unsigned int crtc_w, unsigned int crtc_h,
		uint32_t src_x, uint32_t src_y,
		uint32_t src_w, uint32_t src_h)
{
227 228
	struct omap_plane *omap_plane = to_omap_plane(plane);
	omap_plane->enabled = true;
229

G
Grazvydas Ignotas 已提交
230 231 232 233 234 235 236 237
	/* omap_plane_mode_set() takes adjusted src */
	switch (omap_plane->win.rotation & 0xf) {
	case BIT(DRM_ROTATE_90):
	case BIT(DRM_ROTATE_270):
		swap(src_w, src_h);
		break;
	}

238 239 240 241 242 243 244
	/*
	 * We don't need to take a reference to the framebuffer as the DRM core
	 * has already done so for the purpose of setting plane->fb.
	 */
	plane->fb = fb;
	plane->crtc = crtc;

245
	/* src values are in Q16 fixed point, convert to integer: */
246 247
	return omap_plane_mode_set(plane, crtc, fb,
			crtc_x, crtc_y, crtc_w, crtc_h,
248
			src_x >> 16, src_y >> 16, src_w >> 16, src_h >> 16,
249
			NULL, NULL);
250 251
}

252 253
static int omap_plane_disable(struct drm_plane *plane)
{
254
	struct omap_plane *omap_plane = to_omap_plane(plane);
255

256
	omap_plane->win.rotation = BIT(DRM_ROTATE_0);
257 258 259
	omap_plane->info.zorder = plane->type == DRM_PLANE_TYPE_PRIMARY
				? 0 : omap_plane->id;

260
	return omap_plane_set_enable(plane, false);
261 262 263 264 265
}

static void omap_plane_destroy(struct drm_plane *plane)
{
	struct omap_plane *omap_plane = to_omap_plane(plane);
266 267 268 269 270

	DBG("%s", omap_plane->name);

	omap_irq_unregister(plane->dev, &omap_plane->error_irq);

271
	drm_plane_cleanup(plane);
272

R
Rob Clark 已提交
273
	drm_flip_work_cleanup(&omap_plane->unpin_work);
274

275 276 277
	kfree(omap_plane);
}

278
int omap_plane_set_enable(struct drm_plane *plane, bool enable)
279 280 281
{
	struct omap_plane *omap_plane = to_omap_plane(plane);

282 283
	if (enable == omap_plane->enabled)
		return 0;
284

285
	omap_plane->enabled = enable;
286
	return omap_plane_apply(plane);
287 288
}

289 290 291 292 293 294 295 296
/* helper to install properties which are common to planes and crtcs */
void omap_plane_install_properties(struct drm_plane *plane,
		struct drm_mode_object *obj)
{
	struct drm_device *dev = plane->dev;
	struct omap_drm_private *priv = dev->dev_private;
	struct drm_property *prop;

297 298 299
	if (priv->has_dmm) {
		prop = priv->rotation_prop;
		if (!prop) {
300 301 302 303 304 305 306
			prop = drm_mode_create_rotation_property(dev,
								 BIT(DRM_ROTATE_0) |
								 BIT(DRM_ROTATE_90) |
								 BIT(DRM_ROTATE_180) |
								 BIT(DRM_ROTATE_270) |
								 BIT(DRM_REFLECT_X) |
								 BIT(DRM_REFLECT_Y));
307 308 309 310 311
			if (prop == NULL)
				return;
			priv->rotation_prop = prop;
		}
		drm_object_attach_property(obj, prop, 0);
312
	}
313

314 315
	prop = priv->zorder_prop;
	if (!prop) {
316 317 318 319 320 321
		prop = drm_property_create_range(dev, 0, "zorder", 0, 3);
		if (prop == NULL)
			return;
		priv->zorder_prop = prop;
	}
	drm_object_attach_property(obj, prop, 0);
322 323 324 325 326 327 328 329 330 331
}

int omap_plane_set_property(struct drm_plane *plane,
		struct drm_property *property, uint64_t val)
{
	struct omap_plane *omap_plane = to_omap_plane(plane);
	struct omap_drm_private *priv = plane->dev->dev_private;
	int ret = -EINVAL;

	if (property == priv->rotation_prop) {
332
		DBG("%s: rotation: %02x", omap_plane->name, (uint32_t)val);
333
		omap_plane->win.rotation = val;
334
		ret = omap_plane_apply(plane);
335
	} else if (property == priv->zorder_prop) {
336
		DBG("%s: zorder: %02x", omap_plane->name, (uint32_t)val);
337
		omap_plane->info.zorder = val;
338
		ret = omap_plane_apply(plane);
339 340 341 342 343
	}

	return ret;
}

344
static const struct drm_plane_funcs omap_plane_funcs = {
345 346 347 348
	.update_plane = omap_plane_update,
	.disable_plane = omap_plane_disable,
	.destroy = omap_plane_destroy,
	.set_property = omap_plane_set_property,
349 350
};

351 352 353 354 355 356 357 358
static void omap_plane_error_irq(struct omap_drm_irq *irq, uint32_t irqstatus)
{
	struct omap_plane *omap_plane =
			container_of(irq, struct omap_plane, error_irq);
	DRM_ERROR("%s: errors: %08x\n", omap_plane->name, irqstatus);
}

static const char *plane_names[] = {
359 360 361 362
	[OMAP_DSS_GFX] = "gfx",
	[OMAP_DSS_VIDEO1] = "vid1",
	[OMAP_DSS_VIDEO2] = "vid2",
	[OMAP_DSS_VIDEO3] = "vid3",
363 364 365
};

static const uint32_t error_irqs[] = {
366 367 368 369
	[OMAP_DSS_GFX] = DISPC_IRQ_GFX_FIFO_UNDERFLOW,
	[OMAP_DSS_VIDEO1] = DISPC_IRQ_VID1_FIFO_UNDERFLOW,
	[OMAP_DSS_VIDEO2] = DISPC_IRQ_VID2_FIFO_UNDERFLOW,
	[OMAP_DSS_VIDEO3] = DISPC_IRQ_VID3_FIFO_UNDERFLOW,
370 371
};

372 373
/* initialize plane */
struct drm_plane *omap_plane_init(struct drm_device *dev,
374
		int id, enum drm_plane_type type)
375
{
376
	struct omap_drm_private *priv = dev->dev_private;
377
	struct drm_plane *plane;
378
	struct omap_plane *omap_plane;
379
	struct omap_overlay_info *info;
380
	int ret;
381

382
	DBG("%s: type=%d", plane_names[id], type);
383

384
	omap_plane = kzalloc(sizeof(*omap_plane), GFP_KERNEL);
385
	if (!omap_plane)
386
		return ERR_PTR(-ENOMEM);
387

388
	drm_flip_work_init(&omap_plane->unpin_work,
389
			"unpin", omap_plane_unpin_worker);
390

391 392
	omap_plane->nformats = omap_framebuffer_get_formats(
			omap_plane->formats, ARRAY_SIZE(omap_plane->formats),
393 394 395 396
			dss_feat_get_supported_color_modes(id));
	omap_plane->id = id;
	omap_plane->name = plane_names[id];

397 398
	plane = &omap_plane->base;

399 400 401 402 403 404 405
	omap_plane->apply.pre_apply  = omap_plane_pre_apply;
	omap_plane->apply.post_apply = omap_plane_post_apply;

	omap_plane->error_irq.irqmask = error_irqs[id];
	omap_plane->error_irq.irq = omap_plane_error_irq;
	omap_irq_register(dev, &omap_plane->error_irq);

406 407 408 409 410
	ret = drm_universal_plane_init(dev, plane, (1 << priv->num_crtcs) - 1,
				       &omap_plane_funcs, omap_plane->formats,
				       omap_plane->nformats, type);
	if (ret < 0)
		goto error;
411

412 413
	omap_plane_install_properties(plane, &plane->base);

414 415 416
	/* get our starting configuration, set defaults for parameters
	 * we don't currently use, etc:
	 */
417 418 419 420 421
	info = &omap_plane->info;
	info->rotation_type = OMAP_DSS_ROT_DMA;
	info->rotation = OMAP_DSS_ROT_0;
	info->global_alpha = 0xff;
	info->mirror = 0;
422 423 424 425 426 427

	/* Set defaults depending on whether we are a CRTC or overlay
	 * layer.
	 * TODO add ioctl to give userspace an API to change this.. this
	 * will come in a subsequent patch.
	 */
428
	if (type == DRM_PLANE_TYPE_PRIMARY)
429 430
		omap_plane->info.zorder = 0;
	else
431
		omap_plane->info.zorder = id;
432 433

	return plane;
434 435 436 437 438

error:
	omap_irq_unregister(plane->dev, &omap_plane->error_irq);
	kfree(omap_plane);
	return NULL;
439
}