Merge tag 'nfsd-4.3-2' of git://linux-nfs.org/~bfields/linux
[deliverable/linux.git] / drivers / gpu / drm / rcar-du / rcar_du_group.c
CommitLineData
cb2025d2
LP
1/*
2 * rcar_du_group.c -- R-Car Display Unit Channels Pair
3 *
36d50464 4 * Copyright (C) 2013-2014 Renesas Electronics Corporation
cb2025d2
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/*
15 * The R8A7779 DU is split in per-CRTC resources (scan-out engine, blending
16 * unit, timings generator, ...) and device-global resources (start/stop
17 * control, planes, ...) shared between the two CRTCs.
18 *
19 * The R8A7790 introduced a third CRTC with its own set of global resources.
20 * This would be modeled as two separate DU device instances if it wasn't for
21 * a handful or resources that are shared between the three CRTCs (mostly
22 * related to input and output routing). For this reason the R8A7790 DU must be
23 * modeled as a single device with three CRTCs, two sets of "semi-global"
24 * resources, and a few device-global resources.
25 *
26 * The rcar_du_group object is a driver specific object, without any real
27 * counterpart in the DU documentation, that models those semi-global resources.
28 */
29
7cbc05cb 30#include <linux/clk.h>
cb2025d2
LP
31#include <linux/io.h>
32
33#include "rcar_du_drv.h"
34#include "rcar_du_group.h"
35#include "rcar_du_regs.h"
36
a5f0ef59 37u32 rcar_du_group_read(struct rcar_du_group *rgrp, u32 reg)
cb2025d2
LP
38{
39 return rcar_du_read(rgrp->dev, rgrp->mmio_offset + reg);
40}
41
a5f0ef59 42void rcar_du_group_write(struct rcar_du_group *rgrp, u32 reg, u32 data)
cb2025d2
LP
43{
44 rcar_du_write(rgrp->dev, rgrp->mmio_offset + reg, data);
45}
46
7cbc05cb
LP
47static void rcar_du_group_setup_defr8(struct rcar_du_group *rgrp)
48{
49 u32 defr8 = DEFR8_CODE | DEFR8_DEFE8;
50
7cbc05cb
LP
51 /* The DEFR8 register for the first group also controls RGB output
52 * routing to DPAD0
53 */
54 if (rgrp->index == 0)
55 defr8 |= DEFR8_DRGBS_DU(rgrp->dev->dpad0_source);
56
57 rcar_du_group_write(rgrp, DEFR8, defr8);
58}
59
cb2025d2
LP
60static void rcar_du_group_setup(struct rcar_du_group *rgrp)
61{
62 /* Enable extended features */
63 rcar_du_group_write(rgrp, DEFR, DEFR_CODE | DEFR_DEFE);
64 rcar_du_group_write(rgrp, DEFR2, DEFR2_CODE | DEFR2_DEFE2G);
65 rcar_du_group_write(rgrp, DEFR3, DEFR3_CODE | DEFR3_DEFE3);
66 rcar_du_group_write(rgrp, DEFR4, DEFR4_CODE);
67 rcar_du_group_write(rgrp, DEFR5, DEFR5_CODE | DEFR5_DEFE5);
7cbc05cb 68
1b30dbde 69 if (rcar_du_has(rgrp->dev, RCAR_DU_FEATURE_EXT_CTRL_REGS)) {
0c1c8776 70 rcar_du_group_setup_defr8(rgrp);
cb2025d2 71
1b30dbde
LP
72 /* Configure input dot clock routing. We currently hardcode the
73 * configuration to routing DOTCLKINn to DUn.
74 */
75 rcar_du_group_write(rgrp, DIDSR, DIDSR_CODE |
76 DIDSR_LCDS_DCLKIN(2) |
77 DIDSR_LCDS_DCLKIN(1) |
78 DIDSR_LCDS_DCLKIN(0) |
79 DIDSR_PDCS_CLK(2, 0) |
80 DIDSR_PDCS_CLK(1, 0) |
81 DIDSR_PDCS_CLK(0, 0));
82 }
83
cb2025d2
LP
84 /* Use DS1PR and DS2PR to configure planes priorities and connects the
85 * superposition 0 to DU0 pins. DU1 pins will be configured dynamically.
86 */
87 rcar_du_group_write(rgrp, DORCR, DORCR_PG1D_DS1 | DORCR_DPRS);
2a57e9b5
LP
88
89 /* Apply planes to CRTCs association. */
90 mutex_lock(&rgrp->lock);
91 rcar_du_group_write(rgrp, DPTSR, (rgrp->dptsr_planes << 16) |
92 rgrp->dptsr_planes);
93 mutex_unlock(&rgrp->lock);
cb2025d2
LP
94}
95
96/*
97 * rcar_du_group_get - Acquire a reference to the DU channels group
98 *
99 * Acquiring the first reference setups core registers. A reference must be held
100 * before accessing any hardware registers.
101 *
102 * This function must be called with the DRM mode_config lock held.
103 *
104 * Return 0 in case of success or a negative error code otherwise.
105 */
106int rcar_du_group_get(struct rcar_du_group *rgrp)
107{
108 if (rgrp->use_count)
109 goto done;
110
111 rcar_du_group_setup(rgrp);
112
113done:
114 rgrp->use_count++;
115 return 0;
116}
117
118/*
119 * rcar_du_group_put - Release a reference to the DU
120 *
121 * This function must be called with the DRM mode_config lock held.
122 */
123void rcar_du_group_put(struct rcar_du_group *rgrp)
124{
125 --rgrp->use_count;
126}
127
128static void __rcar_du_group_start_stop(struct rcar_du_group *rgrp, bool start)
129{
130 rcar_du_group_write(rgrp, DSYSR,
131 (rcar_du_group_read(rgrp, DSYSR) & ~(DSYSR_DRES | DSYSR_DEN)) |
132 (start ? DSYSR_DEN : DSYSR_DRES));
133}
134
135void rcar_du_group_start_stop(struct rcar_du_group *rgrp, bool start)
136{
137 /* Many of the configuration bits are only updated when the display
138 * reset (DRES) bit in DSYSR is set to 1, disabling *both* CRTCs. Some
139 * of those bits could be pre-configured, but others (especially the
140 * bits related to plane assignment to display timing controllers) need
141 * to be modified at runtime.
142 *
143 * Restart the display controller if a start is requested. Sorry for the
144 * flicker. It should be possible to move most of the "DRES-update" bits
145 * setup to driver initialization time and minimize the number of cases
146 * when the display controller will have to be restarted.
147 */
148 if (start) {
149 if (rgrp->used_crtcs++ != 0)
150 __rcar_du_group_start_stop(rgrp, false);
151 __rcar_du_group_start_stop(rgrp, true);
152 } else {
153 if (--rgrp->used_crtcs == 0)
154 __rcar_du_group_start_stop(rgrp, false);
155 }
156}
157
158void rcar_du_group_restart(struct rcar_du_group *rgrp)
159{
160 __rcar_du_group_start_stop(rgrp, false);
161 __rcar_du_group_start_stop(rgrp, true);
162}
2fd22dba 163
7cbc05cb
LP
164static int rcar_du_set_dpad0_routing(struct rcar_du_device *rcdu)
165{
166 int ret;
167
0c1c8776
LP
168 if (!rcar_du_has(rcdu, RCAR_DU_FEATURE_EXT_CTRL_REGS))
169 return 0;
170
7cbc05cb
LP
171 /* RGB output routing to DPAD0 is configured in the DEFR8 register of
172 * the first group. As this function can be called with the DU0 and DU1
173 * CRTCs disabled, we need to enable the first group clock before
174 * accessing the register.
175 */
176 ret = clk_prepare_enable(rcdu->crtcs[0].clock);
177 if (ret < 0)
178 return ret;
179
180 rcar_du_group_setup_defr8(&rcdu->groups[0]);
181
182 clk_disable_unprepare(rcdu->crtcs[0].clock);
183
184 return 0;
185}
186
187int rcar_du_group_set_routing(struct rcar_du_group *rgrp)
2fd22dba
LP
188{
189 struct rcar_du_crtc *crtc0 = &rgrp->dev->crtcs[rgrp->index * 2];
190 u32 dorcr = rcar_du_group_read(rgrp, DORCR);
191
192 dorcr &= ~(DORCR_PG2T | DORCR_DK2S | DORCR_PG2D_MASK);
193
ef67a902
LP
194 /* Set the DPAD1 pins sources. Select CRTC 0 if explicitly requested and
195 * CRTC 1 in all other cases to avoid cloning CRTC 0 to DPAD0 and DPAD1
196 * by default.
2fd22dba 197 */
ef67a902 198 if (crtc0->outputs & BIT(RCAR_DU_OUTPUT_DPAD1))
2fd22dba
LP
199 dorcr |= DORCR_PG2D_DS1;
200 else
201 dorcr |= DORCR_PG2T | DORCR_DK2S | DORCR_PG2D_DS2;
202
203 rcar_du_group_write(rgrp, DORCR, dorcr);
7cbc05cb
LP
204
205 return rcar_du_set_dpad0_routing(rgrp->dev);
2fd22dba 206}
This page took 0.138344 seconds and 5 git commands to generate.