rcar_du_plane.c 15.3 KB
Newer Older
1 2 3
/*
 * rcar_du_plane.c  --  R-Car Display Unit Planes
 *
4
 * Copyright (C) 2013-2014 Renesas Electronics Corporation
5 6 7 8 9 10 11 12 13 14
 *
 * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com)
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 */

#include <drm/drmP.h>
15
#include <drm/drm_atomic_helper.h>
16 17 18 19
#include <drm/drm_crtc.h>
#include <drm/drm_crtc_helper.h>
#include <drm/drm_fb_cma_helper.h>
#include <drm/drm_gem_cma_helper.h>
20
#include <drm/drm_plane_helper.h>
21 22 23 24 25 26 27 28 29 30 31 32

#include "rcar_du_drv.h"
#include "rcar_du_kms.h"
#include "rcar_du_plane.h"
#include "rcar_du_regs.h"

#define RCAR_DU_COLORKEY_NONE		(0 << 24)
#define RCAR_DU_COLORKEY_SOURCE		(1 << 24)
#define RCAR_DU_COLORKEY_MASK		(1 << 24)

static inline struct rcar_du_plane *to_rcar_plane(struct drm_plane *plane)
{
33
	return container_of(plane, struct rcar_du_plane, plane);
34 35
}

36
static u32 rcar_du_plane_read(struct rcar_du_group *rgrp,
37 38
			      unsigned int index, u32 reg)
{
39 40
	return rcar_du_read(rgrp->dev,
			    rgrp->mmio_offset + index * PLANE_OFF + reg);
41 42
}

43
static void rcar_du_plane_write(struct rcar_du_group *rgrp,
44 45
				unsigned int index, u32 reg, u32 data)
{
46 47
	rcar_du_write(rgrp->dev, rgrp->mmio_offset + index * PLANE_OFF + reg,
		      data);
48 49
}

50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
static int rcar_du_plane_reserve_check(struct rcar_du_plane *plane,
				       const struct rcar_du_format_info *format)
{
	struct rcar_du_group *rgrp = plane->group;
	unsigned int free;
	unsigned int i;
	int ret;

	mutex_lock(&rgrp->planes.lock);

	free = rgrp->planes.free;

	if (plane->hwindex != -1) {
		free |= 1 << plane->hwindex;
		if (plane->format->planes == 2)
			free |= 1 << ((plane->hwindex + 1) % 8);
	}

	for (i = 0; i < ARRAY_SIZE(rgrp->planes.planes); ++i) {
		if (!(free & (1 << i)))
			continue;

		if (format->planes == 1 || free & (1 << ((i + 1) % 8)))
			break;
	}

	ret = i == ARRAY_SIZE(rgrp->planes.planes) ? -EBUSY : 0;

	mutex_unlock(&rgrp->planes.lock);
	return ret;
}

82 83
static int rcar_du_plane_reserve(struct rcar_du_plane *plane,
				 const struct rcar_du_format_info *format)
84
{
85
	struct rcar_du_group *rgrp = plane->group;
86 87 88
	unsigned int i;
	int ret = -EBUSY;

89
	mutex_lock(&rgrp->planes.lock);
90

91
	for (i = 0; i < RCAR_DU_NUM_HW_PLANES; ++i) {
92
		if (!(rgrp->planes.free & (1 << i)))
93 94 95
			continue;

		if (format->planes == 1 ||
96
		    rgrp->planes.free & (1 << ((i + 1) % 8)))
97 98 99
			break;
	}

100
	if (i == RCAR_DU_NUM_HW_PLANES)
101 102
		goto done;

103
	rgrp->planes.free &= ~(1 << i);
104
	if (format->planes == 2)
105
		rgrp->planes.free &= ~(1 << ((i + 1) % 8));
106 107 108 109 110 111

	plane->hwindex = i;

	ret = 0;

done:
112
	mutex_unlock(&rgrp->planes.lock);
113 114 115
	return ret;
}

116
static void rcar_du_plane_release(struct rcar_du_plane *plane)
117
{
118
	struct rcar_du_group *rgrp = plane->group;
119 120 121 122

	if (plane->hwindex == -1)
		return;

123 124
	mutex_lock(&rgrp->planes.lock);
	rgrp->planes.free |= 1 << plane->hwindex;
125
	if (plane->format->planes == 2)
126 127
		rgrp->planes.free |= 1 << ((plane->hwindex + 1) % 8);
	mutex_unlock(&rgrp->planes.lock);
128 129 130 131 132 133

	plane->hwindex = -1;
}

