drm/imx: use for_each_endpoint_of_node macro in imx_drm_encoder_get_mux_id
[deliverable/linux.git] / drivers / gpu / drm / rcar-du / rcar_du_kms.c
CommitLineData
4bf8e196
LP
1/*
2 * rcar_du_kms.c -- R-Car Display Unit Mode Setting
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>
15#include <drm/drm_crtc.h>
16#include <drm/drm_crtc_helper.h>
17#include <drm/drm_fb_cma_helper.h>
18#include <drm/drm_gem_cma_helper.h>
19
96c02691
LP
20#include <linux/of_graph.h>
21
4bf8e196
LP
22#include "rcar_du_crtc.h"
23#include "rcar_du_drv.h"
6978f123 24#include "rcar_du_encoder.h"
4bf8e196 25#include "rcar_du_kms.h"
90374b5c 26#include "rcar_du_lvdsenc.h"
4bf8e196 27#include "rcar_du_regs.h"
4bf8e196
LP
28
29/* -----------------------------------------------------------------------------
30 * Format helpers
31 */
32
33static const struct rcar_du_format_info rcar_du_format_infos[] = {
34 {
35 .fourcc = DRM_FORMAT_RGB565,
36 .bpp = 16,
37 .planes = 1,
38 .pnmr = PnMR_SPIM_TP | PnMR_DDDF_16BPP,
39 .edf = PnDDCR4_EDF_NONE,
40 }, {
41 .fourcc = DRM_FORMAT_ARGB1555,
42 .bpp = 16,
43 .planes = 1,
44 .pnmr = PnMR_SPIM_ALP | PnMR_DDDF_ARGB,
45 .edf = PnDDCR4_EDF_NONE,
46 }, {
47 .fourcc = DRM_FORMAT_XRGB1555,
48 .bpp = 16,
49 .planes = 1,
50 .pnmr = PnMR_SPIM_ALP | PnMR_DDDF_ARGB,
51 .edf = PnDDCR4_EDF_NONE,
52 }, {
53 .fourcc = DRM_FORMAT_XRGB8888,
54 .bpp = 32,
55 .planes = 1,
56 .pnmr = PnMR_SPIM_TP | PnMR_DDDF_16BPP,
57 .edf = PnDDCR4_EDF_RGB888,
58 }, {
59 .fourcc = DRM_FORMAT_ARGB8888,
60 .bpp = 32,
61 .planes = 1,
62 .pnmr = PnMR_SPIM_ALP | PnMR_DDDF_16BPP,
63 .edf = PnDDCR4_EDF_ARGB8888,
64 }, {
65 .fourcc = DRM_FORMAT_UYVY,
66 .bpp = 16,
67 .planes = 1,
68 .pnmr = PnMR_SPIM_TP_OFF | PnMR_DDDF_YC,
69 .edf = PnDDCR4_EDF_NONE,
70 }, {
71 .fourcc = DRM_FORMAT_YUYV,
72 .bpp = 16,
73 .planes = 1,
74 .pnmr = PnMR_SPIM_TP_OFF | PnMR_DDDF_YC,
75 .edf = PnDDCR4_EDF_NONE,
76 }, {
77 .fourcc = DRM_FORMAT_NV12,
78 .bpp = 12,
79 .planes = 2,
80 .pnmr = PnMR_SPIM_TP_OFF | PnMR_DDDF_YC,
81 .edf = PnDDCR4_EDF_NONE,
82 }, {
83 .fourcc = DRM_FORMAT_NV21,
84 .bpp = 12,
85 .planes = 2,
86 .pnmr = PnMR_SPIM_TP_OFF | PnMR_DDDF_YC,
87 .edf = PnDDCR4_EDF_NONE,
88 }, {
89 /* In YUV 4:2:2, only NV16 is supported (NV61 isn't) */
90 .fourcc = DRM_FORMAT_NV16,
91 .bpp = 16,
92 .planes = 2,
93 .pnmr = PnMR_SPIM_TP_OFF | PnMR_DDDF_YC,
94 .edf = PnDDCR4_EDF_NONE,
95 },
96};
97
98const struct rcar_du_format_info *rcar_du_format_info(u32 fourcc)
99{
100 unsigned int i;
101
102 for (i = 0; i < ARRAY_SIZE(rcar_du_format_infos); ++i) {
103 if (rcar_du_format_infos[i].fourcc == fourcc)
104 return &rcar_du_format_infos[i];
105 }
106
107 return NULL;
108}
109
4bf8e196
LP
110/* -----------------------------------------------------------------------------
111 * Frame buffer
112 */
113
59e32642
LP
114int rcar_du_dumb_create(struct drm_file *file, struct drm_device *dev,
115 struct drm_mode_create_dumb *args)
116{
9e2d2de9 117 struct rcar_du_device *rcdu = dev->dev_private;
59e32642
LP
118 unsigned int min_pitch = DIV_ROUND_UP(args->width * args->bpp, 8);
119 unsigned int align;
120
9e2d2de9
LP
121 /* The R8A7779 DU requires a 16 pixels pitch alignment as documented,
122 * but the R8A7790 DU seems to require a 128 bytes pitch alignment.
123 */
e8355e0d 124 if (rcar_du_needs(rcdu, RCAR_DU_QUIRK_ALIGN_128B))
9e2d2de9
LP
125 align = 128;
126 else
127 align = 16 * args->bpp / 8;
128
7e295a36 129 args->pitch = roundup(min_pitch, align);
59e32642 130
6d178291 131 return drm_gem_cma_dumb_create_internal(file, dev, args);
59e32642
LP
132}
133
4bf8e196
LP
134static struct drm_framebuffer *
135rcar_du_fb_create(struct drm_device *dev, struct drm_file *file_priv,
136 struct drm_mode_fb_cmd2 *mode_cmd)
137{
9e2d2de9 138 struct rcar_du_device *rcdu = dev->dev_private;
4bf8e196 139 const struct rcar_du_format_info *format;
8bed5cc7 140 unsigned int max_pitch;
59e32642 141 unsigned int align;
8bed5cc7 142 unsigned int bpp;
4bf8e196
LP
143
144 format = rcar_du_format_info(mode_cmd->pixel_format);
145 if (format == NULL) {
146 dev_dbg(dev->dev, "unsupported pixel format %08x\n",
147 mode_cmd->pixel_format);
148 return ERR_PTR(-EINVAL);
149 }
150
8bed5cc7
LP
151 /*
152 * The pitch and alignment constraints are expressed in pixels on the
153 * hardware side and in bytes in the DRM API.
154 */
155 bpp = format->planes == 2 ? 1 : format->bpp / 8;
156 max_pitch = 4096 * bpp;
157
e8355e0d 158 if (rcar_du_needs(rcdu, RCAR_DU_QUIRK_ALIGN_128B))
9e2d2de9
LP
159 align = 128;
160 else
8bed5cc7 161 align = 16 * bpp;
59e32642
LP
162
163 if (mode_cmd->pitches[0] & (align - 1) ||
8bed5cc7 164 mode_cmd->pitches[0] >= max_pitch) {
4bf8e196
LP
165 dev_dbg(dev->dev, "invalid pitch value %u\n",
166 mode_cmd->pitches[0]);
167 return ERR_PTR(-EINVAL);
168 }
169
170 if (format->planes == 2) {
171 if (mode_cmd->pitches[1] != mode_cmd->pitches[0]) {
172 dev_dbg(dev->dev,
173 "luma and chroma pitches do not match\n");
174 return ERR_PTR(-EINVAL);
175 }
176 }
177
178 return drm_fb_cma_create(dev, file_priv, mode_cmd);
179}
180
3864c6f4
LP
181static void rcar_du_output_poll_changed(struct drm_device *dev)
182{
183 struct rcar_du_device *rcdu = dev->dev_private;
184
185 drm_fbdev_cma_hotplug_event(rcdu->fbdev);
186}
187
4bf8e196
LP
188static const struct drm_mode_config_funcs rcar_du_mode_config_funcs = {
189 .fb_create = rcar_du_fb_create,
3864c6f4 190 .output_poll_changed = rcar_du_output_poll_changed,
4bf8e196
LP
191};
192
2378ad12
LP
193static int rcar_du_encoders_init_one(struct rcar_du_device *rcdu,
194 enum rcar_du_output output,
195 struct of_endpoint *ep)
96c02691
LP
196{
197 static const struct {
198 const char *compatible;
199 enum rcar_du_encoder_type type;
200 } encoders[] = {
201 { "adi,adv7123", RCAR_DU_ENCODER_VGA },
637e6194 202 { "adi,adv7511w", RCAR_DU_ENCODER_HDMI },
96c02691
LP
203 { "thine,thc63lvdm83d", RCAR_DU_ENCODER_LVDS },
204 };
205
206 enum rcar_du_encoder_type enc_type = RCAR_DU_ENCODER_NONE;
207 struct device_node *connector = NULL;
208 struct device_node *encoder = NULL;
f033c0bc 209 struct device_node *ep_node = NULL;
96c02691
LP
210 struct device_node *entity_ep_node;
211 struct device_node *entity;
212 int ret;
213
214 /*
215 * Locate the connected entity and infer its type from the number of
216 * endpoints.
217 */
218 entity = of_graph_get_remote_port_parent(ep->local_node);
219 if (!entity) {
220 dev_dbg(rcdu->dev, "unconnected endpoint %s, skipping\n",
221 ep->local_node->full_name);
222 return 0;
223 }
224
225 entity_ep_node = of_parse_phandle(ep->local_node, "remote-endpoint", 0);
226
227 while (1) {
f033c0bc 228 ep_node = of_graph_get_next_endpoint(entity, ep_node);
96c02691
LP
229
230 if (!ep_node)
231 break;
232
233 if (ep_node == entity_ep_node)
234 continue;
235
236 /*
237 * We've found one endpoint other than the input, this must
238 * be an encoder. Locate the connector.
239 */
240 encoder = entity;
241 connector = of_graph_get_remote_port_parent(ep_node);
242 of_node_put(ep_node);
243
244 if (!connector) {
245 dev_warn(rcdu->dev,
246 "no connector for encoder %s, skipping\n",
247 encoder->full_name);
248 of_node_put(entity_ep_node);
249 of_node_put(encoder);
250 return 0;
251 }
252
253 break;
254 }
255
256 of_node_put(entity_ep_node);
257
258 if (encoder) {
259 /*
260 * If an encoder has been found, get its type based on its
261 * compatible string.
262 */
263 unsigned int i;
264
265 for (i = 0; i < ARRAY_SIZE(encoders); ++i) {
266 if (of_device_is_compatible(encoder,
267 encoders[i].compatible)) {
268 enc_type = encoders[i].type;
269 break;
270 }
271 }
272
273 if (i == ARRAY_SIZE(encoders)) {
274 dev_warn(rcdu->dev,
275 "unknown encoder type for %s, skipping\n",
276 encoder->full_name);
277 of_node_put(encoder);
278 of_node_put(connector);
279 return 0;
280 }
281 } else {
282 /*
283 * If no encoder has been found the entity must be the
284 * connector.
285 */
286 connector = entity;
287 }
288
3ea4d5ec 289 ret = rcar_du_encoder_init(rcdu, enc_type, output, encoder, connector);
96c02691
LP
290 of_node_put(encoder);
291 of_node_put(connector);
292
293 return ret < 0 ? ret : 1;
294}
295
2378ad12 296static int rcar_du_encoders_init(struct rcar_du_device *rcdu)
96c02691
LP
297{
298 struct device_node *np = rcdu->dev->of_node;
f033c0bc 299 struct device_node *ep_node = NULL;
96c02691
LP
300 unsigned int num_encoders = 0;
301
302 /*
303 * Iterate over the endpoints and create one encoder for each output
304 * pipeline.
305 */
306 while (1) {
96c02691
LP
307 enum rcar_du_output output;
308 struct of_endpoint ep;
309 unsigned int i;
310 int ret;
311
f033c0bc 312 ep_node = of_graph_get_next_endpoint(np, ep_node);
96c02691
LP
313
314 if (ep_node == NULL)
315 break;
316
317 ret = of_graph_parse_endpoint(ep_node, &ep);
318 if (ret < 0) {
319 of_node_put(ep_node);
320 return ret;
321 }
322
323 /* Find the output route corresponding to the port number. */
324 for (i = 0; i < RCAR_DU_OUTPUT_MAX; ++i) {
325 if (rcdu->info->routes[i].possible_crtcs &&
326 rcdu->info->routes[i].port == ep.port) {
327 output = i;
328 break;
329 }
330 }
331
332 if (i == RCAR_DU_OUTPUT_MAX) {
333 dev_warn(rcdu->dev,
334 "port %u references unexisting output, skipping\n",
335 ep.port);
336 continue;
337 }
338
339 /* Process the output pipeline. */
2378ad12 340 ret = rcar_du_encoders_init_one(rcdu, output, &ep);
96c02691 341 if (ret < 0) {
347d761c
LP
342 if (ret == -EPROBE_DEFER) {
343 of_node_put(ep_node);
344 return ret;
345 }
346
347 dev_info(rcdu->dev,
348 "encoder initialization failed, skipping\n");
349 continue;
96c02691
LP
350 }
351
352 num_encoders += ret;
353 }
354
355 return num_encoders;
356}
357
4bf8e196
LP
358int rcar_du_modeset_init(struct rcar_du_device *rcdu)
359{
a5f0ef59
LP
360 static const unsigned int mmio_offsets[] = {
361 DU0_REG_OFFSET, DU2_REG_OFFSET
362 };
363
4bf8e196
LP
364 struct drm_device *dev = rcdu->ddev;
365 struct drm_encoder *encoder;
3864c6f4 366 struct drm_fbdev_cma *fbdev;
96c02691 367 unsigned int num_encoders;
a5f0ef59 368 unsigned int num_groups;
4bf8e196
LP
369 unsigned int i;
370 int ret;
371
3864c6f4 372 drm_mode_config_init(dev);
4bf8e196 373
3864c6f4
LP
374 dev->mode_config.min_width = 0;
375 dev->mode_config.min_height = 0;
376 dev->mode_config.max_width = 4095;
377 dev->mode_config.max_height = 2047;
378 dev->mode_config.funcs = &rcar_du_mode_config_funcs;
4bf8e196 379
a5f0ef59
LP
380 rcdu->num_crtcs = rcdu->info->num_crtcs;
381
382 /* Initialize the groups. */
383 num_groups = DIV_ROUND_UP(rcdu->num_crtcs, 2);
384
385 for (i = 0; i < num_groups; ++i) {
386 struct rcar_du_group *rgrp = &rcdu->groups[i];
cb2025d2 387
a5f0ef59
LP
388 rgrp->dev = rcdu;
389 rgrp->mmio_offset = mmio_offsets[i];
390 rgrp->index = i;
4bf8e196 391
a5f0ef59 392 ret = rcar_du_planes_init(rgrp);
3463ff67
LP
393 if (ret < 0)
394 return ret;
395 }
4bf8e196 396
a5f0ef59
LP
397 /* Create the CRTCs. */
398 for (i = 0; i < rcdu->num_crtcs; ++i) {
399 struct rcar_du_group *rgrp = &rcdu->groups[i / 2];
400
401 ret = rcar_du_crtc_create(rgrp, i);
402 if (ret < 0)
403 return ret;
404 }
4bf8e196 405
a5f0ef59 406 /* Initialize the encoders. */
90374b5c
LP
407 ret = rcar_du_lvdsenc_init(rcdu);
408 if (ret < 0)
409 return ret;
410
2378ad12 411 ret = rcar_du_encoders_init(rcdu);
96c02691
LP
412 if (ret < 0)
413 return ret;
4bf8e196 414
347d761c
LP
415 if (ret == 0) {
416 dev_err(rcdu->dev, "error: no encoder could be initialized\n");
417 return -EINVAL;
418 }
419
96c02691 420 num_encoders = ret;
4bf8e196 421
ef67a902
LP
422 /* Set the possible CRTCs and possible clones. There's always at least
423 * one way for all encoders to clone each other, set all bits in the
424 * possible clones field.
4bf8e196
LP
425 */
426 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
427 struct rcar_du_encoder *renc = to_rcar_encoder(encoder);
ef67a902
LP
428 const struct rcar_du_output_routing *route =
429 &rcdu->info->routes[renc->output];
4bf8e196 430
ef67a902 431 encoder->possible_crtcs = route->possible_crtcs;
96c02691 432 encoder->possible_clones = (1 << num_encoders) - 1;
4bf8e196
LP
433 }
434
a5f0ef59
LP
435 /* Now that the CRTCs have been initialized register the planes. */
436 for (i = 0; i < num_groups; ++i) {
437 ret = rcar_du_planes_register(&rcdu->groups[i]);
438 if (ret < 0)
439 return ret;
440 }
4bf8e196 441
3864c6f4
LP
442 drm_kms_helper_poll_init(dev);
443
444 drm_helper_disable_unused_functions(dev);
445
446 fbdev = drm_fbdev_cma_init(dev, 32, dev->mode_config.num_crtc,
447 dev->mode_config.num_connector);
448 if (IS_ERR(fbdev))
449 return PTR_ERR(fbdev);
450
451#ifndef CONFIG_FRAMEBUFFER_CONSOLE
452 drm_fbdev_cma_restore_mode(fbdev);
453#endif
4bf8e196 454
3864c6f4 455 rcdu->fbdev = fbdev;
4bf8e196
LP
456
457 return 0;
458}
This page took 0.100893 seconds and 5 git commands to generate.