blob: f38703e7a10d5b87d84bf2378a1555d554c1d896 [file] [log] [blame]
Kuninori Morimoto0bbce9e2018-07-26 02:37:32 +00001// SPDX-License-Identifier: GPL-2.0+
Laurent Pinchartcb2025d2013-06-16 21:01:02 +02002/*
3 * rcar_du_group.c -- R-Car Display Unit Channels Pair
4 *
Laurent Pinchart2427b302015-09-07 17:34:26 +03005 * Copyright (C) 2013-2015 Renesas Electronics Corporation
Laurent Pinchartcb2025d2013-06-16 21:01:02 +02006 *
7 * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com)
Laurent Pinchartcb2025d2013-06-16 21:01:02 +02008 */
9
10/*
11 * The R8A7779 DU is split in per-CRTC resources (scan-out engine, blending
12 * unit, timings generator, ...) and device-global resources (start/stop
13 * control, planes, ...) shared between the two CRTCs.
14 *
15 * The R8A7790 introduced a third CRTC with its own set of global resources.
16 * This would be modeled as two separate DU device instances if it wasn't for
17 * a handful or resources that are shared between the three CRTCs (mostly
18 * related to input and output routing). For this reason the R8A7790 DU must be
19 * modeled as a single device with three CRTCs, two sets of "semi-global"
20 * resources, and a few device-global resources.
21 *
22 * The rcar_du_group object is a driver specific object, without any real
23 * counterpart in the DU documentation, that models those semi-global resources.
24 */
25
Laurent Pinchart7cbc05c2013-06-17 03:20:08 +020026#include <linux/clk.h>
Laurent Pinchartcb2025d2013-06-16 21:01:02 +020027#include <linux/io.h>
28
29#include "rcar_du_drv.h"
30#include "rcar_du_group.h"
31#include "rcar_du_regs.h"
32
Laurent Pincharta5f0ef52013-06-17 00:29:25 +020033u32 rcar_du_group_read(struct rcar_du_group *rgrp, u32 reg)
Laurent Pinchartcb2025d2013-06-16 21:01:02 +020034{
35 return rcar_du_read(rgrp->dev, rgrp->mmio_offset + reg);
36}
37
Laurent Pincharta5f0ef52013-06-17 00:29:25 +020038void rcar_du_group_write(struct rcar_du_group *rgrp, u32 reg, u32 data)
Laurent Pinchartcb2025d2013-06-16 21:01:02 +020039{
40 rcar_du_write(rgrp->dev, rgrp->mmio_offset + reg, data);
41}
42
Laurent Pincharta5e18b22015-09-07 18:09:55 +030043static void rcar_du_group_setup_pins(struct rcar_du_group *rgrp)
44{
Kieran Bingham7ae90452018-04-27 23:21:53 +010045 u32 defr6 = DEFR6_CODE;
Laurent Pincharta5e18b22015-09-07 18:09:55 +030046
Kieran Bingham7ae90452018-04-27 23:21:53 +010047 if (rgrp->channels_mask & BIT(0))
48 defr6 |= DEFR6_ODPM02_DISP;
49
50 if (rgrp->channels_mask & BIT(1))
Kieran Bingham40125322018-04-26 17:53:33 +010051 defr6 |= DEFR6_ODPM12_DISP;
Laurent Pincharta5e18b22015-09-07 18:09:55 +030052
53 rcar_du_group_write(rgrp, DEFR6, defr6);
54}
55
Laurent Pinchart7cbc05c2013-06-17 03:20:08 +020056static void rcar_du_group_setup_defr8(struct rcar_du_group *rgrp)
57{
Laurent Pinchart2427b302015-09-07 17:34:26 +030058 struct rcar_du_device *rcdu = rgrp->dev;
Laurent Pinchart2427b302015-09-07 17:34:26 +030059 u32 defr8 = DEFR8_CODE;
Laurent Pinchart7cbc05c2013-06-17 03:20:08 +020060
Laurent Pinchart2427b302015-09-07 17:34:26 +030061 if (rcdu->info->gen < 3) {
62 defr8 |= DEFR8_DEFE8;
63
Laurent Pinchartf3bafc12017-07-11 01:13:20 +030064 /*
65 * On Gen2 the DEFR8 register for the first group also controls
Laurent Pinchart2427b302015-09-07 17:34:26 +030066 * RGB output routing to DPAD0 and VSPD1 routing to DU0/1/2 for
67 * DU instances that support it.
68 */
69 if (rgrp->index == 0) {
Laurent Pinchart1f98b2a2018-08-22 00:01:07 +030070 defr8 |= DEFR8_DRGBS_DU(rcdu->dpad0_source);
Laurent Pinchart2427b302015-09-07 17:34:26 +030071 if (rgrp->dev->vspd1_sink == 2)
72 defr8 |= DEFR8_VSCS;
73 }
74 } else {
Laurent Pinchartf3bafc12017-07-11 01:13:20 +030075 /*
Laurent Pinchart1f98b2a2018-08-22 00:01:07 +030076 * On Gen3 VSPD routing can't be configured, and DPAD routing
77 * is set in the group corresponding to the DPAD output (no Gen3
78 * SoC has multiple DPAD sources belonging to separate groups).
Laurent Pinchart2427b302015-09-07 17:34:26 +030079 */
Laurent Pinchart1f98b2a2018-08-22 00:01:07 +030080 if (rgrp->index == rcdu->dpad0_source / 2)
81 defr8 |= DEFR8_DRGBS_DU(rcdu->dpad0_source);
Laurent Pinchart34a04f22013-06-21 17:54:50 +020082 }
Laurent Pinchart7cbc05c2013-06-17 03:20:08 +020083
84 rcar_du_group_write(rgrp, DEFR8, defr8);
85}
86
Laurent Pinchartb4734f42018-08-21 21:31:04 +030087static void rcar_du_group_setup_didsr(struct rcar_du_group *rgrp)
88{
89 struct rcar_du_device *rcdu = rgrp->dev;
90 struct rcar_du_crtc *rcrtc;
91 unsigned int num_crtcs = 0;
92 unsigned int i;
93 u32 didsr;
94
95 /*
96 * Configure input dot clock routing with a hardcoded configuration. If
97 * the DU channel can use the LVDS encoder output clock as the dot
98 * clock, do so. Otherwise route DU_DOTCLKINn signal to DUn.
99 *
100 * Each channel can then select between the dot clock configured here
101 * and the clock provided by the CPG through the ESCR register.
102 */
103 if (rcdu->info->gen < 3 && rgrp->index == 0) {
104 /*
105 * On Gen2 a single register in the first group controls dot
106 * clock selection for all channels.
107 */
108 rcrtc = rcdu->crtcs;
109 num_crtcs = rcdu->num_crtcs;
110 } else if (rcdu->info->gen == 3 && rgrp->num_crtcs > 1) {
111 /*
112 * On Gen3 dot clocks are setup through per-group registers,
113 * only available when the group has two channels.
114 */
115 rcrtc = &rcdu->crtcs[rgrp->index * 2];
116 num_crtcs = rgrp->num_crtcs;
117 }
118
119 if (!num_crtcs)
120 return;
121
122 didsr = DIDSR_CODE;
123 for (i = 0; i < num_crtcs; ++i, ++rcrtc) {
124 if (rcdu->info->lvds_clk_mask & BIT(rcrtc->index))
125 didsr |= DIDSR_LCDS_LVDS0(i)
126 | DIDSR_PDCS_CLK(i, 0);
127 else
128 didsr |= DIDSR_LCDS_DCLKIN(i)
129 | DIDSR_PDCS_CLK(i, 0);
130 }
131
132 rcar_du_group_write(rgrp, DIDSR, didsr);
133}
134
Laurent Pinchartcb2025d2013-06-16 21:01:02 +0200135static void rcar_du_group_setup(struct rcar_du_group *rgrp)
136{
Laurent Pinchart2427b302015-09-07 17:34:26 +0300137 struct rcar_du_device *rcdu = rgrp->dev;
138
Laurent Pinchartcb2025d2013-06-16 21:01:02 +0200139 /* Enable extended features */
140 rcar_du_group_write(rgrp, DEFR, DEFR_CODE | DEFR_DEFE);
Laurent Pinchart2427b302015-09-07 17:34:26 +0300141 if (rcdu->info->gen < 3) {
142 rcar_du_group_write(rgrp, DEFR2, DEFR2_CODE | DEFR2_DEFE2G);
143 rcar_du_group_write(rgrp, DEFR3, DEFR3_CODE | DEFR3_DEFE3);
144 rcar_du_group_write(rgrp, DEFR4, DEFR4_CODE);
145 }
Laurent Pinchartcb2025d2013-06-16 21:01:02 +0200146 rcar_du_group_write(rgrp, DEFR5, DEFR5_CODE | DEFR5_DEFE5);
Laurent Pinchart7cbc05c2013-06-17 03:20:08 +0200147
Laurent Pincharta5e18b22015-09-07 18:09:55 +0300148 rcar_du_group_setup_pins(rgrp);
149
Laurent Pinchart1b30dbd2014-12-09 00:24:49 +0200150 if (rcar_du_has(rgrp->dev, RCAR_DU_FEATURE_EXT_CTRL_REGS)) {
Laurent Pinchart0c1c8772014-12-09 00:21:12 +0200151 rcar_du_group_setup_defr8(rgrp);
Laurent Pinchartb4734f42018-08-21 21:31:04 +0300152 rcar_du_group_setup_didsr(rgrp);
Laurent Pinchart1b30dbd2014-12-09 00:24:49 +0200153 }
154
Laurent Pinchart2427b302015-09-07 17:34:26 +0300155 if (rcdu->info->gen >= 3)
156 rcar_du_group_write(rgrp, DEFR10, DEFR10_CODE | DEFR10_DEFE10);
157
Laurent Pinchartf3bafc12017-07-11 01:13:20 +0300158 /*
159 * Use DS1PR and DS2PR to configure planes priorities and connects the
Laurent Pinchartcb2025d2013-06-16 21:01:02 +0200160 * superposition 0 to DU0 pins. DU1 pins will be configured dynamically.
161 */
162 rcar_du_group_write(rgrp, DORCR, DORCR_PG1D_DS1 | DORCR_DPRS);
Laurent Pinchart2a57e9b2015-04-28 18:01:45 +0300163
164 /* Apply planes to CRTCs association. */
165 mutex_lock(&rgrp->lock);
166 rcar_du_group_write(rgrp, DPTSR, (rgrp->dptsr_planes << 16) |
167 rgrp->dptsr_planes);
168 mutex_unlock(&rgrp->lock);
Laurent Pinchartcb2025d2013-06-16 21:01:02 +0200169}
170
171/*
172 * rcar_du_group_get - Acquire a reference to the DU channels group
173 *
174 * Acquiring the first reference setups core registers. A reference must be held
175 * before accessing any hardware registers.
176 *
177 * This function must be called with the DRM mode_config lock held.
178 *
179 * Return 0 in case of success or a negative error code otherwise.
180 */
181int rcar_du_group_get(struct rcar_du_group *rgrp)
182{
183 if (rgrp->use_count)
184 goto done;
185
186 rcar_du_group_setup(rgrp);
187
188done:
189 rgrp->use_count++;
190 return 0;
191}
192
193/*
194 * rcar_du_group_put - Release a reference to the DU
195 *
196 * This function must be called with the DRM mode_config lock held.
197 */
198void rcar_du_group_put(struct rcar_du_group *rgrp)
199{
200 --rgrp->use_count;
201}
202
203static void __rcar_du_group_start_stop(struct rcar_du_group *rgrp, bool start)
204{
205 rcar_du_group_write(rgrp, DSYSR,
206 (rcar_du_group_read(rgrp, DSYSR) & ~(DSYSR_DRES | DSYSR_DEN)) |
207 (start ? DSYSR_DEN : DSYSR_DRES));
208}
209
210void rcar_du_group_start_stop(struct rcar_du_group *rgrp, bool start)
211{
Laurent Pinchartf3bafc12017-07-11 01:13:20 +0300212 /*
213 * Many of the configuration bits are only updated when the display
Laurent Pinchartcb2025d2013-06-16 21:01:02 +0200214 * reset (DRES) bit in DSYSR is set to 1, disabling *both* CRTCs. Some
215 * of those bits could be pre-configured, but others (especially the
216 * bits related to plane assignment to display timing controllers) need
217 * to be modified at runtime.
218 *
219 * Restart the display controller if a start is requested. Sorry for the
220 * flicker. It should be possible to move most of the "DRES-update" bits
221 * setup to driver initialization time and minimize the number of cases
222 * when the display controller will have to be restarted.
223 */
224 if (start) {
225 if (rgrp->used_crtcs++ != 0)
226 __rcar_du_group_start_stop(rgrp, false);
227 __rcar_du_group_start_stop(rgrp, true);
228 } else {
229 if (--rgrp->used_crtcs == 0)
230 __rcar_du_group_start_stop(rgrp, false);
231 }
232}
233
234void rcar_du_group_restart(struct rcar_du_group *rgrp)
235{
Laurent Pinchart2af03942013-08-24 02:17:03 +0200236 rgrp->need_restart = false;
237
Laurent Pinchartcb2025d2013-06-16 21:01:02 +0200238 __rcar_du_group_start_stop(rgrp, false);
239 __rcar_du_group_start_stop(rgrp, true);
240}
Laurent Pinchart2fd22db2013-06-17 00:11:05 +0200241
Laurent Pinchart34a04f22013-06-21 17:54:50 +0200242int rcar_du_set_dpad0_vsp1_routing(struct rcar_du_device *rcdu)
Laurent Pinchart7cbc05c2013-06-17 03:20:08 +0200243{
Laurent Pinchartd99a6b52017-06-26 16:41:47 +0300244 struct rcar_du_group *rgrp;
245 struct rcar_du_crtc *crtc;
246 unsigned int index;
Laurent Pinchart7cbc05c2013-06-17 03:20:08 +0200247 int ret;
248
Laurent Pinchart0c1c8772014-12-09 00:21:12 +0200249 if (!rcar_du_has(rcdu, RCAR_DU_FEATURE_EXT_CTRL_REGS))
250 return 0;
251
Laurent Pinchartf3bafc12017-07-11 01:13:20 +0300252 /*
253 * RGB output routing to DPAD0 and VSP1D routing to DU0/1/2 are
Laurent Pinchartd99a6b52017-06-26 16:41:47 +0300254 * configured in the DEFR8 register of the first group on Gen2 and the
255 * last group on Gen3. As this function can be called with the DU
256 * channels of the corresponding CRTCs disabled, we need to enable the
257 * group clock before accessing the register.
Laurent Pinchart7cbc05c2013-06-17 03:20:08 +0200258 */
Laurent Pinchartd99a6b52017-06-26 16:41:47 +0300259 index = rcdu->info->gen < 3 ? 0 : DIV_ROUND_UP(rcdu->num_crtcs, 2) - 1;
260 rgrp = &rcdu->groups[index];
261 crtc = &rcdu->crtcs[index * 2];
262
263 ret = clk_prepare_enable(crtc->clock);
Laurent Pinchart7cbc05c2013-06-17 03:20:08 +0200264 if (ret < 0)
265 return ret;
266
Laurent Pinchartd99a6b52017-06-26 16:41:47 +0300267 rcar_du_group_setup_defr8(rgrp);
Laurent Pinchart7cbc05c2013-06-17 03:20:08 +0200268
Laurent Pinchartd99a6b52017-06-26 16:41:47 +0300269 clk_disable_unprepare(crtc->clock);
Laurent Pinchart7cbc05c2013-06-17 03:20:08 +0200270
271 return 0;
272}
273
274int rcar_du_group_set_routing(struct rcar_du_group *rgrp)
Laurent Pinchart2fd22db2013-06-17 00:11:05 +0200275{
276 struct rcar_du_crtc *crtc0 = &rgrp->dev->crtcs[rgrp->index * 2];
277 u32 dorcr = rcar_du_group_read(rgrp, DORCR);
278
279 dorcr &= ~(DORCR_PG2T | DORCR_DK2S | DORCR_PG2D_MASK);
280
Laurent Pinchartf3bafc12017-07-11 01:13:20 +0300281 /*
282 * Set the DPAD1 pins sources. Select CRTC 0 if explicitly requested and
Laurent Pinchartef67a902013-06-17 03:13:11 +0200283 * CRTC 1 in all other cases to avoid cloning CRTC 0 to DPAD0 and DPAD1
284 * by default.
Laurent Pinchart2fd22db2013-06-17 00:11:05 +0200285 */
Laurent Pinchartef67a902013-06-17 03:13:11 +0200286 if (crtc0->outputs & BIT(RCAR_DU_OUTPUT_DPAD1))
Laurent Pinchart2fd22db2013-06-17 00:11:05 +0200287 dorcr |= DORCR_PG2D_DS1;
288 else
289 dorcr |= DORCR_PG2T | DORCR_DK2S | DORCR_PG2D_DS2;
290
291 rcar_du_group_write(rgrp, DORCR, dorcr);
Laurent Pinchart7cbc05c2013-06-17 03:20:08 +0200292
Laurent Pinchart34a04f22013-06-21 17:54:50 +0200293 return rcar_du_set_dpad0_vsp1_routing(rgrp->dev);
Laurent Pinchart2fd22db2013-06-17 00:11:05 +0200294}