void rcar_du_plane_update_base(struct rcar_du_plane *plane)
{
134
	struct rcar_du_group *rgrp = plane->group;
135 136
	unsigned int src_x = plane->plane.state->src_x >> 16;
	unsigned int src_y = plane->plane.state->src_y >> 16;
137
	unsigned int index = plane->hwindex;
138
	bool interlaced;
139 140
	u32 mwr;

141 142 143 144 145
	interlaced = plane->crtc->mode.flags & DRM_MODE_FLAG_INTERLACE;

	/* Memory pitch (expressed in pixels). Must be doubled for interlaced
	 * operation with 32bpp formats.
	 */
146 147 148 149 150
	if (plane->format->planes == 2)
		mwr = plane->pitch;
	else
		mwr = plane->pitch * 8 / plane->format->bpp;

151 152 153
	if (interlaced && plane->format->bpp == 32)
		mwr *= 2;

154
	rcar_du_plane_write(rgrp, index, PnMWR, mwr);
155

156 157 158 159 160
	/* The Y position is expressed in raster line units and must be doubled
	 * for 32bpp formats, according to the R8A7790 datasheet. No mention of
	 * doubling the Y position is found in the R8A7779 datasheet, but the
	 * rule seems to apply there as well.
	 *
161 162 163
	 * Despite not being documented, doubling seem not to be needed when
	 * operating in interlaced mode.
	 *
164
	 * Similarly, for the second plane, NV12 and NV21 formats seem to
165 166
	 * require a halved Y position value, in both progressive and interlaced
	 * modes.
167
	 */
168 169
	rcar_du_plane_write(rgrp, index, PnSPXR, src_x);
	rcar_du_plane_write(rgrp, index, PnSPYR, src_y *
170
			    (!interlaced && plane->format->bpp == 32 ? 2 : 1));
171
	rcar_du_plane_write(rgrp, index, PnDSA0R, plane->dma[0]);
172 173 174 175

	if (plane->format->planes == 2) {
		index = (index + 1) % 8;

176 177
		rcar_du_plane_write(rgrp, index, PnMWR, plane->pitch);

178 179
		rcar_du_plane_write(rgrp, index, PnSPXR, src_x);
		rcar_du_plane_write(rgrp, index, PnSPYR, src_y *
180
				    (plane->format->bpp == 16 ? 2 : 1) / 2);
181
		rcar_du_plane_write(rgrp, index, PnDSA0R, plane->dma[1]);
182 183 184 185 186 187 188 189
	}
}

void rcar_du_plane_compute_base(struct rcar_du_plane *plane,
				struct drm_framebuffer *fb)
{
	struct drm_gem_cma_object *gem;

190 191
	plane->pitch = fb->pitches[0];

192 193 194 195 196 197 198 199 200 201 202 203
	gem = drm_fb_cma_get_gem_obj(fb, 0);
	plane->dma[0] = gem->paddr + fb->offsets[0];

	if (plane->format->planes == 2) {
		gem = drm_fb_cma_get_gem_obj(fb, 1);
		plane->dma[1] = gem->paddr + fb->offsets[1];
	}
}

static void rcar_du_plane_setup_mode(struct rcar_du_plane *plane,
				     unsigned int index)
{
204
	struct rcar_du_group *rgrp = plane->group;
205 206 207 208 209 210 211 212 213 214 215 216 217
	u32 colorkey;
	u32 pnmr;

	/* The PnALPHAR register controls alpha-blending in 16bpp formats
	 * (ARGB1555 and XRGB1555).
	 *
	 * For ARGB, set the alpha value to 0, and enable alpha-blending when
	 * the A bit is 0. This maps A=0 to alpha=0 and A=1 to alpha=255.
	 *
	 * For XRGB, set the alpha value to the plane-wide alpha value and
	 * enable alpha-blending regardless of the X bit value.
	 */
	if (plane->format->fourcc != DRM_FORMAT_XRGB1555)
218
		rcar_du_plane_write(rgrp, index, PnALPHAR, PnALPHAR_ABIT_0);
219
	else
220
		rcar_du_plane_write(rgrp, index, PnALPHAR,
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235
				    PnALPHAR_ABIT_X | plane->alpha);

	pnmr = PnMR_BM_MD | plane->format->pnmr;

	/* Disable color keying when requested. YUV formats have the
	 * PnMR_SPIM_TP_OFF bit set in their pnmr field, disabling color keying
	 * automatically.
	 */
	if ((plane->colorkey & RCAR_DU_COLORKEY_MASK) == RCAR_DU_COLORKEY_NONE)
		pnmr |= PnMR_SPIM_TP_OFF;

	/* For packed YUV formats we need to select the U/V order. */
	if (plane->format->fourcc == DRM_FORMAT_YUYV)
		pnmr |= PnMR_YCDF_YUYV;

236
	rcar_du_plane_write(rgrp, index, PnMR, pnmr);
237 238 239 240 241 242

	switch (plane->format->fourcc) {
	case DRM_FORMAT_RGB565:
		colorkey = ((plane->colorkey & 0xf80000) >> 8)
			 | ((plane->colorkey & 0x00fc00) >> 5)
			 | ((plane->colorkey & 0x0000f8) >> 3);
243
		rcar_du_plane_write(rgrp, index, PnTC2R, colorkey);
244 245 246 247 248 249 250
		break;

	case DRM_FORMAT_ARGB1555:
	case DRM_FORMAT_XRGB1555:
		colorkey = ((plane->colorkey & 0xf80000) >> 9)
			 | ((plane->colorkey & 0x00f800) >> 6)
			 | ((plane->colorkey & 0x0000f8) >> 3);
251
		rcar_du_plane_write(rgrp, index, PnTC2R, colorkey);
252 253 254 255
		break;

	case DRM_FORMAT_XRGB8888:
	case DRM_FORMAT_ARGB8888:
256
		rcar_du_plane_write(rgrp, index, PnTC3R,
257 258 259 260 261 262 263 264
				    PnTC3R_CODE | (plane->colorkey & 0xffffff));
		break;
	}
}

