drm: rcar-du: Rework CRTC enable/disable for atomic updates
[deliverable/linux.git] / drivers / gpu / drm / rcar-du / rcar_du_plane.c
CommitLineData
4bf8e196
LP
1/*
2 * rcar_du_plane.c -- R-Car Display Unit Planes
3 *
36d50464 4 * Copyright (C) 2013-2014 Renesas Electronics Corporation
4bf8e196
LP
5 *
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>
3e8da87d 15#include <drm/drm_atomic_helper.h>
4bf8e196
LP
16#include <drm/drm_crtc.h>
17#include <drm/drm_crtc_helper.h>
18#include <drm/drm_fb_cma_helper.h>
19#include <drm/drm_gem_cma_helper.h>
920888a2 20#include <drm/drm_plane_helper.h>
4bf8e196
LP
21
22#include "rcar_du_drv.h"
23#include "rcar_du_kms.h"
24#include "rcar_du_plane.h"
25#include "rcar_du_regs.h"
26
27#define RCAR_DU_COLORKEY_NONE (0 << 24)
28#define RCAR_DU_COLORKEY_SOURCE (1 << 24)
29#define RCAR_DU_COLORKEY_MASK (1 << 24)
30
4bf8e196
LP
31static inline struct rcar_du_plane *to_rcar_plane(struct drm_plane *plane)
32{
917de180 33 return container_of(plane, struct rcar_du_plane, plane);
4bf8e196
LP
34}
35
cb2025d2 36static u32 rcar_du_plane_read(struct rcar_du_group *rgrp,
4bf8e196
LP
37 unsigned int index, u32 reg)
38{
cb2025d2
LP
39 return rcar_du_read(rgrp->dev,
40 rgrp->mmio_offset + index * PLANE_OFF + reg);
4bf8e196
LP
41}
42
cb2025d2 43static void rcar_du_plane_write(struct rcar_du_group *rgrp,
4bf8e196
LP
44 unsigned int index, u32 reg, u32 data)
45{
cb2025d2
LP
46 rcar_du_write(rgrp->dev, rgrp->mmio_offset + index * PLANE_OFF + reg,
47 data);
4bf8e196
LP
48}
49
920888a2
LP
50static int rcar_du_plane_reserve_check(struct rcar_du_plane *plane,
51 const struct rcar_du_format_info *format)
52{
53 struct rcar_du_group *rgrp = plane->group;
54 unsigned int free;
55 unsigned int i;
56 int ret;
57
58 mutex_lock(&rgrp->planes.lock);
59
60 free = rgrp->planes.free;
61
62 if (plane->hwindex != -1) {
63 free |= 1 << plane->hwindex;
64 if (plane->format->planes == 2)
65 free |= 1 << ((plane->hwindex + 1) % 8);
66 }
67
68 for (i = 0; i < ARRAY_SIZE(rgrp->planes.planes); ++i) {
69 if (!(free & (1 << i)))
70 continue;
71
72 if (format->planes == 1 || free & (1 << ((i + 1) % 8)))
73 break;
74 }
75
76 ret = i == ARRAY_SIZE(rgrp->planes.planes) ? -EBUSY : 0;
77
78 mutex_unlock(&rgrp->planes.lock);
79 return ret;
80}
81
845f4635
LP
82static int rcar_du_plane_reserve(struct rcar_du_plane *plane,
83 const struct rcar_du_format_info *format)
4bf8e196 84{
cb2025d2 85 struct rcar_du_group *rgrp = plane->group;
4bf8e196
LP
86 unsigned int i;
87 int ret = -EBUSY;
88
cb2025d2 89 mutex_lock(&rgrp->planes.lock);
4bf8e196 90
30534604 91 for (i = 0; i < RCAR_DU_NUM_HW_PLANES; ++i) {
cb2025d2 92 if (!(rgrp->planes.free & (1 << i)))
4bf8e196
LP
93 continue;
94
95 if (format->planes == 1 ||
cb2025d2 96 rgrp->planes.free & (1 << ((i + 1) % 8)))
4bf8e196
LP
97 break;
98 }
99
30534604 100 if (i == RCAR_DU_NUM_HW_PLANES)
4bf8e196
LP
101 goto done;
102
cb2025d2 103 rgrp->planes.free &= ~(1 << i);
4bf8e196 104 if (format->planes == 2)
cb2025d2 105 rgrp->planes.free &= ~(1 << ((i + 1) % 8));
4bf8e196
LP
106
107 plane->hwindex = i;
108
109 ret = 0;
110
111done:
cb2025d2 112 mutex_unlock(&rgrp->planes.lock);
4bf8e196
LP
113 return ret;
114}
115
845f4635 116static void rcar_du_plane_release(struct rcar_du_plane *plane)
4bf8e196 117{
cb2025d2 118 struct rcar_du_group *rgrp = plane->group;
4bf8e196
LP
119
120 if (plane->hwindex == -1)
121 return;
122
cb2025d2
LP
123 mutex_lock(&rgrp->planes.lock);
124 rgrp->planes.free |= 1 << plane->hwindex;
4bf8e196 125 if (plane->format->planes == 2)
cb2025d2
LP
126 rgrp->planes.free |= 1 << ((plane->hwindex + 1) % 8);
127 mutex_unlock(&rgrp->planes.lock);
4bf8e196
LP
128
129 plane->hwindex = -1;
130}
131
132void rcar_du_plane_update_base(struct rcar_du_plane *plane)
133{
cb2025d2 134 struct rcar_du_group *rgrp = plane->group;
287bdf03
LP
135 unsigned int src_x = plane->plane.state->src_x >> 16;
136 unsigned int src_y = plane->plane.state->src_y >> 16;
4bf8e196 137 unsigned int index = plane->hwindex;
906eff7f 138 bool interlaced;
eb86301f
LP
139 u32 mwr;
140
906eff7f
LP
141 interlaced = plane->crtc->mode.flags & DRM_MODE_FLAG_INTERLACE;
142
143 /* Memory pitch (expressed in pixels). Must be doubled for interlaced
144 * operation with 32bpp formats.
145 */
eb86301f
LP
146 if (plane->format->planes == 2)
147 mwr = plane->pitch;
148 else
149 mwr = plane->pitch * 8 / plane->format->bpp;
150
906eff7f
LP
151 if (interlaced && plane->format->bpp == 32)
152 mwr *= 2;
153
eb86301f 154 rcar_du_plane_write(rgrp, index, PnMWR, mwr);
4bf8e196 155
9e7db06d
LP
156 /* The Y position is expressed in raster line units and must be doubled
157 * for 32bpp formats, according to the R8A7790 datasheet. No mention of
158 * doubling the Y position is found in the R8A7779 datasheet, but the
159 * rule seems to apply there as well.
160 *
906eff7f
LP
161 * Despite not being documented, doubling seem not to be needed when
162 * operating in interlaced mode.
163 *
9e7db06d 164 * Similarly, for the second plane, NV12 and NV21 formats seem to
906eff7f
LP
165 * require a halved Y position value, in both progressive and interlaced
166 * modes.
4bf8e196 167 */
287bdf03
LP
168 rcar_du_plane_write(rgrp, index, PnSPXR, src_x);
169 rcar_du_plane_write(rgrp, index, PnSPYR, src_y *
906eff7f 170 (!interlaced && plane->format->bpp == 32 ? 2 : 1));
cb2025d2 171 rcar_du_plane_write(rgrp, index, PnDSA0R, plane->dma[0]);
4bf8e196
LP
172
173 if (plane->format->planes == 2) {
174 index = (index + 1) % 8;
175
49785e25
LP
176 rcar_du_plane_write(rgrp, index, PnMWR, plane->pitch);
177
287bdf03
LP
178 rcar_du_plane_write(rgrp, index, PnSPXR, src_x);
179 rcar_du_plane_write(rgrp, index, PnSPYR, src_y *
4bf8e196 180 (plane->format->bpp == 16 ? 2 : 1) / 2);
cb2025d2 181 rcar_du_plane_write(rgrp, index, PnDSA0R, plane->dma[1]);
4bf8e196
LP
182 }
183}
184
185void rcar_du_plane_compute_base(struct rcar_du_plane *plane,
186 struct drm_framebuffer *fb)
187{
188 struct drm_gem_cma_object *gem;
189
eb86301f
LP
190 plane->pitch = fb->pitches[0];
191
4bf8e196
LP
192 gem = drm_fb_cma_get_gem_obj(fb, 0);
193 plane->dma[0] = gem->paddr + fb->offsets[0];
194
195 if (plane->format->planes == 2) {
196 gem = drm_fb_cma_get_gem_obj(fb, 1);
197 plane->dma[1] = gem->paddr + fb->offsets[1];
198 }
199}
200
201static void rcar_du_plane_setup_mode(struct rcar_du_plane *plane,
202 unsigned int index)
203{
cb2025d2 204 struct rcar_du_group *rgrp = plane->group;
4bf8e196
LP
205 u32 colorkey;
206 u32 pnmr;
207
208 /* The PnALPHAR register controls alpha-blending in 16bpp formats
209 * (ARGB1555 and XRGB1555).
210 *
211 * For ARGB, set the alpha value to 0, and enable alpha-blending when
212 * the A bit is 0. This maps A=0 to alpha=0 and A=1 to alpha=255.
213 *
214 * For XRGB, set the alpha value to the plane-wide alpha value and
215 * enable alpha-blending regardless of the X bit value.
216 */
217 if (plane->format->fourcc != DRM_FORMAT_XRGB1555)
cb2025d2 218 rcar_du_plane_write(rgrp, index, PnALPHAR, PnALPHAR_ABIT_0);
4bf8e196 219 else
cb2025d2 220 rcar_du_plane_write(rgrp, index, PnALPHAR,
4bf8e196
LP
221 PnALPHAR_ABIT_X | plane->alpha);
222
223 pnmr = PnMR_BM_MD | plane->format->pnmr;
224
225 /* Disable color keying when requested. YUV formats have the
226 * PnMR_SPIM_TP_OFF bit set in their pnmr field, disabling color keying
227 * automatically.
228 */
229 if ((plane->colorkey & RCAR_DU_COLORKEY_MASK) == RCAR_DU_COLORKEY_NONE)
230 pnmr |= PnMR_SPIM_TP_OFF;
231
232 /* For packed YUV formats we need to select the U/V order. */
233 if (plane->format->fourcc == DRM_FORMAT_YUYV)
234 pnmr |= PnMR_YCDF_YUYV;
235
cb2025d2 236 rcar_du_plane_write(rgrp, index, PnMR, pnmr);
4bf8e196
LP
237
238 switch (plane->format->fourcc) {
239 case DRM_FORMAT_RGB565:
240 colorkey = ((plane->colorkey & 0xf80000) >> 8)
241 | ((plane->colorkey & 0x00fc00) >> 5)
242 | ((plane->colorkey & 0x0000f8) >> 3);
cb2025d2 243 rcar_du_plane_write(rgrp, index, PnTC2R, colorkey);
4bf8e196
LP
244 break;
245
246 case DRM_FORMAT_ARGB1555:
247 case DRM_FORMAT_XRGB1555:
248 colorkey = ((plane->colorkey & 0xf80000) >> 9)
249 | ((plane->colorkey & 0x00f800) >> 6)
250 | ((plane->colorkey & 0x0000f8) >> 3);
cb2025d2 251 rcar_du_plane_write(rgrp, index, PnTC2R, colorkey);
4bf8e196
LP
252 break;
253
254 case DRM_FORMAT_XRGB8888:
255 case DRM_FORMAT_ARGB8888:
cb2025d2 256 rcar_du_plane_write(rgrp, index, PnTC3R,
4bf8e196
LP
257 PnTC3R_CODE | (plane->colorkey & 0xffffff));
258 break;
259 }
260}
261
262static void __rcar_du_plane_setup(struct rcar_du_plane *plane,
263 unsigned int index)
264{
cb2025d2 265 struct rcar_du_group *rgrp = plane->group;
4bf8e196
LP
266 u32 ddcr2 = PnDDCR2_CODE;
267 u32 ddcr4;
4bf8e196
LP
268
269 /* Data format
270 *
271 * The data format is selected by the DDDF field in PnMR and the EDF
272 * field in DDCR4.
273 */
cb2025d2 274 ddcr4 = rcar_du_plane_read(rgrp, index, PnDDCR4);
4bf8e196
LP
275 ddcr4 &= ~PnDDCR4_EDF_MASK;
276 ddcr4 |= plane->format->edf | PnDDCR4_CODE;
277
278 rcar_du_plane_setup_mode(plane, index);
279
280 if (plane->format->planes == 2) {
281 if (plane->hwindex != index) {
282 if (plane->format->fourcc == DRM_FORMAT_NV12 ||
283 plane->format->fourcc == DRM_FORMAT_NV21)
284 ddcr2 |= PnDDCR2_Y420;
285
286 if (plane->format->fourcc == DRM_FORMAT_NV21)
287 ddcr2 |= PnDDCR2_NV21;
288
289 ddcr2 |= PnDDCR2_DIVU;
290 } else {
291 ddcr2 |= PnDDCR2_DIVY;
292 }
293 }
294
cb2025d2
LP
295 rcar_du_plane_write(rgrp, index, PnDDCR2, ddcr2);
296 rcar_du_plane_write(rgrp, index, PnDDCR4, ddcr4);
4bf8e196 297
4bf8e196 298 /* Destination position and size */
287bdf03
LP
299 rcar_du_plane_write(rgrp, index, PnDSXR, plane->plane.state->crtc_w);
300 rcar_du_plane_write(rgrp, index, PnDSYR, plane->plane.state->crtc_h);
301 rcar_du_plane_write(rgrp, index, PnDPXR, plane->plane.state->crtc_x);
302 rcar_du_plane_write(rgrp, index, PnDPYR, plane->plane.state->crtc_y);
4bf8e196
LP
303
304 /* Wrap-around and blinking, disabled */
cb2025d2
LP
305 rcar_du_plane_write(rgrp, index, PnWASPR, 0);
306 rcar_du_plane_write(rgrp, index, PnWAMWR, 4095);
307 rcar_du_plane_write(rgrp, index, PnBTR, 0);
308 rcar_du_plane_write(rgrp, index, PnMLR, 0);
4bf8e196
LP
309}
310
311void rcar_du_plane_setup(struct rcar_du_plane *plane)
312{
313 __rcar_du_plane_setup(plane, plane->hwindex);
314 if (plane->format->planes == 2)
315 __rcar_du_plane_setup(plane, (plane->hwindex + 1) % 8);
316
317 rcar_du_plane_update_base(plane);
318}
319
920888a2
LP
320static int rcar_du_plane_atomic_check(struct drm_plane *plane,
321 struct drm_plane_state *state)
4bf8e196
LP
322{
323 struct rcar_du_plane *rplane = to_rcar_plane(plane);
cb2025d2 324 struct rcar_du_device *rcdu = rplane->group->dev;
4bf8e196
LP
325 const struct rcar_du_format_info *format;
326 unsigned int nplanes;
327 int ret;
328
920888a2
LP
329 if (!state->fb || !state->crtc)
330 return 0;
917de180 331
920888a2
LP
332 if (state->src_w >> 16 != state->crtc_w ||
333 state->src_h >> 16 != state->crtc_h) {
334 dev_dbg(rcdu->dev, "%s: scaling not supported\n", __func__);
4bf8e196
LP
335 return -EINVAL;
336 }
337
920888a2
LP
338 format = rcar_du_format_info(state->fb->pixel_format);
339 if (format == NULL) {
340 dev_dbg(rcdu->dev, "%s: unsupported format %08x\n", __func__,
341 state->fb->pixel_format);
4bf8e196
LP
342 return -EINVAL;
343 }
344
345 nplanes = rplane->format ? rplane->format->planes : 0;
346
920888a2
LP
347 /* If the number of required planes has changed we will need to
348 * reallocate hardware planes. Ensure free planes are available.
4bf8e196
LP
349 */
350 if (format->planes != nplanes) {
920888a2
LP
351 ret = rcar_du_plane_reserve_check(rplane, format);
352 if (ret < 0) {
353 dev_dbg(rcdu->dev, "%s: no available hardware plane\n",
354 __func__);
4bf8e196 355 return ret;
920888a2 356 }
4bf8e196
LP
357 }
358
4bf8e196
LP
359 return 0;
360}
361
920888a2 362static void rcar_du_plane_disable(struct rcar_du_plane *rplane)
4bf8e196 363{
4bf8e196 364 if (!rplane->enabled)
920888a2 365 return;
4bf8e196 366
cb2025d2 367 mutex_lock(&rplane->group->planes.lock);
4bf8e196 368 rplane->enabled = false;
cb2025d2 369 mutex_unlock(&rplane->group->planes.lock);
4bf8e196
LP
370
371 rcar_du_plane_release(rplane);
372
373 rplane->crtc = NULL;
374 rplane->format = NULL;
920888a2 375}
4bf8e196 376
920888a2
LP
377static void rcar_du_plane_atomic_update(struct drm_plane *plane,
378 struct drm_plane_state *old_state)
379{
380 struct rcar_du_plane *rplane = to_rcar_plane(plane);
381 struct drm_plane_state *state = plane->state;
382 const struct rcar_du_format_info *format;
383 unsigned int nplanes;
384
385 if (!state->crtc) {
386 rcar_du_plane_disable(rplane);
387 return;
388 }
389
390 format = rcar_du_format_info(state->fb->pixel_format);
391 nplanes = rplane->format ? rplane->format->planes : 0;
392
393 /* Reallocate hardware planes if the number of required planes has
394 * changed.
395 */
396 if (format->planes != nplanes) {
397 rcar_du_plane_release(rplane);
398 rcar_du_plane_reserve(rplane, format);
399 }
400
401 rplane->crtc = state->crtc;
402 rplane->format = format;
403
920888a2
LP
404 rcar_du_plane_compute_base(rplane, state->fb);
405 rcar_du_plane_setup(rplane);
406
407 mutex_lock(&rplane->group->planes.lock);
408 rplane->enabled = true;
920888a2 409 mutex_unlock(&rplane->group->planes.lock);
4bf8e196
LP
410}
411
920888a2
LP
412static const struct drm_plane_helper_funcs rcar_du_plane_helper_funcs = {
413 .atomic_check = rcar_du_plane_atomic_check,
414 .atomic_update = rcar_du_plane_atomic_update,
415};
416
4bf8e196
LP
417/* Both the .set_property and the .update_plane operations are called with the
418 * mode_config lock held. There is this no need to explicitly protect access to
419 * the alpha and colorkey fields and the mode register.
420 */
421static void rcar_du_plane_set_alpha(struct rcar_du_plane *plane, u32 alpha)
422{
423 if (plane->alpha == alpha)
424 return;
425
426 plane->alpha = alpha;
427 if (!plane->enabled || plane->format->fourcc != DRM_FORMAT_XRGB1555)
428 return;
429
430 rcar_du_plane_setup_mode(plane, plane->hwindex);
431}
432
433static void rcar_du_plane_set_colorkey(struct rcar_du_plane *plane,
434 u32 colorkey)
435{
436 if (plane->colorkey == colorkey)
437 return;
438
439 plane->colorkey = colorkey;
440 if (!plane->enabled)
441 return;
442
443 rcar_du_plane_setup_mode(plane, plane->hwindex);
444}
445
446static void rcar_du_plane_set_zpos(struct rcar_du_plane *plane,
447 unsigned int zpos)
448{
cb2025d2 449 mutex_lock(&plane->group->planes.lock);
4bf8e196
LP
450 if (plane->zpos == zpos)
451 goto done;
452
453 plane->zpos = zpos;
454 if (!plane->enabled)
455 goto done;
456
457 rcar_du_crtc_update_planes(plane->crtc);
458
459done:
cb2025d2 460 mutex_unlock(&plane->group->planes.lock);
4bf8e196
LP
461}
462
463static int rcar_du_plane_set_property(struct drm_plane *plane,
464 struct drm_property *property,
465 uint64_t value)
466{
4bf8e196 467 struct rcar_du_plane *rplane = to_rcar_plane(plane);
cb2025d2 468 struct rcar_du_group *rgrp = rplane->group;
4bf8e196 469
cb2025d2 470 if (property == rgrp->planes.alpha)
4bf8e196 471 rcar_du_plane_set_alpha(rplane, value);
cb2025d2 472 else if (property == rgrp->planes.colorkey)
4bf8e196 473 rcar_du_plane_set_colorkey(rplane, value);
cb2025d2 474 else if (property == rgrp->planes.zpos)
4bf8e196
LP
475 rcar_du_plane_set_zpos(rplane, value);
476 else
477 return -EINVAL;
478
479 return 0;
480}
481
482static const struct drm_plane_funcs rcar_du_plane_funcs = {
920888a2
LP
483 .update_plane = drm_plane_helper_update,
484 .disable_plane = drm_plane_helper_disable,
3e8da87d 485 .reset = drm_atomic_helper_plane_reset,
4bf8e196
LP
486 .set_property = rcar_du_plane_set_property,
487 .destroy = drm_plane_cleanup,
3e8da87d
LP
488 .atomic_duplicate_state = drm_atomic_helper_plane_duplicate_state,
489 .atomic_destroy_state = drm_atomic_helper_plane_destroy_state,
4bf8e196
LP
490};
491
492static const uint32_t formats[] = {
493 DRM_FORMAT_RGB565,
494 DRM_FORMAT_ARGB1555,
495 DRM_FORMAT_XRGB1555,
496 DRM_FORMAT_XRGB8888,
497 DRM_FORMAT_ARGB8888,
498 DRM_FORMAT_UYVY,
499 DRM_FORMAT_YUYV,
500 DRM_FORMAT_NV12,
501 DRM_FORMAT_NV21,
502 DRM_FORMAT_NV16,
503};
504
cb2025d2 505int rcar_du_planes_init(struct rcar_du_group *rgrp)
4bf8e196 506{
cb2025d2
LP
507 struct rcar_du_planes *planes = &rgrp->planes;
508 struct rcar_du_device *rcdu = rgrp->dev;
917de180
LP
509 unsigned int num_planes;
510 unsigned int num_crtcs;
511 unsigned int crtcs;
4bf8e196 512 unsigned int i;
917de180 513 int ret;
4bf8e196 514
cb2025d2
LP
515 mutex_init(&planes->lock);
516 planes->free = 0xff;
4bf8e196 517
cb2025d2 518 planes->alpha =
4bf8e196 519 drm_property_create_range(rcdu->ddev, 0, "alpha", 0, 255);
cb2025d2 520 if (planes->alpha == NULL)
4bf8e196
LP
521 return -ENOMEM;
522
523 /* The color key is expressed as an RGB888 triplet stored in a 32-bit
524 * integer in XRGB8888 format. Bit 24 is used as a flag to disable (0)
525 * or enable source color keying (1).
526 */
cb2025d2 527 planes->colorkey =
4bf8e196
LP
528 drm_property_create_range(rcdu->ddev, 0, "colorkey",
529 0, 0x01ffffff);
cb2025d2 530 if (planes->colorkey == NULL)
4bf8e196
LP
531 return -ENOMEM;
532
cb2025d2 533 planes->zpos =
4bf8e196 534 drm_property_create_range(rcdu->ddev, 0, "zpos", 1, 7);
cb2025d2 535 if (planes->zpos == NULL)
4bf8e196
LP
536 return -ENOMEM;
537
917de180
LP
538 /* Create one primary plane per in this group CRTC and seven overlay
539 * planes.
540 */
541 num_crtcs = min(rcdu->num_crtcs - 2 * rgrp->index, 2U);
542 num_planes = num_crtcs + 7;
543
544 crtcs = ((1 << rcdu->num_crtcs) - 1) & (3 << (2 * rgrp->index));
545
546 for (i = 0; i < num_planes; ++i) {
547 enum drm_plane_type type = i < num_crtcs
548 ? DRM_PLANE_TYPE_PRIMARY
549 : DRM_PLANE_TYPE_OVERLAY;
cb2025d2 550 struct rcar_du_plane *plane = &planes->planes[i];
4bf8e196 551
cb2025d2 552 plane->group = rgrp;
4bf8e196
LP
553 plane->hwindex = -1;
554 plane->alpha = 255;
555 plane->colorkey = RCAR_DU_COLORKEY_NONE;
917de180 556 plane->zpos = type == DRM_PLANE_TYPE_PRIMARY ? 0 : 1;
4bf8e196 557
917de180
LP
558 ret = drm_universal_plane_init(rcdu->ddev, &plane->plane, crtcs,
559 &rcar_du_plane_funcs, formats,
560 ARRAY_SIZE(formats), type);
4bf8e196
LP
561 if (ret < 0)
562 return ret;
563
920888a2
LP
564 drm_plane_helper_add(&plane->plane,
565 &rcar_du_plane_helper_funcs);
566
917de180
LP
567 if (type == DRM_PLANE_TYPE_PRIMARY)
568 continue;
569
4bf8e196 570 drm_object_attach_property(&plane->plane.base,
cb2025d2 571 planes->alpha, 255);
4bf8e196 572 drm_object_attach_property(&plane->plane.base,
cb2025d2 573 planes->colorkey,
4bf8e196
LP
574 RCAR_DU_COLORKEY_NONE);
575 drm_object_attach_property(&plane->plane.base,
cb2025d2 576 planes->zpos, 1);
4bf8e196
LP
577 }
578
579 return 0;
580}
This page took 0.11179 seconds and 5 git commands to generate.