blob: 730008d3da761e2eb37d9821c518672567a6e1c6 [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 Anholta86773d2016-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 Anholta86773d2016-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 Anholta86773d2016-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 Anholta86773d2016-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 Anholta86773d2016-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 Anholta86773d2016-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 Anholta86773d2016-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 Anholta86773d2016-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 Anholta86773d2016-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);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800837 }
838 spin_unlock_irqrestore(&dev->event_lock, flags);
839}
840
Boris Brezillon008095e2018-07-03 09:50:22 +0200841void vc4_crtc_handle_vblank(struct vc4_crtc *crtc)
842{
843 crtc->t_vblank = ktime_get();
844 drm_crtc_handle_vblank(&crtc->base);
845 vc4_crtc_handle_page_flip(crtc);
846}
847
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800848static irqreturn_t vc4_crtc_irq_handler(int irq, void *data)
849{
850 struct vc4_crtc *vc4_crtc = data;
851 u32 stat = CRTC_READ(PV_INTSTAT);
852 irqreturn_t ret = IRQ_NONE;
853
854 if (stat & PV_INT_VFP_START) {
855 CRTC_WRITE(PV_INTSTAT, PV_INT_VFP_START);
Boris Brezillon008095e2018-07-03 09:50:22 +0200856 vc4_crtc_handle_vblank(vc4_crtc);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800857 ret = IRQ_HANDLED;
858 }
859
860 return ret;
861}
862
Eric Anholtb501bac2015-11-30 12:34:01 -0800863struct vc4_async_flip_state {
864 struct drm_crtc *crtc;
865 struct drm_framebuffer *fb;
Boris Brezillonf7aef1c2018-04-30 15:32:32 +0200866 struct drm_framebuffer *old_fb;
Eric Anholtb501bac2015-11-30 12:34:01 -0800867 struct drm_pending_vblank_event *event;
868
869 struct vc4_seqno_cb cb;
870};
871
872/* Called when the V3D execution for the BO being flipped to is done, so that
873 * we can actually update the plane's address to point to it.
874 */
875static void
876vc4_async_page_flip_complete(struct vc4_seqno_cb *cb)
877{
878 struct vc4_async_flip_state *flip_state =
879 container_of(cb, struct vc4_async_flip_state, cb);
880 struct drm_crtc *crtc = flip_state->crtc;
881 struct drm_device *dev = crtc->dev;
882 struct vc4_dev *vc4 = to_vc4_dev(dev);
883 struct drm_plane *plane = crtc->primary;
884
885 vc4_plane_async_set_fb(plane, flip_state->fb);
886 if (flip_state->event) {
887 unsigned long flags;
888
889 spin_lock_irqsave(&dev->event_lock, flags);
890 drm_crtc_send_vblank_event(crtc, flip_state->event);
891 spin_unlock_irqrestore(&dev->event_lock, flags);
892 }
893
Mario Kleineree7c10e2016-05-06 19:26:06 +0200894 drm_crtc_vblank_put(crtc);
Cihangir Akturk1d5494e2017-08-03 14:58:40 +0300895 drm_framebuffer_put(flip_state->fb);
Boris Brezillonf7aef1c2018-04-30 15:32:32 +0200896
897 /* Decrement the BO usecnt in order to keep the inc/dec calls balanced
898 * when the planes are updated through the async update path.
899 * FIXME: we should move to generic async-page-flip when it's
900 * available, so that we can get rid of this hand-made cleanup_fb()
901 * logic.
902 */
903 if (flip_state->old_fb) {
904 struct drm_gem_cma_object *cma_bo;
905 struct vc4_bo *bo;
906
907 cma_bo = drm_fb_cma_get_gem_obj(flip_state->old_fb, 0);
908 bo = to_vc4_bo(&cma_bo->base);
909 vc4_bo_dec_usecnt(bo);
910 drm_framebuffer_put(flip_state->old_fb);
911 }
912
Eric Anholtb501bac2015-11-30 12:34:01 -0800913 kfree(flip_state);
914
915 up(&vc4->async_modeset);
916}
917
918/* Implements async (non-vblank-synced) page flips.
919 *
920 * The page flip ioctl needs to return immediately, so we grab the
921 * modeset semaphore on the pipe, and queue the address update for
922 * when V3D is done with the BO being flipped to.
923 */
924static int vc4_async_page_flip(struct drm_crtc *crtc,
925 struct drm_framebuffer *fb,
926 struct drm_pending_vblank_event *event,
927 uint32_t flags)
928{
929 struct drm_device *dev = crtc->dev;
930 struct vc4_dev *vc4 = to_vc4_dev(dev);
931 struct drm_plane *plane = crtc->primary;
932 int ret = 0;
933 struct vc4_async_flip_state *flip_state;
934 struct drm_gem_cma_object *cma_bo = drm_fb_cma_get_gem_obj(fb, 0);
935 struct vc4_bo *bo = to_vc4_bo(&cma_bo->base);
936
Boris Brezillonf7aef1c2018-04-30 15:32:32 +0200937 /* Increment the BO usecnt here, so that we never end up with an
938 * unbalanced number of vc4_bo_{dec,inc}_usecnt() calls when the
939 * plane is later updated through the non-async path.
940 * FIXME: we should move to generic async-page-flip when it's
941 * available, so that we can get rid of this hand-made prepare_fb()
942 * logic.
943 */
944 ret = vc4_bo_inc_usecnt(bo);
945 if (ret)
946 return ret;
947
Eric Anholtb501bac2015-11-30 12:34:01 -0800948 flip_state = kzalloc(sizeof(*flip_state), GFP_KERNEL);
Boris Brezillonf7aef1c2018-04-30 15:32:32 +0200949 if (!flip_state) {
950 vc4_bo_dec_usecnt(bo);
Eric Anholtb501bac2015-11-30 12:34:01 -0800951 return -ENOMEM;
Boris Brezillonf7aef1c2018-04-30 15:32:32 +0200952 }
Eric Anholtb501bac2015-11-30 12:34:01 -0800953
Cihangir Akturk1d5494e2017-08-03 14:58:40 +0300954 drm_framebuffer_get(fb);
Eric Anholtb501bac2015-11-30 12:34:01 -0800955 flip_state->fb = fb;
956 flip_state->crtc = crtc;
957 flip_state->event = event;
958
959 /* Make sure all other async modesetes have landed. */
960 ret = down_interruptible(&vc4->async_modeset);
961 if (ret) {
Cihangir Akturk1d5494e2017-08-03 14:58:40 +0300962 drm_framebuffer_put(fb);
Boris Brezillonf7aef1c2018-04-30 15:32:32 +0200963 vc4_bo_dec_usecnt(bo);
Eric Anholtb501bac2015-11-30 12:34:01 -0800964 kfree(flip_state);
965 return ret;
966 }
967
Boris Brezillonf7aef1c2018-04-30 15:32:32 +0200968 /* Save the current FB before it's replaced by the new one in
969 * drm_atomic_set_fb_for_plane(). We'll need the old FB in
970 * vc4_async_page_flip_complete() to decrement the BO usecnt and keep
971 * it consistent.
972 * FIXME: we should move to generic async-page-flip when it's
973 * available, so that we can get rid of this hand-made cleanup_fb()
974 * logic.
975 */
976 flip_state->old_fb = plane->state->fb;
977 if (flip_state->old_fb)
978 drm_framebuffer_get(flip_state->old_fb);
979
Mario Kleineree7c10e2016-05-06 19:26:06 +0200980 WARN_ON(drm_crtc_vblank_get(crtc) != 0);
981
Eric Anholtb501bac2015-11-30 12:34:01 -0800982 /* Immediately update the plane's legacy fb pointer, so that later
983 * modeset prep sees the state that will be present when the semaphore
984 * is released.
985 */
986 drm_atomic_set_fb_for_plane(plane->state, fb);
Eric Anholtb501bac2015-11-30 12:34:01 -0800987
988 vc4_queue_seqno_cb(dev, &flip_state->cb, bo->seqno,
989 vc4_async_page_flip_complete);
990
991 /* Driver takes ownership of state on successful async commit. */
992 return 0;
993}
994
995static int vc4_page_flip(struct drm_crtc *crtc,
996 struct drm_framebuffer *fb,
997 struct drm_pending_vblank_event *event,
Daniel Vetter41292b1f2017-03-22 22:50:50 +0100998 uint32_t flags,
999 struct drm_modeset_acquire_ctx *ctx)
Eric Anholtb501bac2015-11-30 12:34:01 -08001000{
1001 if (flags & DRM_MODE_PAGE_FLIP_ASYNC)
1002 return vc4_async_page_flip(crtc, fb, event, flags);
1003 else
Daniel Vetter41292b1f2017-03-22 22:50:50 +01001004 return drm_atomic_helper_page_flip(crtc, fb, event, flags, ctx);
Eric Anholtb501bac2015-11-30 12:34:01 -08001005}
1006
Eric Anholtd8dbf442015-12-28 13:25:41 -08001007static struct drm_crtc_state *vc4_crtc_duplicate_state(struct drm_crtc *crtc)
1008{
Boris Brezillon008095e2018-07-03 09:50:22 +02001009 struct vc4_crtc_state *vc4_state, *old_vc4_state;
Eric Anholtd8dbf442015-12-28 13:25:41 -08001010
1011 vc4_state = kzalloc(sizeof(*vc4_state), GFP_KERNEL);
1012 if (!vc4_state)
1013 return NULL;
1014
Boris Brezillon008095e2018-07-03 09:50:22 +02001015 old_vc4_state = to_vc4_crtc_state(crtc->state);
1016 vc4_state->feed_txp = old_vc4_state->feed_txp;
Boris Brezillon666e7352018-12-06 15:24:38 +01001017 vc4_state->margins = old_vc4_state->margins;
Boris Brezillon008095e2018-07-03 09:50:22 +02001018
Eric Anholtd8dbf442015-12-28 13:25:41 -08001019 __drm_atomic_helper_crtc_duplicate_state(crtc, &vc4_state->base);
1020 return &vc4_state->base;
1021}
1022
1023static void vc4_crtc_destroy_state(struct drm_crtc *crtc,
1024 struct drm_crtc_state *state)
1025{
1026 struct vc4_dev *vc4 = to_vc4_dev(crtc->dev);
1027 struct vc4_crtc_state *vc4_state = to_vc4_crtc_state(state);
1028
1029 if (vc4_state->mm.allocated) {
1030 unsigned long flags;
1031
1032 spin_lock_irqsave(&vc4->hvs->mm_lock, flags);
1033 drm_mm_remove_node(&vc4_state->mm);
1034 spin_unlock_irqrestore(&vc4->hvs->mm_lock, flags);
1035
1036 }
1037
Eric Anholt7622b252016-10-10 09:44:06 -07001038 drm_atomic_helper_crtc_destroy_state(crtc, state);
Eric Anholtd8dbf442015-12-28 13:25:41 -08001039}
1040
Eric Anholt6d6e5002017-03-28 13:13:43 -07001041static void
1042vc4_crtc_reset(struct drm_crtc *crtc)
1043{
1044 if (crtc->state)
1045 __drm_atomic_helper_crtc_destroy_state(crtc->state);
1046
1047 crtc->state = kzalloc(sizeof(struct vc4_crtc_state), GFP_KERNEL);
1048 if (crtc->state)
1049 crtc->state->crtc = crtc;
1050}
1051
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001052static const struct drm_crtc_funcs vc4_crtc_funcs = {
1053 .set_config = drm_atomic_helper_set_config,
1054 .destroy = vc4_crtc_destroy,
Eric Anholtb501bac2015-11-30 12:34:01 -08001055 .page_flip = vc4_page_flip,
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001056 .set_property = NULL,
1057 .cursor_set = NULL, /* handled by drm_mode_cursor_universal */
1058 .cursor_move = NULL, /* handled by drm_mode_cursor_universal */
Eric Anholt6d6e5002017-03-28 13:13:43 -07001059 .reset = vc4_crtc_reset,
Eric Anholtd8dbf442015-12-28 13:25:41 -08001060 .atomic_duplicate_state = vc4_crtc_duplicate_state,
1061 .atomic_destroy_state = vc4_crtc_destroy_state,
Stefan Schake640e0c72018-04-11 22:49:13 +02001062 .gamma_set = drm_atomic_helper_legacy_gamma_set,
Shawn Guo0d5f46f2017-02-07 17:16:34 +08001063 .enable_vblank = vc4_enable_vblank,
1064 .disable_vblank = vc4_disable_vblank,
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001065};
1066
1067static const struct drm_crtc_helper_funcs vc4_crtc_helper_funcs = {
1068 .mode_set_nofb = vc4_crtc_mode_set_nofb,
Jose Abreuc50a1152017-05-25 15:19:22 +01001069 .mode_valid = vc4_crtc_mode_valid,
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001070 .atomic_check = vc4_crtc_atomic_check,
1071 .atomic_flush = vc4_crtc_atomic_flush,
Laurent Pinchart0b20a0f2017-06-30 12:36:44 +03001072 .atomic_enable = vc4_crtc_atomic_enable,
Laurent Pinchart64581712017-06-30 12:36:45 +03001073 .atomic_disable = vc4_crtc_atomic_disable,
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001074};
1075
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001076static const struct vc4_crtc_data pv0_data = {
1077 .hvs_channel = 0,
Boris Brezillonab8df602016-12-02 14:48:07 +01001078 .encoder_types = {
1079 [PV_CONTROL_CLK_SELECT_DSI] = VC4_ENCODER_TYPE_DSI0,
1080 [PV_CONTROL_CLK_SELECT_DPI_SMI_HDMI] = VC4_ENCODER_TYPE_DPI,
1081 },
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001082};
1083
1084static const struct vc4_crtc_data pv1_data = {
1085 .hvs_channel = 2,
Boris Brezillonab8df602016-12-02 14:48:07 +01001086 .encoder_types = {
1087 [PV_CONTROL_CLK_SELECT_DSI] = VC4_ENCODER_TYPE_DSI1,
1088 [PV_CONTROL_CLK_SELECT_DPI_SMI_HDMI] = VC4_ENCODER_TYPE_SMI,
1089 },
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001090};
1091
1092static const struct vc4_crtc_data pv2_data = {
1093 .hvs_channel = 1,
Boris Brezillonab8df602016-12-02 14:48:07 +01001094 .encoder_types = {
1095 [PV_CONTROL_CLK_SELECT_DPI_SMI_HDMI] = VC4_ENCODER_TYPE_HDMI,
1096 [PV_CONTROL_CLK_SELECT_VEC] = VC4_ENCODER_TYPE_VEC,
1097 },
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001098};
1099
1100static const struct of_device_id vc4_crtc_dt_match[] = {
1101 { .compatible = "brcm,bcm2835-pixelvalve0", .data = &pv0_data },
1102 { .compatible = "brcm,bcm2835-pixelvalve1", .data = &pv1_data },
1103 { .compatible = "brcm,bcm2835-pixelvalve2", .data = &pv2_data },
1104 {}
1105};
1106
1107static void vc4_set_crtc_possible_masks(struct drm_device *drm,
1108 struct drm_crtc *crtc)
1109{
1110 struct vc4_crtc *vc4_crtc = to_vc4_crtc(crtc);
Boris Brezillonab8df602016-12-02 14:48:07 +01001111 const struct vc4_crtc_data *crtc_data = vc4_crtc->data;
1112 const enum vc4_encoder_type *encoder_types = crtc_data->encoder_types;
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001113 struct drm_encoder *encoder;
1114
1115 drm_for_each_encoder(encoder, drm) {
Boris Brezillon008095e2018-07-03 09:50:22 +02001116 struct vc4_encoder *vc4_encoder;
Boris Brezillonab8df602016-12-02 14:48:07 +01001117 int i;
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001118
Boris Brezillon008095e2018-07-03 09:50:22 +02001119 /* HVS FIFO2 can feed the TXP IP. */
1120 if (crtc_data->hvs_channel == 2 &&
1121 encoder->encoder_type == DRM_MODE_ENCODER_VIRTUAL) {
1122 encoder->possible_crtcs |= drm_crtc_mask(crtc);
1123 continue;
1124 }
1125
1126 vc4_encoder = to_vc4_encoder(encoder);
Boris Brezillonab8df602016-12-02 14:48:07 +01001127 for (i = 0; i < ARRAY_SIZE(crtc_data->encoder_types); i++) {
1128 if (vc4_encoder->type == encoder_types[i]) {
1129 vc4_encoder->clock_select = i;
1130 encoder->possible_crtcs |= drm_crtc_mask(crtc);
1131 break;
1132 }
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001133 }
1134 }
1135}
1136
Mario Kleiner1bf59f12016-06-23 08:17:50 +02001137static void
1138vc4_crtc_get_cob_allocation(struct vc4_crtc *vc4_crtc)
1139{
1140 struct drm_device *drm = vc4_crtc->base.dev;
1141 struct vc4_dev *vc4 = to_vc4_dev(drm);
1142 u32 dispbase = HVS_READ(SCALER_DISPBASEX(vc4_crtc->channel));
1143 /* Top/base are supposed to be 4-pixel aligned, but the
1144 * Raspberry Pi firmware fills the low bits (which are
1145 * presumably ignored).
1146 */
1147 u32 top = VC4_GET_FIELD(dispbase, SCALER_DISPBASEX_TOP) & ~3;
1148 u32 base = VC4_GET_FIELD(dispbase, SCALER_DISPBASEX_BASE) & ~3;
1149
1150 vc4_crtc->cob_size = top - base + 4;
1151}
1152
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001153static int vc4_crtc_bind(struct device *dev, struct device *master, void *data)
1154{
1155 struct platform_device *pdev = to_platform_device(dev);
1156 struct drm_device *drm = dev_get_drvdata(master);
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001157 struct vc4_crtc *vc4_crtc;
1158 struct drm_crtc *crtc;
Eric Anholtfc2d6f12015-10-20 14:18:56 +01001159 struct drm_plane *primary_plane, *cursor_plane, *destroy_plane, *temp;
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001160 const struct of_device_id *match;
Eric Anholtfc2d6f12015-10-20 14:18:56 +01001161 int ret, i;
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001162
1163 vc4_crtc = devm_kzalloc(dev, sizeof(*vc4_crtc), GFP_KERNEL);
1164 if (!vc4_crtc)
1165 return -ENOMEM;
1166 crtc = &vc4_crtc->base;
1167
1168 match = of_match_device(vc4_crtc_dt_match, dev);
1169 if (!match)
1170 return -ENODEV;
1171 vc4_crtc->data = match->data;
1172
1173 vc4_crtc->regs = vc4_ioremap_regs(pdev, 0);
1174 if (IS_ERR(vc4_crtc->regs))
1175 return PTR_ERR(vc4_crtc->regs);
1176
1177 /* For now, we create just the primary and the legacy cursor
1178 * planes. We should be able to stack more planes on easily,
1179 * but to do that we would need to compute the bandwidth
1180 * requirement of the plane configuration, and reject ones
1181 * that will take too much.
1182 */
1183 primary_plane = vc4_plane_init(drm, DRM_PLANE_TYPE_PRIMARY);
Dan Carpenter79513232015-11-04 16:21:40 +03001184 if (IS_ERR(primary_plane)) {
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001185 dev_err(dev, "failed to construct primary plane\n");
1186 ret = PTR_ERR(primary_plane);
1187 goto err;
1188 }
1189
Eric Anholtfc2d6f12015-10-20 14:18:56 +01001190 drm_crtc_init_with_planes(drm, crtc, primary_plane, NULL,
Ville Syrjäläf9882872015-12-09 16:19:31 +02001191 &vc4_crtc_funcs, NULL);
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001192 drm_crtc_helper_add(crtc, &vc4_crtc_helper_funcs);
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001193 vc4_crtc->channel = vc4_crtc->data->hvs_channel;
Eric Anholte582b6c2016-03-31 18:38:20 -07001194 drm_mode_crtc_set_gamma_size(crtc, ARRAY_SIZE(vc4_crtc->lut_r));
Stefan Schake640e0c72018-04-11 22:49:13 +02001195 drm_crtc_enable_color_mgmt(crtc, 0, false, crtc->gamma_size);
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001196
Stefan Schake766cc6b2018-04-20 05:25:44 -07001197 /* We support CTM, but only for one CRTC at a time. It's therefore
1198 * implemented as private driver state in vc4_kms, not here.
1199 */
1200 drm_crtc_enable_color_mgmt(crtc, 0, true, crtc->gamma_size);
1201
Eric Anholtfc2d6f12015-10-20 14:18:56 +01001202 /* Set up some arbitrary number of planes. We're not limited
1203 * by a set number of physical registers, just the space in
1204 * the HVS (16k) and how small an plane can be (28 bytes).
1205 * However, each plane we set up takes up some memory, and
1206 * increases the cost of looping over planes, which atomic
1207 * modesetting does quite a bit. As a result, we pick a
1208 * modest number of planes to expose, that should hopefully
1209 * still cover any sane usecase.
1210 */
1211 for (i = 0; i < 8; i++) {
1212 struct drm_plane *plane =
1213 vc4_plane_init(drm, DRM_PLANE_TYPE_OVERLAY);
1214
1215 if (IS_ERR(plane))
1216 continue;
1217
Ville Syrjäläc0183a82018-06-26 22:47:15 +03001218 plane->possible_crtcs = drm_crtc_mask(crtc);
Eric Anholtfc2d6f12015-10-20 14:18:56 +01001219 }
1220
1221 /* Set up the legacy cursor after overlay initialization,
1222 * since we overlay planes on the CRTC in the order they were
1223 * initialized.
1224 */
1225 cursor_plane = vc4_plane_init(drm, DRM_PLANE_TYPE_CURSOR);
1226 if (!IS_ERR(cursor_plane)) {
Ville Syrjäläc0183a82018-06-26 22:47:15 +03001227 cursor_plane->possible_crtcs = drm_crtc_mask(crtc);
Eric Anholtfc2d6f12015-10-20 14:18:56 +01001228 crtc->cursor = cursor_plane;
1229 }
1230
Mario Kleiner1bf59f12016-06-23 08:17:50 +02001231 vc4_crtc_get_cob_allocation(vc4_crtc);
1232
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001233 CRTC_WRITE(PV_INTEN, 0);
1234 CRTC_WRITE(PV_INTSTAT, PV_INT_VFP_START);
1235 ret = devm_request_irq(dev, platform_get_irq(pdev, 0),
1236 vc4_crtc_irq_handler, 0, "vc4 crtc", vc4_crtc);
1237 if (ret)
Eric Anholtfc2d6f12015-10-20 14:18:56 +01001238 goto err_destroy_planes;
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001239
1240 vc4_set_crtc_possible_masks(drm, crtc);
1241
Eric Anholte582b6c2016-03-31 18:38:20 -07001242 for (i = 0; i < crtc->gamma_size; i++) {
1243 vc4_crtc->lut_r[i] = i;
1244 vc4_crtc->lut_g[i] = i;
1245 vc4_crtc->lut_b[i] = i;
1246 }
1247
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001248 platform_set_drvdata(pdev, vc4_crtc);
1249
1250 return 0;
1251
Eric Anholtfc2d6f12015-10-20 14:18:56 +01001252err_destroy_planes:
1253 list_for_each_entry_safe(destroy_plane, temp,
1254 &drm->mode_config.plane_list, head) {
Ville Syrjäläc0183a82018-06-26 22:47:15 +03001255 if (destroy_plane->possible_crtcs == drm_crtc_mask(crtc))
Eric Anholtfc2d6f12015-10-20 14:18:56 +01001256 destroy_plane->funcs->destroy(destroy_plane);
1257 }
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001258err:
1259 return ret;
1260}
1261
1262static void vc4_crtc_unbind(struct device *dev, struct device *master,
1263 void *data)
1264{
1265 struct platform_device *pdev = to_platform_device(dev);
1266 struct vc4_crtc *vc4_crtc = dev_get_drvdata(dev);
1267
1268 vc4_crtc_destroy(&vc4_crtc->base);
1269
1270 CRTC_WRITE(PV_INTEN, 0);
1271
1272 platform_set_drvdata(pdev, NULL);
1273}
1274
1275static const struct component_ops vc4_crtc_ops = {
1276 .bind = vc4_crtc_bind,
1277 .unbind = vc4_crtc_unbind,
1278};
1279
1280static int vc4_crtc_dev_probe(struct platform_device *pdev)
1281{
1282 return component_add(&pdev->dev, &vc4_crtc_ops);
1283}
1284
1285static int vc4_crtc_dev_remove(struct platform_device *pdev)
1286{
1287 component_del(&pdev->dev, &vc4_crtc_ops);
1288 return 0;
1289}
1290
1291struct platform_driver vc4_crtc_driver = {
1292 .probe = vc4_crtc_dev_probe,
1293 .remove = vc4_crtc_dev_remove,
1294 .driver = {
1295 .name = "vc4_crtc",
1296 .of_match_table = vc4_crtc_dt_match,
1297 },
1298};