omap_plane.c 10.2 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.h>
21
#include <drm/drm_atomic_helper.h>
22
#include <drm/drm_plane_helper.h>
23

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

/* 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;
41 42
	int id;  /* TODO rename omap_plane -> omap_plane_id in omapdss so I can use the enum */
	const char *name;
43

44 45
	uint32_t nformats;
	uint32_t formats[32];
46

47
	struct omap_drm_irq error_irq;
48
};
49

50 51 52 53 54 55 56 57
struct omap_plane_state {
	struct drm_plane_state base;

	unsigned int zorder;
};

static inline struct omap_plane_state *
to_omap_plane_state(struct drm_plane_state *state)
58
{
59 60 61
	return container_of(state, struct omap_plane_state, base);
}

62 63 64
static int omap_plane_prepare_fb(struct drm_plane *plane,
				 const struct drm_plane_state *new_state)
{
65 66 67 68
	if (!new_state->fb)
		return 0;

	return omap_framebuffer_pin(new_state->fb);
69 70 71 72 73
}

static void omap_plane_cleanup_fb(struct drm_plane *plane,
				  const struct drm_plane_state *old_state)
{
74 75
	if (old_state->fb)
		omap_framebuffer_unpin(old_state->fb);
76 77 78 79
}

static void omap_plane_atomic_update(struct drm_plane *plane,
				     struct drm_plane_state *old_state)
80
{
81 82
	struct omap_plane *omap_plane = to_omap_plane(plane);
	struct drm_plane_state *state = plane->state;
83
	struct omap_plane_state *omap_state = to_omap_plane_state(state);
84 85
	struct omap_overlay_info info;
	struct omap_drm_window win;
86
	int ret;
87

88
	DBG("%s, crtc=%p fb=%p", omap_plane->name, state->crtc, state->fb);
89

90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
	memset(&info, 0, sizeof(info));
	info.rotation_type = OMAP_DSS_ROT_DMA;
	info.rotation = OMAP_DSS_ROT_0;
	info.global_alpha = 0xff;
	info.mirror = 0;
	info.zorder = omap_state->zorder;

	memset(&win, 0, sizeof(win));
	win.rotation = state->rotation;
	win.crtc_x = state->crtc_x;
	win.crtc_y = state->crtc_y;
	win.crtc_w = state->crtc_w;
	win.crtc_h = state->crtc_h;

	/*
	 * src values are in Q16 fixed point, convert to integer.
	 * omap_framebuffer_update_scanout() takes adjusted src.
	 */
	win.src_x = state->src_x >> 16;
	win.src_y = state->src_y >> 16;

111
	switch (state->rotation & DRM_ROTATE_MASK) {
112 113 114 115 116 117 118 119 120 121
	case BIT(DRM_ROTATE_90):
	case BIT(DRM_ROTATE_270):
		win.src_w = state->src_h >> 16;
		win.src_h = state->src_w >> 16;
		break;
	default:
		win.src_w = state->src_w >> 16;
		win.src_h = state->src_h >> 16;
		break;
	}
122

123
	/* update scanout: */
124
	omap_framebuffer_update_scanout(state->fb, &win, &info);
125

126 127 128 129 130
	DBG("%dx%d -> %dx%d (%d)", info.width, info.height,
			info.out_width, info.out_height,
			info.screen_width);
	DBG("%d,%d %pad %pad", info.pos_x, info.pos_y,
			&info.paddr, &info.p_uv_addr);
131

132
	dispc_ovl_set_channel_out(omap_plane->id,
133
				  omap_crtc_channel(state->crtc));
134

135
	/* and finally, update omapdss: */
136
	ret = dispc_ovl_setup(omap_plane->id, &info, false,
137
			      omap_crtc_timings(state->crtc), false);
138 139
	if (WARN_ON(ret)) {
		dispc_ovl_enable(omap_plane->id, false);
140
		return;
141
	}
142 143

	dispc_ovl_enable(omap_plane->id, true);
144 145 146 147
}

