blob: b5d3f16cfa12afafeff2c5fcf30aa87f2225366a [file] [log] [blame]
Laurent Pinchart4bf8e192013-06-19 13:54:11 +02001/*
2 * rcar_du_kms.c -- R-Car Display Unit Mode Setting
3 *
Laurent Pinchart2427b302015-09-07 17:34:26 +03004 * Copyright (C) 2013-2015 Renesas Electronics Corporation
Laurent Pinchart4bf8e192013-06-19 13:54:11 +02005 *
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>
Laurent Pinchart8d3f9b22015-02-23 01:02:15 +020015#include <drm/drm_atomic.h>
Laurent Pinchart336d04a2015-02-20 13:18:56 +020016#include <drm/drm_atomic_helper.h>
Laurent Pinchart4bf8e192013-06-19 13:54:11 +020017#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
Laurent Pinchart96c02692014-01-21 15:57:26 +010022#include <linux/of_graph.h>
Laurent Pinchart8d3f9b22015-02-23 01:02:15 +020023#include <linux/wait.h>
Laurent Pinchart96c02692014-01-21 15:57:26 +010024
Laurent Pinchart4bf8e192013-06-19 13:54:11 +020025#include "rcar_du_crtc.h"
26#include "rcar_du_drv.h"
Laurent Pinchart6978f122013-06-15 15:02:12 +020027#include "rcar_du_encoder.h"
Laurent Pinchart4bf8e192013-06-19 13:54:11 +020028#include "rcar_du_kms.h"
Laurent Pinchart90374b52013-06-17 13:48:27 +020029#include "rcar_du_lvdsenc.h"
Laurent Pinchart4bf8e192013-06-19 13:54:11 +020030#include "rcar_du_regs.h"
Laurent Pinchart6d62ef32015-09-07 17:14:58 +030031#include "rcar_du_vsp.h"
Laurent Pinchart4bf8e192013-06-19 13:54:11 +020032
33/* -----------------------------------------------------------------------------
34 * Format helpers
35 */
36
37static const struct rcar_du_format_info rcar_du_format_infos[] = {
38 {
39 .fourcc = DRM_FORMAT_RGB565,
40 .bpp = 16,
41 .planes = 1,
42 .pnmr = PnMR_SPIM_TP | PnMR_DDDF_16BPP,
43 .edf = PnDDCR4_EDF_NONE,
44 }, {
45 .fourcc = DRM_FORMAT_ARGB1555,
46 .bpp = 16,
47 .planes = 1,
48 .pnmr = PnMR_SPIM_ALP | PnMR_DDDF_ARGB,
49 .edf = PnDDCR4_EDF_NONE,
50 }, {
51 .fourcc = DRM_FORMAT_XRGB1555,
52 .bpp = 16,
53 .planes = 1,
54 .pnmr = PnMR_SPIM_ALP | PnMR_DDDF_ARGB,
55 .edf = PnDDCR4_EDF_NONE,
56 }, {
57 .fourcc = DRM_FORMAT_XRGB8888,
58 .bpp = 32,
59 .planes = 1,
60 .pnmr = PnMR_SPIM_TP | PnMR_DDDF_16BPP,
61 .edf = PnDDCR4_EDF_RGB888,
62 }, {
63 .fourcc = DRM_FORMAT_ARGB8888,
64 .bpp = 32,
65 .planes = 1,
66 .pnmr = PnMR_SPIM_ALP | PnMR_DDDF_16BPP,
67 .edf = PnDDCR4_EDF_ARGB8888,
68 }, {
69 .fourcc = DRM_FORMAT_UYVY,
70 .bpp = 16,
71 .planes = 1,
72 .pnmr = PnMR_SPIM_TP_OFF | PnMR_DDDF_YC,
73 .edf = PnDDCR4_EDF_NONE,
74 }, {
75 .fourcc = DRM_FORMAT_YUYV,
76 .bpp = 16,
77 .planes = 1,
78 .pnmr = PnMR_SPIM_TP_OFF | PnMR_DDDF_YC,
79 .edf = PnDDCR4_EDF_NONE,
80 }, {
81 .fourcc = DRM_FORMAT_NV12,
82 .bpp = 12,
83 .planes = 2,
84 .pnmr = PnMR_SPIM_TP_OFF | PnMR_DDDF_YC,
85 .edf = PnDDCR4_EDF_NONE,
86 }, {
87 .fourcc = DRM_FORMAT_NV21,
88 .bpp = 12,
89 .planes = 2,
90 .pnmr = PnMR_SPIM_TP_OFF | PnMR_DDDF_YC,
91 .edf = PnDDCR4_EDF_NONE,
92 }, {
Laurent Pinchart4bf8e192013-06-19 13:54:11 +020093 .fourcc = DRM_FORMAT_NV16,
94 .bpp = 16,
95 .planes = 2,
96 .pnmr = PnMR_SPIM_TP_OFF | PnMR_DDDF_YC,
97 .edf = PnDDCR4_EDF_NONE,
98 },
Laurent Pinchart7863ac52015-11-12 02:03:47 +020099 /* The following formats are not supported on Gen2 and thus have no
100 * associated .pnmr or .edf settings.
101 */
102 {
103 .fourcc = DRM_FORMAT_NV61,
104 .bpp = 16,
105 .planes = 2,
106 }, {
107 .fourcc = DRM_FORMAT_YUV420,
108 .bpp = 12,
109 .planes = 3,
110 }, {
111 .fourcc = DRM_FORMAT_YVU420,
112 .bpp = 12,
113 .planes = 3,
114 }, {
115 .fourcc = DRM_FORMAT_YUV422,
116 .bpp = 16,
117 .planes = 3,
118 }, {
119 .fourcc = DRM_FORMAT_YVU422,
120 .bpp = 16,
121 .planes = 3,
122 }, {
123 .fourcc = DRM_FORMAT_YUV444,
124 .bpp = 24,
125 .planes = 3,
126 }, {
127 .fourcc = DRM_FORMAT_YVU444,
128 .bpp = 24,
129 .planes = 3,
130 },
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200131};
132
133const struct rcar_du_format_info *rcar_du_format_info(u32 fourcc)
134{
135 unsigned int i;
136
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];
140 }
141
142 return NULL;
143}
144
145/* -----------------------------------------------------------------------------
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200146 * Frame buffer
147 */
148
Laurent Pinchart59e32642013-07-04 20:05:51 +0200149int rcar_du_dumb_create(struct drm_file *file, struct drm_device *dev,
150 struct drm_mode_create_dumb *args)
151{
Laurent Pinchart9e2d2de2013-06-14 20:52:52 +0200152 struct rcar_du_device *rcdu = dev->dev_private;
Laurent Pinchart59e32642013-07-04 20:05:51 +0200153 unsigned int min_pitch = DIV_ROUND_UP(args->width * args->bpp, 8);
154 unsigned int align;
155
Laurent Pinchart9e2d2de2013-06-14 20:52:52 +0200156 /* The R8A7779 DU requires a 16 pixels pitch alignment as documented,
157 * but the R8A7790 DU seems to require a 128 bytes pitch alignment.
158 */
Laurent Pincharte8355e02013-11-13 13:33:45 +0100159 if (rcar_du_needs(rcdu, RCAR_DU_QUIRK_ALIGN_128B))
Laurent Pinchart9e2d2de2013-06-14 20:52:52 +0200160 align = 128;
161 else
162 align = 16 * args->bpp / 8;
163
Thierry Reding7e295a32014-11-03 12:08:24 +0100164 args->pitch = roundup(min_pitch, align);
Laurent Pinchart59e32642013-07-04 20:05:51 +0200165
Thierry Reding6d178292014-11-03 11:48:49 +0100166 return drm_gem_cma_dumb_create_internal(file, dev, args);
Laurent Pinchart59e32642013-07-04 20:05:51 +0200167}
168
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200169static struct drm_framebuffer *
170rcar_du_fb_create(struct drm_device *dev, struct drm_file *file_priv,
Ville Syrjälä1eb83452015-11-11 19:11:29 +0200171 const struct drm_mode_fb_cmd2 *mode_cmd)
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200172{
Laurent Pinchart9e2d2de2013-06-14 20:52:52 +0200173 struct rcar_du_device *rcdu = dev->dev_private;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200174 const struct rcar_du_format_info *format;
Laurent Pinchart8bed5cc2014-07-28 20:18:36 +0200175 unsigned int max_pitch;
Laurent Pinchart59e32642013-07-04 20:05:51 +0200176 unsigned int align;
Laurent Pinchart8bed5cc2014-07-28 20:18:36 +0200177 unsigned int bpp;
Laurent Pinchart7863ac52015-11-12 02:03:47 +0200178 unsigned int i;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200179
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);
185 }
186
Laurent Pinchart8bed5cc2014-07-28 20:18:36 +0200187 /*
188 * The pitch and alignment constraints are expressed in pixels on the
189 * hardware side and in bytes in the DRM API.
190 */
Laurent Pinchart7863ac52015-11-12 02:03:47 +0200191 bpp = format->planes == 1 ? format->bpp / 8 : 1;
Laurent Pinchart8bed5cc2014-07-28 20:18:36 +0200192 max_pitch = 4096 * bpp;
193
Laurent Pincharte8355e02013-11-13 13:33:45 +0100194 if (rcar_du_needs(rcdu, RCAR_DU_QUIRK_ALIGN_128B))
Laurent Pinchart9e2d2de2013-06-14 20:52:52 +0200195 align = 128;
196 else
Laurent Pinchart8bed5cc2014-07-28 20:18:36 +0200197 align = 16 * bpp;
Laurent Pinchart59e32642013-07-04 20:05:51 +0200198
199 if (mode_cmd->pitches[0] & (align - 1) ||
Laurent Pinchart8bed5cc2014-07-28 20:18:36 +0200200 mode_cmd->pitches[0] >= max_pitch) {
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200201 dev_dbg(dev->dev, "invalid pitch value %u\n",
202 mode_cmd->pitches[0]);
203 return ERR_PTR(-EINVAL);
204 }
205
Laurent Pinchart7863ac52015-11-12 02:03:47 +0200206 for (i = 1; i < format->planes; ++i) {
207 if (mode_cmd->pitches[i] != mode_cmd->pitches[0]) {
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200208 dev_dbg(dev->dev,
209 "luma and chroma pitches do not match\n");
210 return ERR_PTR(-EINVAL);
211 }
212 }
213
214 return drm_fb_cma_create(dev, file_priv, mode_cmd);
215}
216
Laurent Pinchart3864c6f2013-03-14 22:45:22 +0100217static void rcar_du_output_poll_changed(struct drm_device *dev)
218{
219 struct rcar_du_device *rcdu = dev->dev_private;
220
221 drm_fbdev_cma_hotplug_event(rcdu->fbdev);
222}
223
Laurent Pinchart8d3f9b22015-02-23 01:02:15 +0200224/* -----------------------------------------------------------------------------
Laurent Pinchart5ee5a812015-02-25 18:27:19 +0200225 * Atomic Check and Update
Laurent Pinchart8d3f9b22015-02-23 01:02:15 +0200226 */
227
Laurent Pinchart5ee5a812015-02-25 18:27:19 +0200228static int rcar_du_atomic_check(struct drm_device *dev,
229 struct drm_atomic_state *state)
230{
Laurent Pinchart6d62ef32015-09-07 17:14:58 +0300231 struct rcar_du_device *rcdu = dev->dev_private;
Laurent Pinchart5ee5a812015-02-25 18:27:19 +0200232 int ret;
233
Ville Syrjälä38d868e2016-10-10 17:50:56 +0300234 ret = drm_atomic_helper_check_modeset(dev, state);
235 if (ret)
236 return ret;
237
238 ret = drm_atomic_normalize_zpos(dev, state);
239 if (ret)
240 return ret;
241
242 ret = drm_atomic_helper_check_planes(dev, state);
243 if (ret)
Laurent Pinchart5ee5a812015-02-25 18:27:19 +0200244 return ret;
245
Laurent Pinchart6d62ef32015-09-07 17:14:58 +0300246 if (rcar_du_has(rcdu, RCAR_DU_FEATURE_VSP1_SOURCE))
247 return 0;
248
Laurent Pinchartab334e12015-07-27 15:34:18 +0300249 return rcar_du_atomic_check_planes(dev, state);
Laurent Pinchart5ee5a812015-02-25 18:27:19 +0200250}
251
Laurent Pinchart8d3f9b22015-02-23 01:02:15 +0200252struct rcar_du_commit {
253 struct work_struct work;
254 struct drm_device *dev;
255 struct drm_atomic_state *state;
256 u32 crtcs;
257};
258
259static void rcar_du_atomic_complete(struct rcar_du_commit *commit)
260{
261 struct drm_device *dev = commit->dev;
262 struct rcar_du_device *rcdu = dev->dev_private;
263 struct drm_atomic_state *old_state = commit->state;
264
265 /* Apply the atomic update. */
266 drm_atomic_helper_commit_modeset_disables(dev, old_state);
Laurent Pinchart8d3f9b22015-02-23 01:02:15 +0200267 drm_atomic_helper_commit_modeset_enables(dev, old_state);
Liu Ying2b58e982016-08-29 17:12:03 +0800268 drm_atomic_helper_commit_planes(dev, old_state,
269 DRM_PLANE_COMMIT_ACTIVE_ONLY);
Laurent Pinchart8d3f9b22015-02-23 01:02:15 +0200270
271 drm_atomic_helper_wait_for_vblanks(dev, old_state);
272
273 drm_atomic_helper_cleanup_planes(dev, old_state);
274
Chris Wilson08536952016-10-14 13:18:18 +0100275 drm_atomic_state_put(old_state);
Laurent Pinchart8d3f9b22015-02-23 01:02:15 +0200276
277 /* Complete the commit, wake up any waiter. */
278 spin_lock(&rcdu->commit.wait.lock);
279 rcdu->commit.pending &= ~commit->crtcs;
280 wake_up_all_locked(&rcdu->commit.wait);
281 spin_unlock(&rcdu->commit.wait.lock);
282
283 kfree(commit);
284}
285
286static void rcar_du_atomic_work(struct work_struct *work)
287{
288 struct rcar_du_commit *commit =
289 container_of(work, struct rcar_du_commit, work);
290
291 rcar_du_atomic_complete(commit);
292}
293
294static int rcar_du_atomic_commit(struct drm_device *dev,
Maarten Lankhorst3302f352016-04-26 16:11:40 +0200295 struct drm_atomic_state *state,
296 bool nonblock)
Laurent Pinchart8d3f9b22015-02-23 01:02:15 +0200297{
298 struct rcar_du_device *rcdu = dev->dev_private;
299 struct rcar_du_commit *commit;
Daniel Vetter09ad8072016-06-02 00:06:27 +0200300 struct drm_crtc *crtc;
301 struct drm_crtc_state *crtc_state;
Laurent Pinchart8d3f9b22015-02-23 01:02:15 +0200302 unsigned int i;
303 int ret;
304
305 ret = drm_atomic_helper_prepare_planes(dev, state);
306 if (ret)
307 return ret;
308
309 /* Allocate the commit object. */
310 commit = kzalloc(sizeof(*commit), GFP_KERNEL);
Laurent Pinchart39a3d572015-05-27 02:14:37 +0300311 if (commit == NULL) {
312 ret = -ENOMEM;
313 goto error;
314 }
Laurent Pinchart8d3f9b22015-02-23 01:02:15 +0200315
316 INIT_WORK(&commit->work, rcar_du_atomic_work);
317 commit->dev = dev;
318 commit->state = state;
319
320 /* Wait until all affected CRTCs have completed previous commits and
321 * mark them as pending.
322 */
Daniel Vetter09ad8072016-06-02 00:06:27 +0200323 for_each_crtc_in_state(state, crtc, crtc_state, i)
324 commit->crtcs |= drm_crtc_mask(crtc);
Laurent Pinchart8d3f9b22015-02-23 01:02:15 +0200325
326 spin_lock(&rcdu->commit.wait.lock);
327 ret = wait_event_interruptible_locked(rcdu->commit.wait,
328 !(rcdu->commit.pending & commit->crtcs));
329 if (ret == 0)
330 rcdu->commit.pending |= commit->crtcs;
331 spin_unlock(&rcdu->commit.wait.lock);
332
333 if (ret) {
334 kfree(commit);
Laurent Pinchart39a3d572015-05-27 02:14:37 +0300335 goto error;
Laurent Pinchart8d3f9b22015-02-23 01:02:15 +0200336 }
337
338 /* Swap the state, this is the point of no return. */
Daniel Vetter5e84c262016-06-10 00:06:32 +0200339 drm_atomic_helper_swap_state(state, true);
Laurent Pinchart8d3f9b22015-02-23 01:02:15 +0200340
Chris Wilson08536952016-10-14 13:18:18 +0100341 drm_atomic_state_get(state);
Maarten Lankhorst3302f352016-04-26 16:11:40 +0200342 if (nonblock)
Laurent Pinchart8d3f9b22015-02-23 01:02:15 +0200343 schedule_work(&commit->work);
344 else
345 rcar_du_atomic_complete(commit);
346
347 return 0;
Laurent Pinchart39a3d572015-05-27 02:14:37 +0300348
349error:
350 drm_atomic_helper_cleanup_planes(dev, state);
351 return ret;
Laurent Pinchart8d3f9b22015-02-23 01:02:15 +0200352}
353
354/* -----------------------------------------------------------------------------
355 * Initialization
356 */
357
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200358static const struct drm_mode_config_funcs rcar_du_mode_config_funcs = {
359 .fb_create = rcar_du_fb_create,
Laurent Pinchart3864c6f2013-03-14 22:45:22 +0100360 .output_poll_changed = rcar_du_output_poll_changed,
Laurent Pinchart5ee5a812015-02-25 18:27:19 +0200361 .atomic_check = rcar_du_atomic_check,
Laurent Pinchart8d3f9b22015-02-23 01:02:15 +0200362 .atomic_commit = rcar_du_atomic_commit,
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200363};
364
Laurent Pinchart2378ad12014-09-17 02:07:52 +0300365static int rcar_du_encoders_init_one(struct rcar_du_device *rcdu,
366 enum rcar_du_output output,
367 struct of_endpoint *ep)
Laurent Pinchart96c02692014-01-21 15:57:26 +0100368{
369 static const struct {
370 const char *compatible;
371 enum rcar_du_encoder_type type;
372 } encoders[] = {
373 { "adi,adv7123", RCAR_DU_ENCODER_VGA },
Laurent Pinchart637e6192014-03-30 21:55:38 +0200374 { "adi,adv7511w", RCAR_DU_ENCODER_HDMI },
Laurent Pinchart96c02692014-01-21 15:57:26 +0100375 { "thine,thc63lvdm83d", RCAR_DU_ENCODER_LVDS },
376 };
377
378 enum rcar_du_encoder_type enc_type = RCAR_DU_ENCODER_NONE;
379 struct device_node *connector = NULL;
380 struct device_node *encoder = NULL;
Philipp Zabelf033c0b2014-12-01 13:32:32 +0100381 struct device_node *ep_node = NULL;
Laurent Pinchart96c02692014-01-21 15:57:26 +0100382 struct device_node *entity_ep_node;
383 struct device_node *entity;
384 int ret;
385
386 /*
387 * Locate the connected entity and infer its type from the number of
388 * endpoints.
389 */
390 entity = of_graph_get_remote_port_parent(ep->local_node);
391 if (!entity) {
392 dev_dbg(rcdu->dev, "unconnected endpoint %s, skipping\n",
393 ep->local_node->full_name);
Laurent Pinchart898a2f32015-05-26 15:07:56 +0300394 return -ENODEV;
Laurent Pinchart96c02692014-01-21 15:57:26 +0100395 }
396
397 entity_ep_node = of_parse_phandle(ep->local_node, "remote-endpoint", 0);
398
Philipp Zabel4af642d2014-12-22 11:46:40 +0100399 for_each_endpoint_of_node(entity, ep_node) {
Laurent Pinchart96c02692014-01-21 15:57:26 +0100400 if (ep_node == entity_ep_node)
401 continue;
402
403 /*
404 * We've found one endpoint other than the input, this must
405 * be an encoder. Locate the connector.
406 */
407 encoder = entity;
408 connector = of_graph_get_remote_port_parent(ep_node);
409 of_node_put(ep_node);
410
411 if (!connector) {
412 dev_warn(rcdu->dev,
413 "no connector for encoder %s, skipping\n",
414 encoder->full_name);
415 of_node_put(entity_ep_node);
416 of_node_put(encoder);
Laurent Pinchart898a2f32015-05-26 15:07:56 +0300417 return -ENODEV;
Laurent Pinchart96c02692014-01-21 15:57:26 +0100418 }
419
420 break;
421 }
422
423 of_node_put(entity_ep_node);
424
425 if (encoder) {
426 /*
427 * If an encoder has been found, get its type based on its
428 * compatible string.
429 */
430 unsigned int i;
431
432 for (i = 0; i < ARRAY_SIZE(encoders); ++i) {
433 if (of_device_is_compatible(encoder,
434 encoders[i].compatible)) {
435 enc_type = encoders[i].type;
436 break;
437 }
438 }
439
440 if (i == ARRAY_SIZE(encoders)) {
441 dev_warn(rcdu->dev,
442 "unknown encoder type for %s, skipping\n",
443 encoder->full_name);
444 of_node_put(encoder);
445 of_node_put(connector);
Laurent Pinchart898a2f32015-05-26 15:07:56 +0300446 return -EINVAL;
Laurent Pinchart96c02692014-01-21 15:57:26 +0100447 }
448 } else {
449 /*
450 * If no encoder has been found the entity must be the
451 * connector.
452 */
453 connector = entity;
454 }
455
Laurent Pinchart3ea4d5e2014-09-17 14:41:57 +0300456 ret = rcar_du_encoder_init(rcdu, enc_type, output, encoder, connector);
Laurent Pinchart64549cd2015-05-26 14:59:42 +0300457 if (ret && ret != -EPROBE_DEFER)
458 dev_warn(rcdu->dev,
Laurent Pinchart05ee29e2016-10-03 20:03:22 +0300459 "failed to initialize encoder %s on output %u (%d), skipping\n",
460 of_node_full_name(encoder), output, ret);
461
462 of_node_put(encoder);
463 of_node_put(connector);
Laurent Pinchart64549cd2015-05-26 14:59:42 +0300464
Laurent Pinchart898a2f32015-05-26 15:07:56 +0300465 return ret;
Laurent Pinchart96c02692014-01-21 15:57:26 +0100466}
467
Laurent Pinchart2378ad12014-09-17 02:07:52 +0300468static int rcar_du_encoders_init(struct rcar_du_device *rcdu)
Laurent Pinchart96c02692014-01-21 15:57:26 +0100469{
470 struct device_node *np = rcdu->dev->of_node;
Philipp Zabel4af642d2014-12-22 11:46:40 +0100471 struct device_node *ep_node;
Laurent Pinchart96c02692014-01-21 15:57:26 +0100472 unsigned int num_encoders = 0;
473
474 /*
475 * Iterate over the endpoints and create one encoder for each output
476 * pipeline.
477 */
Philipp Zabel4af642d2014-12-22 11:46:40 +0100478 for_each_endpoint_of_node(np, ep_node) {
Laurent Pinchart96c02692014-01-21 15:57:26 +0100479 enum rcar_du_output output;
480 struct of_endpoint ep;
481 unsigned int i;
482 int ret;
483
Laurent Pinchart96c02692014-01-21 15:57:26 +0100484 ret = of_graph_parse_endpoint(ep_node, &ep);
485 if (ret < 0) {
486 of_node_put(ep_node);
487 return ret;
488 }
489
490 /* Find the output route corresponding to the port number. */
491 for (i = 0; i < RCAR_DU_OUTPUT_MAX; ++i) {
492 if (rcdu->info->routes[i].possible_crtcs &&
493 rcdu->info->routes[i].port == ep.port) {
494 output = i;
495 break;
496 }
497 }
498
499 if (i == RCAR_DU_OUTPUT_MAX) {
500 dev_warn(rcdu->dev,
501 "port %u references unexisting output, skipping\n",
502 ep.port);
503 continue;
504 }
505
506 /* Process the output pipeline. */
Laurent Pinchart2378ad12014-09-17 02:07:52 +0300507 ret = rcar_du_encoders_init_one(rcdu, output, &ep);
Laurent Pinchart96c02692014-01-21 15:57:26 +0100508 if (ret < 0) {
Laurent Pinchart347d7612014-12-11 01:26:04 +0200509 if (ret == -EPROBE_DEFER) {
510 of_node_put(ep_node);
511 return ret;
512 }
513
Laurent Pinchart347d7612014-12-11 01:26:04 +0200514 continue;
Laurent Pinchart96c02692014-01-21 15:57:26 +0100515 }
516
Laurent Pinchart898a2f32015-05-26 15:07:56 +0300517 num_encoders++;
Laurent Pinchart96c02692014-01-21 15:57:26 +0100518 }
519
520 return num_encoders;
521}
522
Laurent Pinchart9f6aee92015-04-28 23:59:29 +0300523static int rcar_du_properties_init(struct rcar_du_device *rcdu)
524{
525 rcdu->props.alpha =
526 drm_property_create_range(rcdu->ddev, 0, "alpha", 0, 255);
527 if (rcdu->props.alpha == NULL)
528 return -ENOMEM;
529
530 /* The color key is expressed as an RGB888 triplet stored in a 32-bit
531 * integer in XRGB8888 format. Bit 24 is used as a flag to disable (0)
532 * or enable source color keying (1).
533 */
534 rcdu->props.colorkey =
535 drm_property_create_range(rcdu->ddev, 0, "colorkey",
536 0, 0x01ffffff);
537 if (rcdu->props.colorkey == NULL)
538 return -ENOMEM;
539
Laurent Pinchart9f6aee92015-04-28 23:59:29 +0300540 return 0;
541}
542
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200543int rcar_du_modeset_init(struct rcar_du_device *rcdu)
544{
Laurent Pincharta5f0ef52013-06-17 00:29:25 +0200545 static const unsigned int mmio_offsets[] = {
546 DU0_REG_OFFSET, DU2_REG_OFFSET
547 };
548
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200549 struct drm_device *dev = rcdu->ddev;
550 struct drm_encoder *encoder;
Laurent Pinchart3864c6f2013-03-14 22:45:22 +0100551 struct drm_fbdev_cma *fbdev;
Laurent Pinchart96c02692014-01-21 15:57:26 +0100552 unsigned int num_encoders;
Laurent Pincharta5f0ef52013-06-17 00:29:25 +0200553 unsigned int num_groups;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200554 unsigned int i;
555 int ret;
556
Laurent Pinchart3864c6f2013-03-14 22:45:22 +0100557 drm_mode_config_init(dev);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200558
Laurent Pinchart3864c6f2013-03-14 22:45:22 +0100559 dev->mode_config.min_width = 0;
560 dev->mode_config.min_height = 0;
561 dev->mode_config.max_width = 4095;
562 dev->mode_config.max_height = 2047;
563 dev->mode_config.funcs = &rcar_du_mode_config_funcs;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200564
Laurent Pincharta5f0ef52013-06-17 00:29:25 +0200565 rcdu->num_crtcs = rcdu->info->num_crtcs;
Laurent Pinchartcb2025d2013-06-16 21:01:02 +0200566
Laurent Pinchart9f6aee92015-04-28 23:59:29 +0300567 ret = rcar_du_properties_init(rcdu);
568 if (ret < 0)
569 return ret;
570
Laurent Pinchart4f7b0d22016-10-19 00:51:35 +0300571 /* Initialize vertical blanking interrupts handling. Start with vblank
572 * disabled for all CRTCs.
573 */
574 ret = drm_vblank_init(dev, (1 << rcdu->info->num_crtcs) - 1);
575 if (ret < 0)
576 return ret;
577
Laurent Pincharta5f0ef52013-06-17 00:29:25 +0200578 /* Initialize the groups. */
579 num_groups = DIV_ROUND_UP(rcdu->num_crtcs, 2);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200580
Laurent Pincharta5f0ef52013-06-17 00:29:25 +0200581 for (i = 0; i < num_groups; ++i) {
582 struct rcar_du_group *rgrp = &rcdu->groups[i];
583
Laurent Pinchart5ee5a812015-02-25 18:27:19 +0200584 mutex_init(&rgrp->lock);
585
Laurent Pincharta5f0ef52013-06-17 00:29:25 +0200586 rgrp->dev = rcdu;
587 rgrp->mmio_offset = mmio_offsets[i];
588 rgrp->index = i;
Laurent Pinchartfe6fbe92015-04-28 17:36:33 +0300589 rgrp->num_crtcs = min(rcdu->num_crtcs - 2 * i, 2U);
Laurent Pincharta5f0ef52013-06-17 00:29:25 +0200590
Laurent Pinchart2610abf2015-04-28 22:00:28 +0300591 /* If we have more than one CRTCs in this group pre-associate
Laurent Pinchart2427b302015-09-07 17:34:26 +0300592 * the low-order planes with CRTC 0 and the high-order planes
593 * with CRTC 1 to minimize flicker occurring when the
594 * association is changed.
Laurent Pinchartc8af99b2015-04-29 00:51:01 +0300595 */
Laurent Pinchart2427b302015-09-07 17:34:26 +0300596 rgrp->dptsr_planes = rgrp->num_crtcs > 1
597 ? (rcdu->info->gen >= 3 ? 0x04 : 0xf0)
598 : 0;
Laurent Pinchartc8af99b2015-04-29 00:51:01 +0300599
Laurent Pinchart6d62ef32015-09-07 17:14:58 +0300600 if (!rcar_du_has(rcdu, RCAR_DU_FEATURE_VSP1_SOURCE)) {
601 ret = rcar_du_planes_init(rgrp);
602 if (ret < 0)
603 return ret;
604 }
605 }
606
607 /* Initialize the compositors. */
608 if (rcar_du_has(rcdu, RCAR_DU_FEATURE_VSP1_SOURCE)) {
609 for (i = 0; i < rcdu->num_crtcs; ++i) {
610 struct rcar_du_vsp *vsp = &rcdu->vsps[i];
611
612 vsp->index = i;
613 vsp->dev = rcdu;
614 rcdu->crtcs[i].vsp = vsp;
615
616 ret = rcar_du_vsp_init(vsp);
617 if (ret < 0)
618 return ret;
619 }
Laurent Pinchart3463ff62013-07-04 20:05:50 +0200620 }
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200621
Laurent Pincharta5f0ef52013-06-17 00:29:25 +0200622 /* Create the CRTCs. */
623 for (i = 0; i < rcdu->num_crtcs; ++i) {
624 struct rcar_du_group *rgrp = &rcdu->groups[i / 2];
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200625
Laurent Pincharta5f0ef52013-06-17 00:29:25 +0200626 ret = rcar_du_crtc_create(rgrp, i);
627 if (ret < 0)
628 return ret;
629 }
630
631 /* Initialize the encoders. */
Laurent Pinchart90374b52013-06-17 13:48:27 +0200632 ret = rcar_du_lvdsenc_init(rcdu);
633 if (ret < 0)
634 return ret;
635
Laurent Pinchart2378ad12014-09-17 02:07:52 +0300636 ret = rcar_du_encoders_init(rcdu);
Laurent Pinchart96c02692014-01-21 15:57:26 +0100637 if (ret < 0)
638 return ret;
Laurent Pinchart6978f122013-06-15 15:02:12 +0200639
Laurent Pinchart347d7612014-12-11 01:26:04 +0200640 if (ret == 0) {
641 dev_err(rcdu->dev, "error: no encoder could be initialized\n");
642 return -EINVAL;
643 }
644
Laurent Pinchart96c02692014-01-21 15:57:26 +0100645 num_encoders = ret;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200646
Laurent Pinchartef67a902013-06-17 03:13:11 +0200647 /* Set the possible CRTCs and possible clones. There's always at least
648 * one way for all encoders to clone each other, set all bits in the
649 * possible clones field.
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200650 */
651 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
652 struct rcar_du_encoder *renc = to_rcar_encoder(encoder);
Laurent Pinchartef67a902013-06-17 03:13:11 +0200653 const struct rcar_du_output_routing *route =
654 &rcdu->info->routes[renc->output];
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200655
Laurent Pinchartef67a902013-06-17 03:13:11 +0200656 encoder->possible_crtcs = route->possible_crtcs;
Laurent Pinchart96c02692014-01-21 15:57:26 +0100657 encoder->possible_clones = (1 << num_encoders) - 1;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200658 }
659
Laurent Pinchart3e8da872015-02-20 11:30:59 +0200660 drm_mode_config_reset(dev);
661
Laurent Pinchart3864c6f2013-03-14 22:45:22 +0100662 drm_kms_helper_poll_init(dev);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200663
Laurent Pinchart931b7332015-02-24 03:51:26 +0200664 if (dev->mode_config.num_connector) {
665 fbdev = drm_fbdev_cma_init(dev, 32, dev->mode_config.num_crtc,
666 dev->mode_config.num_connector);
667 if (IS_ERR(fbdev))
668 return PTR_ERR(fbdev);
Laurent Pinchart3864c6f2013-03-14 22:45:22 +0100669
Laurent Pinchart931b7332015-02-24 03:51:26 +0200670 rcdu->fbdev = fbdev;
671 } else {
672 dev_info(rcdu->dev,
673 "no connector found, disabling fbdev emulation\n");
674 }
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200675
676 return 0;
677}