omap_plane.c 10.7 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/>.
 */

20
#include <drm/drm_atomic_helper.h>
21
#include <drm/drm_plane_helper.h>
22

23
#include "omap_dmm_tiler.h"
24
#include "omap_drv.h"
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39

/* 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
 */

#define to_omap_plane(x) container_of(x, struct omap_plane, base)

struct omap_plane {
	struct drm_plane base;
40 41
	int id;  /* TODO rename omap_plane -> omap_plane_id in omapdss so I can use the enum */
	const char *name;
42 43
	struct omap_overlay_info info;

44 45
	/* position/orientation of scanout within the fb: */
	struct omap_drm_window win;
46
	bool enabled;
47 48 49

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

51 52
	uint32_t nformats;
	uint32_t formats[32];
53

54
	struct omap_drm_irq error_irq;
55
};
56

57
/* update which fb (if any) is pinned for scanout */
58
static int omap_plane_update_pin(struct drm_plane *plane)
59 60
{
	struct omap_plane *omap_plane = to_omap_plane(plane);
61
	struct drm_framebuffer *pinned_fb = omap_plane->pinned_fb;
62 63
	struct drm_framebuffer *fb = omap_plane->enabled ? plane->fb : NULL;
	int ret = 0;
64

65 66
	if (pinned_fb == fb)
		return 0;
67

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

70 71 72 73
	if (fb) {
		drm_framebuffer_reference(fb);
		ret = omap_framebuffer_pin(fb);
	}
74

75 76
	if (pinned_fb)
		omap_crtc_queue_unpin(plane->crtc, pinned_fb);
77

78 79 80 81 82 83
	if (ret) {
		dev_err(plane->dev->dev, "could not swap %p -> %p\n",
				omap_plane->pinned_fb, fb);
		drm_framebuffer_unreference(fb);
		omap_plane->pinned_fb = NULL;
		return ret;
84 85
	}

86 87
	omap_plane->pinned_fb = fb;

88
	return 0;
89 90
}

91 92 93
static int __omap_plane_setup(struct omap_plane *omap_plane,
			      struct drm_crtc *crtc,
			      struct drm_framebuffer *fb)
94
{
95
	struct omap_overlay_info *info = &omap_plane->info;
96
	struct drm_device *dev = omap_plane->base.dev;
97
	int ret;
98

99
	DBG("%s, enabled=%d", omap_plane->name, omap_plane->enabled);
100

101
	if (!omap_plane->enabled) {
102
		dispc_ovl_enable(omap_plane->id, false);
103
		return 0;
104
	}
105

106
	/* update scanout: */
107
	omap_framebuffer_update_scanout(fb, &omap_plane->win, info);
108

109 110
	DBG("%dx%d -> %dx%d (%d)", info->width, info->height,
			info->out_width, info->out_height,
111
			info->screen_width);
R
Russell King 已提交
112 113
	DBG("%d,%d %pad %pad", info->pos_x, info->pos_y,
			&info->paddr, &info->p_uv_addr);
114

115 116
	dispc_ovl_set_channel_out(omap_plane->id,
				  omap_crtc_channel(crtc));
117

118
	/* and finally, update omapdss: */
119 120
	ret = dispc_ovl_setup(omap_plane->id, info, false,
			      omap_crtc_timings(crtc), false);
121 122
	if (ret) {
		dev_err(dev->dev, "dispc_ovl_setup failed: %d\n", ret);
123
		return ret;
124 125 126 127
	}

	dispc_ovl_enable(omap_plane->id, true);

128 129 130 131 132 133 134 135 136 137 138 139 140 141
	return 0;
}

static int omap_plane_setup(struct omap_plane *omap_plane)
{
	struct drm_plane *plane = &omap_plane->base;
	int ret;

	ret = omap_plane_update_pin(plane);
	if (ret < 0)
		return ret;

	dispc_runtime_get();
	ret = __omap_plane_setup(omap_plane, plane->crtc, plane->fb);
142
	dispc_runtime_put();
143

144
	return ret;
145 146
}

