blob: 64c964b7c57786b8d2d134c5e7828287d102bada [file] [log] [blame]
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001/*
2 * Copyright (C) 2015 Broadcom
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
8
9/**
10 * DOC: VC4 CRTC module
11 *
12 * In VC4, the Pixel Valve is what most closely corresponds to the
13 * DRM's concept of a CRTC. The PV generates video timings from the
Eric Anholtf6c01532017-02-27 12:11:43 -080014 * encoder's clock plus its configuration. It pulls scaled pixels from
Eric Anholtc8b75bc2015-03-02 13:01:12 -080015 * the HVS at that timing, and feeds it to the encoder.
16 *
17 * However, the DRM CRTC also collects the configuration of all the
Eric Anholtf6c01532017-02-27 12:11:43 -080018 * DRM planes attached to it. As a result, the CRTC is also
19 * responsible for writing the display list for the HVS channel that
20 * the CRTC will use.
Eric Anholtc8b75bc2015-03-02 13:01:12 -080021 *
22 * The 2835 has 3 different pixel valves. pv0 in the audio power
23 * domain feeds DSI0 or DPI, while pv1 feeds DS1 or SMI. pv2 in the
24 * image domain can feed either HDMI or the SDTV controller. The
25 * pixel valve chooses from the CPRMAN clocks (HSM for HDMI, VEC for
26 * SDTV, etc.) according to which output type is chosen in the mux.
27 *
28 * For power management, the pixel valve's registers are all clocked
29 * by the AXI clock, while the timings and FIFOs make use of the
30 * output-specific clock. Since the encoders also directly consume
31 * the CPRMAN clocks, and know what timings they need, they are the
32 * ones that set the clock.
33 */
34
Masahiro Yamadab7e8e252017-05-18 13:29:38 +090035#include <drm/drm_atomic.h>
36#include <drm/drm_atomic_helper.h>
Daniel Vetter72fdb40c2018-09-05 15:57:11 +020037#include <drm/drm_atomic_uapi.h>
Daniel Vetterfcd70cd2019-01-17 22:03:34 +010038#include <drm/drm_probe_helper.h>
Masahiro Yamadab7e8e252017-05-18 13:29:38 +090039#include <linux/clk.h>
40#include <drm/drm_fb_cma_helper.h>
41#include <linux/component.h>
42#include <linux/of_device.h>
Eric Anholtc8b75bc2015-03-02 13:01:12 -080043#include "vc4_drv.h"
44#include "vc4_regs.h"
45
Eric Anholtd8dbf442015-12-28 13:25:41 -080046struct vc4_crtc_state {
47 struct drm_crtc_state base;
48 /* Dlist area for this CRTC configuration. */
49 struct drm_mm_node mm;
Boris Brezillon008095e2018-07-03 09:50:22 +020050 bool feed_txp;
51 bool txp_armed;
Boris Brezillon666e7352018-12-06 15:24:38 +010052
53 struct {
54 unsigned int left;
55 unsigned int right;
56 unsigned int top;
57 unsigned int bottom;
58 } margins;
Eric Anholtd8dbf442015-12-28 13:25:41 -080059};
60
Eric Anholtd8dbf442015-12-28 13:25:41 -080061static inline struct vc4_crtc_state *
62to_vc4_crtc_state(struct drm_crtc_state *crtc_state)
63{
64 return (struct vc4_crtc_state *)crtc_state;
65}
66
Eric Anholtc8b75bc2015-03-02 13:01:12 -080067#define CRTC_WRITE(offset, val) writel(val, vc4_crtc->regs + (offset))
68#define CRTC_READ(offset) readl(vc4_crtc->regs + (offset))
69
70#define CRTC_REG(reg) { reg, #reg }
71static const struct {
72 u32 reg;
73 const char *name;
74} crtc_regs[] = {
75 CRTC_REG(PV_CONTROL),
76 CRTC_REG(PV_V_CONTROL),
Eric Anholtc31806fb2016-02-15 17:06:02 -080077 CRTC_REG(PV_VSYNCD_EVEN),
Eric Anholtc8b75bc2015-03-02 13:01:12 -080078 CRTC_REG(PV_HORZA),
79 CRTC_REG(PV_HORZB),
80 CRTC_REG(PV_VERTA),
81 CRTC_REG(PV_VERTB),
82 CRTC_REG(PV_VERTA_EVEN),
83 CRTC_REG(PV_VERTB_EVEN),
84 CRTC_REG(PV_INTEN),
85 CRTC_REG(PV_INTSTAT),
86 CRTC_REG(PV_STAT),
87 CRTC_REG(PV_HACT_ACT),
88};
89
90static void vc4_crtc_dump_regs(struct vc4_crtc *vc4_crtc)
91{
92 int i;
93
94 for (i = 0; i < ARRAY_SIZE(crtc_regs); i++) {
95 DRM_INFO("0x%04x (%s): 0x%08x\n",
96 crtc_regs[i].reg, crtc_regs[i].name,
97 CRTC_READ(crtc_regs[i].reg));
98 }
99}
100
101#ifdef CONFIG_DEBUG_FS
102int vc4_crtc_debugfs_regs(struct seq_file *m, void *unused)
103{
104 struct drm_info_node *node = (struct drm_info_node *)m->private;
105 struct drm_device *dev = node->minor->dev;
106 int crtc_index = (uintptr_t)node->info_ent->data;
107 struct drm_crtc *crtc;
108 struct vc4_crtc *vc4_crtc;
109 int i;
110
111 i = 0;
112 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
113 if (i == crtc_index)
114 break;
115 i++;
116 }
117 if (!crtc)
118 return 0;
119 vc4_crtc = to_vc4_crtc(crtc);
120
121 for (i = 0; i < ARRAY_SIZE(crtc_regs); i++) {
122 seq_printf(m, "%s (0x%04x): 0x%08x\n",
123 crtc_regs[i].name, crtc_regs[i].reg,
124 CRTC_READ(crtc_regs[i].reg));
125 }
126
127 return 0;
128}
129#endif
130
Daniel Vetter1bf6ad62017-05-09 16:03:28 +0200131bool vc4_crtc_get_scanoutpos(struct drm_device *dev, unsigned int crtc_id,
132 bool in_vblank_irq, int *vpos, int *hpos,
133 ktime_t *stime, ktime_t *etime,
134 const struct drm_display_mode *mode)
Mario Kleiner1bf59f12016-06-23 08:17:50 +0200135{
136 struct vc4_dev *vc4 = to_vc4_dev(dev);
Shawn Guoc77b9ab2017-01-09 19:25:45 +0800137 struct drm_crtc *crtc = drm_crtc_from_index(dev, crtc_id);
138 struct vc4_crtc *vc4_crtc = to_vc4_crtc(crtc);
Mario Kleiner1bf59f12016-06-23 08:17:50 +0200139 u32 val;
140 int fifo_lines;
141 int vblank_lines;
Daniel Vetter1bf6ad62017-05-09 16:03:28 +0200142 bool ret = false;
Mario Kleiner1bf59f12016-06-23 08:17:50 +0200143
Mario Kleiner1bf59f12016-06-23 08:17:50 +0200144 /* preempt_disable_rt() should go right here in PREEMPT_RT patchset. */
145
146 /* Get optional system timestamp before query. */
147 if (stime)
148 *stime = ktime_get();
149
150 /*
151 * Read vertical scanline which is currently composed for our
152 * pixelvalve by the HVS, and also the scaler status.
153 */
154 val = HVS_READ(SCALER_DISPSTATX(vc4_crtc->channel));
155
156 /* Get optional system timestamp after query. */
157 if (etime)
158 *etime = ktime_get();
159
160 /* preempt_enable_rt() should go right here in PREEMPT_RT patchset. */
161
162 /* Vertical position of hvs composed scanline. */
163 *vpos = VC4_GET_FIELD(val, SCALER_DISPSTATX_LINE);
Mario Kleinere5380922016-07-19 20:59:00 +0200164 *hpos = 0;
Mario Kleiner1bf59f12016-06-23 08:17:50 +0200165
Mario Kleinere5380922016-07-19 20:59:00 +0200166 if (mode->flags & DRM_MODE_FLAG_INTERLACE) {
167 *vpos /= 2;
168
169 /* Use hpos to correct for field offset in interlaced mode. */
170 if (VC4_GET_FIELD(val, SCALER_DISPSTATX_FRAME_COUNT) % 2)
171 *hpos += mode->crtc_htotal / 2;
172 }
Mario Kleiner1bf59f12016-06-23 08:17:50 +0200173
174 /* This is the offset we need for translating hvs -> pv scanout pos. */
175 fifo_lines = vc4_crtc->cob_size / mode->crtc_hdisplay;
176
177 if (fifo_lines > 0)
Daniel Vetter1bf6ad62017-05-09 16:03:28 +0200178 ret = true;
Mario Kleiner1bf59f12016-06-23 08:17:50 +0200179
180 /* HVS more than fifo_lines into frame for compositing? */
181 if (*vpos > fifo_lines) {
182 /*
183 * We are in active scanout and can get some meaningful results
184 * from HVS. The actual PV scanout can not trail behind more
185 * than fifo_lines as that is the fifo's capacity. Assume that
186 * in active scanout the HVS and PV work in lockstep wrt. HVS
187 * refilling the fifo and PV consuming from the fifo, ie.
188 * whenever the PV consumes and frees up a scanline in the
189 * fifo, the HVS will immediately refill it, therefore
190 * incrementing vpos. Therefore we choose HVS read position -
191 * fifo size in scanlines as a estimate of the real scanout
192 * position of the PV.
193 */
194 *vpos -= fifo_lines + 1;
Mario Kleiner1bf59f12016-06-23 08:17:50 +0200195
Mario Kleiner1bf59f12016-06-23 08:17:50 +0200196 return ret;
197 }
198
199 /*
200 * Less: This happens when we are in vblank and the HVS, after getting
201 * the VSTART restart signal from the PV, just started refilling its
202 * fifo with new lines from the top-most lines of the new framebuffers.
203 * The PV does not scan out in vblank, so does not remove lines from
204 * the fifo, so the fifo will be full quickly and the HVS has to pause.
205 * We can't get meaningful readings wrt. scanline position of the PV
206 * and need to make things up in a approximative but consistent way.
207 */
Eric Anholt682e62c2016-09-28 17:30:25 -0700208 vblank_lines = mode->vtotal - mode->vdisplay;
Mario Kleiner1bf59f12016-06-23 08:17:50 +0200209
Daniel Vetter1bf6ad62017-05-09 16:03:28 +0200210 if (in_vblank_irq) {
Mario Kleiner1bf59f12016-06-23 08:17:50 +0200211 /*
212 * Assume the irq handler got called close to first
213 * line of vblank, so PV has about a full vblank
214 * scanlines to go, and as a base timestamp use the
215 * one taken at entry into vblank irq handler, so it
216 * is not affected by random delays due to lock
217 * contention on event_lock or vblank_time lock in
218 * the core.
219 */
220 *vpos = -vblank_lines;
221
222 if (stime)
223 *stime = vc4_crtc->t_vblank;
224 if (etime)
225 *etime = vc4_crtc->t_vblank;
226
227 /*
228 * If the HVS fifo is not yet full then we know for certain
229 * we are at the very beginning of vblank, as the hvs just
230 * started refilling, and the stime and etime timestamps
231 * truly correspond to start of vblank.
Daniel Vetter1bf6ad62017-05-09 16:03:28 +0200232 *
233 * Unfortunately there's no way to report this to upper levels
234 * and make it more useful.
Mario Kleiner1bf59f12016-06-23 08:17:50 +0200235 */
Mario Kleiner1bf59f12016-06-23 08:17:50 +0200236 } else {
237 /*
238 * No clue where we are inside vblank. Return a vpos of zero,
239 * which will cause calling code to just return the etime
240 * timestamp uncorrected. At least this is no worse than the
241 * standard fallback.
242 */
243 *vpos = 0;
244 }
245
246 return ret;
247}
248
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800249static void vc4_crtc_destroy(struct drm_crtc *crtc)
250{
251 drm_crtc_cleanup(crtc);
252}
253
Eric Anholte582b6c2016-03-31 18:38:20 -0700254static void
255vc4_crtc_lut_load(struct drm_crtc *crtc)
256{
257 struct drm_device *dev = crtc->dev;
258 struct vc4_dev *vc4 = to_vc4_dev(dev);
259 struct vc4_crtc *vc4_crtc = to_vc4_crtc(crtc);
260 u32 i;
261
262 /* The LUT memory is laid out with each HVS channel in order,
263 * each of which takes 256 writes for R, 256 for G, then 256
264 * for B.
265 */
266 HVS_WRITE(SCALER_GAMADDR,
267 SCALER_GAMADDR_AUTOINC |
268 (vc4_crtc->channel * 3 * crtc->gamma_size));
269
270 for (i = 0; i < crtc->gamma_size; i++)
271 HVS_WRITE(SCALER_GAMDATA, vc4_crtc->lut_r[i]);
272 for (i = 0; i < crtc->gamma_size; i++)
273 HVS_WRITE(SCALER_GAMDATA, vc4_crtc->lut_g[i]);
274 for (i = 0; i < crtc->gamma_size; i++)
275 HVS_WRITE(SCALER_GAMDATA, vc4_crtc->lut_b[i]);
276}
277
Stefan Schake640e0c72018-04-11 22:49:13 +0200278static void
279vc4_crtc_update_gamma_lut(struct drm_crtc *crtc)
Eric Anholte582b6c2016-03-31 18:38:20 -0700280{
281 struct vc4_crtc *vc4_crtc = to_vc4_crtc(crtc);
Stefan Schake640e0c72018-04-11 22:49:13 +0200282 struct drm_color_lut *lut = crtc->state->gamma_lut->data;
283 u32 length = drm_color_lut_size(crtc->state->gamma_lut);
Eric Anholte582b6c2016-03-31 18:38:20 -0700284 u32 i;
285
Stefan Schake640e0c72018-04-11 22:49:13 +0200286 for (i = 0; i < length; i++) {
287 vc4_crtc->lut_r[i] = drm_color_lut_extract(lut[i].red, 8);
288 vc4_crtc->lut_g[i] = drm_color_lut_extract(lut[i].green, 8);
289 vc4_crtc->lut_b[i] = drm_color_lut_extract(lut[i].blue, 8);
Eric Anholte582b6c2016-03-31 18:38:20 -0700290 }
291
292 vc4_crtc_lut_load(crtc);
293}
294
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800295static u32 vc4_get_fifo_full_level(u32 format)
296{
297 static const u32 fifo_len_bytes = 64;
298 static const u32 hvs_latency_pix = 6;
299
300 switch (format) {
301 case PV_CONTROL_FORMAT_DSIV_16:
302 case PV_CONTROL_FORMAT_DSIC_16:
303 return fifo_len_bytes - 2 * hvs_latency_pix;
304 case PV_CONTROL_FORMAT_DSIV_18:
305 return fifo_len_bytes - 14;
306 case PV_CONTROL_FORMAT_24:
307 case PV_CONTROL_FORMAT_DSIV_24:
308 default:
309 return fifo_len_bytes - 3 * hvs_latency_pix;
310 }
311}
312
313/*
Eric Anholta86773d12016-12-14 11:46:15 -0800314 * Returns the encoder attached to the CRTC.
315 *
316 * VC4 can only scan out to one encoder at a time, while the DRM core
317 * allows drivers to push pixels to more than one encoder from the
318 * same CRTC.
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800319 */
Eric Anholta86773d12016-12-14 11:46:15 -0800320static struct drm_encoder *vc4_get_crtc_encoder(struct drm_crtc *crtc)
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800321{
322 struct drm_connector *connector;
Gustavo Padovan4894bf72017-05-12 13:41:00 -0300323 struct drm_connector_list_iter conn_iter;
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800324
Gustavo Padovan4894bf72017-05-12 13:41:00 -0300325 drm_connector_list_iter_begin(crtc->dev, &conn_iter);
326 drm_for_each_connector_iter(connector, &conn_iter) {
Julia Lawall2fa8e902015-10-23 07:38:00 +0200327 if (connector->state->crtc == crtc) {
Gustavo Padovan4894bf72017-05-12 13:41:00 -0300328 drm_connector_list_iter_end(&conn_iter);
Eric Anholta86773d12016-12-14 11:46:15 -0800329 return connector->encoder;
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800330 }
331 }
Gustavo Padovan4894bf72017-05-12 13:41:00 -0300332 drm_connector_list_iter_end(&conn_iter);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800333
Eric Anholta86773d12016-12-14 11:46:15 -0800334 return NULL;
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800335}
336
Boris Brezillon008095e2018-07-03 09:50:22 +0200337static void vc4_crtc_config_pv(struct drm_crtc *crtc)
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800338{
Eric Anholta86773d12016-12-14 11:46:15 -0800339 struct drm_encoder *encoder = vc4_get_crtc_encoder(crtc);
340 struct vc4_encoder *vc4_encoder = to_vc4_encoder(encoder);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800341 struct vc4_crtc *vc4_crtc = to_vc4_crtc(crtc);
342 struct drm_crtc_state *state = crtc->state;
343 struct drm_display_mode *mode = &state->adjusted_mode;
344 bool interlace = mode->flags & DRM_MODE_FLAG_INTERLACE;
Eric Anholtdfccd932016-09-29 15:34:44 -0700345 u32 pixel_rep = (mode->flags & DRM_MODE_FLAG_DBLCLK) ? 2 : 1;
Eric Anholta86773d12016-12-14 11:46:15 -0800346 bool is_dsi = (vc4_encoder->type == VC4_ENCODER_TYPE_DSI0 ||
347 vc4_encoder->type == VC4_ENCODER_TYPE_DSI1);
348 u32 format = is_dsi ? PV_CONTROL_FORMAT_DSIV_24 : PV_CONTROL_FORMAT_24;
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800349
350 /* Reset the PV fifo. */
351 CRTC_WRITE(PV_CONTROL, 0);
352 CRTC_WRITE(PV_CONTROL, PV_CONTROL_FIFO_CLR | PV_CONTROL_EN);
353 CRTC_WRITE(PV_CONTROL, 0);
354
355 CRTC_WRITE(PV_HORZA,
Eric Anholtdfccd932016-09-29 15:34:44 -0700356 VC4_SET_FIELD((mode->htotal -
357 mode->hsync_end) * pixel_rep,
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800358 PV_HORZA_HBP) |
Eric Anholtdfccd932016-09-29 15:34:44 -0700359 VC4_SET_FIELD((mode->hsync_end -
360 mode->hsync_start) * pixel_rep,
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800361 PV_HORZA_HSYNC));
362 CRTC_WRITE(PV_HORZB,
Eric Anholtdfccd932016-09-29 15:34:44 -0700363 VC4_SET_FIELD((mode->hsync_start -
364 mode->hdisplay) * pixel_rep,
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800365 PV_HORZB_HFP) |
Eric Anholtdfccd932016-09-29 15:34:44 -0700366 VC4_SET_FIELD(mode->hdisplay * pixel_rep, PV_HORZB_HACTIVE));
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800367
Eric Anholta7c50472016-02-15 17:31:41 -0800368 CRTC_WRITE(PV_VERTA,
Eric Anholt682e62c2016-09-28 17:30:25 -0700369 VC4_SET_FIELD(mode->crtc_vtotal - mode->crtc_vsync_end,
Eric Anholta7c50472016-02-15 17:31:41 -0800370 PV_VERTA_VBP) |
Eric Anholt682e62c2016-09-28 17:30:25 -0700371 VC4_SET_FIELD(mode->crtc_vsync_end - mode->crtc_vsync_start,
Eric Anholta7c50472016-02-15 17:31:41 -0800372 PV_VERTA_VSYNC));
373 CRTC_WRITE(PV_VERTB,
Eric Anholt682e62c2016-09-28 17:30:25 -0700374 VC4_SET_FIELD(mode->crtc_vsync_start - mode->crtc_vdisplay,
Eric Anholta7c50472016-02-15 17:31:41 -0800375 PV_VERTB_VFP) |
Eric Anholt682e62c2016-09-28 17:30:25 -0700376 VC4_SET_FIELD(mode->crtc_vdisplay, PV_VERTB_VACTIVE));
Eric Anholta7c50472016-02-15 17:31:41 -0800377
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800378 if (interlace) {
379 CRTC_WRITE(PV_VERTA_EVEN,
Eric Anholt682e62c2016-09-28 17:30:25 -0700380 VC4_SET_FIELD(mode->crtc_vtotal -
381 mode->crtc_vsync_end - 1,
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800382 PV_VERTA_VBP) |
Eric Anholt682e62c2016-09-28 17:30:25 -0700383 VC4_SET_FIELD(mode->crtc_vsync_end -
384 mode->crtc_vsync_start,
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800385 PV_VERTA_VSYNC));
386 CRTC_WRITE(PV_VERTB_EVEN,
Eric Anholt682e62c2016-09-28 17:30:25 -0700387 VC4_SET_FIELD(mode->crtc_vsync_start -
388 mode->crtc_vdisplay,
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800389 PV_VERTB_VFP) |
Eric Anholt682e62c2016-09-28 17:30:25 -0700390 VC4_SET_FIELD(mode->crtc_vdisplay, PV_VERTB_VACTIVE));
391
392 /* We set up first field even mode for HDMI. VEC's
393 * NTSC mode would want first field odd instead, once
394 * we support it (to do so, set ODD_FIRST and put the
395 * delay in VSYNCD_EVEN instead).
396 */
397 CRTC_WRITE(PV_V_CONTROL,
398 PV_VCONTROL_CONTINUOUS |
Eric Anholta86773d12016-12-14 11:46:15 -0800399 (is_dsi ? PV_VCONTROL_DSI : 0) |
Eric Anholt682e62c2016-09-28 17:30:25 -0700400 PV_VCONTROL_INTERLACE |
Eric Anholtdfccd932016-09-29 15:34:44 -0700401 VC4_SET_FIELD(mode->htotal * pixel_rep / 2,
Eric Anholt682e62c2016-09-28 17:30:25 -0700402 PV_VCONTROL_ODD_DELAY));
403 CRTC_WRITE(PV_VSYNCD_EVEN, 0);
404 } else {
Eric Anholta86773d12016-12-14 11:46:15 -0800405 CRTC_WRITE(PV_V_CONTROL,
406 PV_VCONTROL_CONTINUOUS |
407 (is_dsi ? PV_VCONTROL_DSI : 0));
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800408 }
409
Eric Anholtdfccd932016-09-29 15:34:44 -0700410 CRTC_WRITE(PV_HACT_ACT, mode->hdisplay * pixel_rep);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800411
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800412 CRTC_WRITE(PV_CONTROL,
413 VC4_SET_FIELD(format, PV_CONTROL_FORMAT) |
414 VC4_SET_FIELD(vc4_get_fifo_full_level(format),
415 PV_CONTROL_FIFO_LEVEL) |
Eric Anholtdfccd932016-09-29 15:34:44 -0700416 VC4_SET_FIELD(pixel_rep - 1, PV_CONTROL_PIXEL_REP) |
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800417 PV_CONTROL_CLR_AT_START |
418 PV_CONTROL_TRIGGER_UNDERFLOW |
419 PV_CONTROL_WAIT_HSTART |
Eric Anholta86773d12016-12-14 11:46:15 -0800420 VC4_SET_FIELD(vc4_encoder->clock_select,
421 PV_CONTROL_CLK_SELECT) |
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800422 PV_CONTROL_FIFO_CLR |
423 PV_CONTROL_EN);
Boris Brezillon008095e2018-07-03 09:50:22 +0200424}
425
426static void vc4_crtc_mode_set_nofb(struct drm_crtc *crtc)
427{
428 struct drm_device *dev = crtc->dev;
429 struct vc4_dev *vc4 = to_vc4_dev(dev);
430 struct vc4_crtc *vc4_crtc = to_vc4_crtc(crtc);
431 struct vc4_crtc_state *vc4_state = to_vc4_crtc_state(crtc->state);
432 struct drm_display_mode *mode = &crtc->state->adjusted_mode;
433 bool interlace = mode->flags & DRM_MODE_FLAG_INTERLACE;
434 bool debug_dump_regs = false;
435
436 if (debug_dump_regs) {
437 DRM_INFO("CRTC %d regs before:\n", drm_crtc_index(crtc));
438 vc4_crtc_dump_regs(vc4_crtc);
439 }
440
441 if (vc4_crtc->channel == 2) {
442 u32 dispctrl;
443 u32 dsp3_mux;
444
445 /*
446 * SCALER_DISPCTRL_DSP3 = X, where X < 2 means 'connect DSP3 to
447 * FIFO X'.
448 * SCALER_DISPCTRL_DSP3 = 3 means 'disable DSP 3'.
449 *
450 * DSP3 is connected to FIFO2 unless the transposer is
451 * enabled. In this case, FIFO 2 is directly accessed by the
452 * TXP IP, and we need to disable the FIFO2 -> pixelvalve1
453 * route.
454 */
455 if (vc4_state->feed_txp)
456 dsp3_mux = VC4_SET_FIELD(3, SCALER_DISPCTRL_DSP3_MUX);
457 else
458 dsp3_mux = VC4_SET_FIELD(2, SCALER_DISPCTRL_DSP3_MUX);
459
460 dispctrl = HVS_READ(SCALER_DISPCTRL) &
461 ~SCALER_DISPCTRL_DSP3_MUX_MASK;
462 HVS_WRITE(SCALER_DISPCTRL, dispctrl | dsp3_mux);
463 }
464
465 if (!vc4_state->feed_txp)
466 vc4_crtc_config_pv(crtc);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800467
Eric Anholt6a609202016-02-16 10:24:08 -0800468 HVS_WRITE(SCALER_DISPBKGNDX(vc4_crtc->channel),
469 SCALER_DISPBKGND_AUTOHS |
Eric Anholte582b6c2016-03-31 18:38:20 -0700470 SCALER_DISPBKGND_GAMMA |
Eric Anholt6a609202016-02-16 10:24:08 -0800471 (interlace ? SCALER_DISPBKGND_INTERLACE : 0));
472
Eric Anholte582b6c2016-03-31 18:38:20 -0700473 /* Reload the LUT, since the SRAMs would have been disabled if
474 * all CRTCs had SCALER_DISPBKGND_GAMMA unset at once.
475 */
476 vc4_crtc_lut_load(crtc);
477
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800478 if (debug_dump_regs) {
479 DRM_INFO("CRTC %d regs after:\n", drm_crtc_index(crtc));
480 vc4_crtc_dump_regs(vc4_crtc);
481 }
482}
483
484static void require_hvs_enabled(struct drm_device *dev)
485{
486 struct vc4_dev *vc4 = to_vc4_dev(dev);
487
488 WARN_ON_ONCE((HVS_READ(SCALER_DISPCTRL) & SCALER_DISPCTRL_ENABLE) !=
489 SCALER_DISPCTRL_ENABLE);
490}
491
Laurent Pinchart64581712017-06-30 12:36:45 +0300492static void vc4_crtc_atomic_disable(struct drm_crtc *crtc,
493 struct drm_crtc_state *old_state)
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800494{
495 struct drm_device *dev = crtc->dev;
496 struct vc4_dev *vc4 = to_vc4_dev(dev);
497 struct vc4_crtc *vc4_crtc = to_vc4_crtc(crtc);
498 u32 chan = vc4_crtc->channel;
499 int ret;
500 require_hvs_enabled(dev);
501
Mario Kleinere941f052016-07-19 20:59:01 +0200502 /* Disable vblank irq handling before crtc is disabled. */
503 drm_crtc_vblank_off(crtc);
504
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800505 CRTC_WRITE(PV_V_CONTROL,
506 CRTC_READ(PV_V_CONTROL) & ~PV_VCONTROL_VIDEN);
507 ret = wait_for(!(CRTC_READ(PV_V_CONTROL) & PV_VCONTROL_VIDEN), 1);
508 WARN_ONCE(ret, "Timeout waiting for !PV_VCONTROL_VIDEN\n");
509
510 if (HVS_READ(SCALER_DISPCTRLX(chan)) &
511 SCALER_DISPCTRLX_ENABLE) {
512 HVS_WRITE(SCALER_DISPCTRLX(chan),
513 SCALER_DISPCTRLX_RESET);
514
515 /* While the docs say that reset is self-clearing, it
516 * seems it doesn't actually.
517 */
518 HVS_WRITE(SCALER_DISPCTRLX(chan), 0);
519 }
520
521 /* Once we leave, the scaler should be disabled and its fifo empty. */
522
523 WARN_ON_ONCE(HVS_READ(SCALER_DISPCTRLX(chan)) & SCALER_DISPCTRLX_RESET);
524
525 WARN_ON_ONCE(VC4_GET_FIELD(HVS_READ(SCALER_DISPSTATX(chan)),
526 SCALER_DISPSTATX_MODE) !=
527 SCALER_DISPSTATX_MODE_DISABLED);
528
529 WARN_ON_ONCE((HVS_READ(SCALER_DISPSTATX(chan)) &
530 (SCALER_DISPSTATX_FULL | SCALER_DISPSTATX_EMPTY)) !=
531 SCALER_DISPSTATX_EMPTY);
Boris Brezillonedeb729f2017-06-16 10:30:33 +0200532
533 /*
534 * Make sure we issue a vblank event after disabling the CRTC if
535 * someone was waiting it.
536 */
537 if (crtc->state->event) {
538 unsigned long flags;
539
540 spin_lock_irqsave(&dev->event_lock, flags);
541 drm_crtc_send_vblank_event(crtc, crtc->state->event);
542 crtc->state->event = NULL;
543 spin_unlock_irqrestore(&dev->event_lock, flags);
544 }
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800545}
546
Boris Brezillon008095e2018-07-03 09:50:22 +0200547void vc4_crtc_txp_armed(struct drm_crtc_state *state)
548{
549 struct vc4_crtc_state *vc4_state = to_vc4_crtc_state(state);
550
551 vc4_state->txp_armed = true;
552}
553
Boris Brezillon1ed134e2017-06-22 22:25:26 +0200554static void vc4_crtc_update_dlist(struct drm_crtc *crtc)
555{
556 struct drm_device *dev = crtc->dev;
557 struct vc4_dev *vc4 = to_vc4_dev(dev);
558 struct vc4_crtc *vc4_crtc = to_vc4_crtc(crtc);
559 struct vc4_crtc_state *vc4_state = to_vc4_crtc_state(crtc->state);
560
561 if (crtc->state->event) {
562 unsigned long flags;
563
564 crtc->state->event->pipe = drm_crtc_index(crtc);
565
566 WARN_ON(drm_crtc_vblank_get(crtc) != 0);
567
568 spin_lock_irqsave(&dev->event_lock, flags);
Boris Brezillon008095e2018-07-03 09:50:22 +0200569
570 if (!vc4_state->feed_txp || vc4_state->txp_armed) {
571 vc4_crtc->event = crtc->state->event;
572 crtc->state->event = NULL;
573 }
Boris Brezillon1ed134e2017-06-22 22:25:26 +0200574
575 HVS_WRITE(SCALER_DISPLISTX(vc4_crtc->channel),
576 vc4_state->mm.start);
577
578 spin_unlock_irqrestore(&dev->event_lock, flags);
579 } else {
580 HVS_WRITE(SCALER_DISPLISTX(vc4_crtc->channel),
581 vc4_state->mm.start);
582 }
583}
584
Laurent Pinchart0b20a0f2017-06-30 12:36:44 +0300585static void vc4_crtc_atomic_enable(struct drm_crtc *crtc,
586 struct drm_crtc_state *old_state)
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800587{
588 struct drm_device *dev = crtc->dev;
589 struct vc4_dev *vc4 = to_vc4_dev(dev);
590 struct vc4_crtc *vc4_crtc = to_vc4_crtc(crtc);
Boris Brezillon008095e2018-07-03 09:50:22 +0200591 struct vc4_crtc_state *vc4_state = to_vc4_crtc_state(crtc->state);
592 struct drm_display_mode *mode = &crtc->state->adjusted_mode;
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800593
594 require_hvs_enabled(dev);
595
Boris Brezillon1ed134e2017-06-22 22:25:26 +0200596 /* Enable vblank irq handling before crtc is started otherwise
597 * drm_crtc_get_vblank() fails in vc4_crtc_update_dlist().
598 */
599 drm_crtc_vblank_on(crtc);
600 vc4_crtc_update_dlist(crtc);
601
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800602 /* Turn on the scaler, which will wait for vstart to start
603 * compositing.
Boris Brezillon008095e2018-07-03 09:50:22 +0200604 * When feeding the transposer, we should operate in oneshot
605 * mode.
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800606 */
607 HVS_WRITE(SCALER_DISPCTRLX(vc4_crtc->channel),
608 VC4_SET_FIELD(mode->hdisplay, SCALER_DISPCTRLX_WIDTH) |
609 VC4_SET_FIELD(mode->vdisplay, SCALER_DISPCTRLX_HEIGHT) |
Boris Brezillon008095e2018-07-03 09:50:22 +0200610 SCALER_DISPCTRLX_ENABLE |
611 (vc4_state->feed_txp ? SCALER_DISPCTRLX_ONESHOT : 0));
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800612
Boris Brezillon008095e2018-07-03 09:50:22 +0200613 /* When feeding the transposer block the pixelvalve is unneeded and
614 * should not be enabled.
615 */
616 if (!vc4_state->feed_txp)
617 CRTC_WRITE(PV_V_CONTROL,
618 CRTC_READ(PV_V_CONTROL) | PV_VCONTROL_VIDEN);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800619}
620
Jose Abreuc50a1152017-05-25 15:19:22 +0100621static enum drm_mode_status vc4_crtc_mode_valid(struct drm_crtc *crtc,
622 const struct drm_display_mode *mode)
Mario Kleineracc1be12016-07-19 20:58:58 +0200623{
Mario Kleiner36451462016-07-19 20:58:59 +0200624 /* Do not allow doublescan modes from user space */
Jose Abreuc50a1152017-05-25 15:19:22 +0100625 if (mode->flags & DRM_MODE_FLAG_DBLSCAN) {
Mario Kleiner36451462016-07-19 20:58:59 +0200626 DRM_DEBUG_KMS("[CRTC:%d] Doublescan mode rejected.\n",
627 crtc->base.id);
Jose Abreuc50a1152017-05-25 15:19:22 +0100628 return MODE_NO_DBLESCAN;
Mario Kleiner36451462016-07-19 20:58:59 +0200629 }
630
Jose Abreuc50a1152017-05-25 15:19:22 +0100631 return MODE_OK;
Mario Kleineracc1be12016-07-19 20:58:58 +0200632}
633
Boris Brezillon666e7352018-12-06 15:24:38 +0100634void vc4_crtc_get_margins(struct drm_crtc_state *state,
635 unsigned int *left, unsigned int *right,
636 unsigned int *top, unsigned int *bottom)
637{
638 struct vc4_crtc_state *vc4_state = to_vc4_crtc_state(state);
639 struct drm_connector_state *conn_state;
640 struct drm_connector *conn;
641 int i;
642
643 *left = vc4_state->margins.left;
644 *right = vc4_state->margins.right;
645 *top = vc4_state->margins.top;
646 *bottom = vc4_state->margins.bottom;
647
648 /* We have to interate over all new connector states because
649 * vc4_crtc_get_margins() might be called before
650 * vc4_crtc_atomic_check() which means margins info in vc4_crtc_state
651 * might be outdated.
652 */
653 for_each_new_connector_in_state(state->state, conn, conn_state, i) {
654 if (conn_state->crtc != state->crtc)
655 continue;
656
657 *left = conn_state->tv.margins.left;
658 *right = conn_state->tv.margins.right;
659 *top = conn_state->tv.margins.top;
660 *bottom = conn_state->tv.margins.bottom;
661 break;
662 }
663}
664
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800665static int vc4_crtc_atomic_check(struct drm_crtc *crtc,
666 struct drm_crtc_state *state)
667{
Eric Anholtd8dbf442015-12-28 13:25:41 -0800668 struct vc4_crtc_state *vc4_state = to_vc4_crtc_state(state);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800669 struct drm_device *dev = crtc->dev;
670 struct vc4_dev *vc4 = to_vc4_dev(dev);
671 struct drm_plane *plane;
Eric Anholtd8dbf442015-12-28 13:25:41 -0800672 unsigned long flags;
Daniel Vetter2f196b72016-06-02 16:21:44 +0200673 const struct drm_plane_state *plane_state;
Boris Brezillon008095e2018-07-03 09:50:22 +0200674 struct drm_connector *conn;
675 struct drm_connector_state *conn_state;
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800676 u32 dlist_count = 0;
Boris Brezillon008095e2018-07-03 09:50:22 +0200677 int ret, i;
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800678
679 /* The pixelvalve can only feed one encoder (and encoders are
680 * 1:1 with connectors.)
681 */
Maarten Lankhorst14de6c42016-01-04 12:53:20 +0100682 if (hweight32(state->connector_mask) > 1)
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800683 return -EINVAL;
684
Daniel Vetter2f196b72016-06-02 16:21:44 +0200685 drm_atomic_crtc_state_for_each_plane_state(plane, plane_state, state)
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800686 dlist_count += vc4_plane_dlist_size(plane_state);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800687
688 dlist_count++; /* Account for SCALER_CTL0_END. */
689
Eric Anholtd8dbf442015-12-28 13:25:41 -0800690 spin_lock_irqsave(&vc4->hvs->mm_lock, flags);
691 ret = drm_mm_insert_node(&vc4->hvs->dlist_mm, &vc4_state->mm,
Chris Wilson4e64e552017-02-02 21:04:38 +0000692 dlist_count);
Eric Anholtd8dbf442015-12-28 13:25:41 -0800693 spin_unlock_irqrestore(&vc4->hvs->mm_lock, flags);
694 if (ret)
695 return ret;
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800696
Boris Brezillon008095e2018-07-03 09:50:22 +0200697 for_each_new_connector_in_state(state->state, conn, conn_state, i) {
698 if (conn_state->crtc != crtc)
699 continue;
700
701 /* The writeback connector is implemented using the transposer
702 * block which is directly taking its data from the HVS FIFO.
703 */
704 if (conn->connector_type == DRM_MODE_CONNECTOR_WRITEBACK) {
705 state->no_vblank = true;
706 vc4_state->feed_txp = true;
707 } else {
708 state->no_vblank = false;
709 vc4_state->feed_txp = false;
710 }
711
Boris Brezillon666e7352018-12-06 15:24:38 +0100712 vc4_state->margins.left = conn_state->tv.margins.left;
713 vc4_state->margins.right = conn_state->tv.margins.right;
714 vc4_state->margins.top = conn_state->tv.margins.top;
715 vc4_state->margins.bottom = conn_state->tv.margins.bottom;
Boris Brezillon008095e2018-07-03 09:50:22 +0200716 break;
717 }
718
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800719 return 0;
720}
721
722static void vc4_crtc_atomic_flush(struct drm_crtc *crtc,
723 struct drm_crtc_state *old_state)
724{
725 struct drm_device *dev = crtc->dev;
726 struct vc4_dev *vc4 = to_vc4_dev(dev);
Stefan Schake1d49f2e2018-03-09 01:53:37 +0100727 struct vc4_crtc *vc4_crtc = to_vc4_crtc(crtc);
Eric Anholtd8dbf442015-12-28 13:25:41 -0800728 struct vc4_crtc_state *vc4_state = to_vc4_crtc_state(crtc->state);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800729 struct drm_plane *plane;
Stefan Schake1d49f2e2018-03-09 01:53:37 +0100730 struct vc4_plane_state *vc4_plane_state;
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800731 bool debug_dump_regs = false;
Stefan Schake1d49f2e2018-03-09 01:53:37 +0100732 bool enable_bg_fill = false;
Eric Anholtd8dbf442015-12-28 13:25:41 -0800733 u32 __iomem *dlist_start = vc4->hvs->dlist + vc4_state->mm.start;
734 u32 __iomem *dlist_next = dlist_start;
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800735
736 if (debug_dump_regs) {
737 DRM_INFO("CRTC %d HVS before:\n", drm_crtc_index(crtc));
738 vc4_hvs_dump_state(dev);
739 }
740
Eric Anholtd8dbf442015-12-28 13:25:41 -0800741 /* Copy all the active planes' dlist contents to the hardware dlist. */
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800742 drm_atomic_crtc_for_each_plane(plane, crtc) {
Stefan Schake1d49f2e2018-03-09 01:53:37 +0100743 /* Is this the first active plane? */
744 if (dlist_next == dlist_start) {
745 /* We need to enable background fill when a plane
746 * could be alpha blending from the background, i.e.
747 * where no other plane is underneath. It suffices to
748 * consider the first active plane here since we set
749 * needs_bg_fill such that either the first plane
750 * already needs it or all planes on top blend from
751 * the first or a lower plane.
752 */
753 vc4_plane_state = to_vc4_plane_state(plane->state);
754 enable_bg_fill = vc4_plane_state->needs_bg_fill;
755 }
756
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800757 dlist_next += vc4_plane_write_dlist(plane, dlist_next);
758 }
759
Eric Anholtd8dbf442015-12-28 13:25:41 -0800760 writel(SCALER_CTL0_END, dlist_next);
761 dlist_next++;
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800762
Eric Anholtd8dbf442015-12-28 13:25:41 -0800763 WARN_ON_ONCE(dlist_next - dlist_start != vc4_state->mm.size);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800764
Stefan Schake1d49f2e2018-03-09 01:53:37 +0100765 if (enable_bg_fill)
766 /* This sets a black background color fill, as is the case
767 * with other DRM drivers.
768 */
769 HVS_WRITE(SCALER_DISPBKGNDX(vc4_crtc->channel),
770 HVS_READ(SCALER_DISPBKGNDX(vc4_crtc->channel)) |
771 SCALER_DISPBKGND_FILL);
772
Boris Brezillon1ed134e2017-06-22 22:25:26 +0200773 /* Only update DISPLIST if the CRTC was already running and is not
774 * being disabled.
775 * vc4_crtc_enable() takes care of updating the dlist just after
776 * re-enabling VBLANK interrupts and before enabling the engine.
777 * If the CRTC is being disabled, there's no point in updating this
778 * information.
779 */
780 if (crtc->state->active && old_state->active)
781 vc4_crtc_update_dlist(crtc);
Mario Kleiner56d1fe02016-05-18 14:02:46 +0200782
Stefan Schake640e0c72018-04-11 22:49:13 +0200783 if (crtc->state->color_mgmt_changed) {
784 u32 dispbkgndx = HVS_READ(SCALER_DISPBKGNDX(vc4_crtc->channel));
785
786 if (crtc->state->gamma_lut) {
787 vc4_crtc_update_gamma_lut(crtc);
788 dispbkgndx |= SCALER_DISPBKGND_GAMMA;
789 } else {
790 /* Unsetting DISPBKGND_GAMMA skips the gamma lut step
791 * in hardware, which is the same as a linear lut that
792 * DRM expects us to use in absence of a user lut.
793 */
794 dispbkgndx &= ~SCALER_DISPBKGND_GAMMA;
795 }
796 HVS_WRITE(SCALER_DISPBKGNDX(vc4_crtc->channel), dispbkgndx);
797 }
798
Mario Kleiner56d1fe02016-05-18 14:02:46 +0200799 if (debug_dump_regs) {
800 DRM_INFO("CRTC %d HVS after:\n", drm_crtc_index(crtc));
801 vc4_hvs_dump_state(dev);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800802 }
803}
804
Shawn Guo0d5f46f2017-02-07 17:16:34 +0800805static int vc4_enable_vblank(struct drm_crtc *crtc)
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800806{
Shawn Guoc77b9ab2017-01-09 19:25:45 +0800807 struct vc4_crtc *vc4_crtc = to_vc4_crtc(crtc);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800808
809 CRTC_WRITE(PV_INTEN, PV_INT_VFP_START);
810
811 return 0;
812}
813
Shawn Guo0d5f46f2017-02-07 17:16:34 +0800814static void vc4_disable_vblank(struct drm_crtc *crtc)
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800815{
Shawn Guoc77b9ab2017-01-09 19:25:45 +0800816 struct vc4_crtc *vc4_crtc = to_vc4_crtc(crtc);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800817
818 CRTC_WRITE(PV_INTEN, 0);
819}
820
821static void vc4_crtc_handle_page_flip(struct vc4_crtc *vc4_crtc)
822{
823 struct drm_crtc *crtc = &vc4_crtc->base;
824 struct drm_device *dev = crtc->dev;
Mario Kleiner56d1fe02016-05-18 14:02:46 +0200825 struct vc4_dev *vc4 = to_vc4_dev(dev);
826 struct vc4_crtc_state *vc4_state = to_vc4_crtc_state(crtc->state);
827 u32 chan = vc4_crtc->channel;
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800828 unsigned long flags;
829
830 spin_lock_irqsave(&dev->event_lock, flags);
Mario Kleiner56d1fe02016-05-18 14:02:46 +0200831 if (vc4_crtc->event &&
Boris Brezillon008095e2018-07-03 09:50:22 +0200832 (vc4_state->mm.start == HVS_READ(SCALER_DISPLACTX(chan)) ||
833 vc4_state->feed_txp)) {
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800834 drm_crtc_send_vblank_event(crtc, vc4_crtc->event);
835 vc4_crtc->event = NULL;
Mario Kleineree7c10e2016-05-06 19:26:06 +0200836 drm_crtc_vblank_put(crtc);
Boris Brezillon531a1b62019-02-20 16:51:22 +0100837
838 /* Wait for the page flip to unmask the underrun to ensure that
839 * the display list was updated by the hardware. Before that
840 * happens, the HVS will be using the previous display list with
841 * the CRTC and encoder already reconfigured, leading to
842 * underruns. This can be seen when reconfiguring the CRTC.
843 */
844 vc4_hvs_unmask_underrun(dev, vc4_crtc->channel);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800845 }
846 spin_unlock_irqrestore(&dev->event_lock, flags);
847}
848
Boris Brezillon008095e2018-07-03 09:50:22 +0200849void vc4_crtc_handle_vblank(struct vc4_crtc *crtc)
850{
851 crtc->t_vblank = ktime_get();
852 drm_crtc_handle_vblank(&crtc->base);
853 vc4_crtc_handle_page_flip(crtc);
854}
855
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800856static irqreturn_t vc4_crtc_irq_handler(int irq, void *data)
857{
858 struct vc4_crtc *vc4_crtc = data;
859 u32 stat = CRTC_READ(PV_INTSTAT);
860 irqreturn_t ret = IRQ_NONE;
861
862 if (stat & PV_INT_VFP_START) {
863 CRTC_WRITE(PV_INTSTAT, PV_INT_VFP_START);
Boris Brezillon008095e2018-07-03 09:50:22 +0200864 vc4_crtc_handle_vblank(vc4_crtc);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800865 ret = IRQ_HANDLED;
866 }
867
868 return ret;
869}
870
Eric Anholtb501bac2015-11-30 12:34:01 -0800871struct vc4_async_flip_state {
872 struct drm_crtc *crtc;
873 struct drm_framebuffer *fb;
Boris Brezillonf7aef1c2018-04-30 15:32:32 +0200874 struct drm_framebuffer *old_fb;
Eric Anholtb501bac2015-11-30 12:34:01 -0800875 struct drm_pending_vblank_event *event;
876
877 struct vc4_seqno_cb cb;
878};
879
880/* Called when the V3D execution for the BO being flipped to is done, so that
881 * we can actually update the plane's address to point to it.
882 */
883static void
884vc4_async_page_flip_complete(struct vc4_seqno_cb *cb)
885{
886 struct vc4_async_flip_state *flip_state =
887 container_of(cb, struct vc4_async_flip_state, cb);
888 struct drm_crtc *crtc = flip_state->crtc;
889 struct drm_device *dev = crtc->dev;
890 struct vc4_dev *vc4 = to_vc4_dev(dev);
891 struct drm_plane *plane = crtc->primary;
892
893 vc4_plane_async_set_fb(plane, flip_state->fb);
894 if (flip_state->event) {
895 unsigned long flags;
896
897 spin_lock_irqsave(&dev->event_lock, flags);
898 drm_crtc_send_vblank_event(crtc, flip_state->event);
899 spin_unlock_irqrestore(&dev->event_lock, flags);
900 }
901
Mario Kleineree7c10e2016-05-06 19:26:06 +0200902 drm_crtc_vblank_put(crtc);
Cihangir Akturk1d5494e2017-08-03 14:58:40 +0300903 drm_framebuffer_put(flip_state->fb);
Boris Brezillonf7aef1c2018-04-30 15:32:32 +0200904
905 /* Decrement the BO usecnt in order to keep the inc/dec calls balanced
906 * when the planes are updated through the async update path.
907 * FIXME: we should move to generic async-page-flip when it's
908 * available, so that we can get rid of this hand-made cleanup_fb()
909 * logic.
910 */
911 if (flip_state->old_fb) {
912 struct drm_gem_cma_object *cma_bo;
913 struct vc4_bo *bo;
914
915 cma_bo = drm_fb_cma_get_gem_obj(flip_state->old_fb, 0);
916 bo = to_vc4_bo(&cma_bo->base);
917 vc4_bo_dec_usecnt(bo);
918 drm_framebuffer_put(flip_state->old_fb);
919 }
920
Eric Anholtb501bac2015-11-30 12:34:01 -0800921 kfree(flip_state);
922
923 up(&vc4->async_modeset);
924}
925
926/* Implements async (non-vblank-synced) page flips.
927 *
928 * The page flip ioctl needs to return immediately, so we grab the
929 * modeset semaphore on the pipe, and queue the address update for
930 * when V3D is done with the BO being flipped to.
931 */
932static int vc4_async_page_flip(struct drm_crtc *crtc,
933 struct drm_framebuffer *fb,
934 struct drm_pending_vblank_event *event,
935 uint32_t flags)
936{
937 struct drm_device *dev = crtc->dev;
938 struct vc4_dev *vc4 = to_vc4_dev(dev);
939 struct drm_plane *plane = crtc->primary;
940 int ret = 0;
941 struct vc4_async_flip_state *flip_state;
942 struct drm_gem_cma_object *cma_bo = drm_fb_cma_get_gem_obj(fb, 0);
943 struct vc4_bo *bo = to_vc4_bo(&cma_bo->base);
944
Boris Brezillonf7aef1c2018-04-30 15:32:32 +0200945 /* Increment the BO usecnt here, so that we never end up with an
946 * unbalanced number of vc4_bo_{dec,inc}_usecnt() calls when the
947 * plane is later updated through the non-async path.
948 * FIXME: we should move to generic async-page-flip when it's
949 * available, so that we can get rid of this hand-made prepare_fb()
950 * logic.
951 */
952 ret = vc4_bo_inc_usecnt(bo);
953 if (ret)
954 return ret;
955
Eric Anholtb501bac2015-11-30 12:34:01 -0800956 flip_state = kzalloc(sizeof(*flip_state), GFP_KERNEL);
Boris Brezillonf7aef1c2018-04-30 15:32:32 +0200957 if (!flip_state) {
958 vc4_bo_dec_usecnt(bo);
Eric Anholtb501bac2015-11-30 12:34:01 -0800959 return -ENOMEM;
Boris Brezillonf7aef1c2018-04-30 15:32:32 +0200960 }
Eric Anholtb501bac2015-11-30 12:34:01 -0800961
Cihangir Akturk1d5494e2017-08-03 14:58:40 +0300962 drm_framebuffer_get(fb);
Eric Anholtb501bac2015-11-30 12:34:01 -0800963 flip_state->fb = fb;
964 flip_state->crtc = crtc;
965 flip_state->event = event;
966
967 /* Make sure all other async modesetes have landed. */
968 ret = down_interruptible(&vc4->async_modeset);
969 if (ret) {
Cihangir Akturk1d5494e2017-08-03 14:58:40 +0300970 drm_framebuffer_put(fb);
Boris Brezillonf7aef1c2018-04-30 15:32:32 +0200971 vc4_bo_dec_usecnt(bo);
Eric Anholtb501bac2015-11-30 12:34:01 -0800972 kfree(flip_state);
973 return ret;
974 }
975
Boris Brezillonf7aef1c2018-04-30 15:32:32 +0200976 /* Save the current FB before it's replaced by the new one in
977 * drm_atomic_set_fb_for_plane(). We'll need the old FB in
978 * vc4_async_page_flip_complete() to decrement the BO usecnt and keep
979 * it consistent.
980 * FIXME: we should move to generic async-page-flip when it's
981 * available, so that we can get rid of this hand-made cleanup_fb()
982 * logic.
983 */
984 flip_state->old_fb = plane->state->fb;
985 if (flip_state->old_fb)
986 drm_framebuffer_get(flip_state->old_fb);
987
Mario Kleineree7c10e2016-05-06 19:26:06 +0200988 WARN_ON(drm_crtc_vblank_get(crtc) != 0);
989
Eric Anholtb501bac2015-11-30 12:34:01 -0800990 /* Immediately update the plane's legacy fb pointer, so that later
991 * modeset prep sees the state that will be present when the semaphore
992 * is released.
993 */
994 drm_atomic_set_fb_for_plane(plane->state, fb);
Eric Anholtb501bac2015-11-30 12:34:01 -0800995
996 vc4_queue_seqno_cb(dev, &flip_state->cb, bo->seqno,
997 vc4_async_page_flip_complete);
998
999 /* Driver takes ownership of state on successful async commit. */
1000 return 0;
1001}
1002
1003static int vc4_page_flip(struct drm_crtc *crtc,
1004 struct drm_framebuffer *fb,
1005 struct drm_pending_vblank_event *event,
Daniel Vetter41292b1f2017-03-22 22:50:50 +01001006 uint32_t flags,
1007 struct drm_modeset_acquire_ctx *ctx)
Eric Anholtb501bac2015-11-30 12:34:01 -08001008{
1009 if (flags & DRM_MODE_PAGE_FLIP_ASYNC)
1010 return vc4_async_page_flip(crtc, fb, event, flags);
1011 else
Daniel Vetter41292b1f2017-03-22 22:50:50 +01001012 return drm_atomic_helper_page_flip(crtc, fb, event, flags, ctx);
Eric Anholtb501bac2015-11-30 12:34:01 -08001013}
1014
Eric Anholtd8dbf442015-12-28 13:25:41 -08001015static struct drm_crtc_state *vc4_crtc_duplicate_state(struct drm_crtc *crtc)
1016{
Boris Brezillon008095e2018-07-03 09:50:22 +02001017 struct vc4_crtc_state *vc4_state, *old_vc4_state;
Eric Anholtd8dbf442015-12-28 13:25:41 -08001018
1019 vc4_state = kzalloc(sizeof(*vc4_state), GFP_KERNEL);
1020 if (!vc4_state)
1021 return NULL;
1022
Boris Brezillon008095e2018-07-03 09:50:22 +02001023 old_vc4_state = to_vc4_crtc_state(crtc->state);
1024 vc4_state->feed_txp = old_vc4_state->feed_txp;
Boris Brezillon666e7352018-12-06 15:24:38 +01001025 vc4_state->margins = old_vc4_state->margins;
Boris Brezillon008095e2018-07-03 09:50:22 +02001026
Eric Anholtd8dbf442015-12-28 13:25:41 -08001027 __drm_atomic_helper_crtc_duplicate_state(crtc, &vc4_state->base);
1028 return &vc4_state->base;
1029}
1030
1031static void vc4_crtc_destroy_state(struct drm_crtc *crtc,
1032 struct drm_crtc_state *state)
1033{
1034 struct vc4_dev *vc4 = to_vc4_dev(crtc->dev);
1035 struct vc4_crtc_state *vc4_state = to_vc4_crtc_state(state);
1036
1037 if (vc4_state->mm.allocated) {
1038 unsigned long flags;
1039
1040 spin_lock_irqsave(&vc4->hvs->mm_lock, flags);
1041 drm_mm_remove_node(&vc4_state->mm);
1042 spin_unlock_irqrestore(&vc4->hvs->mm_lock, flags);
1043
1044 }
1045
Eric Anholt7622b252016-10-10 09:44:06 -07001046 drm_atomic_helper_crtc_destroy_state(crtc, state);
Eric Anholtd8dbf442015-12-28 13:25:41 -08001047}
1048
Eric Anholt6d6e5002017-03-28 13:13:43 -07001049static void
1050vc4_crtc_reset(struct drm_crtc *crtc)
1051{
1052 if (crtc->state)
1053 __drm_atomic_helper_crtc_destroy_state(crtc->state);
1054
1055 crtc->state = kzalloc(sizeof(struct vc4_crtc_state), GFP_KERNEL);
1056 if (crtc->state)
1057 crtc->state->crtc = crtc;
1058}
1059
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001060static const struct drm_crtc_funcs vc4_crtc_funcs = {
1061 .set_config = drm_atomic_helper_set_config,
1062 .destroy = vc4_crtc_destroy,
Eric Anholtb501bac2015-11-30 12:34:01 -08001063 .page_flip = vc4_page_flip,
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001064 .set_property = NULL,
1065 .cursor_set = NULL, /* handled by drm_mode_cursor_universal */
1066 .cursor_move = NULL, /* handled by drm_mode_cursor_universal */
Eric Anholt6d6e5002017-03-28 13:13:43 -07001067 .reset = vc4_crtc_reset,
Eric Anholtd8dbf442015-12-28 13:25:41 -08001068 .atomic_duplicate_state = vc4_crtc_duplicate_state,
1069 .atomic_destroy_state = vc4_crtc_destroy_state,
Stefan Schake640e0c72018-04-11 22:49:13 +02001070 .gamma_set = drm_atomic_helper_legacy_gamma_set,
Shawn Guo0d5f46f2017-02-07 17:16:34 +08001071 .enable_vblank = vc4_enable_vblank,
1072 .disable_vblank = vc4_disable_vblank,
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001073};
1074
1075static const struct drm_crtc_helper_funcs vc4_crtc_helper_funcs = {
1076 .mode_set_nofb = vc4_crtc_mode_set_nofb,
Jose Abreuc50a1152017-05-25 15:19:22 +01001077 .mode_valid = vc4_crtc_mode_valid,
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001078 .atomic_check = vc4_crtc_atomic_check,
1079 .atomic_flush = vc4_crtc_atomic_flush,
Laurent Pinchart0b20a0f2017-06-30 12:36:44 +03001080 .atomic_enable = vc4_crtc_atomic_enable,
Laurent Pinchart64581712017-06-30 12:36:45 +03001081 .atomic_disable = vc4_crtc_atomic_disable,
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001082};
1083
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001084static const struct vc4_crtc_data pv0_data = {
1085 .hvs_channel = 0,
Boris Brezillonab8df602016-12-02 14:48:07 +01001086 .encoder_types = {
1087 [PV_CONTROL_CLK_SELECT_DSI] = VC4_ENCODER_TYPE_DSI0,
1088 [PV_CONTROL_CLK_SELECT_DPI_SMI_HDMI] = VC4_ENCODER_TYPE_DPI,
1089 },
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001090};
1091
1092static const struct vc4_crtc_data pv1_data = {
1093 .hvs_channel = 2,
Boris Brezillonab8df602016-12-02 14:48:07 +01001094 .encoder_types = {
1095 [PV_CONTROL_CLK_SELECT_DSI] = VC4_ENCODER_TYPE_DSI1,
1096 [PV_CONTROL_CLK_SELECT_DPI_SMI_HDMI] = VC4_ENCODER_TYPE_SMI,
1097 },
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001098};
1099
1100static const struct vc4_crtc_data pv2_data = {
1101 .hvs_channel = 1,
Boris Brezillonab8df602016-12-02 14:48:07 +01001102 .encoder_types = {
1103 [PV_CONTROL_CLK_SELECT_DPI_SMI_HDMI] = VC4_ENCODER_TYPE_HDMI,
1104 [PV_CONTROL_CLK_SELECT_VEC] = VC4_ENCODER_TYPE_VEC,
1105 },
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001106};
1107
1108static const struct of_device_id vc4_crtc_dt_match[] = {
1109 { .compatible = "brcm,bcm2835-pixelvalve0", .data = &pv0_data },
1110 { .compatible = "brcm,bcm2835-pixelvalve1", .data = &pv1_data },
1111 { .compatible = "brcm,bcm2835-pixelvalve2", .data = &pv2_data },
1112 {}
1113};
1114
1115static void vc4_set_crtc_possible_masks(struct drm_device *drm,
1116 struct drm_crtc *crtc)
1117{
1118 struct vc4_crtc *vc4_crtc = to_vc4_crtc(crtc);
Boris Brezillonab8df602016-12-02 14:48:07 +01001119 const struct vc4_crtc_data *crtc_data = vc4_crtc->data;
1120 const enum vc4_encoder_type *encoder_types = crtc_data->encoder_types;
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001121 struct drm_encoder *encoder;
1122
1123 drm_for_each_encoder(encoder, drm) {
Boris Brezillon008095e2018-07-03 09:50:22 +02001124 struct vc4_encoder *vc4_encoder;
Boris Brezillonab8df602016-12-02 14:48:07 +01001125 int i;
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001126
Boris Brezillon008095e2018-07-03 09:50:22 +02001127 /* HVS FIFO2 can feed the TXP IP. */
1128 if (crtc_data->hvs_channel == 2 &&
1129 encoder->encoder_type == DRM_MODE_ENCODER_VIRTUAL) {
1130 encoder->possible_crtcs |= drm_crtc_mask(crtc);
1131 continue;
1132 }
1133
1134 vc4_encoder = to_vc4_encoder(encoder);
Boris Brezillonab8df602016-12-02 14:48:07 +01001135 for (i = 0; i < ARRAY_SIZE(crtc_data->encoder_types); i++) {
1136 if (vc4_encoder->type == encoder_types[i]) {
1137 vc4_encoder->clock_select = i;
1138 encoder->possible_crtcs |= drm_crtc_mask(crtc);
1139 break;
1140 }
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001141 }
1142 }
1143}
1144
Mario Kleiner1bf59f12016-06-23 08:17:50 +02001145static void
1146vc4_crtc_get_cob_allocation(struct vc4_crtc *vc4_crtc)
1147{
1148 struct drm_device *drm = vc4_crtc->base.dev;
1149 struct vc4_dev *vc4 = to_vc4_dev(drm);
1150 u32 dispbase = HVS_READ(SCALER_DISPBASEX(vc4_crtc->channel));
1151 /* Top/base are supposed to be 4-pixel aligned, but the
1152 * Raspberry Pi firmware fills the low bits (which are
1153 * presumably ignored).
1154 */
1155 u32 top = VC4_GET_FIELD(dispbase, SCALER_DISPBASEX_TOP) & ~3;
1156 u32 base = VC4_GET_FIELD(dispbase, SCALER_DISPBASEX_BASE) & ~3;
1157
1158 vc4_crtc->cob_size = top - base + 4;
1159}
1160
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001161static int vc4_crtc_bind(struct device *dev, struct device *master, void *data)
1162{
1163 struct platform_device *pdev = to_platform_device(dev);
1164 struct drm_device *drm = dev_get_drvdata(master);
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001165 struct vc4_crtc *vc4_crtc;
1166 struct drm_crtc *crtc;
Eric Anholtfc2d6f12015-10-20 14:18:56 +01001167 struct drm_plane *primary_plane, *cursor_plane, *destroy_plane, *temp;
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001168 const struct of_device_id *match;
Eric Anholtfc2d6f12015-10-20 14:18:56 +01001169 int ret, i;
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001170
1171 vc4_crtc = devm_kzalloc(dev, sizeof(*vc4_crtc), GFP_KERNEL);
1172 if (!vc4_crtc)
1173 return -ENOMEM;
1174 crtc = &vc4_crtc->base;
1175
1176 match = of_match_device(vc4_crtc_dt_match, dev);
1177 if (!match)
1178 return -ENODEV;
1179 vc4_crtc->data = match->data;
1180
1181 vc4_crtc->regs = vc4_ioremap_regs(pdev, 0);
1182 if (IS_ERR(vc4_crtc->regs))
1183 return PTR_ERR(vc4_crtc->regs);
1184
1185 /* For now, we create just the primary and the legacy cursor
1186 * planes. We should be able to stack more planes on easily,
1187 * but to do that we would need to compute the bandwidth
1188 * requirement of the plane configuration, and reject ones
1189 * that will take too much.
1190 */
1191 primary_plane = vc4_plane_init(drm, DRM_PLANE_TYPE_PRIMARY);
Dan Carpenter79513232015-11-04 16:21:40 +03001192 if (IS_ERR(primary_plane)) {
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001193 dev_err(dev, "failed to construct primary plane\n");
1194 ret = PTR_ERR(primary_plane);
1195 goto err;
1196 }
1197
Eric Anholtfc2d6f12015-10-20 14:18:56 +01001198 drm_crtc_init_with_planes(drm, crtc, primary_plane, NULL,
Ville Syrjäläf9882872015-12-09 16:19:31 +02001199 &vc4_crtc_funcs, NULL);
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001200 drm_crtc_helper_add(crtc, &vc4_crtc_helper_funcs);
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001201 vc4_crtc->channel = vc4_crtc->data->hvs_channel;
Eric Anholte582b6c2016-03-31 18:38:20 -07001202 drm_mode_crtc_set_gamma_size(crtc, ARRAY_SIZE(vc4_crtc->lut_r));
Stefan Schake640e0c72018-04-11 22:49:13 +02001203 drm_crtc_enable_color_mgmt(crtc, 0, false, crtc->gamma_size);
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001204
Stefan Schake766cc6b2018-04-20 05:25:44 -07001205 /* We support CTM, but only for one CRTC at a time. It's therefore
1206 * implemented as private driver state in vc4_kms, not here.
1207 */
1208 drm_crtc_enable_color_mgmt(crtc, 0, true, crtc->gamma_size);
1209
Eric Anholtfc2d6f12015-10-20 14:18:56 +01001210 /* Set up some arbitrary number of planes. We're not limited
1211 * by a set number of physical registers, just the space in
1212 * the HVS (16k) and how small an plane can be (28 bytes).
1213 * However, each plane we set up takes up some memory, and
1214 * increases the cost of looping over planes, which atomic
1215 * modesetting does quite a bit. As a result, we pick a
1216 * modest number of planes to expose, that should hopefully
1217 * still cover any sane usecase.
1218 */
1219 for (i = 0; i < 8; i++) {
1220 struct drm_plane *plane =
1221 vc4_plane_init(drm, DRM_PLANE_TYPE_OVERLAY);
1222
1223 if (IS_ERR(plane))
1224 continue;
1225
Ville Syrjäläc0183a82018-06-26 22:47:15 +03001226 plane->possible_crtcs = drm_crtc_mask(crtc);
Eric Anholtfc2d6f12015-10-20 14:18:56 +01001227 }
1228
1229 /* Set up the legacy cursor after overlay initialization,
1230 * since we overlay planes on the CRTC in the order they were
1231 * initialized.
1232 */
1233 cursor_plane = vc4_plane_init(drm, DRM_PLANE_TYPE_CURSOR);
1234 if (!IS_ERR(cursor_plane)) {
Ville Syrjäläc0183a82018-06-26 22:47:15 +03001235 cursor_plane->possible_crtcs = drm_crtc_mask(crtc);
Eric Anholtfc2d6f12015-10-20 14:18:56 +01001236 crtc->cursor = cursor_plane;
1237 }
1238
Mario Kleiner1bf59f12016-06-23 08:17:50 +02001239 vc4_crtc_get_cob_allocation(vc4_crtc);
1240
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001241 CRTC_WRITE(PV_INTEN, 0);
1242 CRTC_WRITE(PV_INTSTAT, PV_INT_VFP_START);
1243 ret = devm_request_irq(dev, platform_get_irq(pdev, 0),
1244 vc4_crtc_irq_handler, 0, "vc4 crtc", vc4_crtc);
1245 if (ret)
Eric Anholtfc2d6f12015-10-20 14:18:56 +01001246 goto err_destroy_planes;
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001247
1248 vc4_set_crtc_possible_masks(drm, crtc);
1249
Eric Anholte582b6c2016-03-31 18:38:20 -07001250 for (i = 0; i < crtc->gamma_size; i++) {
1251 vc4_crtc->lut_r[i] = i;
1252 vc4_crtc->lut_g[i] = i;
1253 vc4_crtc->lut_b[i] = i;
1254 }
1255
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001256 platform_set_drvdata(pdev, vc4_crtc);
1257
1258 return 0;
1259
Eric Anholtfc2d6f12015-10-20 14:18:56 +01001260err_destroy_planes:
1261 list_for_each_entry_safe(destroy_plane, temp,
1262 &drm->mode_config.plane_list, head) {
Ville Syrjäläc0183a82018-06-26 22:47:15 +03001263 if (destroy_plane->possible_crtcs == drm_crtc_mask(crtc))
Eric Anholtfc2d6f12015-10-20 14:18:56 +01001264 destroy_plane->funcs->destroy(destroy_plane);
1265 }
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001266err:
1267 return ret;
1268}
1269
1270static void vc4_crtc_unbind(struct device *dev, struct device *master,
1271 void *data)
1272{
1273 struct platform_device *pdev = to_platform_device(dev);
1274 struct vc4_crtc *vc4_crtc = dev_get_drvdata(dev);
1275
1276 vc4_crtc_destroy(&vc4_crtc->base);
1277
1278 CRTC_WRITE(PV_INTEN, 0);
1279
1280 platform_set_drvdata(pdev, NULL);
1281}
1282
1283static const struct component_ops vc4_crtc_ops = {
1284 .bind = vc4_crtc_bind,
1285 .unbind = vc4_crtc_unbind,
1286};
1287
1288static int vc4_crtc_dev_probe(struct platform_device *pdev)
1289{
1290 return component_add(&pdev->dev, &vc4_crtc_ops);
1291}
1292
1293static int vc4_crtc_dev_remove(struct platform_device *pdev)
1294{
1295 component_del(&pdev->dev, &vc4_crtc_ops);
1296 return 0;
1297}
1298
1299struct platform_driver vc4_crtc_driver = {
1300 .probe = vc4_crtc_dev_probe,
1301 .remove = vc4_crtc_dev_remove,
1302 .driver = {
1303 .name = "vc4_crtc",
1304 .of_match_table = vc4_crtc_dt_match,
1305 },
1306};