static void __rcar_du_plane_setup(struct rcar_du_plane *plane,
				  unsigned int index)
{
265
	struct rcar_du_group *rgrp = plane->group;
266 267 268 269 270 271 272 273
	u32 ddcr2 = PnDDCR2_CODE;
	u32 ddcr4;

	/* Data format
	 *
	 * The data format is selected by the DDDF field in PnMR and the EDF
	 * field in DDCR4.
	 */
274
	ddcr4 = rcar_du_plane_read(rgrp, index, PnDDCR4);
275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294
	ddcr4 &= ~PnDDCR4_EDF_MASK;
	ddcr4 |= plane->format->edf | PnDDCR4_CODE;

	rcar_du_plane_setup_mode(plane, index);

	if (plane->format->planes == 2) {
		if (plane->hwindex != index) {
			if (plane->format->fourcc == DRM_FORMAT_NV12 ||
			    plane->format->fourcc == DRM_FORMAT_NV21)
				ddcr2 |= PnDDCR2_Y420;

			if (plane->format->fourcc == DRM_FORMAT_NV21)
				ddcr2 |= PnDDCR2_NV21;

			ddcr2 |= PnDDCR2_DIVU;
		} else {
			ddcr2 |= PnDDCR2_DIVY;
		}
	}

295 296
	rcar_du_plane_write(rgrp, index, PnDDCR2, ddcr2);
	rcar_du_plane_write(rgrp, index, PnDDCR4, ddcr4);
297 298

	/* Destination position and size */
299 300 301 302
	rcar_du_plane_write(rgrp, index, PnDSXR, plane->plane.state->crtc_w);
	rcar_du_plane_write(rgrp, index, PnDSYR, plane->plane.state->crtc_h);
	rcar_du_plane_write(rgrp, index, PnDPXR, plane->plane.state->crtc_x);
	rcar_du_plane_write(rgrp, index, PnDPYR, plane->plane.state->crtc_y);
303 304

	/* Wrap-around and blinking, disabled */
305 306 307 308
	rcar_du_plane_write(rgrp, index, PnWASPR, 0);
	rcar_du_plane_write(rgrp, index, PnWAMWR, 4095);
	rcar_du_plane_write(rgrp, index, PnBTR, 0);
	rcar_du_plane_write(rgrp, index, PnMLR, 0);
309 310 311 312 313 314 315 316 317 318 319
}

void rcar_du_plane_setup(struct rcar_du_plane *plane)
{
	__rcar_du_plane_setup(plane, plane->hwindex);
	if (plane->format->planes == 2)
		__rcar_du_plane_setup(plane, (plane->hwindex + 1) % 8);

	rcar_du_plane_update_base(plane);
}

320 321
static int rcar_du_plane_atomic_check(struct drm_plane *plane,
				      struct drm_plane_state *state)