147
int omap_plane_mode_set(struct drm_plane *plane,
148 149 150 151
			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,
152
			unsigned int src_w, unsigned int src_h)
153 154
{
	struct omap_plane *omap_plane = to_omap_plane(plane);
155 156 157 158 159 160
	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;
161

162 163 164 165
	win->src_x = src_x;
	win->src_y = src_y;
	win->src_w = src_w;
	win->src_h = src_h;
166

167 168
	return omap_plane_setup(omap_plane);
}
169

170 171 172 173 174 175
int omap_plane_set_enable(struct drm_plane *plane, bool enable)
{
	struct omap_plane *omap_plane = to_omap_plane(plane);

	if (enable == omap_plane->enabled)
		return 0;
176

177 178
	omap_plane->enabled = enable;
	return omap_plane_setup(omap_plane);
179 180
}

181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196
static int omap_plane_prepare_fb(struct drm_plane *plane,
				 struct drm_framebuffer *fb,
				 const struct drm_plane_state *new_state)
{
	return omap_framebuffer_pin(fb);
}

static void omap_plane_cleanup_fb(struct drm_plane *plane,
				  struct drm_framebuffer *fb,
				  const struct drm_plane_state *old_state)
{
	omap_framebuffer_unpin(fb);
}

static void omap_plane_atomic_update(struct drm_plane *plane,
				     struct drm_plane_state *old_state)
197
{
198
	struct omap_plane *omap_plane = to_omap_plane(plane);
199 200 201 202
	struct omap_drm_window *win = &omap_plane->win;
	struct drm_plane_state *state = plane->state;
	uint32_t src_w;
	uint32_t src_h;
203

204 205
	if (!state->fb || !state->crtc)
		return;
206

207
	/* omap_framebuffer_update_scanout() takes adjusted src */
G
Grazvydas Ignotas 已提交
208 209 210
	switch (omap_plane->win.rotation & 0xf) {
	case BIT(DRM_ROTATE_90):
	case BIT(DRM_ROTATE_270):
211 212 213 214 215 216
		src_w = state->src_h;
		src_h = state->src_w;
		break;
	default:
		src_w = state->src_w;
		src_h = state->src_h;
G
Grazvydas Ignotas 已提交
217 218 219
		break;
	}

220 221 222 223 224
	/* src values are in Q16 fixed point, convert to integer. */
	win->crtc_x = state->crtc_x;
	win->crtc_y = state->crtc_y;
	win->crtc_w = state->crtc_w;
	win->crtc_h = state->crtc_h;
225

226 227 228 229 230 231 232
	win->src_x = state->src_x >> 16;
	win->src_y = state->src_y >> 16;
	win->src_w = src_w >> 16;
	win->src_h = src_h >> 16;

	omap_plane->enabled = true;
	__omap_plane_setup(omap_plane, state->crtc, state->fb);
233 234
}

235 236
static void omap_plane_atomic_disable(struct drm_plane *plane,
				      struct drm_plane_state *old_state)
237
{
238
	struct omap_plane *omap_plane = to_omap_plane(plane);
239

240
	omap_plane->win.rotation = BIT(DRM_ROTATE_0);
241 242 243
	omap_plane->info.zorder = plane->type == DRM_PLANE_TYPE_PRIMARY
				? 0 : omap_plane->id;

244
	if (!omap_plane->enabled)
245
		return;
246 247

	omap_plane->enabled = false;
248
	__omap_plane_setup(omap_plane, NULL, NULL);
249 250
}

251 252 253 254 255 256 257
static const struct drm_plane_helper_funcs omap_plane_helper_funcs = {
	.prepare_fb = omap_plane_prepare_fb,
	.cleanup_fb = omap_plane_cleanup_fb,
	.atomic_update = omap_plane_atomic_update,
	.atomic_disable = omap_plane_atomic_disable,
};

258 259 260
static void omap_plane_destroy(struct drm_plane *plane)
{
	struct omap_plane *omap_plane = to_omap_plane(plane);
261 262 263 264 265

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

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

266
	drm_plane_cleanup(plane);
267

268 269 270
	kfree(omap_plane);
}

