blob: e2560aa26ef4fc27e43c6f2f3768ee69fb9d8c94 [file] [log] [blame]
Laurent Pinchart4bf8e192013-06-19 13:54:11 +02001/*
2 * rcar_du_crtc.c -- R-Car Display Unit CRTCs
3 *
Laurent Pinchart36d50462014-02-06 18:13:52 +01004 * Copyright (C) 2013-2014 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 <linux/clk.h>
15#include <linux/mutex.h>
16
17#include <drm/drmP.h>
Laurent Pinchart3e8da872015-02-20 11:30:59 +020018#include <drm/drm_atomic.h>
19#include <drm/drm_atomic_helper.h>
Laurent Pinchart4bf8e192013-06-19 13:54:11 +020020#include <drm/drm_crtc.h>
21#include <drm/drm_crtc_helper.h>
22#include <drm/drm_fb_cma_helper.h>
23#include <drm/drm_gem_cma_helper.h>
Daniel Vetter3cb9ae42014-10-29 10:03:57 +010024#include <drm/drm_plane_helper.h>
Laurent Pinchart4bf8e192013-06-19 13:54:11 +020025
26#include "rcar_du_crtc.h"
27#include "rcar_du_drv.h"
28#include "rcar_du_kms.h"
Laurent Pinchart4bf8e192013-06-19 13:54:11 +020029#include "rcar_du_plane.h"
30#include "rcar_du_regs.h"
Laurent Pinchart4bf8e192013-06-19 13:54:11 +020031
Laurent Pinchart4bf8e192013-06-19 13:54:11 +020032static u32 rcar_du_crtc_read(struct rcar_du_crtc *rcrtc, u32 reg)
33{
Laurent Pinchartcb2025d2013-06-16 21:01:02 +020034 struct rcar_du_device *rcdu = rcrtc->group->dev;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +020035
36 return rcar_du_read(rcdu, rcrtc->mmio_offset + reg);
37}
38
39static void rcar_du_crtc_write(struct rcar_du_crtc *rcrtc, u32 reg, u32 data)
40{
Laurent Pinchartcb2025d2013-06-16 21:01:02 +020041 struct rcar_du_device *rcdu = rcrtc->group->dev;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +020042
43 rcar_du_write(rcdu, rcrtc->mmio_offset + reg, data);
44}
45
46static void rcar_du_crtc_clr(struct rcar_du_crtc *rcrtc, u32 reg, u32 clr)
47{
Laurent Pinchartcb2025d2013-06-16 21:01:02 +020048 struct rcar_du_device *rcdu = rcrtc->group->dev;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +020049
50 rcar_du_write(rcdu, rcrtc->mmio_offset + reg,
51 rcar_du_read(rcdu, rcrtc->mmio_offset + reg) & ~clr);
52}
53
54static void rcar_du_crtc_set(struct rcar_du_crtc *rcrtc, u32 reg, u32 set)
55{
Laurent Pinchartcb2025d2013-06-16 21:01:02 +020056 struct rcar_du_device *rcdu = rcrtc->group->dev;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +020057
58 rcar_du_write(rcdu, rcrtc->mmio_offset + reg,
59 rcar_du_read(rcdu, rcrtc->mmio_offset + reg) | set);
60}
61
62static void rcar_du_crtc_clr_set(struct rcar_du_crtc *rcrtc, u32 reg,
63 u32 clr, u32 set)
64{
Laurent Pinchartcb2025d2013-06-16 21:01:02 +020065 struct rcar_du_device *rcdu = rcrtc->group->dev;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +020066 u32 value = rcar_du_read(rcdu, rcrtc->mmio_offset + reg);
67
68 rcar_du_write(rcdu, rcrtc->mmio_offset + reg, (value & ~clr) | set);
69}
70
Laurent Pinchartf66ee302013-06-14 14:15:01 +020071static int rcar_du_crtc_get(struct rcar_du_crtc *rcrtc)
72{
Laurent Pinchartf66ee302013-06-14 14:15:01 +020073 int ret;
74
75 ret = clk_prepare_enable(rcrtc->clock);
76 if (ret < 0)
77 return ret;
78
Laurent Pinchart1b30dbd2014-12-09 00:24:49 +020079 ret = clk_prepare_enable(rcrtc->extclock);
80 if (ret < 0)
81 goto error_clock;
82
Laurent Pinchartcb2025d2013-06-16 21:01:02 +020083 ret = rcar_du_group_get(rcrtc->group);
Laurent Pinchartf66ee302013-06-14 14:15:01 +020084 if (ret < 0)
Laurent Pinchart1b30dbd2014-12-09 00:24:49 +020085 goto error_group;
Laurent Pinchartf66ee302013-06-14 14:15:01 +020086
Laurent Pinchart1b30dbd2014-12-09 00:24:49 +020087 return 0;
88
89error_group:
90 clk_disable_unprepare(rcrtc->extclock);
91error_clock:
92 clk_disable_unprepare(rcrtc->clock);
Laurent Pinchartf66ee302013-06-14 14:15:01 +020093 return ret;
94}
95
96static void rcar_du_crtc_put(struct rcar_du_crtc *rcrtc)
97{
Laurent Pinchartcb2025d2013-06-16 21:01:02 +020098 rcar_du_group_put(rcrtc->group);
Laurent Pinchart1b30dbd2014-12-09 00:24:49 +020099
100 clk_disable_unprepare(rcrtc->extclock);
Laurent Pinchartf66ee302013-06-14 14:15:01 +0200101 clk_disable_unprepare(rcrtc->clock);
102}
103
Laurent Pinchart17f6b8a2015-02-18 13:42:40 +0200104/* -----------------------------------------------------------------------------
105 * Hardware Setup
106 */
107
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200108static void rcar_du_crtc_set_display_timing(struct rcar_du_crtc *rcrtc)
109{
Laurent Pinchart845f4632015-02-18 15:47:27 +0200110 const struct drm_display_mode *mode = &rcrtc->crtc.state->adjusted_mode;
Laurent Pinchart1b30dbd2014-12-09 00:24:49 +0200111 unsigned long mode_clock = mode->clock * 1000;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200112 unsigned long clk;
113 u32 value;
Laurent Pinchart1b30dbd2014-12-09 00:24:49 +0200114 u32 escr;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200115 u32 div;
116
Laurent Pinchart1b30dbd2014-12-09 00:24:49 +0200117 /* Compute the clock divisor and select the internal or external dot
118 * clock based on the requested frequency.
119 */
Laurent Pinchartf66ee302013-06-14 14:15:01 +0200120 clk = clk_get_rate(rcrtc->clock);
Laurent Pinchart1b30dbd2014-12-09 00:24:49 +0200121 div = DIV_ROUND_CLOSEST(clk, mode_clock);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200122 div = clamp(div, 1U, 64U) - 1;
Laurent Pinchart1b30dbd2014-12-09 00:24:49 +0200123 escr = div | ESCR_DCLKSEL_CLKS;
124
125 if (rcrtc->extclock) {
126 unsigned long extclk;
127 unsigned long extrate;
128 unsigned long rate;
129 u32 extdiv;
130
131 extclk = clk_get_rate(rcrtc->extclock);
132 extdiv = DIV_ROUND_CLOSEST(extclk, mode_clock);
133 extdiv = clamp(extdiv, 1U, 64U) - 1;
134
135 rate = clk / (div + 1);
136 extrate = extclk / (extdiv + 1);
137
138 if (abs((long)extrate - (long)mode_clock) <
139 abs((long)rate - (long)mode_clock)) {
140 dev_dbg(rcrtc->group->dev->dev,
141 "crtc%u: using external clock\n", rcrtc->index);
142 escr = extdiv | ESCR_DCLKSEL_DCLKIN;
143 }
144 }
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200145
Laurent Pincharta5f0ef52013-06-17 00:29:25 +0200146 rcar_du_group_write(rcrtc->group, rcrtc->index % 2 ? ESCR2 : ESCR,
Laurent Pinchart1b30dbd2014-12-09 00:24:49 +0200147 escr);
Laurent Pincharta5f0ef52013-06-17 00:29:25 +0200148 rcar_du_group_write(rcrtc->group, rcrtc->index % 2 ? OTAR2 : OTAR, 0);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200149
150 /* Signal polarities */
151 value = ((mode->flags & DRM_MODE_FLAG_PVSYNC) ? 0 : DSMR_VSL)
152 | ((mode->flags & DRM_MODE_FLAG_PHSYNC) ? 0 : DSMR_HSL)
Laurent Pinchartf67e1e02014-12-09 00:40:59 +0200153 | DSMR_DIPM_DE | DSMR_CSPM;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200154 rcar_du_crtc_write(rcrtc, DSMR, value);
155
156 /* Display timings */
157 rcar_du_crtc_write(rcrtc, HDSR, mode->htotal - mode->hsync_start - 19);
158 rcar_du_crtc_write(rcrtc, HDER, mode->htotal - mode->hsync_start +
159 mode->hdisplay - 19);
160 rcar_du_crtc_write(rcrtc, HSWR, mode->hsync_end -
161 mode->hsync_start - 1);
162 rcar_du_crtc_write(rcrtc, HCR, mode->htotal - 1);
163
Laurent Pinchart906eff72014-12-09 19:11:18 +0200164 rcar_du_crtc_write(rcrtc, VDSR, mode->crtc_vtotal -
165 mode->crtc_vsync_end - 2);
166 rcar_du_crtc_write(rcrtc, VDER, mode->crtc_vtotal -
167 mode->crtc_vsync_end +
168 mode->crtc_vdisplay - 2);
169 rcar_du_crtc_write(rcrtc, VSPR, mode->crtc_vtotal -
170 mode->crtc_vsync_end +
171 mode->crtc_vsync_start - 1);
172 rcar_du_crtc_write(rcrtc, VCR, mode->crtc_vtotal - 1);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200173
174 rcar_du_crtc_write(rcrtc, DESR, mode->htotal - mode->hsync_start);
175 rcar_du_crtc_write(rcrtc, DEWR, mode->hdisplay);
176}
177
Laurent Pinchartef67a902013-06-17 03:13:11 +0200178void rcar_du_crtc_route_output(struct drm_crtc *crtc,
179 enum rcar_du_output output)
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200180{
181 struct rcar_du_crtc *rcrtc = to_rcar_crtc(crtc);
Laurent Pinchartef67a902013-06-17 03:13:11 +0200182 struct rcar_du_device *rcdu = rcrtc->group->dev;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200183
184 /* Store the route from the CRTC output to the DU output. The DU will be
185 * configured when starting the CRTC.
186 */
Laurent Pinchartef67a902013-06-17 03:13:11 +0200187 rcrtc->outputs |= BIT(output);
Laurent Pinchart7cbc05c2013-06-17 03:20:08 +0200188
Laurent Pinchart0c1c8772014-12-09 00:21:12 +0200189 /* Store RGB routing to DPAD0, the hardware will be configured when
190 * starting the CRTC.
191 */
192 if (output == RCAR_DU_OUTPUT_DPAD0)
Laurent Pinchart7cbc05c2013-06-17 03:20:08 +0200193 rcdu->dpad0_source = rcrtc->index;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200194}
195
Laurent Pinchart4407cc02015-02-23 02:36:31 +0200196static unsigned int plane_zpos(struct rcar_du_plane *plane)
197{
Laurent Pinchartec69a402015-04-29 00:48:17 +0300198 return to_rcar_plane_state(plane->plane.state)->zpos;
Laurent Pinchart4407cc02015-02-23 02:36:31 +0200199}
200
Laurent Pinchart5bfcbce2015-02-23 02:59:35 +0200201static const struct rcar_du_format_info *
202plane_format(struct rcar_du_plane *plane)
203{
Laurent Pinchartec69a402015-04-29 00:48:17 +0300204 return to_rcar_plane_state(plane->plane.state)->format;
Laurent Pinchart5bfcbce2015-02-23 02:59:35 +0200205}
206
Laurent Pinchart52055ba2015-02-23 01:39:13 +0200207static void rcar_du_crtc_update_planes(struct rcar_du_crtc *rcrtc)
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200208{
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200209 struct rcar_du_plane *planes[RCAR_DU_NUM_HW_PLANES];
210 unsigned int num_planes = 0;
Laurent Pinchart2a57e9b2015-04-28 18:01:45 +0300211 unsigned int dptsr_planes;
212 unsigned int hwplanes = 0;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200213 unsigned int prio = 0;
214 unsigned int i;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200215 u32 dspr = 0;
216
Laurent Pinchartd6aed572015-05-25 16:32:45 +0300217 for (i = 0; i < rcrtc->group->num_planes; ++i) {
Laurent Pinchart99caede2015-04-29 00:05:56 +0300218 struct rcar_du_plane *plane = &rcrtc->group->planes[i];
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200219 unsigned int j;
220
Laurent Pinchart47094192015-02-22 19:24:59 +0200221 if (plane->plane.state->crtc != &rcrtc->crtc)
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200222 continue;
223
224 /* Insert the plane in the sorted planes array. */
225 for (j = num_planes++; j > 0; --j) {
Laurent Pinchart4407cc02015-02-23 02:36:31 +0200226 if (plane_zpos(planes[j-1]) <= plane_zpos(plane))
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200227 break;
228 planes[j] = planes[j-1];
229 }
230
231 planes[j] = plane;
Laurent Pinchart5bfcbce2015-02-23 02:59:35 +0200232 prio += plane_format(plane)->planes * 4;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200233 }
234
235 for (i = 0; i < num_planes; ++i) {
236 struct rcar_du_plane *plane = planes[i];
Laurent Pinchart5ee5a812015-02-25 18:27:19 +0200237 struct drm_plane_state *state = plane->plane.state;
Laurent Pinchartec69a402015-04-29 00:48:17 +0300238 unsigned int index = to_rcar_plane_state(state)->hwindex;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200239
240 prio -= 4;
241 dspr |= (index + 1) << prio;
Laurent Pinchart2a57e9b2015-04-28 18:01:45 +0300242 hwplanes |= 1 << index;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200243
Laurent Pinchart5bfcbce2015-02-23 02:59:35 +0200244 if (plane_format(plane)->planes == 2) {
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200245 index = (index + 1) % 8;
246
247 prio -= 4;
248 dspr |= (index + 1) << prio;
Laurent Pinchart2a57e9b2015-04-28 18:01:45 +0300249 hwplanes |= 1 << index;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200250 }
251 }
252
Laurent Pinchart2a57e9b2015-04-28 18:01:45 +0300253 /* Update the planes to display timing and dot clock generator
254 * associations.
255 *
256 * Updating the DPTSR register requires restarting the CRTC group,
257 * resulting in visible flicker. To mitigate the issue only update the
258 * association if needed by enabled planes. Planes being disabled will
259 * keep their current association.
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200260 */
Laurent Pinchart2a57e9b2015-04-28 18:01:45 +0300261 mutex_lock(&rcrtc->group->lock);
262
263 dptsr_planes = rcrtc->index % 2 ? rcrtc->group->dptsr_planes | hwplanes
264 : rcrtc->group->dptsr_planes & ~hwplanes;
265
266 if (dptsr_planes != rcrtc->group->dptsr_planes) {
267 rcar_du_group_write(rcrtc->group, DPTSR,
268 (dptsr_planes << 16) | dptsr_planes);
269 rcrtc->group->dptsr_planes = dptsr_planes;
270
271 if (rcrtc->group->used_crtcs)
272 rcar_du_group_restart(rcrtc->group);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200273 }
274
Laurent Pinchart2af03942013-08-24 02:17:03 +0200275 /* Restart the group if plane sources have changed. */
276 if (rcrtc->group->need_restart)
277 rcar_du_group_restart(rcrtc->group);
278
Laurent Pinchart2a57e9b2015-04-28 18:01:45 +0300279 mutex_unlock(&rcrtc->group->lock);
280
Laurent Pincharta5f0ef52013-06-17 00:29:25 +0200281 rcar_du_group_write(rcrtc->group, rcrtc->index % 2 ? DS2PR : DS1PR,
282 dspr);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200283}
284
Laurent Pinchart17f6b8a2015-02-18 13:42:40 +0200285/* -----------------------------------------------------------------------------
286 * Page Flip
287 */
288
Laurent Pinchart17f6b8a2015-02-18 13:42:40 +0200289static void rcar_du_crtc_finish_page_flip(struct rcar_du_crtc *rcrtc)
290{
291 struct drm_pending_vblank_event *event;
292 struct drm_device *dev = rcrtc->crtc.dev;
293 unsigned long flags;
294
295 spin_lock_irqsave(&dev->event_lock, flags);
296 event = rcrtc->event;
297 rcrtc->event = NULL;
298 spin_unlock_irqrestore(&dev->event_lock, flags);
299
300 if (event == NULL)
301 return;
302
303 spin_lock_irqsave(&dev->event_lock, flags);
304 drm_send_vblank_event(dev, rcrtc->index, event);
Laurent Pinchart36693f32015-02-18 13:21:56 +0200305 wake_up(&rcrtc->flip_wait);
Laurent Pinchart17f6b8a2015-02-18 13:42:40 +0200306 spin_unlock_irqrestore(&dev->event_lock, flags);
307
Laurent Pinchart0cd90a52015-02-18 13:14:46 +0200308 drm_crtc_vblank_put(&rcrtc->crtc);
Laurent Pinchart17f6b8a2015-02-18 13:42:40 +0200309}
310
Laurent Pinchart36693f32015-02-18 13:21:56 +0200311static bool rcar_du_crtc_page_flip_pending(struct rcar_du_crtc *rcrtc)
312{
313 struct drm_device *dev = rcrtc->crtc.dev;
314 unsigned long flags;
315 bool pending;
316
317 spin_lock_irqsave(&dev->event_lock, flags);
318 pending = rcrtc->event != NULL;
319 spin_unlock_irqrestore(&dev->event_lock, flags);
320
321 return pending;
322}
323
324static void rcar_du_crtc_wait_page_flip(struct rcar_du_crtc *rcrtc)
325{
326 struct rcar_du_device *rcdu = rcrtc->group->dev;
327
328 if (wait_event_timeout(rcrtc->flip_wait,
329 !rcar_du_crtc_page_flip_pending(rcrtc),
330 msecs_to_jiffies(50)))
331 return;
332
333 dev_warn(rcdu->dev, "page flip timeout\n");
334
335 rcar_du_crtc_finish_page_flip(rcrtc);
336}
337
Laurent Pinchart17f6b8a2015-02-18 13:42:40 +0200338/* -----------------------------------------------------------------------------
339 * Start/Stop and Suspend/Resume
340 */
341
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200342static void rcar_du_crtc_start(struct rcar_du_crtc *rcrtc)
343{
344 struct drm_crtc *crtc = &rcrtc->crtc;
Laurent Pinchart906eff72014-12-09 19:11:18 +0200345 bool interlaced;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200346
347 if (rcrtc->started)
348 return;
349
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200350 /* Set display off and background to black */
351 rcar_du_crtc_write(rcrtc, DOOR, DOOR_RGB(0, 0, 0));
352 rcar_du_crtc_write(rcrtc, BPOR, BPOR_RGB(0, 0, 0));
353
354 /* Configure display timings and output routing */
355 rcar_du_crtc_set_display_timing(rcrtc);
Laurent Pinchart2fd22db2013-06-17 00:11:05 +0200356 rcar_du_group_set_routing(rcrtc->group);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200357
Laurent Pinchart52055ba2015-02-23 01:39:13 +0200358 /* Start with all planes disabled. */
359 rcar_du_group_write(rcrtc->group, rcrtc->index % 2 ? DS2PR : DS1PR, 0);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200360
361 /* Select master sync mode. This enables display operation in master
362 * sync mode (with the HSYNC and VSYNC signals configured as outputs and
363 * actively driven).
364 */
Laurent Pinchart906eff72014-12-09 19:11:18 +0200365 interlaced = rcrtc->crtc.mode.flags & DRM_MODE_FLAG_INTERLACE;
366 rcar_du_crtc_clr_set(rcrtc, DSYSR, DSYSR_TVM_MASK | DSYSR_SCM_MASK,
367 (interlaced ? DSYSR_SCM_INT_VIDEO : 0) |
368 DSYSR_TVM_MASTER);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200369
Laurent Pinchartcb2025d2013-06-16 21:01:02 +0200370 rcar_du_group_start_stop(rcrtc->group, true);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200371
Laurent Pinchart0cd90a52015-02-18 13:14:46 +0200372 /* Turn vertical blanking interrupt reporting back on. */
373 drm_crtc_vblank_on(crtc);
374
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200375 rcrtc->started = true;
376}
377
378static void rcar_du_crtc_stop(struct rcar_du_crtc *rcrtc)
379{
380 struct drm_crtc *crtc = &rcrtc->crtc;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200381
382 if (!rcrtc->started)
383 return;
384
Laurent Pinchart911316f2015-05-14 15:01:47 +0300385 /* Disable all planes and wait for the change to take effect. This is
386 * required as the DSnPR registers are updated on vblank, and no vblank
387 * will occur once the CRTC is stopped. Disabling planes when starting
388 * the CRTC thus wouldn't be enough as it would start scanning out
389 * immediately from old frame buffers until the next vblank.
390 *
391 * This increases the CRTC stop delay, especially when multiple CRTCs
392 * are stopped in one operation as we now wait for one vblank per CRTC.
393 * Whether this can be improved needs to be researched.
394 */
395 rcar_du_group_write(rcrtc->group, rcrtc->index % 2 ? DS2PR : DS1PR, 0);
396 drm_crtc_wait_one_vblank(crtc);
397
Laurent Pinchart0cd90a52015-02-18 13:14:46 +0200398 /* Disable vertical blanking interrupt reporting. We first need to wait
399 * for page flip completion before stopping the CRTC as userspace
400 * expects page flips to eventually complete.
Laurent Pinchart36693f32015-02-18 13:21:56 +0200401 */
402 rcar_du_crtc_wait_page_flip(rcrtc);
Laurent Pinchart0cd90a52015-02-18 13:14:46 +0200403 drm_crtc_vblank_off(crtc);
Laurent Pinchart36693f32015-02-18 13:21:56 +0200404
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200405 /* Select switch sync mode. This stops display operation and configures
406 * the HSYNC and VSYNC signals as inputs.
407 */
408 rcar_du_crtc_clr_set(rcrtc, DSYSR, DSYSR_TVM_MASK, DSYSR_TVM_SWITCH);
409
Laurent Pinchartcb2025d2013-06-16 21:01:02 +0200410 rcar_du_group_start_stop(rcrtc->group, false);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200411
412 rcrtc->started = false;
413}
414
415void rcar_du_crtc_suspend(struct rcar_du_crtc *rcrtc)
416{
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200417 rcar_du_crtc_stop(rcrtc);
Laurent Pinchartf66ee302013-06-14 14:15:01 +0200418 rcar_du_crtc_put(rcrtc);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200419}
420
421void rcar_du_crtc_resume(struct rcar_du_crtc *rcrtc)
422{
Laurent Pinchart52055ba2015-02-23 01:39:13 +0200423 unsigned int i;
424
Laurent Pinchart6ea22ab2016-01-25 00:28:11 +0200425 if (!rcrtc->crtc.state->active)
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200426 return;
427
Laurent Pinchartf66ee302013-06-14 14:15:01 +0200428 rcar_du_crtc_get(rcrtc);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200429 rcar_du_crtc_start(rcrtc);
Laurent Pinchart52055ba2015-02-23 01:39:13 +0200430
431 /* Commit the planes state. */
Laurent Pinchartd6aed572015-05-25 16:32:45 +0300432 for (i = 0; i < rcrtc->group->num_planes; ++i) {
Laurent Pinchart99caede2015-04-29 00:05:56 +0300433 struct rcar_du_plane *plane = &rcrtc->group->planes[i];
Laurent Pinchart52055ba2015-02-23 01:39:13 +0200434
435 if (plane->plane.state->crtc != &rcrtc->crtc)
436 continue;
437
438 rcar_du_plane_setup(plane);
439 }
440
Laurent Pinchart52055ba2015-02-23 01:39:13 +0200441 rcar_du_crtc_update_planes(rcrtc);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200442}
443
Laurent Pinchart17f6b8a2015-02-18 13:42:40 +0200444/* -----------------------------------------------------------------------------
445 * CRTC Functions
446 */
447
Laurent Pinchartbeff1552015-02-20 14:05:21 +0200448static void rcar_du_crtc_enable(struct drm_crtc *crtc)
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200449{
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200450 struct rcar_du_crtc *rcrtc = to_rcar_crtc(crtc);
451
Laurent Pinchartbeff1552015-02-20 14:05:21 +0200452 rcar_du_crtc_get(rcrtc);
453 rcar_du_crtc_start(rcrtc);
Laurent Pinchartbeff1552015-02-20 14:05:21 +0200454}
455
456static void rcar_du_crtc_disable(struct drm_crtc *crtc)
457{
458 struct rcar_du_crtc *rcrtc = to_rcar_crtc(crtc);
459
Laurent Pinchartbeff1552015-02-20 14:05:21 +0200460 rcar_du_crtc_stop(rcrtc);
461 rcar_du_crtc_put(rcrtc);
462
Laurent Pinchartcf1cc6f2015-02-20 15:16:55 +0200463 rcrtc->outputs = 0;
Laurent Pinchartbeff1552015-02-20 14:05:21 +0200464}
465
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200466static bool rcar_du_crtc_mode_fixup(struct drm_crtc *crtc,
467 const struct drm_display_mode *mode,
468 struct drm_display_mode *adjusted_mode)
469{
470 /* TODO Fixup modes */
471 return true;
472}
473
Maarten Lankhorst613d2b22015-07-21 13:28:58 +0200474static void rcar_du_crtc_atomic_begin(struct drm_crtc *crtc,
475 struct drm_crtc_state *old_crtc_state)
Laurent Pinchart920888a2015-02-18 12:18:05 +0200476{
Laurent Pinchartd5746642015-02-23 01:04:21 +0200477 struct drm_pending_vblank_event *event = crtc->state->event;
Laurent Pinchart920888a2015-02-18 12:18:05 +0200478 struct rcar_du_crtc *rcrtc = to_rcar_crtc(crtc);
Laurent Pinchartd5746642015-02-23 01:04:21 +0200479 struct drm_device *dev = rcrtc->crtc.dev;
480 unsigned long flags;
Laurent Pinchart920888a2015-02-18 12:18:05 +0200481
Laurent Pinchartd5746642015-02-23 01:04:21 +0200482 if (event) {
Laurent Pinchartd5746642015-02-23 01:04:21 +0200483 WARN_ON(drm_crtc_vblank_get(crtc) != 0);
484
485 spin_lock_irqsave(&dev->event_lock, flags);
486 rcrtc->event = event;
487 spin_unlock_irqrestore(&dev->event_lock, flags);
488 }
Laurent Pinchart920888a2015-02-18 12:18:05 +0200489}
490
Maarten Lankhorst613d2b22015-07-21 13:28:58 +0200491static void rcar_du_crtc_atomic_flush(struct drm_crtc *crtc,
492 struct drm_crtc_state *old_crtc_state)
Laurent Pinchart920888a2015-02-18 12:18:05 +0200493{
494 struct rcar_du_crtc *rcrtc = to_rcar_crtc(crtc);
495
Laurent Pinchart52055ba2015-02-23 01:39:13 +0200496 rcar_du_crtc_update_planes(rcrtc);
Laurent Pinchart920888a2015-02-18 12:18:05 +0200497}
498
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200499static const struct drm_crtc_helper_funcs crtc_helper_funcs = {
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200500 .mode_fixup = rcar_du_crtc_mode_fixup,
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200501 .disable = rcar_du_crtc_disable,
Laurent Pinchartbeff1552015-02-20 14:05:21 +0200502 .enable = rcar_du_crtc_enable,
Laurent Pinchart920888a2015-02-18 12:18:05 +0200503 .atomic_begin = rcar_du_crtc_atomic_begin,
504 .atomic_flush = rcar_du_crtc_atomic_flush,
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200505};
506
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200507static const struct drm_crtc_funcs crtc_funcs = {
Laurent Pinchart3e8da872015-02-20 11:30:59 +0200508 .reset = drm_atomic_helper_crtc_reset,
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200509 .destroy = drm_crtc_cleanup,
Laurent Pinchartcf1cc6f2015-02-20 15:16:55 +0200510 .set_config = drm_atomic_helper_set_config,
Laurent Pinchartd5746642015-02-23 01:04:21 +0200511 .page_flip = drm_atomic_helper_page_flip,
Laurent Pinchart3e8da872015-02-20 11:30:59 +0200512 .atomic_duplicate_state = drm_atomic_helper_crtc_duplicate_state,
513 .atomic_destroy_state = drm_atomic_helper_crtc_destroy_state,
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200514};
515
Laurent Pinchart17f6b8a2015-02-18 13:42:40 +0200516/* -----------------------------------------------------------------------------
517 * Interrupt Handling
518 */
519
520static irqreturn_t rcar_du_crtc_irq(int irq, void *arg)
521{
522 struct rcar_du_crtc *rcrtc = arg;
523 irqreturn_t ret = IRQ_NONE;
524 u32 status;
525
526 status = rcar_du_crtc_read(rcrtc, DSSR);
527 rcar_du_crtc_write(rcrtc, DSRCR, status & DSRCR_MASK);
528
529 if (status & DSSR_FRM) {
530 drm_handle_vblank(rcrtc->crtc.dev, rcrtc->index);
531 rcar_du_crtc_finish_page_flip(rcrtc);
532 ret = IRQ_HANDLED;
533 }
534
535 return ret;
536}
537
538/* -----------------------------------------------------------------------------
539 * Initialization
540 */
541
Laurent Pinchartcb2025d2013-06-16 21:01:02 +0200542int rcar_du_crtc_create(struct rcar_du_group *rgrp, unsigned int index)
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200543{
Laurent Pincharta5f0ef52013-06-17 00:29:25 +0200544 static const unsigned int mmio_offsets[] = {
545 DU0_REG_OFFSET, DU1_REG_OFFSET, DU2_REG_OFFSET
546 };
547
Laurent Pinchartcb2025d2013-06-16 21:01:02 +0200548 struct rcar_du_device *rcdu = rgrp->dev;
Laurent Pinchartf66ee302013-06-14 14:15:01 +0200549 struct platform_device *pdev = to_platform_device(rcdu->dev);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200550 struct rcar_du_crtc *rcrtc = &rcdu->crtcs[index];
551 struct drm_crtc *crtc = &rcrtc->crtc;
Laurent Pinchartf66ee302013-06-14 14:15:01 +0200552 unsigned int irqflags;
Laurent Pinchart1b30dbd2014-12-09 00:24:49 +0200553 struct clk *clk;
554 char clk_name[9];
Laurent Pinchartf66ee302013-06-14 14:15:01 +0200555 char *name;
556 int irq;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200557 int ret;
558
Laurent Pinchart1b30dbd2014-12-09 00:24:49 +0200559 /* Get the CRTC clock and the optional external clock. */
Laurent Pinchartf66ee302013-06-14 14:15:01 +0200560 if (rcar_du_has(rcdu, RCAR_DU_FEATURE_CRTC_IRQ_CLOCK)) {
561 sprintf(clk_name, "du.%u", index);
562 name = clk_name;
563 } else {
564 name = NULL;
565 }
566
567 rcrtc->clock = devm_clk_get(rcdu->dev, name);
568 if (IS_ERR(rcrtc->clock)) {
569 dev_err(rcdu->dev, "no clock for CRTC %u\n", index);
570 return PTR_ERR(rcrtc->clock);
571 }
572
Laurent Pinchart1b30dbd2014-12-09 00:24:49 +0200573 sprintf(clk_name, "dclkin.%u", index);
574 clk = devm_clk_get(rcdu->dev, clk_name);
575 if (!IS_ERR(clk)) {
576 rcrtc->extclock = clk;
577 } else if (PTR_ERR(rcrtc->clock) == -EPROBE_DEFER) {
578 dev_info(rcdu->dev, "can't get external clock %u\n", index);
579 return -EPROBE_DEFER;
580 }
581
Laurent Pinchart36693f32015-02-18 13:21:56 +0200582 init_waitqueue_head(&rcrtc->flip_wait);
583
Laurent Pinchartcb2025d2013-06-16 21:01:02 +0200584 rcrtc->group = rgrp;
Laurent Pincharta5f0ef52013-06-17 00:29:25 +0200585 rcrtc->mmio_offset = mmio_offsets[index];
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200586 rcrtc->index = index;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200587
Laurent Pinchart53dff602015-02-23 03:20:39 +0200588 ret = drm_crtc_init_with_planes(rcdu->ddev, crtc,
Laurent Pinchart99caede2015-04-29 00:05:56 +0300589 &rgrp->planes[index % 2].plane,
Ville Syrjäläf9882872015-12-09 16:19:31 +0200590 NULL, &crtc_funcs, NULL);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200591 if (ret < 0)
592 return ret;
593
594 drm_crtc_helper_add(crtc, &crtc_helper_funcs);
595
Laurent Pinchart0cd90a52015-02-18 13:14:46 +0200596 /* Start with vertical blanking interrupt reporting disabled. */
597 drm_crtc_vblank_off(crtc);
598
Laurent Pinchartf66ee302013-06-14 14:15:01 +0200599 /* Register the interrupt handler. */
600 if (rcar_du_has(rcdu, RCAR_DU_FEATURE_CRTC_IRQ_CLOCK)) {
601 irq = platform_get_irq(pdev, index);
602 irqflags = 0;
603 } else {
604 irq = platform_get_irq(pdev, 0);
605 irqflags = IRQF_SHARED;
606 }
607
608 if (irq < 0) {
609 dev_err(rcdu->dev, "no IRQ for CRTC %u\n", index);
Julia Lawall6512f5f2014-11-23 14:11:17 +0100610 return irq;
Laurent Pinchartf66ee302013-06-14 14:15:01 +0200611 }
612
613 ret = devm_request_irq(rcdu->dev, irq, rcar_du_crtc_irq, irqflags,
614 dev_name(rcdu->dev), rcrtc);
615 if (ret < 0) {
616 dev_err(rcdu->dev,
617 "failed to register IRQ for CRTC %u\n", index);
618 return ret;
619 }
620
Laurent Pinchart4bf8e192013-06-19 13:54:11 +0200621 return 0;
622}
623
624void rcar_du_crtc_enable_vblank(struct rcar_du_crtc *rcrtc, bool enable)
625{
626 if (enable) {
627 rcar_du_crtc_write(rcrtc, DSRCR, DSRCR_VBCL);
628 rcar_du_crtc_set(rcrtc, DIER, DIER_VBE);
629 } else {
630 rcar_du_crtc_clr(rcrtc, DIER, DIER_VBE);
631 }
632}