2 * rcar_du_kms.c -- R-Car Display Unit Mode Setting
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_gem_framebuffer_helper.h>
23 #include <linux/of_graph.h>
24 #include <linux/wait.h>
26 #include "rcar_du_crtc.h"
27 #include "rcar_du_drv.h"
28 #include "rcar_du_encoder.h"
29 #include "rcar_du_kms.h"
30 #include "rcar_du_regs.h"
31 #include "rcar_du_vsp.h"
33 /* -----------------------------------------------------------------------------
37 static const struct rcar_du_format_info rcar_du_format_infos
[] = {
39 .fourcc
= DRM_FORMAT_RGB565
,
42 .pnmr
= PnMR_SPIM_TP
| PnMR_DDDF_16BPP
,
43 .edf
= PnDDCR4_EDF_NONE
,
45 .fourcc
= DRM_FORMAT_ARGB1555
,
48 .pnmr
= PnMR_SPIM_ALP
| PnMR_DDDF_ARGB
,
49 .edf
= PnDDCR4_EDF_NONE
,
51 .fourcc
= DRM_FORMAT_XRGB1555
,
54 .pnmr
= PnMR_SPIM_ALP
| PnMR_DDDF_ARGB
,
55 .edf
= PnDDCR4_EDF_NONE
,
57 .fourcc
= DRM_FORMAT_XRGB8888
,
60 .pnmr
= PnMR_SPIM_TP
| PnMR_DDDF_16BPP
,
61 .edf
= PnDDCR4_EDF_RGB888
,
63 .fourcc
= DRM_FORMAT_ARGB8888
,
66 .pnmr
= PnMR_SPIM_ALP
| PnMR_DDDF_16BPP
,
67 .edf
= PnDDCR4_EDF_ARGB8888
,
69 .fourcc
= DRM_FORMAT_UYVY
,
72 .pnmr
= PnMR_SPIM_TP_OFF
| PnMR_DDDF_YC
,
73 .edf
= PnDDCR4_EDF_NONE
,
75 .fourcc
= DRM_FORMAT_YUYV
,
78 .pnmr
= PnMR_SPIM_TP_OFF
| PnMR_DDDF_YC
,
79 .edf
= PnDDCR4_EDF_NONE
,
81 .fourcc
= DRM_FORMAT_NV12
,
84 .pnmr
= PnMR_SPIM_TP_OFF
| PnMR_DDDF_YC
,
85 .edf
= PnDDCR4_EDF_NONE
,
87 .fourcc
= DRM_FORMAT_NV21
,
90 .pnmr
= PnMR_SPIM_TP_OFF
| PnMR_DDDF_YC
,
91 .edf
= PnDDCR4_EDF_NONE
,
93 .fourcc
= DRM_FORMAT_NV16
,
96 .pnmr
= PnMR_SPIM_TP_OFF
| PnMR_DDDF_YC
,
97 .edf
= PnDDCR4_EDF_NONE
,
100 * The following formats are not supported on Gen2 and thus have no
101 * associated .pnmr or .edf settings.
104 .fourcc
= DRM_FORMAT_NV61
,
108 .fourcc
= DRM_FORMAT_YUV420
,
112 .fourcc
= DRM_FORMAT_YVU420
,
116 .fourcc
= DRM_FORMAT_YUV422
,
120 .fourcc
= DRM_FORMAT_YVU422
,
124 .fourcc
= DRM_FORMAT_YUV444
,
128 .fourcc
= DRM_FORMAT_YVU444
,
134 const struct rcar_du_format_info
*rcar_du_format_info(u32 fourcc
)
138 for (i
= 0; i
< ARRAY_SIZE(rcar_du_format_infos
); ++i
) {
139 if (rcar_du_format_infos
[i
].fourcc
== fourcc
)
140 return &rcar_du_format_infos
[i
];
146 /* -----------------------------------------------------------------------------
150 int rcar_du_dumb_create(struct drm_file
*file
, struct drm_device
*dev
,
151 struct drm_mode_create_dumb
*args
)
153 struct rcar_du_device
*rcdu
= dev
->dev_private
;
154 unsigned int min_pitch
= DIV_ROUND_UP(args
->width
* args
->bpp
, 8);
158 * The R8A7779 DU requires a 16 pixels pitch alignment as documented,
159 * but the R8A7790 DU seems to require a 128 bytes pitch alignment.
161 if (rcar_du_needs(rcdu
, RCAR_DU_QUIRK_ALIGN_128B
))
164 align
= 16 * args
->bpp
/ 8;
166 args
->pitch
= roundup(min_pitch
, align
);
168 return drm_gem_cma_dumb_create_internal(file
, dev
, args
);
171 static struct drm_framebuffer
*
172 rcar_du_fb_create(struct drm_device
*dev
, struct drm_file
*file_priv
,
173 const struct drm_mode_fb_cmd2
*mode_cmd
)
175 struct rcar_du_device
*rcdu
= dev
->dev_private
;
176 const struct rcar_du_format_info
*format
;
177 unsigned int max_pitch
;
182 format
= rcar_du_format_info(mode_cmd
->pixel_format
);
183 if (format
== NULL
) {
184 dev_dbg(dev
->dev
, "unsupported pixel format %08x\n",
185 mode_cmd
->pixel_format
);
186 return ERR_PTR(-EINVAL
);
190 * The pitch and alignment constraints are expressed in pixels on the
191 * hardware side and in bytes in the DRM API.
193 bpp
= format
->planes
== 1 ? format
->bpp
/ 8 : 1;
194 max_pitch
= 4096 * bpp
;
196 if (rcar_du_needs(rcdu
, RCAR_DU_QUIRK_ALIGN_128B
))
201 if (mode_cmd
->pitches
[0] & (align
- 1) ||
202 mode_cmd
->pitches
[0] >= max_pitch
) {
203 dev_dbg(dev
->dev
, "invalid pitch value %u\n",
204 mode_cmd
->pitches
[0]);
205 return ERR_PTR(-EINVAL
);
208 for (i
= 1; i
< format
->planes
; ++i
) {
209 if (mode_cmd
->pitches
[i
] != mode_cmd
->pitches
[0]) {
211 "luma and chroma pitches do not match\n");
212 return ERR_PTR(-EINVAL
);
216 return drm_gem_fb_create(dev
, file_priv
, mode_cmd
);
219 static void rcar_du_output_poll_changed(struct drm_device
*dev
)
221 struct rcar_du_device
*rcdu
= dev
->dev_private
;
223 drm_fbdev_cma_hotplug_event(rcdu
->fbdev
);
226 /* -----------------------------------------------------------------------------
227 * Atomic Check and Update
230 static int rcar_du_atomic_check(struct drm_device
*dev
,
231 struct drm_atomic_state
*state
)
233 struct rcar_du_device
*rcdu
= dev
->dev_private
;
236 ret
= drm_atomic_helper_check(dev
, state
);
240 if (rcar_du_has(rcdu
, RCAR_DU_FEATURE_VSP1_SOURCE
))
243 return rcar_du_atomic_check_planes(dev
, state
);
246 static void rcar_du_atomic_commit_tail(struct drm_atomic_state
*old_state
)
248 struct drm_device
*dev
= old_state
->dev
;
250 /* Apply the atomic update. */
251 drm_atomic_helper_commit_modeset_disables(dev
, old_state
);
252 drm_atomic_helper_commit_planes(dev
, old_state
,
253 DRM_PLANE_COMMIT_ACTIVE_ONLY
);
254 drm_atomic_helper_commit_modeset_enables(dev
, old_state
);
256 drm_atomic_helper_commit_hw_done(old_state
);
257 drm_atomic_helper_wait_for_flip_done(dev
, old_state
);
259 drm_atomic_helper_cleanup_planes(dev
, old_state
);
262 /* -----------------------------------------------------------------------------
266 static const struct drm_mode_config_helper_funcs rcar_du_mode_config_helper
= {
267 .atomic_commit_tail
= rcar_du_atomic_commit_tail
,
270 static const struct drm_mode_config_funcs rcar_du_mode_config_funcs
= {
271 .fb_create
= rcar_du_fb_create
,
272 .output_poll_changed
= rcar_du_output_poll_changed
,
273 .atomic_check
= rcar_du_atomic_check
,
274 .atomic_commit
= drm_atomic_helper_commit
,
277 static int rcar_du_encoders_init_one(struct rcar_du_device
*rcdu
,
278 enum rcar_du_output output
,
279 struct of_endpoint
*ep
)
281 struct device_node
*connector
= NULL
;
282 struct device_node
*encoder
= NULL
;
283 struct device_node
*ep_node
= NULL
;
284 struct device_node
*entity_ep_node
;
285 struct device_node
*entity
;
289 * Locate the connected entity and infer its type from the number of
292 entity
= of_graph_get_remote_port_parent(ep
->local_node
);
294 dev_dbg(rcdu
->dev
, "unconnected endpoint %pOF, skipping\n",
299 if (!of_device_is_available(entity
)) {
301 "connected entity %pOF is disabled, skipping\n",
306 entity_ep_node
= of_graph_get_remote_endpoint(ep
->local_node
);
308 for_each_endpoint_of_node(entity
, ep_node
) {
309 if (ep_node
== entity_ep_node
)
313 * We've found one endpoint other than the input, this must
314 * be an encoder. Locate the connector.
317 connector
= of_graph_get_remote_port_parent(ep_node
);
318 of_node_put(ep_node
);
322 "no connector for encoder %pOF, skipping\n",
324 of_node_put(entity_ep_node
);
325 of_node_put(encoder
);
332 of_node_put(entity_ep_node
);
336 "no encoder found for endpoint %pOF, skipping\n",
341 ret
= rcar_du_encoder_init(rcdu
, output
, encoder
, connector
);
342 if (ret
&& ret
!= -EPROBE_DEFER
)
344 "failed to initialize encoder %pOF on output %u (%d), skipping\n",
345 encoder
, output
, ret
);
347 of_node_put(encoder
);
348 of_node_put(connector
);
353 static int rcar_du_encoders_init(struct rcar_du_device
*rcdu
)
355 struct device_node
*np
= rcdu
->dev
->of_node
;
356 struct device_node
*ep_node
;
357 unsigned int num_encoders
= 0;
360 * Iterate over the endpoints and create one encoder for each output
363 for_each_endpoint_of_node(np
, ep_node
) {
364 enum rcar_du_output output
;
365 struct of_endpoint ep
;
369 ret
= of_graph_parse_endpoint(ep_node
, &ep
);
371 of_node_put(ep_node
);
375 /* Find the output route corresponding to the port number. */
376 for (i
= 0; i
< RCAR_DU_OUTPUT_MAX
; ++i
) {
377 if (rcdu
->info
->routes
[i
].possible_crtcs
&&
378 rcdu
->info
->routes
[i
].port
== ep
.port
) {
384 if (i
== RCAR_DU_OUTPUT_MAX
) {
386 "port %u references unexisting output, skipping\n",
391 /* Process the output pipeline. */
392 ret
= rcar_du_encoders_init_one(rcdu
, output
, &ep
);
394 if (ret
== -EPROBE_DEFER
) {
395 of_node_put(ep_node
);
408 static int rcar_du_properties_init(struct rcar_du_device
*rcdu
)
411 * The color key is expressed as an RGB888 triplet stored in a 32-bit
412 * integer in XRGB8888 format. Bit 24 is used as a flag to disable (0)
413 * or enable source color keying (1).
415 rcdu
->props
.colorkey
=
416 drm_property_create_range(rcdu
->ddev
, 0, "colorkey",
418 if (rcdu
->props
.colorkey
== NULL
)
424 static int rcar_du_vsps_init(struct rcar_du_device
*rcdu
)
426 const struct device_node
*np
= rcdu
->dev
->of_node
;
427 struct of_phandle_args args
;
429 struct device_node
*np
;
430 unsigned int crtcs_mask
;
431 } vsps
[RCAR_DU_MAX_VSPS
] = { { NULL
, }, };
432 unsigned int vsps_count
= 0;
438 * First parse the DT vsps property to populate the list of VSPs. Each
439 * entry contains a pointer to the VSP DT node and a bitmask of the
440 * connected DU CRTCs.
442 cells
= of_property_count_u32_elems(np
, "vsps") / rcdu
->num_crtcs
- 1;
446 for (i
= 0; i
< rcdu
->num_crtcs
; ++i
) {
449 ret
= of_parse_phandle_with_fixed_args(np
, "vsps", cells
, i
,
455 * Add the VSP to the list or update the corresponding existing
456 * entry if the VSP has already been added.
458 for (j
= 0; j
< vsps_count
; ++j
) {
459 if (vsps
[j
].np
== args
.np
)
464 of_node_put(args
.np
);
466 vsps
[vsps_count
++].np
= args
.np
;
468 vsps
[j
].crtcs_mask
|= BIT(i
);
470 /* Store the VSP pointer and pipe index in the CRTC. */
471 rcdu
->crtcs
[i
].vsp
= &rcdu
->vsps
[j
];
472 rcdu
->crtcs
[i
].vsp_pipe
= cells
>= 1 ? args
.args
[0] : 0;
476 * Then initialize all the VSPs from the node pointers and CRTCs bitmask
477 * computed previously.
479 for (i
= 0; i
< vsps_count
; ++i
) {
480 struct rcar_du_vsp
*vsp
= &rcdu
->vsps
[i
];
485 ret
= rcar_du_vsp_init(vsp
, vsps
[i
].np
, vsps
[i
].crtcs_mask
);
493 for (i
= 0; i
< ARRAY_SIZE(vsps
); ++i
)
494 of_node_put(vsps
[i
].np
);
499 int rcar_du_modeset_init(struct rcar_du_device
*rcdu
)
501 static const unsigned int mmio_offsets
[] = {
502 DU0_REG_OFFSET
, DU2_REG_OFFSET
505 struct drm_device
*dev
= rcdu
->ddev
;
506 struct drm_encoder
*encoder
;
507 struct drm_fbdev_cma
*fbdev
;
508 unsigned int num_encoders
;
509 unsigned int num_groups
;
510 unsigned int swindex
;
511 unsigned int hwindex
;
515 drm_mode_config_init(dev
);
517 dev
->mode_config
.min_width
= 0;
518 dev
->mode_config
.min_height
= 0;
519 dev
->mode_config
.normalize_zpos
= true;
520 dev
->mode_config
.funcs
= &rcar_du_mode_config_funcs
;
521 dev
->mode_config
.helper_private
= &rcar_du_mode_config_helper
;
523 if (rcdu
->info
->gen
< 3) {
524 dev
->mode_config
.max_width
= 4095;
525 dev
->mode_config
.max_height
= 2047;
528 * The Gen3 DU uses the VSP1 for memory access, and is limited
529 * to frame sizes of 8190x8190.
531 dev
->mode_config
.max_width
= 8190;
532 dev
->mode_config
.max_height
= 8190;
535 rcdu
->num_crtcs
= hweight8(rcdu
->info
->channels_mask
);
537 ret
= rcar_du_properties_init(rcdu
);
542 * Initialize vertical blanking interrupts handling. Start with vblank
543 * disabled for all CRTCs.
545 ret
= drm_vblank_init(dev
, (1 << rcdu
->num_crtcs
) - 1);
549 /* Initialize the groups. */
550 num_groups
= DIV_ROUND_UP(rcdu
->num_crtcs
, 2);
552 for (i
= 0; i
< num_groups
; ++i
) {
553 struct rcar_du_group
*rgrp
= &rcdu
->groups
[i
];
555 mutex_init(&rgrp
->lock
);
558 rgrp
->mmio_offset
= mmio_offsets
[i
];
560 /* Extract the channel mask for this group only. */
561 rgrp
->channels_mask
= (rcdu
->info
->channels_mask
>> (2 * i
))
563 rgrp
->num_crtcs
= hweight8(rgrp
->channels_mask
);
566 * If we have more than one CRTCs in this group pre-associate
567 * the low-order planes with CRTC 0 and the high-order planes
568 * with CRTC 1 to minimize flicker occurring when the
569 * association is changed.
571 rgrp
->dptsr_planes
= rgrp
->num_crtcs
> 1
572 ? (rcdu
->info
->gen
>= 3 ? 0x04 : 0xf0)
575 if (!rcar_du_has(rcdu
, RCAR_DU_FEATURE_VSP1_SOURCE
)) {
576 ret
= rcar_du_planes_init(rgrp
);
582 /* Initialize the compositors. */
583 if (rcar_du_has(rcdu
, RCAR_DU_FEATURE_VSP1_SOURCE
)) {
584 ret
= rcar_du_vsps_init(rcdu
);
589 /* Create the CRTCs. */
590 for (swindex
= 0, hwindex
= 0; swindex
< rcdu
->num_crtcs
; ++hwindex
) {
591 struct rcar_du_group
*rgrp
;
593 /* Skip unpopulated DU channels. */
594 if (!(rcdu
->info
->channels_mask
& BIT(hwindex
)))
597 rgrp
= &rcdu
->groups
[hwindex
/ 2];
599 ret
= rcar_du_crtc_create(rgrp
, swindex
++, hwindex
);
604 /* Initialize the encoders. */
605 ret
= rcar_du_encoders_init(rcdu
);
610 dev_err(rcdu
->dev
, "error: no encoder could be initialized\n");
617 * Set the possible CRTCs and possible clones. There's always at least
618 * one way for all encoders to clone each other, set all bits in the
619 * possible clones field.
621 list_for_each_entry(encoder
, &dev
->mode_config
.encoder_list
, head
) {
622 struct rcar_du_encoder
*renc
= to_rcar_encoder(encoder
);
623 const struct rcar_du_output_routing
*route
=
624 &rcdu
->info
->routes
[renc
->output
];
626 encoder
->possible_crtcs
= route
->possible_crtcs
;
627 encoder
->possible_clones
= (1 << num_encoders
) - 1;
630 drm_mode_config_reset(dev
);
632 drm_kms_helper_poll_init(dev
);
634 if (dev
->mode_config
.num_connector
) {
635 fbdev
= drm_fbdev_cma_init(dev
, 32,
636 dev
->mode_config
.num_connector
);
638 return PTR_ERR(fbdev
);
643 "no connector found, disabling fbdev emulation\n");