271 272 273 274 275 276 277
/* 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;

278
	if (priv->has_dmm) {
279 280
		struct drm_property *prop = dev->mode_config.rotation_property;

281
		drm_object_attach_property(obj, prop, 0);
282
	}
283

284
	drm_object_attach_property(obj, priv->zorder_prop, 0);
285 286 287 288 289 290 291
}

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;
292
	int ret;
293

294
	if (property == plane->dev->mode_config.rotation_property) {
295
		DBG("%s: rotation: %02x", omap_plane->name, (uint32_t)val);
296
		omap_plane->win.rotation = val;
297
	} else if (property == priv->zorder_prop) {
298
		DBG("%s: zorder: %02x", omap_plane->name, (uint32_t)val);
299
		omap_plane->info.zorder = val;
300 301
	} else {
		return -EINVAL;
302 303
	}

304 305 306 307 308 309 310 311 312 313 314 315
	/*
	 * We're done if the plane is disabled, properties will be applied the
	 * next time it becomes enabled.
	 */
	if (!omap_plane->enabled)
		return 0;

	ret = omap_plane_setup(omap_plane);
	if (ret < 0)
		return ret;

	return omap_crtc_flush(plane->crtc);
316 317
}

318
static const struct drm_plane_funcs omap_plane_funcs = {
319 320
	.update_plane = drm_atomic_helper_update_plane,
	.disable_plane = drm_atomic_helper_disable_plane,
321
	.reset = drm_atomic_helper_plane_reset,
322 323
	.destroy = omap_plane_destroy,
	.set_property = omap_plane_set_property,
324 325
	.atomic_duplicate_state = drm_atomic_helper_plane_duplicate_state,
	.atomic_destroy_state = drm_atomic_helper_plane_destroy_state,
326 327
};

328 329 330 331
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);
332 333
	DRM_ERROR_RATELIMITED("%s: errors: %08x\n", omap_plane->name,
		irqstatus);
334 335 336
}

static const char *plane_names[] = {
337 338 339 340
	[OMAP_DSS_GFX] = "gfx",
	[OMAP_DSS_VIDEO1] = "vid1",
	[OMAP_DSS_VIDEO2] = "vid2",
	[OMAP_DSS_VIDEO3] = "vid3",
341 342 343
};

static const uint32_t error_irqs[] = {
344 345 346 347
	[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,
348 349
};

350 351
/* initialize plane */
struct drm_plane *omap_plane_init(struct drm_device *dev,
352
		int id, enum drm_plane_type type)
353
{
354
	struct omap_drm_private *priv = dev->dev_private;
355
	struct drm_plane *plane;
356
	struct omap_plane *omap_plane;
357
	struct omap_overlay_info *info;
358
	int ret;
359

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

362
	omap_plane = kzalloc(sizeof(*omap_plane), GFP_KERNEL);
363
	if (!omap_plane)
364
		return ERR_PTR(-ENOMEM);
365

366 367
	omap_plane->nformats = omap_framebuffer_get_formats(
			omap_plane->formats, ARRAY_SIZE(omap_plane->formats),
368 369 370 371
			dss_feat_get_supported_color_modes(id));
	omap_plane->id = id;
	omap_plane->name = plane_names[id];

372 373
	plane = &omap_plane->base;

374 375 376 377
	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);

378 379 380 381 382
	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;
383

384 385
	drm_plane_helper_add(plane, &omap_plane_helper_funcs);

386 387
	omap_plane_install_properties(plane, &plane->base);

388 389 390
	/* get our starting configuration, set defaults for parameters
	 * we don't currently use, etc:
	 */
391 392 393 394 395
	info = &omap_plane->info;
	info->rotation_type = OMAP_DSS_ROT_DMA;
	info->rotation = OMAP_DSS_ROT_0;
	info->global_alpha = 0xff;
	info->mirror = 0;
396 397 398 399 400 401

	/* 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.
	 */
402
	if (type == DRM_PLANE_TYPE_PRIMARY)
403 404
		omap_plane->info.zorder = 0;
	else
405
		omap_plane->info.zorder = id;
406 407

	return plane;
408 409 410 411 412

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