static void omap_plane_atomic_disable(struct drm_plane *plane,
				      struct drm_plane_state *old_state)
148
{
149
	struct omap_plane_state *omap_state = to_omap_plane_state(plane->state);
150
	struct omap_plane *omap_plane = to_omap_plane(plane);
151

152 153 154
	plane->state->rotation = BIT(DRM_ROTATE_0);
	omap_state->zorder = plane->type == DRM_PLANE_TYPE_PRIMARY
			   ? 0 : omap_plane->id;
155

156
	dispc_ovl_enable(omap_plane->id, false);
157 158
}

159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
static int omap_plane_atomic_check(struct drm_plane *plane,
				   struct drm_plane_state *state)
{
	struct drm_crtc_state *crtc_state;

	if (!state->crtc)
		return 0;

	crtc_state = drm_atomic_get_crtc_state(state->state, state->crtc);
	if (IS_ERR(crtc_state))
		return PTR_ERR(crtc_state);

	if (state->crtc_x < 0 || state->crtc_y < 0)
		return -EINVAL;

	if (state->crtc_x + state->crtc_w > crtc_state->adjusted_mode.hdisplay)
		return -EINVAL;

	if (state->crtc_y + state->crtc_h > crtc_state->adjusted_mode.vdisplay)
		return -EINVAL;

180 181 182 183 184 185
	if (state->fb) {
		if (state->rotation != BIT(DRM_ROTATE_0) &&
		    !omap_framebuffer_supports_rotation(state->fb))
			return -EINVAL;
	}

186 187 188
	return 0;
}

189 190 191
static const struct drm_plane_helper_funcs omap_plane_helper_funcs = {
	.prepare_fb = omap_plane_prepare_fb,
	.cleanup_fb = omap_plane_cleanup_fb,
192
	.atomic_check = omap_plane_atomic_check,
193 194 195 196
	.atomic_update = omap_plane_atomic_update,
	.atomic_disable = omap_plane_atomic_disable,
};

197 198 199
static void omap_plane_destroy(struct drm_plane *plane)
{
	struct omap_plane *omap_plane = to_omap_plane(plane);
200 201 202 203 204

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

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

205
	drm_plane_cleanup(plane);
206

207 208 209
	kfree(omap_plane);
}

210 211 212 213 214 215 216
/* 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;

217
	if (priv->has_dmm) {
218 219
		struct drm_property *prop = dev->mode_config.rotation_property;

220
		drm_object_attach_property(obj, prop, 0);
221
	}
222

223
	drm_object_attach_property(obj, priv->zorder_prop, 0);
224 225
}

226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
static struct drm_plane_state *
omap_plane_atomic_duplicate_state(struct drm_plane *plane)
{
	struct omap_plane_state *state;
	struct omap_plane_state *copy;

	if (WARN_ON(!plane->state))
		return NULL;

	state = to_omap_plane_state(plane->state);
	copy = kmemdup(state, sizeof(*state), GFP_KERNEL);
	if (copy == NULL)
		return NULL;

	__drm_atomic_helper_plane_duplicate_state(plane, &copy->base);

	return &copy->base;
}

static void omap_plane_atomic_destroy_state(struct drm_plane *plane,
					    struct drm_plane_state *state)
{
248
	__drm_atomic_helper_plane_destroy_state(state);
249 250 251
	kfree(to_omap_plane_state(state));
}

252 253 254 255 256
static void omap_plane_reset(struct drm_plane *plane)
{
	struct omap_plane *omap_plane = to_omap_plane(plane);
	struct omap_plane_state *omap_state;

257 258 259 260
	if (plane->state) {
		omap_plane_atomic_destroy_state(plane, plane->state);
		plane->state = NULL;
	}
261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277

	omap_state = kzalloc(sizeof(*omap_state), GFP_KERNEL);
	if (omap_state == NULL)
		return;

	/*
	 * Set defaults depending on whether we are a primary or overlay
	 * plane.
	 */
	omap_state->zorder = plane->type == DRM_PLANE_TYPE_PRIMARY
			   ? 0 : omap_plane->id;
	omap_state->base.rotation = BIT(DRM_ROTATE_0);

	plane->state = &omap_state->base;
	plane->state->plane = plane;
}