322 323
{
	struct rcar_du_plane *rplane = to_rcar_plane(plane);
324
	struct rcar_du_device *rcdu = rplane->group->dev;
325 326 327 328
	const struct rcar_du_format_info *format;
	unsigned int nplanes;
	int ret;

329 330
	if (!state->fb || !state->crtc)
		return 0;
331

332 333 334
	if (state->src_w >> 16 != state->crtc_w ||
	    state->src_h >> 16 != state->crtc_h) {
		dev_dbg(rcdu->dev, "%s: scaling not supported\n", __func__);
335 336 337
		return -EINVAL;
	}

338 339 340 341
	format = rcar_du_format_info(state->fb->pixel_format);
	if (format == NULL) {
		dev_dbg(rcdu->dev, "%s: unsupported format %08x\n", __func__,
			state->fb->pixel_format);
342 343 344 345 346
		return -EINVAL;
	}

	nplanes = rplane->format ? rplane->format->planes : 0;

347 348
	/* If the number of required planes has changed we will need to
	 * reallocate hardware planes. Ensure free planes are available.
349 350
	 */
	if (format->planes != nplanes) {
351 352 353 354
		ret = rcar_du_plane_reserve_check(rplane, format);
		if (ret < 0) {
			dev_dbg(rcdu->dev, "%s: no available hardware plane\n",
				__func__);
355
			return ret;
356
		}
357 358 359 360 361
	}

	return 0;
}

362
static void rcar_du_plane_disable(struct rcar_du_plane *rplane)
363 364
{
	if (!rplane->enabled)
365
		return;
366

367
	mutex_lock(&rplane->group->planes.lock);
368
	rplane->enabled = false;
369
	mutex_unlock(&rplane->group->planes.lock);
370 371 372 373 374

	rcar_du_plane_release(rplane);

	rplane->crtc = NULL;
	rplane->format = NULL;
375
}
376

377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409
static void rcar_du_plane_atomic_update(struct drm_plane *plane,
					struct drm_plane_state *old_state)
{
	struct rcar_du_plane *rplane = to_rcar_plane(plane);
	struct drm_plane_state *state = plane->state;
	const struct rcar_du_format_info *format;
	unsigned int nplanes;

	if (!state->crtc) {
		rcar_du_plane_disable(rplane);
		return;
	}

	format = rcar_du_format_info(state->fb->pixel_format);
	nplanes = rplane->format ? rplane->format->planes : 0;

	/* Reallocate hardware planes if the number of required planes has
	 * changed.
	 */
	if (format->planes != nplanes) {
		rcar_du_plane_release(rplane);
		rcar_du_plane_reserve(rplane, format);
	}

	rplane->crtc = state->crtc;
	rplane->format = format;

	rcar_du_plane_compute_base(rplane, state->fb);
	rcar_du_plane_setup(rplane);

	mutex_lock(&rplane->group->planes.lock);
	rplane->enabled = true;
	mutex_unlock(&rplane->group->planes.lock);
410 411
}

412 413 414 415 416
static const struct drm_plane_helper_funcs rcar_du_plane_helper_funcs = {
	.atomic_check = rcar_du_plane_atomic_check,
	.atomic_update = rcar_du_plane_atomic_update,
};

417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448
/* Both the .set_property and the .update_plane operations are called with the
 * mode_config lock held. There is this no need to explicitly protect access to
 * the alpha and colorkey fields and the mode register.
 */
static void rcar_du_plane_set_alpha(struct rcar_du_plane *plane, u32 alpha)
{
	if (plane->alpha == alpha)
		return;

	plane->alpha = alpha;
	if (!plane->enabled || plane->format->fourcc != DRM_FORMAT_XRGB1555)
		return;

	rcar_du_plane_setup_mode(plane, plane->hwindex);
}

static void rcar_du_plane_set_colorkey(struct rcar_du_plane *plane,
				       u32 colorkey)
{
	if (plane->colorkey == colorkey)
		return;

	plane->colorkey = colorkey;
	if (!plane->enabled)
		return;

	rcar_du_plane_setup_mode(plane, plane->hwindex);
}

static void rcar_du_plane_set_zpos(struct rcar_du_plane *plane,
				   unsigned int zpos)
{
449
	mutex_lock(&plane->group->planes.lock);
450 451 452 453 454 455 456 457 458 459
	if (plane->zpos == zpos)
		goto done;

	plane->zpos = zpos;
	if (!plane->enabled)
		goto done;

	rcar_du_crtc_update_planes(plane->crtc);

done:
460
	mutex_unlock(&plane->group->planes.lock);
461 462 463 464 465 466 467
}

static int rcar_du_plane_set_property(struct drm_plane *plane,
				      struct drm_property *property,
				      uint64_t value)
{
	struct rcar_du_plane *rplane = to_rcar_plane(plane);
468
	struct rcar_du_group *rgrp = rplane->group;
469

470
	if (property == rgrp->planes.alpha)
471
		rcar_du_plane_set_alpha(rplane, value);
472
	else if (property == rgrp->planes.colorkey)
473
		rcar_du_plane_set_colorkey(rplane, value);
474
	else if (property == rgrp->planes.zpos)
475 476 477 478 479 480 481 482
		rcar_du_plane_set_zpos(rplane, value);
	else
		return -EINVAL;

	return 0;
}

