blob: 78216f3623859aca071e4c796473850b2ca7e5f0 [file] [log] [blame]
Laurent Pinchart4bf8e192013-06-19 13:54:11 +02001/*
2 * rcar_du_plane.c -- R-Car Display Unit Planes
3 *
Laurent Pinchart36d50462014-02-06 18:13:52 +01004 * Copyright (C) 2013-2014 Renesas Electronics Corporation
Laurent Pinchart4bf8e192013-06-19 13:54:11 +02005 *
6 * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com)
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 */
13
14#include <drm/drmP.h>
Laurent Pinchartab334e12015-07-27 15:34:18 +030015#include <drm/drm_atomic.h>
Laurent Pinchart3e8da872015-02-20 11:30:59 +020016#include <drm/drm_atomic_helper.h>
Laurent Pinchart4bf8e192013-06-19 13:54:11 +020017#include <drm/drm_crtc.h>
18#include <drm/drm_crtc_helper.h>
19#include <drm/drm_fb_cma_helper.h>
20#include <drm/drm_gem_cma_helper.h>
Laurent Pinchart920888a2015-02-18 12:18:05 +020021#include <drm/drm_plane_helper.h>
Laurent Pinchart4bf8e192013-06-19 13:54:11 +020022
23#include "rcar_du_drv.h"
Laurent Pinchart34a04f22013-06-21 17:54:50 +020024#include "rcar_du_group.h"
Laurent Pinchart4bf8e192013-06-19 13:54:11 +020025#include "rcar_du_kms.h"
26#include "rcar_du_plane.h"
27#include "rcar_du_regs.h"
28
Laurent Pinchartab334e12015-07-27 15:34:18 +030029/* -----------------------------------------------------------------------------
30 * Atomic hardware plane allocator
31 *
32 * The hardware plane allocator is solely based on the atomic plane states
33 * without keeping any external state to avoid races between .atomic_check()
34 * and .atomic_commit().
35 *
36 * The core idea is to avoid using a free planes bitmask that would need to be
37 * shared between check and commit handlers with a collective knowledge based on
38 * the allocated hardware plane(s) for each KMS plane. The allocator then loops
39 * over all plane states to compute the free planes bitmask, allocates hardware
40 * planes based on that bitmask, and stores the result back in the plane states.
41 *
42 * For this to work we need to access the current state of planes not touched by
43 * the atomic update. To ensure that it won't be modified, we need to lock all
44 * planes using drm_atomic_get_plane_state(). This effectively serializes atomic
45 * updates from .atomic_check() up to completion (when swapping the states if
46 * the check step has succeeded) or rollback (when freeing the states if the
47 * check step has failed).
48 *
49 * Allocation is performed in the .atomic_check() handler and applied
50 * automatically when the core swaps the old and new states.
51 */
52
53static bool rcar_du_plane_needs_realloc(struct rcar_du_plane *plane,
54 struct rcar_du_plane_state *new_state)
55{
56 struct rcar_du_plane_state *cur_state;
57
58 cur_state = to_rcar_plane_state(plane->plane.state);
59
60 /* Lowering the number of planes doesn't strictly require reallocation
61 * as the extra hardware plane will be freed when committing, but doing
62 * so could lead to more fragmentation.
63 */
64 if (!cur_state->format ||
65 cur_state->format->planes != new_state->format->planes)
66 return true;
67
68 /* Reallocate hardware planes if the source has changed. */
69 if (cur_state->source != new_state->source)
70 return true;
71
72 return false;
73}
74
75static unsigned int rcar_du_plane_hwmask(struct rcar_du_plane_state *state)
76{
77 unsigned int mask;
78
79 if (state->hwindex == -1)
80 return 0;
81
82 mask = 1 << state->hwindex;
83 if (state->format->planes == 2)
84 mask |= 1 << ((state->hwindex + 1) % 8);
85
86 return mask;
87}
88
89/*
90 * The R8A7790 DU can source frames directly from the VSP1 devices VSPD0 and
91 * VSPD1. VSPD0 feeds DU0/1 plane 0, and VSPD1 feeds either DU2 plane 0 or
92 * DU0/1 plane 1.
93 *
94 * Allocate the correct fixed plane when sourcing frames from VSPD0 or VSPD1,
95 * and allocate planes in reverse index order otherwise to ensure maximum
96 * availability of planes 0 and 1.
97 *
98 * The caller is responsible for ensuring that the requested source is
99 * compatible with the DU revision.
100 */
101static int rcar_du_plane_hwalloc(struct rcar_du_plane *plane,
102 struct rcar_du_plane_state *state,
103 unsigned int free)
104{
105 unsigned int num_planes = state->format->planes;
106 int fixed = -1;
107 int i;
108
109 if (state->source == RCAR_DU_PLANE_VSPD0) {
110 /* VSPD0 feeds plane 0 on DU0/1. */
111 if (plane->group->index != 0)
112 return -EINVAL;
113
114 fixed = 0;
115 } else if (state->source == RCAR_DU_PLANE_VSPD1) {
116 /* VSPD1 feeds plane 1 on DU0/1 or plane 0 on DU2. */
117 fixed = plane->group->index == 0 ? 1 : 0;
118 }
119
120 if (fixed >= 0)
121 return free & (1 << fixed) ? fixed : -EBUSY;
122
123 for (i = RCAR_DU_NUM_HW_PLANES - 1; i >= 0; --i) {
124 if (!(free & (1 << i)))
125 continue;
126
127 if (num_planes == 1 || free & (1 << ((i + 1) % 8)))
128 break;
129 }
130
131 return i < 0 ? -EBUSY : i;
132}
133
134int rcar_du_atomic_check_planes(struct drm_device *dev,
135 struct drm_atomic_state *state)
136{
137 struct rcar_du_device *rcdu = dev->dev_private;
138 unsigned int group_freed_planes[RCAR_DU_MAX_GROUPS] = { 0, };
139 unsigned int group_free_planes[RCAR_DU_MAX_GROUPS] = { 0, };
140 bool needs_realloc = false;
141 unsigned int groups = 0;
142 unsigned int i;
143
144 /* Check if hardware planes need to be reallocated. */
145 for (i = 0; i < dev->mode_config.num_total_plane; ++i) {
146 struct rcar_du_plane_state *plane_state;
147 struct rcar_du_plane *plane;
148 unsigned int index;
149
150 if (!state->planes[i])
151 continue;
152
153 plane = to_rcar_plane(state->planes[i]);
154 plane_state = to_rcar_plane_state(state->plane_states[i]);
155
Koji Matsuoka07ece192015-08-26 09:37:08 +0900156 dev_dbg(rcdu->dev, "%s: checking plane (%u,%tu)\n", __func__,
Laurent Pinchartab334e12015-07-27 15:34:18 +0300157 plane->group->index, plane - plane->group->planes);
158
159 /* If the plane is being disabled we don't need to go through
160 * the full reallocation procedure. Just mark the hardware
161 * plane(s) as freed.
162 */
163 if (!plane_state->format) {
164 dev_dbg(rcdu->dev, "%s: plane is being disabled\n",
165 __func__);
166 index = plane - plane->group->planes;
167 group_freed_planes[plane->group->index] |= 1 << index;
168 plane_state->hwindex = -1;
169 continue;
170 }
171
172 /* If the plane needs to be reallocated mark it as such, and
173 * mark the hardware plane(s) as free.
174 */
175 if (rcar_du_plane_needs_realloc(plane, plane_state)) {
176 dev_dbg(rcdu->dev, "%s: plane needs reallocation\n",
177 __func__);
178 groups |= 1 << plane->group->index;
179 needs_realloc = true;
180
181 index = plane - plane->group->planes;
182 group_freed_planes[plane->group->index] |= 1 << index;
183 plane_state->hwindex = -1;
184 }
185 }
186
187 if (!needs_realloc)
188 return 0;
189
190 /* Grab all plane states for the groups that need reallocation to ensure
191 * locking and avoid racy updates. This serializes the update operation,
192 * but there's not much we can do about it as that's the hardware
193 * design.
194 *
195 * Compute the used planes mask for each group at the same time to avoid
196 * looping over the planes separately later.
197 */
198 while (groups) {
199 unsigned int index = ffs(groups) - 1;
200 struct rcar_du_group *group = &rcdu->groups[index];
201 unsigned int used_planes = 0;
202
203 dev_dbg(rcdu->dev, "%s: finding free planes for group %u\n",
204 __func__, index);
205
206 for (i = 0; i < group->num_planes; ++i) {
207 struct rcar_du_plane *plane = &group->planes[i];
208 struct rcar_du_plane_state *plane_state;
209 struct drm_plane_state *s;
210
211 s = drm_atomic_get_plane_state(state, &plane->plane);
212 if (IS_ERR(s))
213 return PTR_ERR(s);
214
215 /* If the plane has been freed in the above loop its
216 * hardware planes must not be added to the used planes
217 * bitmask. However, the current state doesn't reflect
218 * the free state yet, as we've modified the new state
219 * above. Use the local freed planes list to check for
220 * that condition instead.
221 */
222 if (group_freed_planes[index] & (1 << i)) {
223 dev_dbg(rcdu->dev,
Koji Matsuoka07ece192015-08-26 09:37:08 +0900224 "%s: plane (%u,%tu) has been freed, skipping\n",
Laurent Pinchartab334e12015-07-27 15:34:18 +0300225 __func__, plane->group->index,
226 plane - plane->group->planes);
227 continue;
228 }
229
230 plane_state = to_rcar_plane_state(plane->plane.state);
231 used_planes |= rcar_du_plane_hwmask(plane_state);
232
233 dev_dbg(rcdu->dev,
Koji Matsuoka07ece192015-08-26 09:37:08 +0900234 "%s: plane (%u,%tu) uses %u hwplanes (index %d)\n",
Laurent Pinchartab334e12015-07-27 15:34:18 +0300235 __func__, plane->group->index,
236 plane - plane->group->planes,
237 plane_state->format ?
238 plane_state->format->planes : 0,
239 plane_state->hwindex);
240 }
241
242 group_free_planes[index] = 0xff & ~used_planes;
243 groups &= ~(1 << index);
244
245 dev_dbg(rcdu->dev, "%s: group %u free planes mask 0x%02x\n",
246 __func__, index, group_free_planes[index]);
247 }
248
249 /* Reallocate hardware planes for each plane that needs it. */
250 for (i = 0; i < dev->mode_config.num_total_plane; ++i) {
251 struct rcar_du_plane_state *plane_state;
252 struct rcar_du_plane *plane;
253 unsigned int crtc_planes;
254 unsigned int free;
255 int idx;
256
257 if (!state->planes[i])
258 continue;
259
260 plane = to_rcar_plane(state->planes[i]);
261 plane_state = to_rcar_plane_state(state->plane_states[i]);
262
Koji Matsuoka07ece192015-08-26 09:37:08 +0900263 dev_dbg(rcdu->dev, "%s: allocating plane (%u,%tu)\n", __func__,
Laurent Pinchartab334e12015-07-27 15:34:18 +0300264 plane->group->index, plane - plane->group->planes);
265
266 /* Skip planes that are being disabled or don't need to be
267 * reallocated.
268 */
269 if (!plane_state->format ||
270 !rcar_du_plane_needs_realloc(plane, plane_state))
271 continue;
272
273 /* Try to allocate the plane from the free planes currently
274 * associated with the target CRTC to avoid restarting the CRTC
275 * group and thus minimize flicker. If it fails fall back to
276 * allocating from all free planes.
277 */
278 crtc_planes = to_rcar_crtc(plane_state->state.crtc)->index % 2
279 ? plane->group->dptsr_planes
280 : ~plane->group->dptsr_planes;
281 free = group_free_planes[plane->group->index];
282
283 idx = rcar_du_plane_hwalloc(plane, plane_state,
284 free & crtc_planes);
285 if (idx < 0)
286 idx = rcar_du_plane_hwalloc(plane, plane_state,
287 free);
288 if (idx < 0) {
289 dev_dbg(rcdu->dev, "%s: no available hardware plane\n",
290 __func__);
291 return idx;
292 }
293
294 dev_dbg(rcdu->dev, "%s: allocated %u hwplanes (index %u)\n",
295 __func__, plane_state->format->planes, idx);
296
297 plane_state->hwindex = idx;
298
299 group_free_planes[plane->group->index] &=
300 ~rcar_du_plane_hwmask(plane_state);
301
302 dev_dbg(rcdu->dev, "%s: group %u free planes mask 0x%02x\n",
303 __func__, plane->group->index,
304 group_free_planes[plane->group->index]);
305 }
306
307 return 0;
308}
309
310/* -----------------------------------------------------------------------------
311 * Plane Setup
312 */
313
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200314#define RCAR_DU_COLORKEY_NONE (0 << 24)
315#define RCAR_DU_COLORKEY_SOURCE (1 << 24)
316#define RCAR_DU_COLORKEY_MASK (1 << 24)
317
Laurent Pinchartcb2025d2013-06-16 21:01:02 +0200318static void rcar_du_plane_write(struct rcar_du_group *rgrp,
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200319 unsigned int index, u32 reg, u32 data)
320{
Laurent Pinchartcb2025d2013-06-16 21:01:02 +0200321 rcar_du_write(rgrp->dev, rgrp->mmio_offset + index * PLANE_OFF + reg,
322 data);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200323}
324
Laurent Pinchart34a04f22013-06-21 17:54:50 +0200325static void rcar_du_plane_setup_scanout(struct rcar_du_group *rgrp,
326 const struct rcar_du_plane_state *state)
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200327{
Laurent Pinchart5bfcbce2015-02-23 02:59:35 +0200328 unsigned int src_x = state->state.src_x >> 16;
329 unsigned int src_y = state->state.src_y >> 16;
Laurent Pinchart5ee5a812015-02-25 18:27:19 +0200330 unsigned int index = state->hwindex;
Laurent Pinchart2f13c522015-07-27 13:43:09 +0300331 unsigned int pitch;
Laurent Pinchart906eff72014-12-09 19:11:18 +0200332 bool interlaced;
Laurent Pinchart2f13c522015-07-27 13:43:09 +0300333 u32 dma[2];
Laurent Pincharteb863012013-11-13 14:26:01 +0100334
Laurent Pinchart5bfcbce2015-02-23 02:59:35 +0200335 interlaced = state->state.crtc->state->adjusted_mode.flags
Laurent Pinchart47094192015-02-22 19:24:59 +0200336 & DRM_MODE_FLAG_INTERLACE;
Laurent Pinchart906eff72014-12-09 19:11:18 +0200337
Laurent Pinchart34a04f22013-06-21 17:54:50 +0200338 if (state->source == RCAR_DU_PLANE_MEMORY) {
339 struct drm_framebuffer *fb = state->state.fb;
340 struct drm_gem_cma_object *gem;
341 unsigned int i;
342
343 if (state->format->planes == 2)
344 pitch = fb->pitches[0];
345 else
346 pitch = fb->pitches[0] * 8 / state->format->bpp;
347
348 for (i = 0; i < state->format->planes; ++i) {
349 gem = drm_fb_cma_get_gem_obj(fb, i);
350 dma[i] = gem->paddr + fb->offsets[i];
351 }
352 } else {
353 pitch = state->state.src_w >> 16;
354 dma[0] = 0;
355 dma[1] = 0;
356 }
357
Laurent Pinchart906eff72014-12-09 19:11:18 +0200358 /* Memory pitch (expressed in pixels). Must be doubled for interlaced
359 * operation with 32bpp formats.
360 */
Laurent Pinchart2f13c522015-07-27 13:43:09 +0300361 rcar_du_plane_write(rgrp, index, PnMWR,
362 (interlaced && state->format->bpp == 32) ?
363 pitch * 2 : pitch);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200364
Laurent Pinchart9e7db062013-06-14 20:54:16 +0200365 /* The Y position is expressed in raster line units and must be doubled
366 * for 32bpp formats, according to the R8A7790 datasheet. No mention of
367 * doubling the Y position is found in the R8A7779 datasheet, but the
368 * rule seems to apply there as well.
369 *
Laurent Pinchart906eff72014-12-09 19:11:18 +0200370 * Despite not being documented, doubling seem not to be needed when
371 * operating in interlaced mode.
372 *
Laurent Pinchart9e7db062013-06-14 20:54:16 +0200373 * Similarly, for the second plane, NV12 and NV21 formats seem to
Laurent Pinchart906eff72014-12-09 19:11:18 +0200374 * require a halved Y position value, in both progressive and interlaced
375 * modes.
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200376 */
Laurent Pinchart287bdf02015-02-20 15:58:38 +0200377 rcar_du_plane_write(rgrp, index, PnSPXR, src_x);
378 rcar_du_plane_write(rgrp, index, PnSPYR, src_y *
Laurent Pinchart5bfcbce2015-02-23 02:59:35 +0200379 (!interlaced && state->format->bpp == 32 ? 2 : 1));
Laurent Pinchartf398f342015-02-23 01:25:19 +0200380
Laurent Pinchart2f13c522015-07-27 13:43:09 +0300381 rcar_du_plane_write(rgrp, index, PnDSA0R, dma[0]);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200382
Laurent Pinchart5bfcbce2015-02-23 02:59:35 +0200383 if (state->format->planes == 2) {
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200384 index = (index + 1) % 8;
385
Laurent Pinchart2f13c522015-07-27 13:43:09 +0300386 rcar_du_plane_write(rgrp, index, PnMWR, pitch);
Laurent Pinchart49785e22014-12-09 22:45:11 +0200387
Laurent Pinchart287bdf02015-02-20 15:58:38 +0200388 rcar_du_plane_write(rgrp, index, PnSPXR, src_x);
389 rcar_du_plane_write(rgrp, index, PnSPYR, src_y *
Laurent Pinchart5bfcbce2015-02-23 02:59:35 +0200390 (state->format->bpp == 16 ? 2 : 1) / 2);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200391
Laurent Pinchart2f13c522015-07-27 13:43:09 +0300392 rcar_du_plane_write(rgrp, index, PnDSA0R, dma[1]);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200393 }
394}
395
Laurent Pinchart34a04f22013-06-21 17:54:50 +0200396static void rcar_du_plane_setup_mode(struct rcar_du_group *rgrp,
397 unsigned int index,
398 const struct rcar_du_plane_state *state)
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200399{
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200400 u32 colorkey;
401 u32 pnmr;
402
403 /* The PnALPHAR register controls alpha-blending in 16bpp formats
404 * (ARGB1555 and XRGB1555).
405 *
406 * For ARGB, set the alpha value to 0, and enable alpha-blending when
407 * the A bit is 0. This maps A=0 to alpha=0 and A=1 to alpha=255.
408 *
409 * For XRGB, set the alpha value to the plane-wide alpha value and
410 * enable alpha-blending regardless of the X bit value.
411 */
Laurent Pinchart5bfcbce2015-02-23 02:59:35 +0200412 if (state->format->fourcc != DRM_FORMAT_XRGB1555)
Laurent Pinchartcb2025d2013-06-16 21:01:02 +0200413 rcar_du_plane_write(rgrp, index, PnALPHAR, PnALPHAR_ABIT_0);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200414 else
Laurent Pinchartcb2025d2013-06-16 21:01:02 +0200415 rcar_du_plane_write(rgrp, index, PnALPHAR,
Laurent Pinchart4407cc02015-02-23 02:36:31 +0200416 PnALPHAR_ABIT_X | state->alpha);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200417
Laurent Pinchart5bfcbce2015-02-23 02:59:35 +0200418 pnmr = PnMR_BM_MD | state->format->pnmr;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200419
420 /* Disable color keying when requested. YUV formats have the
421 * PnMR_SPIM_TP_OFF bit set in their pnmr field, disabling color keying
422 * automatically.
423 */
Laurent Pinchart4407cc02015-02-23 02:36:31 +0200424 if ((state->colorkey & RCAR_DU_COLORKEY_MASK) == RCAR_DU_COLORKEY_NONE)
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200425 pnmr |= PnMR_SPIM_TP_OFF;
426
427 /* For packed YUV formats we need to select the U/V order. */
Laurent Pinchart5bfcbce2015-02-23 02:59:35 +0200428 if (state->format->fourcc == DRM_FORMAT_YUYV)
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200429 pnmr |= PnMR_YCDF_YUYV;
430
Laurent Pinchartcb2025d2013-06-16 21:01:02 +0200431 rcar_du_plane_write(rgrp, index, PnMR, pnmr);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200432
Laurent Pinchart5bfcbce2015-02-23 02:59:35 +0200433 switch (state->format->fourcc) {
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200434 case DRM_FORMAT_RGB565:
Laurent Pinchart4407cc02015-02-23 02:36:31 +0200435 colorkey = ((state->colorkey & 0xf80000) >> 8)
436 | ((state->colorkey & 0x00fc00) >> 5)
437 | ((state->colorkey & 0x0000f8) >> 3);
Laurent Pinchartcb2025d2013-06-16 21:01:02 +0200438 rcar_du_plane_write(rgrp, index, PnTC2R, colorkey);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200439 break;
440
441 case DRM_FORMAT_ARGB1555:
442 case DRM_FORMAT_XRGB1555:
Laurent Pinchart4407cc02015-02-23 02:36:31 +0200443 colorkey = ((state->colorkey & 0xf80000) >> 9)
444 | ((state->colorkey & 0x00f800) >> 6)
445 | ((state->colorkey & 0x0000f8) >> 3);
Laurent Pinchartcb2025d2013-06-16 21:01:02 +0200446 rcar_du_plane_write(rgrp, index, PnTC2R, colorkey);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200447 break;
448
449 case DRM_FORMAT_XRGB8888:
450 case DRM_FORMAT_ARGB8888:
Laurent Pinchartcb2025d2013-06-16 21:01:02 +0200451 rcar_du_plane_write(rgrp, index, PnTC3R,
Laurent Pinchart4407cc02015-02-23 02:36:31 +0200452 PnTC3R_CODE | (state->colorkey & 0xffffff));
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200453 break;
454 }
455}
456
Laurent Pinchart34a04f22013-06-21 17:54:50 +0200457static void rcar_du_plane_setup_format(struct rcar_du_group *rgrp,
458 unsigned int index,
459 const struct rcar_du_plane_state *state)
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200460{
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200461 u32 ddcr2 = PnDDCR2_CODE;
462 u32 ddcr4;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200463
464 /* Data format
465 *
466 * The data format is selected by the DDDF field in PnMR and the EDF
467 * field in DDCR4.
468 */
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200469
Laurent Pinchart34a04f22013-06-21 17:54:50 +0200470 rcar_du_plane_setup_mode(rgrp, index, state);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200471
Laurent Pinchart5bfcbce2015-02-23 02:59:35 +0200472 if (state->format->planes == 2) {
Laurent Pinchart5ee5a812015-02-25 18:27:19 +0200473 if (state->hwindex != index) {
Laurent Pinchart5bfcbce2015-02-23 02:59:35 +0200474 if (state->format->fourcc == DRM_FORMAT_NV12 ||
475 state->format->fourcc == DRM_FORMAT_NV21)
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200476 ddcr2 |= PnDDCR2_Y420;
477
Laurent Pinchart5bfcbce2015-02-23 02:59:35 +0200478 if (state->format->fourcc == DRM_FORMAT_NV21)
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200479 ddcr2 |= PnDDCR2_NV21;
480
481 ddcr2 |= PnDDCR2_DIVU;
482 } else {
483 ddcr2 |= PnDDCR2_DIVY;
484 }
485 }
486
Laurent Pinchartcb2025d2013-06-16 21:01:02 +0200487 rcar_du_plane_write(rgrp, index, PnDDCR2, ddcr2);
Laurent Pinchartff967362015-07-27 12:46:44 +0300488
489 ddcr4 = state->format->edf | PnDDCR4_CODE;
Laurent Pinchart34a04f22013-06-21 17:54:50 +0200490 if (state->source != RCAR_DU_PLANE_MEMORY)
491 ddcr4 |= PnDDCR4_VSPS;
Laurent Pinchartff967362015-07-27 12:46:44 +0300492
Laurent Pinchartcb2025d2013-06-16 21:01:02 +0200493 rcar_du_plane_write(rgrp, index, PnDDCR4, ddcr4);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200494
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200495 /* Destination position and size */
Laurent Pinchart34a04f22013-06-21 17:54:50 +0200496 rcar_du_plane_write(rgrp, index, PnDSXR, state->state.crtc_w);
497 rcar_du_plane_write(rgrp, index, PnDSYR, state->state.crtc_h);
498 rcar_du_plane_write(rgrp, index, PnDPXR, state->state.crtc_x);
499 rcar_du_plane_write(rgrp, index, PnDPYR, state->state.crtc_y);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200500
501 /* Wrap-around and blinking, disabled */
Laurent Pinchartcb2025d2013-06-16 21:01:02 +0200502 rcar_du_plane_write(rgrp, index, PnWASPR, 0);
503 rcar_du_plane_write(rgrp, index, PnWAMWR, 4095);
504 rcar_du_plane_write(rgrp, index, PnBTR, 0);
505 rcar_du_plane_write(rgrp, index, PnMLR, 0);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200506}
507
Laurent Pinchart6d62ef32015-09-07 17:14:58 +0300508void __rcar_du_plane_setup(struct rcar_du_group *rgrp,
509 const struct rcar_du_plane_state *state)
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200510{
Laurent Pinchart34a04f22013-06-21 17:54:50 +0200511 rcar_du_plane_setup_format(rgrp, state->hwindex, state);
Laurent Pinchart5bfcbce2015-02-23 02:59:35 +0200512 if (state->format->planes == 2)
Laurent Pinchart34a04f22013-06-21 17:54:50 +0200513 rcar_du_plane_setup_format(rgrp, (state->hwindex + 1) % 8,
514 state);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200515
Laurent Pinchart34a04f22013-06-21 17:54:50 +0200516 rcar_du_plane_setup_scanout(rgrp, state);
517
518 if (state->source == RCAR_DU_PLANE_VSPD1) {
519 unsigned int vspd1_sink = rgrp->index ? 2 : 0;
520 struct rcar_du_device *rcdu = rgrp->dev;
521
522 if (rcdu->vspd1_sink != vspd1_sink) {
523 rcdu->vspd1_sink = vspd1_sink;
524 rcar_du_set_dpad0_vsp1_routing(rcdu);
525 }
526 }
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200527}
528
Laurent Pinchart920888a2015-02-18 12:18:05 +0200529static int rcar_du_plane_atomic_check(struct drm_plane *plane,
530 struct drm_plane_state *state)
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200531{
Laurent Pinchartec69a402015-04-29 00:48:17 +0300532 struct rcar_du_plane_state *rstate = to_rcar_plane_state(state);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200533 struct rcar_du_plane *rplane = to_rcar_plane(plane);
Laurent Pinchartcb2025d2013-06-16 21:01:02 +0200534 struct rcar_du_device *rcdu = rplane->group->dev;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200535
Laurent Pinchart5ee5a812015-02-25 18:27:19 +0200536 if (!state->fb || !state->crtc) {
537 rstate->format = NULL;
Laurent Pinchart920888a2015-02-18 12:18:05 +0200538 return 0;
Laurent Pinchart5ee5a812015-02-25 18:27:19 +0200539 }
Laurent Pinchart917de182015-02-17 18:34:17 +0200540
Laurent Pinchart920888a2015-02-18 12:18:05 +0200541 if (state->src_w >> 16 != state->crtc_w ||
542 state->src_h >> 16 != state->crtc_h) {
543 dev_dbg(rcdu->dev, "%s: scaling not supported\n", __func__);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200544 return -EINVAL;
545 }
546
Laurent Pinchart5ee5a812015-02-25 18:27:19 +0200547 rstate->format = rcar_du_format_info(state->fb->pixel_format);
548 if (rstate->format == NULL) {
Laurent Pinchart920888a2015-02-18 12:18:05 +0200549 dev_dbg(rcdu->dev, "%s: unsupported format %08x\n", __func__,
550 state->fb->pixel_format);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200551 return -EINVAL;
552 }
553
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200554 return 0;
555}
556
Laurent Pinchart920888a2015-02-18 12:18:05 +0200557static void rcar_du_plane_atomic_update(struct drm_plane *plane,
558 struct drm_plane_state *old_state)
559{
560 struct rcar_du_plane *rplane = to_rcar_plane(plane);
Laurent Pinchart2af03942013-08-24 02:17:03 +0200561 struct rcar_du_plane_state *old_rstate;
562 struct rcar_du_plane_state *new_rstate;
Laurent Pinchart5bfcbce2015-02-23 02:59:35 +0200563
Laurent Pinchart2af03942013-08-24 02:17:03 +0200564 if (!plane->state->crtc)
565 return;
566
567 rcar_du_plane_setup(rplane);
568
569 /* Check whether the source has changed from memory to live source or
570 * from live source to memory. The source has been configured by the
571 * VSPS bit in the PnDDCR4 register. Although the datasheet states that
572 * the bit is updated during vertical blanking, it seems that updates
573 * only occur when the DU group is held in reset through the DSYSR.DRES
574 * bit. We thus need to restart the group if the source changes.
575 */
576 old_rstate = to_rcar_plane_state(old_state);
577 new_rstate = to_rcar_plane_state(plane->state);
578
579 if ((old_rstate->source == RCAR_DU_PLANE_MEMORY) !=
580 (new_rstate->source == RCAR_DU_PLANE_MEMORY))
581 rplane->group->need_restart = true;
Laurent Pinchart920888a2015-02-18 12:18:05 +0200582}
583
584static const struct drm_plane_helper_funcs rcar_du_plane_helper_funcs = {
585 .atomic_check = rcar_du_plane_atomic_check,
586 .atomic_update = rcar_du_plane_atomic_update,
587};
588
Laurent Pinchart4407cc02015-02-23 02:36:31 +0200589static struct drm_plane_state *
590rcar_du_plane_atomic_duplicate_state(struct drm_plane *plane)
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200591{
Laurent Pinchart4407cc02015-02-23 02:36:31 +0200592 struct rcar_du_plane_state *state;
593 struct rcar_du_plane_state *copy;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200594
Laurent Pinchart263b39f2015-05-27 16:36:29 +0300595 if (WARN_ON(!plane->state))
596 return NULL;
597
Laurent Pinchartec69a402015-04-29 00:48:17 +0300598 state = to_rcar_plane_state(plane->state);
Laurent Pinchart4407cc02015-02-23 02:36:31 +0200599 copy = kmemdup(state, sizeof(*state), GFP_KERNEL);
600 if (copy == NULL)
601 return NULL;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200602
Laurent Pinchart263b39f2015-05-27 16:36:29 +0300603 __drm_atomic_helper_plane_duplicate_state(plane, &copy->state);
Laurent Pinchart4407cc02015-02-23 02:36:31 +0200604
605 return &copy->state;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200606}
607
Laurent Pinchart4407cc02015-02-23 02:36:31 +0200608static void rcar_du_plane_atomic_destroy_state(struct drm_plane *plane,
609 struct drm_plane_state *state)
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200610{
Laurent Pinchart263b39f2015-05-27 16:36:29 +0300611 __drm_atomic_helper_plane_destroy_state(plane, state);
Laurent Pinchartec69a402015-04-29 00:48:17 +0300612 kfree(to_rcar_plane_state(state));
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200613}
614
Laurent Pincharta32a3c82015-07-27 11:42:54 +0300615static void rcar_du_plane_reset(struct drm_plane *plane)
616{
617 struct rcar_du_plane_state *state;
618
619 if (plane->state) {
620 rcar_du_plane_atomic_destroy_state(plane, plane->state);
621 plane->state = NULL;
622 }
623
624 state = kzalloc(sizeof(*state), GFP_KERNEL);
625 if (state == NULL)
626 return;
627
628 state->hwindex = -1;
Laurent Pinchartaf8ad962013-06-21 17:36:15 +0200629 state->source = RCAR_DU_PLANE_MEMORY;
Laurent Pincharta32a3c82015-07-27 11:42:54 +0300630 state->alpha = 255;
631 state->colorkey = RCAR_DU_COLORKEY_NONE;
632 state->zpos = plane->type == DRM_PLANE_TYPE_PRIMARY ? 0 : 1;
633
634 plane->state = &state->state;
635 plane->state->plane = plane;
636}
637
Laurent Pinchart4407cc02015-02-23 02:36:31 +0200638static int rcar_du_plane_atomic_set_property(struct drm_plane *plane,
639 struct drm_plane_state *state,
640 struct drm_property *property,
641 uint64_t val)
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200642{
Laurent Pinchartec69a402015-04-29 00:48:17 +0300643 struct rcar_du_plane_state *rstate = to_rcar_plane_state(state);
Laurent Pinchart9f6aee92015-04-28 23:59:29 +0300644 struct rcar_du_device *rcdu = to_rcar_plane(plane)->group->dev;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200645
Laurent Pinchart9f6aee92015-04-28 23:59:29 +0300646 if (property == rcdu->props.alpha)
Laurent Pinchart4407cc02015-02-23 02:36:31 +0200647 rstate->alpha = val;
Laurent Pinchart9f6aee92015-04-28 23:59:29 +0300648 else if (property == rcdu->props.colorkey)
Laurent Pinchart4407cc02015-02-23 02:36:31 +0200649 rstate->colorkey = val;
Laurent Pinchart9f6aee92015-04-28 23:59:29 +0300650 else if (property == rcdu->props.zpos)
Laurent Pinchart4407cc02015-02-23 02:36:31 +0200651 rstate->zpos = val;
652 else
653 return -EINVAL;
654
655 return 0;
656}
657
658static int rcar_du_plane_atomic_get_property(struct drm_plane *plane,
659 const struct drm_plane_state *state, struct drm_property *property,
660 uint64_t *val)
661{
662 const struct rcar_du_plane_state *rstate =
663 container_of(state, const struct rcar_du_plane_state, state);
Laurent Pinchart9f6aee92015-04-28 23:59:29 +0300664 struct rcar_du_device *rcdu = to_rcar_plane(plane)->group->dev;
Laurent Pinchart4407cc02015-02-23 02:36:31 +0200665
Laurent Pinchart9f6aee92015-04-28 23:59:29 +0300666 if (property == rcdu->props.alpha)
Laurent Pinchart4407cc02015-02-23 02:36:31 +0200667 *val = rstate->alpha;
Laurent Pinchart9f6aee92015-04-28 23:59:29 +0300668 else if (property == rcdu->props.colorkey)
Laurent Pinchart4407cc02015-02-23 02:36:31 +0200669 *val = rstate->colorkey;
Laurent Pinchart9f6aee92015-04-28 23:59:29 +0300670 else if (property == rcdu->props.zpos)
Laurent Pinchart4407cc02015-02-23 02:36:31 +0200671 *val = rstate->zpos;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200672 else
673 return -EINVAL;
674
675 return 0;
676}
677
678static const struct drm_plane_funcs rcar_du_plane_funcs = {
Laurent Pinchart336d04a2015-02-20 13:18:56 +0200679 .update_plane = drm_atomic_helper_update_plane,
680 .disable_plane = drm_atomic_helper_disable_plane,
Laurent Pinchart4407cc02015-02-23 02:36:31 +0200681 .reset = rcar_du_plane_reset,
682 .set_property = drm_atomic_helper_plane_set_property,
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200683 .destroy = drm_plane_cleanup,
Laurent Pinchart4407cc02015-02-23 02:36:31 +0200684 .atomic_duplicate_state = rcar_du_plane_atomic_duplicate_state,
685 .atomic_destroy_state = rcar_du_plane_atomic_destroy_state,
686 .atomic_set_property = rcar_du_plane_atomic_set_property,
687 .atomic_get_property = rcar_du_plane_atomic_get_property,
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200688};
689
690static const uint32_t formats[] = {
691 DRM_FORMAT_RGB565,
692 DRM_FORMAT_ARGB1555,
693 DRM_FORMAT_XRGB1555,
694 DRM_FORMAT_XRGB8888,
695 DRM_FORMAT_ARGB8888,
696 DRM_FORMAT_UYVY,
697 DRM_FORMAT_YUYV,
698 DRM_FORMAT_NV12,
699 DRM_FORMAT_NV21,
700 DRM_FORMAT_NV16,
701};
702
Laurent Pinchartcb2025d2013-06-16 21:01:02 +0200703int rcar_du_planes_init(struct rcar_du_group *rgrp)
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200704{
Laurent Pinchartcb2025d2013-06-16 21:01:02 +0200705 struct rcar_du_device *rcdu = rgrp->dev;
Laurent Pinchart917de182015-02-17 18:34:17 +0200706 unsigned int crtcs;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200707 unsigned int i;
Laurent Pinchart917de182015-02-17 18:34:17 +0200708 int ret;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200709
Laurent Pinchart9f6aee92015-04-28 23:59:29 +0300710 /* Create one primary plane per CRTC in this group and seven overlay
Laurent Pinchart917de182015-02-17 18:34:17 +0200711 * planes.
712 */
Laurent Pinchartd6aed572015-05-25 16:32:45 +0300713 rgrp->num_planes = rgrp->num_crtcs + 7;
Laurent Pinchart917de182015-02-17 18:34:17 +0200714
715 crtcs = ((1 << rcdu->num_crtcs) - 1) & (3 << (2 * rgrp->index));
716
Laurent Pinchartd6aed572015-05-25 16:32:45 +0300717 for (i = 0; i < rgrp->num_planes; ++i) {
Laurent Pinchartfe6fbe92015-04-28 17:36:33 +0300718 enum drm_plane_type type = i < rgrp->num_crtcs
Laurent Pinchart917de182015-02-17 18:34:17 +0200719 ? DRM_PLANE_TYPE_PRIMARY
720 : DRM_PLANE_TYPE_OVERLAY;
Laurent Pinchart99caede2015-04-29 00:05:56 +0300721 struct rcar_du_plane *plane = &rgrp->planes[i];
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200722
Laurent Pinchartcb2025d2013-06-16 21:01:02 +0200723 plane->group = rgrp;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200724
Laurent Pinchart917de182015-02-17 18:34:17 +0200725 ret = drm_universal_plane_init(rcdu->ddev, &plane->plane, crtcs,
726 &rcar_du_plane_funcs, formats,
Ville Syrjäläb0b3b792015-12-09 16:19:55 +0200727 ARRAY_SIZE(formats), type,
728 NULL);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200729 if (ret < 0)
730 return ret;
731
Laurent Pinchart920888a2015-02-18 12:18:05 +0200732 drm_plane_helper_add(&plane->plane,
733 &rcar_du_plane_helper_funcs);
734
Laurent Pinchart917de182015-02-17 18:34:17 +0200735 if (type == DRM_PLANE_TYPE_PRIMARY)
736 continue;
737
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200738 drm_object_attach_property(&plane->plane.base,
Laurent Pinchart9f6aee92015-04-28 23:59:29 +0300739 rcdu->props.alpha, 255);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200740 drm_object_attach_property(&plane->plane.base,
Laurent Pinchart9f6aee92015-04-28 23:59:29 +0300741 rcdu->props.colorkey,
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200742 RCAR_DU_COLORKEY_NONE);
743 drm_object_attach_property(&plane->plane.base,
Laurent Pinchart9f6aee92015-04-28 23:59:29 +0300744 rcdu->props.zpos, 1);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200745 }
746
747 return 0;
748}