2 * rcar_du_plane.c -- R-Car Display Unit Planes
4 * Copyright (C) 2013-2015 Renesas Electronics Corporation
6 * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com)
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.
15 #include <drm/drm_atomic.h>
16 #include <drm/drm_atomic_helper.h>
17 #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>
21 #include <drm/drm_plane_helper.h>
23 #include "rcar_du_drv.h"
24 #include "rcar_du_group.h"
25 #include "rcar_du_kms.h"
26 #include "rcar_du_plane.h"
27 #include "rcar_du_regs.h"
29 /* -----------------------------------------------------------------------------
30 * Atomic hardware plane allocator
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().
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.
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).
49 * Allocation is performed in the .atomic_check() handler and applied
50 * automatically when the core swaps the old and new states.
53 static bool rcar_du_plane_needs_realloc(
54 const struct rcar_du_plane_state
*old_state
,
55 const struct rcar_du_plane_state
*new_state
)
58 * Lowering the number of planes doesn't strictly require reallocation
59 * as the extra hardware plane will be freed when committing, but doing
60 * so could lead to more fragmentation.
62 if (!old_state
->format
||
63 old_state
->format
->planes
!= new_state
->format
->planes
)
66 /* Reallocate hardware planes if the source has changed. */
67 if (old_state
->source
!= new_state
->source
)
73 static unsigned int rcar_du_plane_hwmask(struct rcar_du_plane_state
*state
)
77 if (state
->hwindex
== -1)
80 mask
= 1 << state
->hwindex
;
81 if (state
->format
->planes
== 2)
82 mask
|= 1 << ((state
->hwindex
+ 1) % 8);
88 * The R8A7790 DU can source frames directly from the VSP1 devices VSPD0 and
89 * VSPD1. VSPD0 feeds DU0/1 plane 0, and VSPD1 feeds either DU2 plane 0 or
92 * Allocate the correct fixed plane when sourcing frames from VSPD0 or VSPD1,
93 * and allocate planes in reverse index order otherwise to ensure maximum
94 * availability of planes 0 and 1.
96 * The caller is responsible for ensuring that the requested source is
97 * compatible with the DU revision.
99 static int rcar_du_plane_hwalloc(struct rcar_du_plane
*plane
,
100 struct rcar_du_plane_state
*state
,
103 unsigned int num_planes
= state
->format
->planes
;
107 if (state
->source
== RCAR_DU_PLANE_VSPD0
) {
108 /* VSPD0 feeds plane 0 on DU0/1. */
109 if (plane
->group
->index
!= 0)
113 } else if (state
->source
== RCAR_DU_PLANE_VSPD1
) {
114 /* VSPD1 feeds plane 1 on DU0/1 or plane 0 on DU2. */
115 fixed
= plane
->group
->index
== 0 ? 1 : 0;
119 return free
& (1 << fixed
) ? fixed
: -EBUSY
;
121 for (i
= RCAR_DU_NUM_HW_PLANES
- 1; i
>= 0; --i
) {
122 if (!(free
& (1 << i
)))
125 if (num_planes
== 1 || free
& (1 << ((i
+ 1) % 8)))
129 return i
< 0 ? -EBUSY
: i
;
132 int rcar_du_atomic_check_planes(struct drm_device
*dev
,
133 struct drm_atomic_state
*state
)
135 struct rcar_du_device
*rcdu
= dev
->dev_private
;
136 unsigned int group_freed_planes
[RCAR_DU_MAX_GROUPS
] = { 0, };
137 unsigned int group_free_planes
[RCAR_DU_MAX_GROUPS
] = { 0, };
138 bool needs_realloc
= false;
139 unsigned int groups
= 0;
141 struct drm_plane
*drm_plane
;
142 struct drm_plane_state
*old_drm_plane_state
;
143 struct drm_plane_state
*new_drm_plane_state
;
145 /* Check if hardware planes need to be reallocated. */
146 for_each_oldnew_plane_in_state(state
, drm_plane
, old_drm_plane_state
,
147 new_drm_plane_state
, i
) {
148 struct rcar_du_plane_state
*old_plane_state
;
149 struct rcar_du_plane_state
*new_plane_state
;
150 struct rcar_du_plane
*plane
;
153 plane
= to_rcar_plane(drm_plane
);
154 old_plane_state
= to_rcar_plane_state(old_drm_plane_state
);
155 new_plane_state
= to_rcar_plane_state(new_drm_plane_state
);
157 dev_dbg(rcdu
->dev
, "%s: checking plane (%u,%tu)\n", __func__
,
158 plane
->group
->index
, plane
- plane
->group
->planes
);
161 * If the plane is being disabled we don't need to go through
162 * the full reallocation procedure. Just mark the hardware
165 if (!new_plane_state
->format
) {
166 dev_dbg(rcdu
->dev
, "%s: plane is being disabled\n",
168 index
= plane
- plane
->group
->planes
;
169 group_freed_planes
[plane
->group
->index
] |= 1 << index
;
170 new_plane_state
->hwindex
= -1;
175 * If the plane needs to be reallocated mark it as such, and
176 * mark the hardware plane(s) as free.
178 if (rcar_du_plane_needs_realloc(old_plane_state
, new_plane_state
)) {
179 dev_dbg(rcdu
->dev
, "%s: plane needs reallocation\n",
181 groups
|= 1 << plane
->group
->index
;
182 needs_realloc
= true;
184 index
= plane
- plane
->group
->planes
;
185 group_freed_planes
[plane
->group
->index
] |= 1 << index
;
186 new_plane_state
->hwindex
= -1;
194 * Grab all plane states for the groups that need reallocation to ensure
195 * locking and avoid racy updates. This serializes the update operation,
196 * but there's not much we can do about it as that's the hardware
199 * Compute the used planes mask for each group at the same time to avoid
200 * looping over the planes separately later.
203 unsigned int index
= ffs(groups
) - 1;
204 struct rcar_du_group
*group
= &rcdu
->groups
[index
];
205 unsigned int used_planes
= 0;
207 dev_dbg(rcdu
->dev
, "%s: finding free planes for group %u\n",
210 for (i
= 0; i
< group
->num_planes
; ++i
) {
211 struct rcar_du_plane
*plane
= &group
->planes
[i
];
212 struct rcar_du_plane_state
*new_plane_state
;
213 struct drm_plane_state
*s
;
215 s
= drm_atomic_get_plane_state(state
, &plane
->plane
);
220 * If the plane has been freed in the above loop its
221 * hardware planes must not be added to the used planes
222 * bitmask. However, the current state doesn't reflect
223 * the free state yet, as we've modified the new state
224 * above. Use the local freed planes list to check for
225 * that condition instead.
227 if (group_freed_planes
[index
] & (1 << i
)) {
229 "%s: plane (%u,%tu) has been freed, skipping\n",
230 __func__
, plane
->group
->index
,
231 plane
- plane
->group
->planes
);
235 new_plane_state
= to_rcar_plane_state(s
);
236 used_planes
|= rcar_du_plane_hwmask(new_plane_state
);
239 "%s: plane (%u,%tu) uses %u hwplanes (index %d)\n",
240 __func__
, plane
->group
->index
,
241 plane
- plane
->group
->planes
,
242 new_plane_state
->format
?
243 new_plane_state
->format
->planes
: 0,
244 new_plane_state
->hwindex
);
247 group_free_planes
[index
] = 0xff & ~used_planes
;
248 groups
&= ~(1 << index
);
250 dev_dbg(rcdu
->dev
, "%s: group %u free planes mask 0x%02x\n",
251 __func__
, index
, group_free_planes
[index
]);
254 /* Reallocate hardware planes for each plane that needs it. */
255 for_each_oldnew_plane_in_state(state
, drm_plane
, old_drm_plane_state
,
256 new_drm_plane_state
, i
) {
257 struct rcar_du_plane_state
*old_plane_state
;
258 struct rcar_du_plane_state
*new_plane_state
;
259 struct rcar_du_plane
*plane
;
260 unsigned int crtc_planes
;
264 plane
= to_rcar_plane(drm_plane
);
265 old_plane_state
= to_rcar_plane_state(old_drm_plane_state
);
266 new_plane_state
= to_rcar_plane_state(new_drm_plane_state
);
268 dev_dbg(rcdu
->dev
, "%s: allocating plane (%u,%tu)\n", __func__
,
269 plane
->group
->index
, plane
- plane
->group
->planes
);
272 * Skip planes that are being disabled or don't need to be
275 if (!new_plane_state
->format
||
276 !rcar_du_plane_needs_realloc(old_plane_state
, new_plane_state
))
280 * Try to allocate the plane from the free planes currently
281 * associated with the target CRTC to avoid restarting the CRTC
282 * group and thus minimize flicker. If it fails fall back to
283 * allocating from all free planes.
285 crtc_planes
= to_rcar_crtc(new_plane_state
->state
.crtc
)->index
% 2
286 ? plane
->group
->dptsr_planes
287 : ~plane
->group
->dptsr_planes
;
288 free
= group_free_planes
[plane
->group
->index
];
290 idx
= rcar_du_plane_hwalloc(plane
, new_plane_state
,
293 idx
= rcar_du_plane_hwalloc(plane
, new_plane_state
,
296 dev_dbg(rcdu
->dev
, "%s: no available hardware plane\n",
301 dev_dbg(rcdu
->dev
, "%s: allocated %u hwplanes (index %u)\n",
302 __func__
, new_plane_state
->format
->planes
, idx
);
304 new_plane_state
->hwindex
= idx
;
306 group_free_planes
[plane
->group
->index
] &=
307 ~rcar_du_plane_hwmask(new_plane_state
);
309 dev_dbg(rcdu
->dev
, "%s: group %u free planes mask 0x%02x\n",
310 __func__
, plane
->group
->index
,
311 group_free_planes
[plane
->group
->index
]);
317 /* -----------------------------------------------------------------------------
321 #define RCAR_DU_COLORKEY_NONE (0 << 24)
322 #define RCAR_DU_COLORKEY_SOURCE (1 << 24)
323 #define RCAR_DU_COLORKEY_MASK (1 << 24)
325 static void rcar_du_plane_write(struct rcar_du_group
*rgrp
,
326 unsigned int index
, u32 reg
, u32 data
)
328 rcar_du_write(rgrp
->dev
, rgrp
->mmio_offset
+ index
* PLANE_OFF
+ reg
,
332 static void rcar_du_plane_setup_scanout(struct rcar_du_group
*rgrp
,
333 const struct rcar_du_plane_state
*state
)
335 unsigned int src_x
= state
->state
.src
.x1
>> 16;
336 unsigned int src_y
= state
->state
.src
.y1
>> 16;
337 unsigned int index
= state
->hwindex
;
342 interlaced
= state
->state
.crtc
->state
->adjusted_mode
.flags
343 & DRM_MODE_FLAG_INTERLACE
;
345 if (state
->source
== RCAR_DU_PLANE_MEMORY
) {
346 struct drm_framebuffer
*fb
= state
->state
.fb
;
347 struct drm_gem_cma_object
*gem
;
350 if (state
->format
->planes
== 2)
351 pitch
= fb
->pitches
[0];
353 pitch
= fb
->pitches
[0] * 8 / state
->format
->bpp
;
355 for (i
= 0; i
< state
->format
->planes
; ++i
) {
356 gem
= drm_fb_cma_get_gem_obj(fb
, i
);
357 dma
[i
] = gem
->paddr
+ fb
->offsets
[i
];
360 pitch
= drm_rect_width(&state
->state
.src
) >> 16;
366 * Memory pitch (expressed in pixels). Must be doubled for interlaced
367 * operation with 32bpp formats.
369 rcar_du_plane_write(rgrp
, index
, PnMWR
,
370 (interlaced
&& state
->format
->bpp
== 32) ?
374 * The Y position is expressed in raster line units and must be doubled
375 * for 32bpp formats, according to the R8A7790 datasheet. No mention of
376 * doubling the Y position is found in the R8A7779 datasheet, but the
377 * rule seems to apply there as well.
379 * Despite not being documented, doubling seem not to be needed when
380 * operating in interlaced mode.
382 * Similarly, for the second plane, NV12 and NV21 formats seem to
383 * require a halved Y position value, in both progressive and interlaced
386 rcar_du_plane_write(rgrp
, index
, PnSPXR
, src_x
);
387 rcar_du_plane_write(rgrp
, index
, PnSPYR
, src_y
*
388 (!interlaced
&& state
->format
->bpp
== 32 ? 2 : 1));
390 rcar_du_plane_write(rgrp
, index
, PnDSA0R
, dma
[0]);
392 if (state
->format
->planes
== 2) {
393 index
= (index
+ 1) % 8;
395 rcar_du_plane_write(rgrp
, index
, PnMWR
, pitch
);
397 rcar_du_plane_write(rgrp
, index
, PnSPXR
, src_x
);
398 rcar_du_plane_write(rgrp
, index
, PnSPYR
, src_y
*
399 (state
->format
->bpp
== 16 ? 2 : 1) / 2);
401 rcar_du_plane_write(rgrp
, index
, PnDSA0R
, dma
[1]);
405 static void rcar_du_plane_setup_mode(struct rcar_du_group
*rgrp
,
407 const struct rcar_du_plane_state
*state
)
413 * The PnALPHAR register controls alpha-blending in 16bpp formats
414 * (ARGB1555 and XRGB1555).
416 * For ARGB, set the alpha value to 0, and enable alpha-blending when
417 * the A bit is 0. This maps A=0 to alpha=0 and A=1 to alpha=255.
419 * For XRGB, set the alpha value to the plane-wide alpha value and
420 * enable alpha-blending regardless of the X bit value.
422 if (state
->format
->fourcc
!= DRM_FORMAT_XRGB1555
)
423 rcar_du_plane_write(rgrp
, index
, PnALPHAR
, PnALPHAR_ABIT_0
);
425 rcar_du_plane_write(rgrp
, index
, PnALPHAR
,
426 PnALPHAR_ABIT_X
| state
->alpha
);
428 pnmr
= PnMR_BM_MD
| state
->format
->pnmr
;
431 * Disable color keying when requested. YUV formats have the
432 * PnMR_SPIM_TP_OFF bit set in their pnmr field, disabling color keying
435 if ((state
->colorkey
& RCAR_DU_COLORKEY_MASK
) == RCAR_DU_COLORKEY_NONE
)
436 pnmr
|= PnMR_SPIM_TP_OFF
;
438 /* For packed YUV formats we need to select the U/V order. */
439 if (state
->format
->fourcc
== DRM_FORMAT_YUYV
)
440 pnmr
|= PnMR_YCDF_YUYV
;
442 rcar_du_plane_write(rgrp
, index
, PnMR
, pnmr
);
444 switch (state
->format
->fourcc
) {
445 case DRM_FORMAT_RGB565
:
446 colorkey
= ((state
->colorkey
& 0xf80000) >> 8)
447 | ((state
->colorkey
& 0x00fc00) >> 5)
448 | ((state
->colorkey
& 0x0000f8) >> 3);
449 rcar_du_plane_write(rgrp
, index
, PnTC2R
, colorkey
);
452 case DRM_FORMAT_ARGB1555
:
453 case DRM_FORMAT_XRGB1555
:
454 colorkey
= ((state
->colorkey
& 0xf80000) >> 9)
455 | ((state
->colorkey
& 0x00f800) >> 6)
456 | ((state
->colorkey
& 0x0000f8) >> 3);
457 rcar_du_plane_write(rgrp
, index
, PnTC2R
, colorkey
);
460 case DRM_FORMAT_XRGB8888
:
461 case DRM_FORMAT_ARGB8888
:
462 rcar_du_plane_write(rgrp
, index
, PnTC3R
,
463 PnTC3R_CODE
| (state
->colorkey
& 0xffffff));
468 static void rcar_du_plane_setup_format_gen2(struct rcar_du_group
*rgrp
,
470 const struct rcar_du_plane_state
*state
)
472 u32 ddcr2
= PnDDCR2_CODE
;
478 * The data format is selected by the DDDF field in PnMR and the EDF
482 rcar_du_plane_setup_mode(rgrp
, index
, state
);
484 if (state
->format
->planes
== 2) {
485 if (state
->hwindex
!= index
) {
486 if (state
->format
->fourcc
== DRM_FORMAT_NV12
||
487 state
->format
->fourcc
== DRM_FORMAT_NV21
)
488 ddcr2
|= PnDDCR2_Y420
;
490 if (state
->format
->fourcc
== DRM_FORMAT_NV21
)
491 ddcr2
|= PnDDCR2_NV21
;
493 ddcr2
|= PnDDCR2_DIVU
;
495 ddcr2
|= PnDDCR2_DIVY
;
499 rcar_du_plane_write(rgrp
, index
, PnDDCR2
, ddcr2
);
501 ddcr4
= state
->format
->edf
| PnDDCR4_CODE
;
502 if (state
->source
!= RCAR_DU_PLANE_MEMORY
)
503 ddcr4
|= PnDDCR4_VSPS
;
505 rcar_du_plane_write(rgrp
, index
, PnDDCR4
, ddcr4
);
508 static void rcar_du_plane_setup_format_gen3(struct rcar_du_group
*rgrp
,
510 const struct rcar_du_plane_state
*state
)
512 rcar_du_plane_write(rgrp
, index
, PnMR
,
513 PnMR_SPIM_TP_OFF
| state
->format
->pnmr
);
515 rcar_du_plane_write(rgrp
, index
, PnDDCR4
,
516 state
->format
->edf
| PnDDCR4_CODE
);
519 static void rcar_du_plane_setup_format(struct rcar_du_group
*rgrp
,
521 const struct rcar_du_plane_state
*state
)
523 struct rcar_du_device
*rcdu
= rgrp
->dev
;
524 const struct drm_rect
*dst
= &state
->state
.dst
;
526 if (rcdu
->info
->gen
< 3)
527 rcar_du_plane_setup_format_gen2(rgrp
, index
, state
);
529 rcar_du_plane_setup_format_gen3(rgrp
, index
, state
);
531 /* Destination position and size */
532 rcar_du_plane_write(rgrp
, index
, PnDSXR
, drm_rect_width(dst
));
533 rcar_du_plane_write(rgrp
, index
, PnDSYR
, drm_rect_height(dst
));
534 rcar_du_plane_write(rgrp
, index
, PnDPXR
, dst
->x1
);
535 rcar_du_plane_write(rgrp
, index
, PnDPYR
, dst
->y1
);
537 if (rcdu
->info
->gen
< 3) {
538 /* Wrap-around and blinking, disabled */
539 rcar_du_plane_write(rgrp
, index
, PnWASPR
, 0);
540 rcar_du_plane_write(rgrp
, index
, PnWAMWR
, 4095);
541 rcar_du_plane_write(rgrp
, index
, PnBTR
, 0);
542 rcar_du_plane_write(rgrp
, index
, PnMLR
, 0);
546 void __rcar_du_plane_setup(struct rcar_du_group
*rgrp
,
547 const struct rcar_du_plane_state
*state
)
549 struct rcar_du_device
*rcdu
= rgrp
->dev
;
551 rcar_du_plane_setup_format(rgrp
, state
->hwindex
, state
);
552 if (state
->format
->planes
== 2)
553 rcar_du_plane_setup_format(rgrp
, (state
->hwindex
+ 1) % 8,
556 if (rcdu
->info
->gen
< 3)
557 rcar_du_plane_setup_scanout(rgrp
, state
);
559 if (state
->source
== RCAR_DU_PLANE_VSPD1
) {
560 unsigned int vspd1_sink
= rgrp
->index
? 2 : 0;
562 if (rcdu
->vspd1_sink
!= vspd1_sink
) {
563 rcdu
->vspd1_sink
= vspd1_sink
;
564 rcar_du_set_dpad0_vsp1_routing(rcdu
);
569 int __rcar_du_plane_atomic_check(struct drm_plane
*plane
,
570 struct drm_plane_state
*state
,
571 const struct rcar_du_format_info
**format
)
573 struct drm_device
*dev
= plane
->dev
;
574 struct drm_crtc_state
*crtc_state
;
575 struct drm_rect clip
;
580 * The visible field is not reset by the DRM core but only
581 * updated by drm_plane_helper_check_state(), set it manually.
583 state
->visible
= false;
588 crtc_state
= drm_atomic_get_crtc_state(state
->state
, state
->crtc
);
589 if (IS_ERR(crtc_state
))
590 return PTR_ERR(crtc_state
);
594 clip
.x2
= crtc_state
->mode
.hdisplay
;
595 clip
.y2
= crtc_state
->mode
.vdisplay
;
597 ret
= drm_atomic_helper_check_plane_state(state
, crtc_state
, &clip
,
598 DRM_PLANE_HELPER_NO_SCALING
,
599 DRM_PLANE_HELPER_NO_SCALING
,
604 if (!state
->visible
) {
609 *format
= rcar_du_format_info(state
->fb
->format
->format
);
610 if (*format
== NULL
) {
611 dev_dbg(dev
->dev
, "%s: unsupported format %08x\n", __func__
,
612 state
->fb
->format
->format
);
619 static int rcar_du_plane_atomic_check(struct drm_plane
*plane
,
620 struct drm_plane_state
*state
)
622 struct rcar_du_plane_state
*rstate
= to_rcar_plane_state(state
);
624 return __rcar_du_plane_atomic_check(plane
, state
, &rstate
->format
);
627 static void rcar_du_plane_atomic_update(struct drm_plane
*plane
,
628 struct drm_plane_state
*old_state
)
630 struct rcar_du_plane
*rplane
= to_rcar_plane(plane
);
631 struct rcar_du_plane_state
*old_rstate
;
632 struct rcar_du_plane_state
*new_rstate
;
634 if (!plane
->state
->visible
)
637 rcar_du_plane_setup(rplane
);
640 * Check whether the source has changed from memory to live source or
641 * from live source to memory. The source has been configured by the
642 * VSPS bit in the PnDDCR4 register. Although the datasheet states that
643 * the bit is updated during vertical blanking, it seems that updates
644 * only occur when the DU group is held in reset through the DSYSR.DRES
645 * bit. We thus need to restart the group if the source changes.
647 old_rstate
= to_rcar_plane_state(old_state
);
648 new_rstate
= to_rcar_plane_state(plane
->state
);
650 if ((old_rstate
->source
== RCAR_DU_PLANE_MEMORY
) !=
651 (new_rstate
->source
== RCAR_DU_PLANE_MEMORY
))
652 rplane
->group
->need_restart
= true;
655 static const struct drm_plane_helper_funcs rcar_du_plane_helper_funcs
= {
656 .atomic_check
= rcar_du_plane_atomic_check
,
657 .atomic_update
= rcar_du_plane_atomic_update
,
660 static struct drm_plane_state
*
661 rcar_du_plane_atomic_duplicate_state(struct drm_plane
*plane
)
663 struct rcar_du_plane_state
*state
;
664 struct rcar_du_plane_state
*copy
;
666 if (WARN_ON(!plane
->state
))
669 state
= to_rcar_plane_state(plane
->state
);
670 copy
= kmemdup(state
, sizeof(*state
), GFP_KERNEL
);
674 __drm_atomic_helper_plane_duplicate_state(plane
, ©
->state
);
679 static void rcar_du_plane_atomic_destroy_state(struct drm_plane
*plane
,
680 struct drm_plane_state
*state
)
682 __drm_atomic_helper_plane_destroy_state(state
);
683 kfree(to_rcar_plane_state(state
));
686 static void rcar_du_plane_reset(struct drm_plane
*plane
)
688 struct rcar_du_plane_state
*state
;
691 rcar_du_plane_atomic_destroy_state(plane
, plane
->state
);
695 state
= kzalloc(sizeof(*state
), GFP_KERNEL
);
700 state
->source
= RCAR_DU_PLANE_MEMORY
;
702 state
->colorkey
= RCAR_DU_COLORKEY_NONE
;
703 state
->state
.zpos
= plane
->type
== DRM_PLANE_TYPE_PRIMARY
? 0 : 1;
705 plane
->state
= &state
->state
;
706 plane
->state
->plane
= plane
;
709 static int rcar_du_plane_atomic_set_property(struct drm_plane
*plane
,
710 struct drm_plane_state
*state
,
711 struct drm_property
*property
,
714 struct rcar_du_plane_state
*rstate
= to_rcar_plane_state(state
);
715 struct rcar_du_device
*rcdu
= to_rcar_plane(plane
)->group
->dev
;
717 if (property
== rcdu
->props
.alpha
)
719 else if (property
== rcdu
->props
.colorkey
)
720 rstate
->colorkey
= val
;
727 static int rcar_du_plane_atomic_get_property(struct drm_plane
*plane
,
728 const struct drm_plane_state
*state
, struct drm_property
*property
,
731 const struct rcar_du_plane_state
*rstate
=
732 container_of(state
, const struct rcar_du_plane_state
, state
);
733 struct rcar_du_device
*rcdu
= to_rcar_plane(plane
)->group
->dev
;
735 if (property
== rcdu
->props
.alpha
)
736 *val
= rstate
->alpha
;
737 else if (property
== rcdu
->props
.colorkey
)
738 *val
= rstate
->colorkey
;
745 static const struct drm_plane_funcs rcar_du_plane_funcs
= {
746 .update_plane
= drm_atomic_helper_update_plane
,
747 .disable_plane
= drm_atomic_helper_disable_plane
,
748 .reset
= rcar_du_plane_reset
,
749 .destroy
= drm_plane_cleanup
,
750 .atomic_duplicate_state
= rcar_du_plane_atomic_duplicate_state
,
751 .atomic_destroy_state
= rcar_du_plane_atomic_destroy_state
,
752 .atomic_set_property
= rcar_du_plane_atomic_set_property
,
753 .atomic_get_property
= rcar_du_plane_atomic_get_property
,
756 static const uint32_t formats
[] = {
769 int rcar_du_planes_init(struct rcar_du_group
*rgrp
)
771 struct rcar_du_device
*rcdu
= rgrp
->dev
;
777 * Create one primary plane per CRTC in this group and seven overlay
780 rgrp
->num_planes
= rgrp
->num_crtcs
+ 7;
782 crtcs
= ((1 << rcdu
->num_crtcs
) - 1) & (3 << (2 * rgrp
->index
));
784 for (i
= 0; i
< rgrp
->num_planes
; ++i
) {
785 enum drm_plane_type type
= i
< rgrp
->num_crtcs
786 ? DRM_PLANE_TYPE_PRIMARY
787 : DRM_PLANE_TYPE_OVERLAY
;
788 struct rcar_du_plane
*plane
= &rgrp
->planes
[i
];
792 ret
= drm_universal_plane_init(rcdu
->ddev
, &plane
->plane
, crtcs
,
793 &rcar_du_plane_funcs
, formats
,
799 drm_plane_helper_add(&plane
->plane
,
800 &rcar_du_plane_helper_funcs
);
802 if (type
== DRM_PLANE_TYPE_PRIMARY
)
805 drm_object_attach_property(&plane
->plane
.base
,
806 rcdu
->props
.alpha
, 255);
807 drm_object_attach_property(&plane
->plane
.base
,
808 rcdu
->props
.colorkey
,
809 RCAR_DU_COLORKEY_NONE
);
810 drm_plane_create_zpos_property(&plane
->plane
, 1, 1, 7);