static const struct drm_plane_funcs rcar_du_plane_funcs = {
483 484
	.update_plane = drm_atomic_helper_update_plane,
	.disable_plane = drm_atomic_helper_disable_plane,
485
	.reset = drm_atomic_helper_plane_reset,
486 487
	.set_property = rcar_du_plane_set_property,
	.destroy = drm_plane_cleanup,
488 489
	.atomic_duplicate_state = drm_atomic_helper_plane_duplicate_state,
	.atomic_destroy_state = drm_atomic_helper_plane_destroy_state,
490 491 492 493 494 495 496 497 498 499 500 501 502 503 504
};

static const uint32_t formats[] = {
	DRM_FORMAT_RGB565,
	DRM_FORMAT_ARGB1555,
	DRM_FORMAT_XRGB1555,
	DRM_FORMAT_XRGB8888,
	DRM_FORMAT_ARGB8888,
	DRM_FORMAT_UYVY,
	DRM_FORMAT_YUYV,
	DRM_FORMAT_NV12,
	DRM_FORMAT_NV21,
	DRM_FORMAT_NV16,
};

505
int rcar_du_planes_init(struct rcar_du_group *rgrp)
506
{
507 508
	struct rcar_du_planes *planes = &rgrp->planes;
	struct rcar_du_device *rcdu = rgrp->dev;
509 510 511
	unsigned int num_planes;
	unsigned int num_crtcs;
	unsigned int crtcs;
512
	unsigned int i;
513
	int ret;
514

515 516
	mutex_init(&planes->lock);
	planes->free = 0xff;
517

518
	planes->alpha =
519
		drm_property_create_range(rcdu->ddev, 0, "alpha", 0, 255);
520
	if (planes->alpha == NULL)
521 522 523 524 525 526
		return -ENOMEM;

	/* The color key is expressed as an RGB888 triplet stored in a 32-bit
	 * integer in XRGB8888 format. Bit 24 is used as a flag to disable (0)
	 * or enable source color keying (1).
	 */
527
	planes->colorkey =
528 529
		drm_property_create_range(rcdu->ddev, 0, "colorkey",
					  0, 0x01ffffff);
530
	if (planes->colorkey == NULL)
531 532
		return -ENOMEM;

533
	planes->zpos =
534
		drm_property_create_range(rcdu->ddev, 0, "zpos", 1, 7);
535
	if (planes->zpos == NULL)
536 537
		return -ENOMEM;

538 539 540 541 542 543 544 545 546 547 548 549
	 /* Create one primary plane per in this group CRTC and seven overlay
	  * planes.
	  */
	num_crtcs = min(rcdu->num_crtcs - 2 * rgrp->index, 2U);
	num_planes = num_crtcs + 7;

	crtcs = ((1 << rcdu->num_crtcs) - 1) & (3 << (2 * rgrp->index));

	for (i = 0; i < num_planes; ++i) {
		enum drm_plane_type type = i < num_crtcs
					 ? DRM_PLANE_TYPE_PRIMARY
					 : DRM_PLANE_TYPE_OVERLAY;
550
		struct rcar_du_plane *plane = &planes->planes[i];
551

552
		plane->group = rgrp;
553 554 555
		plane->hwindex = -1;
		plane->alpha = 255;
		plane->colorkey = RCAR_DU_COLORKEY_NONE;
556
		plane->zpos = type == DRM_PLANE_TYPE_PRIMARY ? 0 : 1;
557

558 559 560
		ret = drm_universal_plane_init(rcdu->ddev, &plane->plane, crtcs,
					       &rcar_du_plane_funcs, formats,
					       ARRAY_SIZE(formats), type);
561 562 563
		if (ret < 0)
			return ret;

564 565 566
		drm_plane_helper_add(&plane->plane,
				     &rcar_du_plane_helper_funcs);

567 568 569
		if (type == DRM_PLANE_TYPE_PRIMARY)
			continue;

570
		drm_object_attach_property(&plane->plane.base,
571
					   planes->alpha, 255);
572
		drm_object_attach_property(&plane->plane.base,
573
					   planes->colorkey,
574 575
					   RCAR_DU_COLORKEY_NONE);
		drm_object_attach_property(&plane->plane.base,
576
					   planes->zpos, 1);
577 578 579 580
	}

	return 0;
}