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>
22 #include <linux/of_graph.h>
23 #include <linux/wait.h>
25 #include "rcar_du_crtc.h"
26 #include "rcar_du_drv.h"
27 #include "rcar_du_encoder.h"
28 #include "rcar_du_kms.h"
29 #include "rcar_du_lvdsenc.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
,
99 /* The following formats are not supported on Gen2 and thus have no
100 * associated .pnmr or .edf settings.
103 .fourcc
= DRM_FORMAT_NV61
,
107 .fourcc
= DRM_FORMAT_YUV420
,
111 .fourcc
= DRM_FORMAT_YVU420
,
115 .fourcc
= DRM_FORMAT_YUV422
,
119 .fourcc
= DRM_FORMAT_YVU422
,
123 .fourcc
= DRM_FORMAT_YUV444
,
127 .fourcc
= DRM_FORMAT_YVU444
,
133 const struct rcar_du_format_info
*rcar_du_format_info(u32 fourcc
)
137 for (i
= 0; i
< ARRAY_SIZE(rcar_du_format_infos
); ++i
) {
138 if (rcar_du_format_infos
[i
].fourcc
== fourcc
)
139 return &rcar_du_format_infos
[i
];
145 /* -----------------------------------------------------------------------------
149 int rcar_du_dumb_create(struct drm_file
*file
, struct drm_device
*dev
,
150 struct drm_mode_create_dumb
*args
)
152 struct rcar_du_device
*rcdu
= dev
->dev_private
;
153 unsigned int min_pitch
= DIV_ROUND_UP(args
->width
* args
->bpp
, 8);
156 /* The R8A7779 DU requires a 16 pixels pitch alignment as documented,
157 * but the R8A7790 DU seems to require a 128 bytes pitch alignment.
159 if (rcar_du_needs(rcdu
, RCAR_DU_QUIRK_ALIGN_128B
))
162 align
= 16 * args
->bpp
/ 8;
164 args
->pitch
= roundup(min_pitch
, align
);
166 return drm_gem_cma_dumb_create_internal(file
, dev
, args
);
169 static struct drm_framebuffer
*
170 rcar_du_fb_create(struct drm_device
*dev
, struct drm_file
*file_priv
,
171 const struct drm_mode_fb_cmd2
*mode_cmd
)
173 struct rcar_du_device
*rcdu
= dev
->dev_private
;
174 const struct rcar_du_format_info
*format
;
175 unsigned int max_pitch
;
180 format
= rcar_du_format_info(mode_cmd
->pixel_format
);
181 if (format
== NULL
) {
182 dev_dbg(dev
->dev
, "unsupported pixel format %08x\n",
183 mode_cmd
->pixel_format
);
184 return ERR_PTR(-EINVAL
);
188 * The pitch and alignment constraints are expressed in pixels on the
189 * hardware side and in bytes in the DRM API.
191 bpp
= format
->planes
== 1 ? format
->bpp
/ 8 : 1;
192 max_pitch
= 4096 * bpp
;
194 if (rcar_du_needs(rcdu
, RCAR_DU_QUIRK_ALIGN_128B
))
199 if (mode_cmd
->pitches
[0] & (align
- 1) ||
200 mode_cmd
->pitches
[0] >= max_pitch
) {
201 dev_dbg(dev
->dev
, "invalid pitch value %u\n",
202 mode_cmd
->pitches
[0]);
203 return ERR_PTR(-EINVAL
);
206 for (i
= 1; i
< format
->planes
; ++i
) {
207 if (mode_cmd
->pitches
[i
] != mode_cmd
->pitches
[0]) {
209 "luma and chroma pitches do not match\n");
210 return ERR_PTR(-EINVAL
);
214 return drm_fb_cma_create(dev
, file_priv
, mode_cmd
);
217 static void rcar_du_output_poll_changed(struct drm_device
*dev
)
219 struct rcar_du_device
*rcdu
= dev
->dev_private
;
221 drm_fbdev_cma_hotplug_event(rcdu
->fbdev
);
224 /* -----------------------------------------------------------------------------
225 * Atomic Check and Update
228 static int rcar_du_atomic_check(struct drm_device
*dev
,
229 struct drm_atomic_state
*state
)
231 struct rcar_du_device
*rcdu
= dev
->dev_private
;
234 ret
= drm_atomic_helper_check_modeset(dev
, state
);
238 ret
= drm_atomic_normalize_zpos(dev
, state
);
242 ret
= drm_atomic_helper_check_planes(dev
, state
);
246 if (rcar_du_has(rcdu
, RCAR_DU_FEATURE_VSP1_SOURCE
))
249 return rcar_du_atomic_check_planes(dev
, state
);
252 static void rcar_du_atomic_commit_tail(struct drm_atomic_state
*old_state
)
254 struct drm_device
*dev
= old_state
->dev
;
256 /* Apply the atomic update. */
257 drm_atomic_helper_commit_modeset_disables(dev
, old_state
);
258 drm_atomic_helper_commit_modeset_enables(dev
, old_state
);
259 drm_atomic_helper_commit_planes(dev
, old_state
,
260 DRM_PLANE_COMMIT_ACTIVE_ONLY
);
262 drm_atomic_helper_commit_hw_done(old_state
);
263 drm_atomic_helper_wait_for_vblanks(dev
, old_state
);
265 drm_atomic_helper_cleanup_planes(dev
, old_state
);
268 /* -----------------------------------------------------------------------------
272 static const struct drm_mode_config_helper_funcs rcar_du_mode_config_helper
= {
273 .atomic_commit_tail
= rcar_du_atomic_commit_tail
,
276 static const struct drm_mode_config_funcs rcar_du_mode_config_funcs
= {
277 .fb_create
= rcar_du_fb_create
,
278 .output_poll_changed
= rcar_du_output_poll_changed
,
279 .atomic_check
= rcar_du_atomic_check
,
280 .atomic_commit
= drm_atomic_helper_commit
,
283 static int rcar_du_encoders_init_one(struct rcar_du_device
*rcdu
,
284 enum rcar_du_output output
,
285 struct of_endpoint
*ep
)
287 struct device_node
*connector
= NULL
;
288 struct device_node
*encoder
= NULL
;
289 struct device_node
*ep_node
= NULL
;
290 struct device_node
*entity_ep_node
;
291 struct device_node
*entity
;
295 * Locate the connected entity and infer its type from the number of
298 entity
= of_graph_get_remote_port_parent(ep
->local_node
);
300 dev_dbg(rcdu
->dev
, "unconnected endpoint %s, skipping\n",
301 ep
->local_node
->full_name
);
305 if (!of_device_is_available(entity
)) {
307 "connected entity %s is disabled, skipping\n",
312 entity_ep_node
= of_parse_phandle(ep
->local_node
, "remote-endpoint", 0);
314 for_each_endpoint_of_node(entity
, ep_node
) {
315 if (ep_node
== entity_ep_node
)
319 * We've found one endpoint other than the input, this must
320 * be an encoder. Locate the connector.
323 connector
= of_graph_get_remote_port_parent(ep_node
);
324 of_node_put(ep_node
);
328 "no connector for encoder %s, skipping\n",
330 of_node_put(entity_ep_node
);
331 of_node_put(encoder
);
338 of_node_put(entity_ep_node
);
342 * If no encoder has been found the entity must be the
348 ret
= rcar_du_encoder_init(rcdu
, output
, encoder
, connector
);
349 if (ret
&& ret
!= -EPROBE_DEFER
)
351 "failed to initialize encoder %s on output %u (%d), skipping\n",
352 of_node_full_name(encoder
), output
, ret
);
354 of_node_put(encoder
);
355 of_node_put(connector
);
360 static int rcar_du_encoders_init(struct rcar_du_device
*rcdu
)
362 struct device_node
*np
= rcdu
->dev
->of_node
;
363 struct device_node
*ep_node
;
364 unsigned int num_encoders
= 0;
367 * Iterate over the endpoints and create one encoder for each output
370 for_each_endpoint_of_node(np
, ep_node
) {
371 enum rcar_du_output output
;
372 struct of_endpoint ep
;
376 ret
= of_graph_parse_endpoint(ep_node
, &ep
);
378 of_node_put(ep_node
);
382 /* Find the output route corresponding to the port number. */
383 for (i
= 0; i
< RCAR_DU_OUTPUT_MAX
; ++i
) {
384 if (rcdu
->info
->routes
[i
].possible_crtcs
&&
385 rcdu
->info
->routes
[i
].port
== ep
.port
) {
391 if (i
== RCAR_DU_OUTPUT_MAX
) {
393 "port %u references unexisting output, skipping\n",
398 /* Process the output pipeline. */
399 ret
= rcar_du_encoders_init_one(rcdu
, output
, &ep
);
401 if (ret
== -EPROBE_DEFER
) {
402 of_node_put(ep_node
);
415 static int rcar_du_properties_init(struct rcar_du_device
*rcdu
)
418 drm_property_create_range(rcdu
->ddev
, 0, "alpha", 0, 255);
419 if (rcdu
->props
.alpha
== NULL
)
422 /* The color key is expressed as an RGB888 triplet stored in a 32-bit
423 * integer in XRGB8888 format. Bit 24 is used as a flag to disable (0)
424 * or enable source color keying (1).
426 rcdu
->props
.colorkey
=
427 drm_property_create_range(rcdu
->ddev
, 0, "colorkey",
429 if (rcdu
->props
.colorkey
== NULL
)
435 int rcar_du_modeset_init(struct rcar_du_device
*rcdu
)
437 static const unsigned int mmio_offsets
[] = {
438 DU0_REG_OFFSET
, DU2_REG_OFFSET
441 struct drm_device
*dev
= rcdu
->ddev
;
442 struct drm_encoder
*encoder
;
443 struct drm_fbdev_cma
*fbdev
;
444 unsigned int num_encoders
;
445 unsigned int num_groups
;
449 drm_mode_config_init(dev
);
451 dev
->mode_config
.min_width
= 0;
452 dev
->mode_config
.min_height
= 0;
453 dev
->mode_config
.max_width
= 4095;
454 dev
->mode_config
.max_height
= 2047;
455 dev
->mode_config
.funcs
= &rcar_du_mode_config_funcs
;
456 dev
->mode_config
.helper_private
= &rcar_du_mode_config_helper
;
458 rcdu
->num_crtcs
= rcdu
->info
->num_crtcs
;
460 ret
= rcar_du_properties_init(rcdu
);
464 /* Initialize vertical blanking interrupts handling. Start with vblank
465 * disabled for all CRTCs.
467 ret
= drm_vblank_init(dev
, (1 << rcdu
->info
->num_crtcs
) - 1);
471 /* Initialize the groups. */
472 num_groups
= DIV_ROUND_UP(rcdu
->num_crtcs
, 2);
474 for (i
= 0; i
< num_groups
; ++i
) {
475 struct rcar_du_group
*rgrp
= &rcdu
->groups
[i
];
477 mutex_init(&rgrp
->lock
);
480 rgrp
->mmio_offset
= mmio_offsets
[i
];
482 rgrp
->num_crtcs
= min(rcdu
->num_crtcs
- 2 * i
, 2U);
484 /* If we have more than one CRTCs in this group pre-associate
485 * the low-order planes with CRTC 0 and the high-order planes
486 * with CRTC 1 to minimize flicker occurring when the
487 * association is changed.
489 rgrp
->dptsr_planes
= rgrp
->num_crtcs
> 1
490 ? (rcdu
->info
->gen
>= 3 ? 0x04 : 0xf0)
493 if (!rcar_du_has(rcdu
, RCAR_DU_FEATURE_VSP1_SOURCE
)) {
494 ret
= rcar_du_planes_init(rgrp
);
500 /* Initialize the compositors. */
501 if (rcar_du_has(rcdu
, RCAR_DU_FEATURE_VSP1_SOURCE
)) {
502 for (i
= 0; i
< rcdu
->num_crtcs
; ++i
) {
503 struct rcar_du_vsp
*vsp
= &rcdu
->vsps
[i
];
507 rcdu
->crtcs
[i
].vsp
= vsp
;
509 ret
= rcar_du_vsp_init(vsp
);
515 /* Create the CRTCs. */
516 for (i
= 0; i
< rcdu
->num_crtcs
; ++i
) {
517 struct rcar_du_group
*rgrp
= &rcdu
->groups
[i
/ 2];
519 ret
= rcar_du_crtc_create(rgrp
, i
);
524 /* Initialize the encoders. */
525 ret
= rcar_du_lvdsenc_init(rcdu
);
529 ret
= rcar_du_encoders_init(rcdu
);
534 dev_err(rcdu
->dev
, "error: no encoder could be initialized\n");
540 /* Set the possible CRTCs and possible clones. There's always at least
541 * one way for all encoders to clone each other, set all bits in the
542 * possible clones field.
544 list_for_each_entry(encoder
, &dev
->mode_config
.encoder_list
, head
) {
545 struct rcar_du_encoder
*renc
= to_rcar_encoder(encoder
);
546 const struct rcar_du_output_routing
*route
=
547 &rcdu
->info
->routes
[renc
->output
];
549 encoder
->possible_crtcs
= route
->possible_crtcs
;
550 encoder
->possible_clones
= (1 << num_encoders
) - 1;
553 drm_mode_config_reset(dev
);
555 drm_kms_helper_poll_init(dev
);
557 if (dev
->mode_config
.num_connector
) {
558 fbdev
= drm_fbdev_cma_init(dev
, 32,
559 dev
->mode_config
.num_connector
);
561 return PTR_ERR(fbdev
);
566 "no connector found, disabling fbdev emulation\n");