278 279 280 281
static int omap_plane_atomic_set_property(struct drm_plane *plane,
					  struct drm_plane_state *state,
					  struct drm_property *property,
					  uint64_t val)
282 283
{
	struct omap_drm_private *priv = plane->dev->dev_private;
284
	struct omap_plane_state *omap_state = to_omap_plane_state(state);
285

286 287 288
	if (property == priv->zorder_prop)
		omap_state->zorder = val;
	else
289
		return -EINVAL;
290

291 292
	return 0;
}
293

294 295 296 297 298 299 300 301 302 303 304 305 306
static int omap_plane_atomic_get_property(struct drm_plane *plane,
					  const struct drm_plane_state *state,
					  struct drm_property *property,
					  uint64_t *val)
{
	struct omap_drm_private *priv = plane->dev->dev_private;
	const struct omap_plane_state *omap_state =
		container_of(state, const struct omap_plane_state, base);

	if (property == priv->zorder_prop)
		*val = omap_state->zorder;
	else
		return -EINVAL;
307

308
	return 0;
309 310
}

311
static const struct drm_plane_funcs omap_plane_funcs = {
312 313
	.update_plane = drm_atomic_helper_update_plane,
	.disable_plane = drm_atomic_helper_disable_plane,
314
	.reset = omap_plane_reset,
315
	.destroy = omap_plane_destroy,
316 317 318 319 320
	.set_property = drm_atomic_helper_plane_set_property,
	.atomic_duplicate_state = omap_plane_atomic_duplicate_state,
	.atomic_destroy_state = omap_plane_atomic_destroy_state,
	.atomic_set_property = omap_plane_atomic_set_property,
	.atomic_get_property = omap_plane_atomic_get_property,
321 322
};

323 324 325 326
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);
327 328
	DRM_ERROR_RATELIMITED("%s: errors: %08x\n", omap_plane->name,
		irqstatus);
329 330 331
}

static const char *plane_names[] = {
332 333 334 335
	[OMAP_DSS_GFX] = "gfx",
	[OMAP_DSS_VIDEO1] = "vid1",
	[OMAP_DSS_VIDEO2] = "vid2",
	[OMAP_DSS_VIDEO3] = "vid3",
336 337 338
};

static const uint32_t error_irqs[] = {
339 340 341 342
	[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,
343 344
};

345 346
/* initialize plane */
struct drm_plane *omap_plane_init(struct drm_device *dev,
347
		int id, enum drm_plane_type type)
348
{
349
	struct omap_drm_private *priv = dev->dev_private;
350
	struct drm_plane *plane;
351
	struct omap_plane *omap_plane;
352
	int ret;
353

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

356
	omap_plane = kzalloc(sizeof(*omap_plane), GFP_KERNEL);
357
	if (!omap_plane)
358
		return ERR_PTR(-ENOMEM);
359

360 361
	omap_plane->nformats = omap_framebuffer_get_formats(
			omap_plane->formats, ARRAY_SIZE(omap_plane->formats),
362 363 364 365
			dss_feat_get_supported_color_modes(id));
	omap_plane->id = id;
	omap_plane->name = plane_names[id];

366 367
	plane = &omap_plane->base;

368 369 370 371
	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);

372 373
	ret = drm_universal_plane_init(dev, plane, (1 << priv->num_crtcs) - 1,
				       &omap_plane_funcs, omap_plane->formats,
374
				       omap_plane->nformats, type, NULL);
375 376
	if (ret < 0)
		goto error;
377

378 379
	drm_plane_helper_add(plane, &omap_plane_helper_funcs);

380 381
	omap_plane_install_properties(plane, &plane->base);

382
	return plane;
383 384 385 386 387

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