blob: 362665b8310a9b6b198b2b72d4d075dc9145a0d8 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Eric Anholtc8b75bc2015-03-02 13:01:12 -08002/*
3 * Copyright (C) 2015 Broadcom
Eric Anholtc8b75bc2015-03-02 13:01:12 -08004 */
5
6/**
7 * DOC: VC4 CRTC module
8 *
9 * In VC4, the Pixel Valve is what most closely corresponds to the
10 * DRM's concept of a CRTC. The PV generates video timings from the
Eric Anholtf6c01532017-02-27 12:11:43 -080011 * encoder's clock plus its configuration. It pulls scaled pixels from
Eric Anholtc8b75bc2015-03-02 13:01:12 -080012 * the HVS at that timing, and feeds it to the encoder.
13 *
14 * However, the DRM CRTC also collects the configuration of all the
Eric Anholtf6c01532017-02-27 12:11:43 -080015 * DRM planes attached to it. As a result, the CRTC is also
16 * responsible for writing the display list for the HVS channel that
17 * the CRTC will use.
Eric Anholtc8b75bc2015-03-02 13:01:12 -080018 *
19 * The 2835 has 3 different pixel valves. pv0 in the audio power
20 * domain feeds DSI0 or DPI, while pv1 feeds DS1 or SMI. pv2 in the
21 * image domain can feed either HDMI or the SDTV controller. The
22 * pixel valve chooses from the CPRMAN clocks (HSM for HDMI, VEC for
23 * SDTV, etc.) according to which output type is chosen in the mux.
24 *
25 * For power management, the pixel valve's registers are all clocked
26 * by the AXI clock, while the timings and FIFOs make use of the
27 * output-specific clock. Since the encoders also directly consume
28 * the CPRMAN clocks, and know what timings they need, they are the
29 * ones that set the clock.
30 */
31
Sam Ravnborgfd6d6d82019-07-16 08:42:07 +020032#include <linux/clk.h>
33#include <linux/component.h>
34#include <linux/of_device.h>
Maxime Ripardbca10db2021-09-23 20:50:13 +020035#include <linux/pm_runtime.h>
Sam Ravnborgfd6d6d82019-07-16 08:42:07 +020036
Masahiro Yamadab7e8e252017-05-18 13:29:38 +090037#include <drm/drm_atomic.h>
38#include <drm/drm_atomic_helper.h>
Daniel Vetter72fdb40c2018-09-05 15:57:11 +020039#include <drm/drm_atomic_uapi.h>
Sam Ravnborgfd6d6d82019-07-16 08:42:07 +020040#include <drm/drm_fb_cma_helper.h>
Eric Anholt30517192019-02-20 13:03:38 -080041#include <drm/drm_print.h>
Daniel Vetterfcd70cd2019-01-17 22:03:34 +010042#include <drm/drm_probe_helper.h>
Sam Ravnborgfd6d6d82019-07-16 08:42:07 +020043#include <drm/drm_vblank.h>
44
Eric Anholtc8b75bc2015-03-02 13:01:12 -080045#include "vc4_drv.h"
Maxime Ripardbca10db2021-09-23 20:50:13 +020046#include "vc4_hdmi.h"
Eric Anholtc8b75bc2015-03-02 13:01:12 -080047#include "vc4_regs.h"
48
Maxime Riparde58a5e62020-05-27 17:47:57 +020049#define HVS_FIFO_LATENCY_PIX 6
50
Eric Anholtc8b75bc2015-03-02 13:01:12 -080051#define CRTC_WRITE(offset, val) writel(val, vc4_crtc->regs + (offset))
52#define CRTC_READ(offset) readl(vc4_crtc->regs + (offset))
53
Eric Anholt30517192019-02-20 13:03:38 -080054static const struct debugfs_reg32 crtc_regs[] = {
55 VC4_REG32(PV_CONTROL),
56 VC4_REG32(PV_V_CONTROL),
57 VC4_REG32(PV_VSYNCD_EVEN),
58 VC4_REG32(PV_HORZA),
59 VC4_REG32(PV_HORZB),
60 VC4_REG32(PV_VERTA),
61 VC4_REG32(PV_VERTB),
62 VC4_REG32(PV_VERTA_EVEN),
63 VC4_REG32(PV_VERTB_EVEN),
64 VC4_REG32(PV_INTEN),
65 VC4_REG32(PV_INTSTAT),
66 VC4_REG32(PV_STAT),
67 VC4_REG32(PV_HACT_ACT),
Eric Anholtc8b75bc2015-03-02 13:01:12 -080068};
69
Maxime Ripard78cbcc32020-09-03 10:00:41 +020070static unsigned int
71vc4_crtc_get_cob_allocation(struct vc4_dev *vc4, unsigned int channel)
72{
73 u32 dispbase = HVS_READ(SCALER_DISPBASEX(channel));
74 /* Top/base are supposed to be 4-pixel aligned, but the
75 * Raspberry Pi firmware fills the low bits (which are
76 * presumably ignored).
77 */
78 u32 top = VC4_GET_FIELD(dispbase, SCALER_DISPBASEX_TOP) & ~3;
79 u32 base = VC4_GET_FIELD(dispbase, SCALER_DISPBASEX_BASE) & ~3;
80
81 return top - base + 4;
82}
83
Thomas Zimmermann3c8639c2020-01-23 14:59:38 +010084static bool vc4_crtc_get_scanout_position(struct drm_crtc *crtc,
85 bool in_vblank_irq,
86 int *vpos, int *hpos,
87 ktime_t *stime, ktime_t *etime,
88 const struct drm_display_mode *mode)
Mario Kleiner1bf59f12016-06-23 08:17:50 +020089{
Thomas Zimmermann3c8639c2020-01-23 14:59:38 +010090 struct drm_device *dev = crtc->dev;
Mario Kleiner1bf59f12016-06-23 08:17:50 +020091 struct vc4_dev *vc4 = to_vc4_dev(dev);
Shawn Guoc77b9ab2017-01-09 19:25:45 +080092 struct vc4_crtc *vc4_crtc = to_vc4_crtc(crtc);
Maxime Ripard87ebcd42020-09-03 10:00:46 +020093 struct vc4_crtc_state *vc4_crtc_state = to_vc4_crtc_state(crtc->state);
Maxime Ripard78cbcc32020-09-03 10:00:41 +020094 unsigned int cob_size;
Mario Kleiner1bf59f12016-06-23 08:17:50 +020095 u32 val;
96 int fifo_lines;
97 int vblank_lines;
Daniel Vetter1bf6ad62017-05-09 16:03:28 +020098 bool ret = false;
Mario Kleiner1bf59f12016-06-23 08:17:50 +020099
Mario Kleiner1bf59f12016-06-23 08:17:50 +0200100 /* preempt_disable_rt() should go right here in PREEMPT_RT patchset. */
101
102 /* Get optional system timestamp before query. */
103 if (stime)
104 *stime = ktime_get();
105
106 /*
107 * Read vertical scanline which is currently composed for our
108 * pixelvalve by the HVS, and also the scaler status.
109 */
Maxime Ripard87ebcd42020-09-03 10:00:46 +0200110 val = HVS_READ(SCALER_DISPSTATX(vc4_crtc_state->assigned_channel));
Mario Kleiner1bf59f12016-06-23 08:17:50 +0200111
112 /* Get optional system timestamp after query. */
113 if (etime)
114 *etime = ktime_get();
115
116 /* preempt_enable_rt() should go right here in PREEMPT_RT patchset. */
117
118 /* Vertical position of hvs composed scanline. */
119 *vpos = VC4_GET_FIELD(val, SCALER_DISPSTATX_LINE);
Mario Kleinere5380922016-07-19 20:59:00 +0200120 *hpos = 0;
Mario Kleiner1bf59f12016-06-23 08:17:50 +0200121
Mario Kleinere5380922016-07-19 20:59:00 +0200122 if (mode->flags & DRM_MODE_FLAG_INTERLACE) {
123 *vpos /= 2;
124
125 /* Use hpos to correct for field offset in interlaced mode. */
126 if (VC4_GET_FIELD(val, SCALER_DISPSTATX_FRAME_COUNT) % 2)
127 *hpos += mode->crtc_htotal / 2;
128 }
Mario Kleiner1bf59f12016-06-23 08:17:50 +0200129
Maxime Ripard87ebcd42020-09-03 10:00:46 +0200130 cob_size = vc4_crtc_get_cob_allocation(vc4, vc4_crtc_state->assigned_channel);
Mario Kleiner1bf59f12016-06-23 08:17:50 +0200131 /* This is the offset we need for translating hvs -> pv scanout pos. */
Maxime Ripard78cbcc32020-09-03 10:00:41 +0200132 fifo_lines = cob_size / mode->crtc_hdisplay;
Mario Kleiner1bf59f12016-06-23 08:17:50 +0200133
134 if (fifo_lines > 0)
Daniel Vetter1bf6ad62017-05-09 16:03:28 +0200135 ret = true;
Mario Kleiner1bf59f12016-06-23 08:17:50 +0200136
137 /* HVS more than fifo_lines into frame for compositing? */
138 if (*vpos > fifo_lines) {
139 /*
140 * We are in active scanout and can get some meaningful results
141 * from HVS. The actual PV scanout can not trail behind more
142 * than fifo_lines as that is the fifo's capacity. Assume that
143 * in active scanout the HVS and PV work in lockstep wrt. HVS
144 * refilling the fifo and PV consuming from the fifo, ie.
145 * whenever the PV consumes and frees up a scanline in the
146 * fifo, the HVS will immediately refill it, therefore
147 * incrementing vpos. Therefore we choose HVS read position -
148 * fifo size in scanlines as a estimate of the real scanout
149 * position of the PV.
150 */
151 *vpos -= fifo_lines + 1;
Mario Kleiner1bf59f12016-06-23 08:17:50 +0200152
Mario Kleiner1bf59f12016-06-23 08:17:50 +0200153 return ret;
154 }
155
156 /*
157 * Less: This happens when we are in vblank and the HVS, after getting
158 * the VSTART restart signal from the PV, just started refilling its
159 * fifo with new lines from the top-most lines of the new framebuffers.
160 * The PV does not scan out in vblank, so does not remove lines from
161 * the fifo, so the fifo will be full quickly and the HVS has to pause.
162 * We can't get meaningful readings wrt. scanline position of the PV
163 * and need to make things up in a approximative but consistent way.
164 */
Eric Anholt682e62c2016-09-28 17:30:25 -0700165 vblank_lines = mode->vtotal - mode->vdisplay;
Mario Kleiner1bf59f12016-06-23 08:17:50 +0200166
Daniel Vetter1bf6ad62017-05-09 16:03:28 +0200167 if (in_vblank_irq) {
Mario Kleiner1bf59f12016-06-23 08:17:50 +0200168 /*
169 * Assume the irq handler got called close to first
170 * line of vblank, so PV has about a full vblank
171 * scanlines to go, and as a base timestamp use the
172 * one taken at entry into vblank irq handler, so it
173 * is not affected by random delays due to lock
174 * contention on event_lock or vblank_time lock in
175 * the core.
176 */
177 *vpos = -vblank_lines;
178
179 if (stime)
180 *stime = vc4_crtc->t_vblank;
181 if (etime)
182 *etime = vc4_crtc->t_vblank;
183
184 /*
185 * If the HVS fifo is not yet full then we know for certain
186 * we are at the very beginning of vblank, as the hvs just
187 * started refilling, and the stime and etime timestamps
188 * truly correspond to start of vblank.
Daniel Vetter1bf6ad62017-05-09 16:03:28 +0200189 *
190 * Unfortunately there's no way to report this to upper levels
191 * and make it more useful.
Mario Kleiner1bf59f12016-06-23 08:17:50 +0200192 */
Mario Kleiner1bf59f12016-06-23 08:17:50 +0200193 } else {
194 /*
195 * No clue where we are inside vblank. Return a vpos of zero,
196 * which will cause calling code to just return the etime
197 * timestamp uncorrected. At least this is no worse than the
198 * standard fallback.
199 */
200 *vpos = 0;
201 }
202
203 return ret;
204}
205
Maxime Ripardbdd96472020-06-11 15:36:48 +0200206void vc4_crtc_destroy(struct drm_crtc *crtc)
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800207{
208 drm_crtc_cleanup(crtc);
209}
210
Maxime Ripard649abf22020-09-03 10:00:47 +0200211static u32 vc4_get_fifo_full_level(struct vc4_crtc *vc4_crtc, u32 format)
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800212{
Maxime Ripard658a7312020-09-03 10:01:09 +0200213 const struct vc4_crtc_data *crtc_data = vc4_crtc_to_vc4_crtc_data(vc4_crtc);
Maxime Ripard649abf22020-09-03 10:00:47 +0200214 const struct vc4_pv_data *pv_data = vc4_crtc_to_vc4_pv_data(vc4_crtc);
Dom Cobleyeb9dfdd2021-03-18 17:13:28 +0100215 struct vc4_dev *vc4 = to_vc4_dev(vc4_crtc->base.dev);
Maxime Ripard649abf22020-09-03 10:00:47 +0200216 u32 fifo_len_bytes = pv_data->fifo_depth;
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800217
Maxime Ripard649abf22020-09-03 10:00:47 +0200218 /*
219 * Pixels are pulled from the HVS if the number of bytes is
220 * lower than the FIFO full level.
221 *
222 * The latency of the pixel fetch mechanism is 6 pixels, so we
223 * need to convert those 6 pixels in bytes, depending on the
224 * format, and then subtract that from the length of the FIFO
225 * to make sure we never end up in a situation where the FIFO
226 * is full.
227 */
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800228 switch (format) {
229 case PV_CONTROL_FORMAT_DSIV_16:
230 case PV_CONTROL_FORMAT_DSIC_16:
Maxime Riparde58a5e62020-05-27 17:47:57 +0200231 return fifo_len_bytes - 2 * HVS_FIFO_LATENCY_PIX;
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800232 case PV_CONTROL_FORMAT_DSIV_18:
233 return fifo_len_bytes - 14;
234 case PV_CONTROL_FORMAT_24:
235 case PV_CONTROL_FORMAT_DSIV_24:
236 default:
Maxime Ripard658a7312020-09-03 10:01:09 +0200237 /*
238 * For some reason, the pixelvalve4 doesn't work with
239 * the usual formula and will only work with 32.
240 */
241 if (crtc_data->hvs_output == 5)
242 return 32;
243
Dom Cobleyeb9dfdd2021-03-18 17:13:28 +0100244 /*
245 * It looks like in some situations, we will overflow
246 * the PixelValve FIFO (with the bit 10 of PV stat being
247 * set) and stall the HVS / PV, eventually resulting in
248 * a page flip timeout.
249 *
250 * Displaying the video overlay during a playback with
251 * Kodi on an RPi3 seems to be a great solution with a
252 * failure rate around 50%.
253 *
254 * Removing 1 from the FIFO full level however
255 * seems to completely remove that issue.
256 */
257 if (!vc4->hvs->hvs5)
258 return fifo_len_bytes - 3 * HVS_FIFO_LATENCY_PIX - 1;
259
Maxime Riparde58a5e62020-05-27 17:47:57 +0200260 return fifo_len_bytes - 3 * HVS_FIFO_LATENCY_PIX;
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800261 }
262}
263
Maxime Ripard62c5d552020-09-03 10:00:48 +0200264static u32 vc4_crtc_get_fifo_full_level_bits(struct vc4_crtc *vc4_crtc,
265 u32 format)
266{
267 u32 level = vc4_get_fifo_full_level(vc4_crtc, format);
Maxime Ripard658a7312020-09-03 10:01:09 +0200268 u32 ret = 0;
Maxime Ripard62c5d552020-09-03 10:00:48 +0200269
Maxime Ripard658a7312020-09-03 10:01:09 +0200270 ret |= VC4_SET_FIELD((level >> 6),
271 PV5_CONTROL_FIFO_LEVEL_HIGH);
272
273 return ret | VC4_SET_FIELD(level & 0x3f,
274 PV_CONTROL_FIFO_LEVEL);
Maxime Ripard62c5d552020-09-03 10:00:48 +0200275}
276
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800277/*
Eric Anholta86773d2016-12-14 11:46:15 -0800278 * Returns the encoder attached to the CRTC.
279 *
280 * VC4 can only scan out to one encoder at a time, while the DRM core
281 * allows drivers to push pixels to more than one encoder from the
282 * same CRTC.
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800283 */
Maxime Ripardd0229c32021-10-25 17:28:56 +0200284struct drm_encoder *vc4_get_crtc_encoder(struct drm_crtc *crtc,
Maxime Ripard94c1adc2021-10-25 17:28:58 +0200285 struct drm_crtc_state *state)
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800286{
Maxime Ripard94c1adc2021-10-25 17:28:58 +0200287 struct drm_encoder *encoder;
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800288
Maxime Ripard94c1adc2021-10-25 17:28:58 +0200289 WARN_ON(hweight32(state->encoder_mask) > 1);
Maxime Ripard5a184d92021-05-07 17:05:07 +0200290
Maxime Ripard94c1adc2021-10-25 17:28:58 +0200291 drm_for_each_encoder_mask(encoder, crtc->dev, state->encoder_mask)
292 return encoder;
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800293
Eric Anholta86773d2016-12-14 11:46:15 -0800294 return NULL;
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800295}
296
Maxime Ripard5ffabf52020-09-03 10:00:52 +0200297static void vc4_crtc_pixelvalve_reset(struct drm_crtc *crtc)
298{
299 struct vc4_crtc *vc4_crtc = to_vc4_crtc(crtc);
300
301 /* The PV needs to be disabled before it can be flushed */
302 CRTC_WRITE(PV_CONTROL, CRTC_READ(PV_CONTROL) & ~PV_CONTROL_EN);
303 CRTC_WRITE(PV_CONTROL, CRTC_READ(PV_CONTROL) | PV_CONTROL_FIFO_CLR);
304}
305
Maxime Ripardd6faf942021-10-25 17:28:57 +0200306static void vc4_crtc_config_pv(struct drm_crtc *crtc, struct drm_encoder *encoder,
307 struct drm_atomic_state *state)
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800308{
Maxime Ripard658a7312020-09-03 10:01:09 +0200309 struct drm_device *dev = crtc->dev;
310 struct vc4_dev *vc4 = to_vc4_dev(dev);
Eric Anholta86773d2016-12-14 11:46:15 -0800311 struct vc4_encoder *vc4_encoder = to_vc4_encoder(encoder);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800312 struct vc4_crtc *vc4_crtc = to_vc4_crtc(crtc);
Maxime Ripard644df222020-09-03 10:00:39 +0200313 const struct vc4_pv_data *pv_data = vc4_crtc_to_vc4_pv_data(vc4_crtc);
Maxime Ripardc6883982021-05-07 17:05:06 +0200314 struct drm_crtc_state *crtc_state = crtc->state;
315 struct drm_display_mode *mode = &crtc_state->adjusted_mode;
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800316 bool interlace = mode->flags & DRM_MODE_FLAG_INTERLACE;
Eric Anholtdfccd932016-09-29 15:34:44 -0700317 u32 pixel_rep = (mode->flags & DRM_MODE_FLAG_DBLCLK) ? 2 : 1;
Eric Anholta86773d2016-12-14 11:46:15 -0800318 bool is_dsi = (vc4_encoder->type == VC4_ENCODER_TYPE_DSI0 ||
319 vc4_encoder->type == VC4_ENCODER_TYPE_DSI1);
320 u32 format = is_dsi ? PV_CONTROL_FORMAT_DSIV_24 : PV_CONTROL_FORMAT_24;
Maxime Ripard644df222020-09-03 10:00:39 +0200321 u8 ppc = pv_data->pixels_per_clock;
Maxime Ripardbe262962020-09-03 10:00:53 +0200322 bool debug_dump_regs = false;
323
324 if (debug_dump_regs) {
325 struct drm_printer p = drm_info_printer(&vc4_crtc->pdev->dev);
326 dev_info(&vc4_crtc->pdev->dev, "CRTC %d regs before:\n",
327 drm_crtc_index(crtc));
328 drm_print_regset32(&p, &vc4_crtc->regset);
329 }
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800330
Maxime Ripard5ffabf52020-09-03 10:00:52 +0200331 vc4_crtc_pixelvalve_reset(crtc);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800332
333 CRTC_WRITE(PV_HORZA,
Maxime Ripard644df222020-09-03 10:00:39 +0200334 VC4_SET_FIELD((mode->htotal - mode->hsync_end) * pixel_rep / ppc,
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800335 PV_HORZA_HBP) |
Maxime Ripard644df222020-09-03 10:00:39 +0200336 VC4_SET_FIELD((mode->hsync_end - mode->hsync_start) * pixel_rep / ppc,
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800337 PV_HORZA_HSYNC));
Maxime Ripard644df222020-09-03 10:00:39 +0200338
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800339 CRTC_WRITE(PV_HORZB,
Maxime Ripard644df222020-09-03 10:00:39 +0200340 VC4_SET_FIELD((mode->hsync_start - mode->hdisplay) * pixel_rep / ppc,
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800341 PV_HORZB_HFP) |
Maxime Ripard644df222020-09-03 10:00:39 +0200342 VC4_SET_FIELD(mode->hdisplay * pixel_rep / ppc,
343 PV_HORZB_HACTIVE));
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800344
Eric Anholta7c50472016-02-15 17:31:41 -0800345 CRTC_WRITE(PV_VERTA,
Eric Anholt682e62c2016-09-28 17:30:25 -0700346 VC4_SET_FIELD(mode->crtc_vtotal - mode->crtc_vsync_end,
Eric Anholta7c50472016-02-15 17:31:41 -0800347 PV_VERTA_VBP) |
Eric Anholt682e62c2016-09-28 17:30:25 -0700348 VC4_SET_FIELD(mode->crtc_vsync_end - mode->crtc_vsync_start,
Eric Anholta7c50472016-02-15 17:31:41 -0800349 PV_VERTA_VSYNC));
350 CRTC_WRITE(PV_VERTB,
Eric Anholt682e62c2016-09-28 17:30:25 -0700351 VC4_SET_FIELD(mode->crtc_vsync_start - mode->crtc_vdisplay,
Eric Anholta7c50472016-02-15 17:31:41 -0800352 PV_VERTB_VFP) |
Eric Anholt682e62c2016-09-28 17:30:25 -0700353 VC4_SET_FIELD(mode->crtc_vdisplay, PV_VERTB_VACTIVE));
Eric Anholta7c50472016-02-15 17:31:41 -0800354
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800355 if (interlace) {
356 CRTC_WRITE(PV_VERTA_EVEN,
Eric Anholt682e62c2016-09-28 17:30:25 -0700357 VC4_SET_FIELD(mode->crtc_vtotal -
358 mode->crtc_vsync_end - 1,
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800359 PV_VERTA_VBP) |
Eric Anholt682e62c2016-09-28 17:30:25 -0700360 VC4_SET_FIELD(mode->crtc_vsync_end -
361 mode->crtc_vsync_start,
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800362 PV_VERTA_VSYNC));
363 CRTC_WRITE(PV_VERTB_EVEN,
Eric Anholt682e62c2016-09-28 17:30:25 -0700364 VC4_SET_FIELD(mode->crtc_vsync_start -
365 mode->crtc_vdisplay,
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800366 PV_VERTB_VFP) |
Eric Anholt682e62c2016-09-28 17:30:25 -0700367 VC4_SET_FIELD(mode->crtc_vdisplay, PV_VERTB_VACTIVE));
368
369 /* We set up first field even mode for HDMI. VEC's
370 * NTSC mode would want first field odd instead, once
371 * we support it (to do so, set ODD_FIRST and put the
372 * delay in VSYNCD_EVEN instead).
373 */
374 CRTC_WRITE(PV_V_CONTROL,
375 PV_VCONTROL_CONTINUOUS |
Eric Anholta86773d2016-12-14 11:46:15 -0800376 (is_dsi ? PV_VCONTROL_DSI : 0) |
Eric Anholt682e62c2016-09-28 17:30:25 -0700377 PV_VCONTROL_INTERLACE |
Eric Anholtdfccd932016-09-29 15:34:44 -0700378 VC4_SET_FIELD(mode->htotal * pixel_rep / 2,
Eric Anholt682e62c2016-09-28 17:30:25 -0700379 PV_VCONTROL_ODD_DELAY));
380 CRTC_WRITE(PV_VSYNCD_EVEN, 0);
381 } else {
Eric Anholta86773d2016-12-14 11:46:15 -0800382 CRTC_WRITE(PV_V_CONTROL,
383 PV_VCONTROL_CONTINUOUS |
384 (is_dsi ? PV_VCONTROL_DSI : 0));
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800385 }
386
Maxime Ripardebd11f72020-05-27 17:47:58 +0200387 if (is_dsi)
388 CRTC_WRITE(PV_HACT_ACT, mode->hdisplay * pixel_rep);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800389
Maxime Ripard658a7312020-09-03 10:01:09 +0200390 if (vc4->hvs->hvs5)
391 CRTC_WRITE(PV_MUX_CFG,
392 VC4_SET_FIELD(PV_MUX_CFG_RGB_PIXEL_MUX_MODE_NO_SWAP,
393 PV_MUX_CFG_RGB_PIXEL_MUX_MODE));
394
Maxime Ripard9e30cfd2020-09-03 10:01:03 +0200395 CRTC_WRITE(PV_CONTROL, PV_CONTROL_FIFO_CLR |
Maxime Ripard62c5d552020-09-03 10:00:48 +0200396 vc4_crtc_get_fifo_full_level_bits(vc4_crtc, format) |
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800397 VC4_SET_FIELD(format, PV_CONTROL_FORMAT) |
Eric Anholtdfccd932016-09-29 15:34:44 -0700398 VC4_SET_FIELD(pixel_rep - 1, PV_CONTROL_PIXEL_REP) |
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800399 PV_CONTROL_CLR_AT_START |
400 PV_CONTROL_TRIGGER_UNDERFLOW |
401 PV_CONTROL_WAIT_HSTART |
Eric Anholta86773d2016-12-14 11:46:15 -0800402 VC4_SET_FIELD(vc4_encoder->clock_select,
Maxime Riparda5c4b752020-09-03 10:00:44 +0200403 PV_CONTROL_CLK_SELECT));
Eric Anholte582b6c2016-03-31 18:38:20 -0700404
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800405 if (debug_dump_regs) {
Eric Anholt30517192019-02-20 13:03:38 -0800406 struct drm_printer p = drm_info_printer(&vc4_crtc->pdev->dev);
407 dev_info(&vc4_crtc->pdev->dev, "CRTC %d regs after:\n",
408 drm_crtc_index(crtc));
409 drm_print_regset32(&p, &vc4_crtc->regset);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800410 }
411}
412
413static void require_hvs_enabled(struct drm_device *dev)
414{
415 struct vc4_dev *vc4 = to_vc4_dev(dev);
416
417 WARN_ON_ONCE((HVS_READ(SCALER_DISPCTRL) & SCALER_DISPCTRL_ENABLE) !=
418 SCALER_DISPCTRL_ENABLE);
419}
420
Maxime Ripard8d914742020-12-15 16:42:36 +0100421static int vc4_crtc_disable(struct drm_crtc *crtc,
Maxime Ripardb601c162021-05-07 17:05:08 +0200422 struct drm_encoder *encoder,
Maxime Ripard8d914742020-12-15 16:42:36 +0100423 struct drm_atomic_state *state,
424 unsigned int channel)
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800425{
Maxime Ripard792c3132020-09-03 10:01:00 +0200426 struct vc4_encoder *vc4_encoder = to_vc4_encoder(encoder);
Maxime Ripard2d14ffe2020-09-03 10:01:06 +0200427 struct vc4_crtc *vc4_crtc = to_vc4_crtc(crtc);
428 struct drm_device *dev = crtc->dev;
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800429 int ret;
Maxime Ripard81752872020-06-11 15:36:47 +0200430
Maxime Ripard5d8514e2020-06-11 15:36:54 +0200431 CRTC_WRITE(PV_V_CONTROL,
432 CRTC_READ(PV_V_CONTROL) & ~PV_VCONTROL_VIDEN);
433 ret = wait_for(!(CRTC_READ(PV_V_CONTROL) & PV_VCONTROL_VIDEN), 1);
434 WARN_ONCE(ret, "Timeout waiting for !PV_VCONTROL_VIDEN\n");
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800435
Maxime Ripardb7cb67a2020-09-03 10:01:01 +0200436 /*
437 * This delay is needed to avoid to get a pixel stuck in an
438 * unflushable FIFO between the pixelvalve and the HDMI
439 * controllers on the BCM2711.
440 *
441 * Timing is fairly sensitive here, so mdelay is the safest
442 * approach.
443 *
444 * If it was to be reworked, the stuck pixel happens on a
445 * BCM2711 when changing mode with a good probability, so a
446 * script that changes mode on a regular basis should trigger
447 * the bug after less than 10 attempts. It manifests itself with
448 * every pixels being shifted by one to the right, and thus the
449 * last pixel of a line actually being displayed as the first
450 * pixel on the next line.
451 */
452 mdelay(20);
453
Maxime Ripard2d14ffe2020-09-03 10:01:06 +0200454 if (vc4_encoder && vc4_encoder->post_crtc_disable)
Maxime Ripard8d914742020-12-15 16:42:36 +0100455 vc4_encoder->post_crtc_disable(encoder, state);
Maxime Ripard792c3132020-09-03 10:01:00 +0200456
Maxime Ripard0d2b96a2020-09-03 10:01:02 +0200457 vc4_crtc_pixelvalve_reset(crtc);
Maxime Ripard2d14ffe2020-09-03 10:01:06 +0200458 vc4_hvs_stop_channel(dev, channel);
Boris Brezillonedeb729f2017-06-16 10:30:33 +0200459
Maxime Ripard2d14ffe2020-09-03 10:01:06 +0200460 if (vc4_encoder && vc4_encoder->post_crtc_powerdown)
Maxime Ripard8d914742020-12-15 16:42:36 +0100461 vc4_encoder->post_crtc_powerdown(encoder, state);
Maxime Ripard792c3132020-09-03 10:01:00 +0200462
Maxime Ripard2d14ffe2020-09-03 10:01:06 +0200463 return 0;
464}
465
Maxime Ripardb601c162021-05-07 17:05:08 +0200466static struct drm_encoder *vc4_crtc_get_encoder_by_type(struct drm_crtc *crtc,
467 enum vc4_encoder_type type)
468{
469 struct drm_encoder *encoder;
470
471 drm_for_each_encoder(encoder, crtc->dev) {
472 struct vc4_encoder *vc4_encoder = to_vc4_encoder(encoder);
473
474 if (vc4_encoder->type == type)
475 return encoder;
476 }
477
478 return NULL;
479}
480
Maxime Ripard875a4d52020-09-03 10:01:07 +0200481int vc4_crtc_disable_at_boot(struct drm_crtc *crtc)
482{
483 struct drm_device *drm = crtc->dev;
484 struct vc4_crtc *vc4_crtc = to_vc4_crtc(crtc);
Maxime Ripardb601c162021-05-07 17:05:08 +0200485 enum vc4_encoder_type encoder_type;
486 const struct vc4_pv_data *pv_data;
487 struct drm_encoder *encoder;
Maxime Ripardbca10db2021-09-23 20:50:13 +0200488 struct vc4_hdmi *vc4_hdmi;
Maxime Ripardb601c162021-05-07 17:05:08 +0200489 unsigned encoder_sel;
Maxime Ripard875a4d52020-09-03 10:01:07 +0200490 int channel;
Maxime Ripardbca10db2021-09-23 20:50:13 +0200491 int ret;
Maxime Ripard875a4d52020-09-03 10:01:07 +0200492
493 if (!(of_device_is_compatible(vc4_crtc->pdev->dev.of_node,
494 "brcm,bcm2711-pixelvalve2") ||
495 of_device_is_compatible(vc4_crtc->pdev->dev.of_node,
496 "brcm,bcm2711-pixelvalve4")))
497 return 0;
498
499 if (!(CRTC_READ(PV_CONTROL) & PV_CONTROL_EN))
500 return 0;
501
502 if (!(CRTC_READ(PV_V_CONTROL) & PV_VCONTROL_VIDEN))
503 return 0;
504
505 channel = vc4_hvs_get_fifo_from_output(drm, vc4_crtc->data->hvs_output);
506 if (channel < 0)
507 return 0;
508
Maxime Ripardb601c162021-05-07 17:05:08 +0200509 encoder_sel = VC4_GET_FIELD(CRTC_READ(PV_CONTROL), PV_CONTROL_CLK_SELECT);
510 if (WARN_ON(encoder_sel != 0))
511 return 0;
512
513 pv_data = vc4_crtc_to_vc4_pv_data(vc4_crtc);
514 encoder_type = pv_data->encoder_types[encoder_sel];
515 encoder = vc4_crtc_get_encoder_by_type(crtc, encoder_type);
516 if (WARN_ON(!encoder))
517 return 0;
518
Maxime Ripardbca10db2021-09-23 20:50:13 +0200519 vc4_hdmi = encoder_to_vc4_hdmi(encoder);
520 ret = pm_runtime_resume_and_get(&vc4_hdmi->pdev->dev);
521 if (ret)
522 return ret;
523
524 ret = vc4_crtc_disable(crtc, encoder, NULL, channel);
525 if (ret)
526 return ret;
527
528 ret = pm_runtime_put(&vc4_hdmi->pdev->dev);
529 if (ret)
530 return ret;
531
532 return 0;
Maxime Ripard875a4d52020-09-03 10:01:07 +0200533}
534
Maxime Ripard2d14ffe2020-09-03 10:01:06 +0200535static void vc4_crtc_atomic_disable(struct drm_crtc *crtc,
Maxime Ripard351f9502020-10-08 14:44:08 +0200536 struct drm_atomic_state *state)
Maxime Ripard2d14ffe2020-09-03 10:01:06 +0200537{
Maxime Ripard351f9502020-10-08 14:44:08 +0200538 struct drm_crtc_state *old_state = drm_atomic_get_old_crtc_state(state,
539 crtc);
Maxime Ripard2d14ffe2020-09-03 10:01:06 +0200540 struct vc4_crtc_state *old_vc4_state = to_vc4_crtc_state(old_state);
Maxime Ripard94c1adc2021-10-25 17:28:58 +0200541 struct drm_encoder *encoder = vc4_get_crtc_encoder(crtc, old_state);
Maxime Ripard2d14ffe2020-09-03 10:01:06 +0200542 struct drm_device *dev = crtc->dev;
543
Maxime Riparde1a70942021-10-25 17:28:59 +0200544 drm_dbg(dev, "Disabling CRTC %s (%u) connected to Encoder %s (%u)",
545 crtc->name, crtc->base.id, encoder->name, encoder->base.id);
546
Maxime Ripard2d14ffe2020-09-03 10:01:06 +0200547 require_hvs_enabled(dev);
548
549 /* Disable vblank irq handling before crtc is disabled. */
550 drm_crtc_vblank_off(crtc);
551
Maxime Ripardb601c162021-05-07 17:05:08 +0200552 vc4_crtc_disable(crtc, encoder, state, old_vc4_state->assigned_channel);
Maxime Ripard2d14ffe2020-09-03 10:01:06 +0200553
Boris Brezillonedeb729f2017-06-16 10:30:33 +0200554 /*
555 * Make sure we issue a vblank event after disabling the CRTC if
556 * someone was waiting it.
557 */
558 if (crtc->state->event) {
559 unsigned long flags;
560
561 spin_lock_irqsave(&dev->event_lock, flags);
562 drm_crtc_send_vblank_event(crtc, crtc->state->event);
563 crtc->state->event = NULL;
564 spin_unlock_irqrestore(&dev->event_lock, flags);
565 }
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800566}
567
Laurent Pinchart0b20a0f2017-06-30 12:36:44 +0300568static void vc4_crtc_atomic_enable(struct drm_crtc *crtc,
Maxime Ripard351f9502020-10-08 14:44:08 +0200569 struct drm_atomic_state *state)
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800570{
Maxime Ripard94c1adc2021-10-25 17:28:58 +0200571 struct drm_crtc_state *new_state = drm_atomic_get_new_crtc_state(state,
572 crtc);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800573 struct drm_device *dev = crtc->dev;
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800574 struct vc4_crtc *vc4_crtc = to_vc4_crtc(crtc);
Maxime Ripard94c1adc2021-10-25 17:28:58 +0200575 struct drm_encoder *encoder = vc4_get_crtc_encoder(crtc, new_state);
Maxime Ripard792c3132020-09-03 10:01:00 +0200576 struct vc4_encoder *vc4_encoder = to_vc4_encoder(encoder);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800577
Maxime Riparde1a70942021-10-25 17:28:59 +0200578 drm_dbg(dev, "Enabling CRTC %s (%u) connected to Encoder %s (%u)",
579 crtc->name, crtc->base.id, encoder->name, encoder->base.id);
580
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800581 require_hvs_enabled(dev);
582
Boris Brezillon1ed134e2017-06-22 22:25:26 +0200583 /* Enable vblank irq handling before crtc is started otherwise
584 * drm_crtc_get_vblank() fails in vc4_crtc_update_dlist().
585 */
586 drm_crtc_vblank_on(crtc);
Boris Brezillon1ed134e2017-06-22 22:25:26 +0200587
Maxime Ripardee6965c82020-12-15 16:42:35 +0100588 vc4_hvs_atomic_enable(crtc, state);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800589
Maxime Ripard792c3132020-09-03 10:01:00 +0200590 if (vc4_encoder->pre_crtc_configure)
Maxime Ripard8d914742020-12-15 16:42:36 +0100591 vc4_encoder->pre_crtc_configure(encoder, state);
Maxime Ripard792c3132020-09-03 10:01:00 +0200592
Maxime Ripardd6faf942021-10-25 17:28:57 +0200593 vc4_crtc_config_pv(crtc, encoder, state);
Maxime Ripard4b72b102020-09-03 10:00:59 +0200594
595 CRTC_WRITE(PV_CONTROL, CRTC_READ(PV_CONTROL) | PV_CONTROL_EN);
596
Maxime Ripard792c3132020-09-03 10:01:00 +0200597 if (vc4_encoder->pre_crtc_enable)
Maxime Ripard8d914742020-12-15 16:42:36 +0100598 vc4_encoder->pre_crtc_enable(encoder, state);
Maxime Ripard792c3132020-09-03 10:01:00 +0200599
Boris Brezillon008095e2018-07-03 09:50:22 +0200600 /* When feeding the transposer block the pixelvalve is unneeded and
601 * should not be enabled.
602 */
Maxime Ripard5d8514e2020-06-11 15:36:54 +0200603 CRTC_WRITE(PV_V_CONTROL,
604 CRTC_READ(PV_V_CONTROL) | PV_VCONTROL_VIDEN);
Maxime Ripard792c3132020-09-03 10:01:00 +0200605
606 if (vc4_encoder->post_crtc_enable)
Maxime Ripard8d914742020-12-15 16:42:36 +0100607 vc4_encoder->post_crtc_enable(encoder, state);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800608}
609
Jose Abreuc50a1152017-05-25 15:19:22 +0100610static enum drm_mode_status vc4_crtc_mode_valid(struct drm_crtc *crtc,
611 const struct drm_display_mode *mode)
Mario Kleineracc1be12016-07-19 20:58:58 +0200612{
Mario Kleiner36451462016-07-19 20:58:59 +0200613 /* Do not allow doublescan modes from user space */
Jose Abreuc50a1152017-05-25 15:19:22 +0100614 if (mode->flags & DRM_MODE_FLAG_DBLSCAN) {
Mario Kleiner36451462016-07-19 20:58:59 +0200615 DRM_DEBUG_KMS("[CRTC:%d] Doublescan mode rejected.\n",
616 crtc->base.id);
Jose Abreuc50a1152017-05-25 15:19:22 +0100617 return MODE_NO_DBLESCAN;
Mario Kleiner36451462016-07-19 20:58:59 +0200618 }
619
Jose Abreuc50a1152017-05-25 15:19:22 +0100620 return MODE_OK;
Mario Kleineracc1be12016-07-19 20:58:58 +0200621}
622
Boris Brezillon666e7352018-12-06 15:24:38 +0100623void vc4_crtc_get_margins(struct drm_crtc_state *state,
624 unsigned int *left, unsigned int *right,
625 unsigned int *top, unsigned int *bottom)
626{
627 struct vc4_crtc_state *vc4_state = to_vc4_crtc_state(state);
628 struct drm_connector_state *conn_state;
629 struct drm_connector *conn;
630 int i;
631
632 *left = vc4_state->margins.left;
633 *right = vc4_state->margins.right;
634 *top = vc4_state->margins.top;
635 *bottom = vc4_state->margins.bottom;
636
637 /* We have to interate over all new connector states because
638 * vc4_crtc_get_margins() might be called before
639 * vc4_crtc_atomic_check() which means margins info in vc4_crtc_state
640 * might be outdated.
641 */
642 for_each_new_connector_in_state(state->state, conn, conn_state, i) {
643 if (conn_state->crtc != state->crtc)
644 continue;
645
646 *left = conn_state->tv.margins.left;
647 *right = conn_state->tv.margins.right;
648 *top = conn_state->tv.margins.top;
649 *bottom = conn_state->tv.margins.bottom;
650 break;
651 }
652}
653
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800654static int vc4_crtc_atomic_check(struct drm_crtc *crtc,
Maxime Ripard29b77ad2020-10-28 13:32:21 +0100655 struct drm_atomic_state *state)
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800656{
Maxime Ripard29b77ad2020-10-28 13:32:21 +0100657 struct drm_crtc_state *crtc_state = drm_atomic_get_new_crtc_state(state,
658 crtc);
659 struct vc4_crtc_state *vc4_state = to_vc4_crtc_state(crtc_state);
Boris Brezillon008095e2018-07-03 09:50:22 +0200660 struct drm_connector *conn;
661 struct drm_connector_state *conn_state;
Boris Brezillon008095e2018-07-03 09:50:22 +0200662 int ret, i;
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800663
Maxime Ripardee6965c82020-12-15 16:42:35 +0100664 ret = vc4_hvs_atomic_check(crtc, state);
Eric Anholtd8dbf442015-12-28 13:25:41 -0800665 if (ret)
666 return ret;
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800667
Maxime Ripardd74252b2020-11-02 14:38:34 +0100668 for_each_new_connector_in_state(state, conn, conn_state,
Maxime Ripard29b77ad2020-10-28 13:32:21 +0100669 i) {
Boris Brezillon008095e2018-07-03 09:50:22 +0200670 if (conn_state->crtc != crtc)
671 continue;
672
Boris Brezillon666e7352018-12-06 15:24:38 +0100673 vc4_state->margins.left = conn_state->tv.margins.left;
674 vc4_state->margins.right = conn_state->tv.margins.right;
675 vc4_state->margins.top = conn_state->tv.margins.top;
676 vc4_state->margins.bottom = conn_state->tv.margins.bottom;
Boris Brezillon008095e2018-07-03 09:50:22 +0200677 break;
678 }
679
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800680 return 0;
681}
682
Shawn Guo0d5f46f2017-02-07 17:16:34 +0800683static int vc4_enable_vblank(struct drm_crtc *crtc)
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800684{
Shawn Guoc77b9ab2017-01-09 19:25:45 +0800685 struct vc4_crtc *vc4_crtc = to_vc4_crtc(crtc);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800686
687 CRTC_WRITE(PV_INTEN, PV_INT_VFP_START);
688
689 return 0;
690}
691
Shawn Guo0d5f46f2017-02-07 17:16:34 +0800692static void vc4_disable_vblank(struct drm_crtc *crtc)
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800693{
Shawn Guoc77b9ab2017-01-09 19:25:45 +0800694 struct vc4_crtc *vc4_crtc = to_vc4_crtc(crtc);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800695
696 CRTC_WRITE(PV_INTEN, 0);
697}
698
699static void vc4_crtc_handle_page_flip(struct vc4_crtc *vc4_crtc)
700{
701 struct drm_crtc *crtc = &vc4_crtc->base;
702 struct drm_device *dev = crtc->dev;
Mario Kleiner56d1fe02016-05-18 14:02:46 +0200703 struct vc4_dev *vc4 = to_vc4_dev(dev);
704 struct vc4_crtc_state *vc4_state = to_vc4_crtc_state(crtc->state);
Maxime Ripard87ebcd42020-09-03 10:00:46 +0200705 u32 chan = vc4_state->assigned_channel;
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800706 unsigned long flags;
707
708 spin_lock_irqsave(&dev->event_lock, flags);
Mario Kleiner56d1fe02016-05-18 14:02:46 +0200709 if (vc4_crtc->event &&
Boris Brezillon008095e2018-07-03 09:50:22 +0200710 (vc4_state->mm.start == HVS_READ(SCALER_DISPLACTX(chan)) ||
711 vc4_state->feed_txp)) {
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800712 drm_crtc_send_vblank_event(crtc, vc4_crtc->event);
713 vc4_crtc->event = NULL;
Mario Kleineree7c10e2016-05-06 19:26:06 +0200714 drm_crtc_vblank_put(crtc);
Boris Brezillon531a1b62019-02-20 16:51:22 +0100715
716 /* Wait for the page flip to unmask the underrun to ensure that
717 * the display list was updated by the hardware. Before that
718 * happens, the HVS will be using the previous display list with
719 * the CRTC and encoder already reconfigured, leading to
720 * underruns. This can be seen when reconfiguring the CRTC.
721 */
Maxime Ripard32a851c2020-09-03 10:00:43 +0200722 vc4_hvs_unmask_underrun(dev, chan);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800723 }
724 spin_unlock_irqrestore(&dev->event_lock, flags);
725}
726
Boris Brezillon008095e2018-07-03 09:50:22 +0200727void vc4_crtc_handle_vblank(struct vc4_crtc *crtc)
728{
729 crtc->t_vblank = ktime_get();
730 drm_crtc_handle_vblank(&crtc->base);
731 vc4_crtc_handle_page_flip(crtc);
732}
733
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800734static irqreturn_t vc4_crtc_irq_handler(int irq, void *data)
735{
736 struct vc4_crtc *vc4_crtc = data;
737 u32 stat = CRTC_READ(PV_INTSTAT);
738 irqreturn_t ret = IRQ_NONE;
739
740 if (stat & PV_INT_VFP_START) {
741 CRTC_WRITE(PV_INTSTAT, PV_INT_VFP_START);
Boris Brezillon008095e2018-07-03 09:50:22 +0200742 vc4_crtc_handle_vblank(vc4_crtc);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800743 ret = IRQ_HANDLED;
744 }
745
746 return ret;
747}
748
Eric Anholtb501bac2015-11-30 12:34:01 -0800749struct vc4_async_flip_state {
750 struct drm_crtc *crtc;
751 struct drm_framebuffer *fb;
Boris Brezillonf7aef1c2018-04-30 15:32:32 +0200752 struct drm_framebuffer *old_fb;
Eric Anholtb501bac2015-11-30 12:34:01 -0800753 struct drm_pending_vblank_event *event;
754
755 struct vc4_seqno_cb cb;
756};
757
758/* Called when the V3D execution for the BO being flipped to is done, so that
759 * we can actually update the plane's address to point to it.
760 */
761static void
762vc4_async_page_flip_complete(struct vc4_seqno_cb *cb)
763{
764 struct vc4_async_flip_state *flip_state =
765 container_of(cb, struct vc4_async_flip_state, cb);
766 struct drm_crtc *crtc = flip_state->crtc;
767 struct drm_device *dev = crtc->dev;
Eric Anholtb501bac2015-11-30 12:34:01 -0800768 struct drm_plane *plane = crtc->primary;
769
770 vc4_plane_async_set_fb(plane, flip_state->fb);
771 if (flip_state->event) {
772 unsigned long flags;
773
774 spin_lock_irqsave(&dev->event_lock, flags);
775 drm_crtc_send_vblank_event(crtc, flip_state->event);
776 spin_unlock_irqrestore(&dev->event_lock, flags);
777 }
778
Mario Kleineree7c10e2016-05-06 19:26:06 +0200779 drm_crtc_vblank_put(crtc);
Cihangir Akturk1d5494e2017-08-03 14:58:40 +0300780 drm_framebuffer_put(flip_state->fb);
Boris Brezillonf7aef1c2018-04-30 15:32:32 +0200781
782 /* Decrement the BO usecnt in order to keep the inc/dec calls balanced
783 * when the planes are updated through the async update path.
784 * FIXME: we should move to generic async-page-flip when it's
785 * available, so that we can get rid of this hand-made cleanup_fb()
786 * logic.
787 */
788 if (flip_state->old_fb) {
789 struct drm_gem_cma_object *cma_bo;
790 struct vc4_bo *bo;
791
792 cma_bo = drm_fb_cma_get_gem_obj(flip_state->old_fb, 0);
793 bo = to_vc4_bo(&cma_bo->base);
794 vc4_bo_dec_usecnt(bo);
795 drm_framebuffer_put(flip_state->old_fb);
796 }
797
Eric Anholtb501bac2015-11-30 12:34:01 -0800798 kfree(flip_state);
Eric Anholtb501bac2015-11-30 12:34:01 -0800799}
800
801/* Implements async (non-vblank-synced) page flips.
802 *
803 * The page flip ioctl needs to return immediately, so we grab the
804 * modeset semaphore on the pipe, and queue the address update for
805 * when V3D is done with the BO being flipped to.
806 */
807static int vc4_async_page_flip(struct drm_crtc *crtc,
808 struct drm_framebuffer *fb,
809 struct drm_pending_vblank_event *event,
810 uint32_t flags)
811{
812 struct drm_device *dev = crtc->dev;
Eric Anholtb501bac2015-11-30 12:34:01 -0800813 struct drm_plane *plane = crtc->primary;
814 int ret = 0;
815 struct vc4_async_flip_state *flip_state;
816 struct drm_gem_cma_object *cma_bo = drm_fb_cma_get_gem_obj(fb, 0);
817 struct vc4_bo *bo = to_vc4_bo(&cma_bo->base);
818
Boris Brezillonf7aef1c2018-04-30 15:32:32 +0200819 /* Increment the BO usecnt here, so that we never end up with an
820 * unbalanced number of vc4_bo_{dec,inc}_usecnt() calls when the
821 * plane is later updated through the non-async path.
822 * FIXME: we should move to generic async-page-flip when it's
823 * available, so that we can get rid of this hand-made prepare_fb()
824 * logic.
825 */
826 ret = vc4_bo_inc_usecnt(bo);
827 if (ret)
828 return ret;
829
Eric Anholtb501bac2015-11-30 12:34:01 -0800830 flip_state = kzalloc(sizeof(*flip_state), GFP_KERNEL);
Boris Brezillonf7aef1c2018-04-30 15:32:32 +0200831 if (!flip_state) {
832 vc4_bo_dec_usecnt(bo);
Eric Anholtb501bac2015-11-30 12:34:01 -0800833 return -ENOMEM;
Boris Brezillonf7aef1c2018-04-30 15:32:32 +0200834 }
Eric Anholtb501bac2015-11-30 12:34:01 -0800835
Cihangir Akturk1d5494e2017-08-03 14:58:40 +0300836 drm_framebuffer_get(fb);
Eric Anholtb501bac2015-11-30 12:34:01 -0800837 flip_state->fb = fb;
838 flip_state->crtc = crtc;
839 flip_state->event = event;
840
Boris Brezillonf7aef1c2018-04-30 15:32:32 +0200841 /* Save the current FB before it's replaced by the new one in
842 * drm_atomic_set_fb_for_plane(). We'll need the old FB in
843 * vc4_async_page_flip_complete() to decrement the BO usecnt and keep
844 * it consistent.
845 * FIXME: we should move to generic async-page-flip when it's
846 * available, so that we can get rid of this hand-made cleanup_fb()
847 * logic.
848 */
849 flip_state->old_fb = plane->state->fb;
850 if (flip_state->old_fb)
851 drm_framebuffer_get(flip_state->old_fb);
852
Mario Kleineree7c10e2016-05-06 19:26:06 +0200853 WARN_ON(drm_crtc_vblank_get(crtc) != 0);
854
Eric Anholtb501bac2015-11-30 12:34:01 -0800855 /* Immediately update the plane's legacy fb pointer, so that later
856 * modeset prep sees the state that will be present when the semaphore
857 * is released.
858 */
859 drm_atomic_set_fb_for_plane(plane->state, fb);
Eric Anholtb501bac2015-11-30 12:34:01 -0800860
861 vc4_queue_seqno_cb(dev, &flip_state->cb, bo->seqno,
862 vc4_async_page_flip_complete);
863
864 /* Driver takes ownership of state on successful async commit. */
865 return 0;
866}
867
Maxime Ripardbdd96472020-06-11 15:36:48 +0200868int vc4_page_flip(struct drm_crtc *crtc,
869 struct drm_framebuffer *fb,
870 struct drm_pending_vblank_event *event,
871 uint32_t flags,
872 struct drm_modeset_acquire_ctx *ctx)
Eric Anholtb501bac2015-11-30 12:34:01 -0800873{
874 if (flags & DRM_MODE_PAGE_FLIP_ASYNC)
875 return vc4_async_page_flip(crtc, fb, event, flags);
876 else
Daniel Vetter41292b1f2017-03-22 22:50:50 +0100877 return drm_atomic_helper_page_flip(crtc, fb, event, flags, ctx);
Eric Anholtb501bac2015-11-30 12:34:01 -0800878}
879
Maxime Ripardbdd96472020-06-11 15:36:48 +0200880struct drm_crtc_state *vc4_crtc_duplicate_state(struct drm_crtc *crtc)
Eric Anholtd8dbf442015-12-28 13:25:41 -0800881{
Boris Brezillon008095e2018-07-03 09:50:22 +0200882 struct vc4_crtc_state *vc4_state, *old_vc4_state;
Eric Anholtd8dbf442015-12-28 13:25:41 -0800883
884 vc4_state = kzalloc(sizeof(*vc4_state), GFP_KERNEL);
885 if (!vc4_state)
886 return NULL;
887
Boris Brezillon008095e2018-07-03 09:50:22 +0200888 old_vc4_state = to_vc4_crtc_state(crtc->state);
889 vc4_state->feed_txp = old_vc4_state->feed_txp;
Boris Brezillon666e7352018-12-06 15:24:38 +0100890 vc4_state->margins = old_vc4_state->margins;
Maxime Ripard87ebcd42020-09-03 10:00:46 +0200891 vc4_state->assigned_channel = old_vc4_state->assigned_channel;
Boris Brezillon008095e2018-07-03 09:50:22 +0200892
Eric Anholtd8dbf442015-12-28 13:25:41 -0800893 __drm_atomic_helper_crtc_duplicate_state(crtc, &vc4_state->base);
894 return &vc4_state->base;
895}
896
Maxime Ripardbdd96472020-06-11 15:36:48 +0200897void vc4_crtc_destroy_state(struct drm_crtc *crtc,
898 struct drm_crtc_state *state)
Eric Anholtd8dbf442015-12-28 13:25:41 -0800899{
900 struct vc4_dev *vc4 = to_vc4_dev(crtc->dev);
901 struct vc4_crtc_state *vc4_state = to_vc4_crtc_state(state);
902
Chris Wilson71724f72019-10-03 22:00:58 +0100903 if (drm_mm_node_allocated(&vc4_state->mm)) {
Eric Anholtd8dbf442015-12-28 13:25:41 -0800904 unsigned long flags;
905
906 spin_lock_irqsave(&vc4->hvs->mm_lock, flags);
907 drm_mm_remove_node(&vc4_state->mm);
908 spin_unlock_irqrestore(&vc4->hvs->mm_lock, flags);
909
910 }
911
Eric Anholt7622b252016-10-10 09:44:06 -0700912 drm_atomic_helper_crtc_destroy_state(crtc, state);
Eric Anholtd8dbf442015-12-28 13:25:41 -0800913}
914
Maxime Ripardbdd96472020-06-11 15:36:48 +0200915void vc4_crtc_reset(struct drm_crtc *crtc)
Eric Anholt6d6e5002017-03-28 13:13:43 -0700916{
Maxime Ripard427c4a02020-09-23 10:40:31 +0200917 struct vc4_crtc_state *vc4_crtc_state;
918
Eric Anholt6d6e5002017-03-28 13:13:43 -0700919 if (crtc->state)
Maarten Lankhorst462ce5d2019-04-24 17:06:29 +0200920 vc4_crtc_destroy_state(crtc, crtc->state);
Maxime Ripard427c4a02020-09-23 10:40:31 +0200921
922 vc4_crtc_state = kzalloc(sizeof(*vc4_crtc_state), GFP_KERNEL);
923 if (!vc4_crtc_state) {
924 crtc->state = NULL;
925 return;
926 }
927
Maxime Ripard8ba0b6d2020-09-23 10:40:32 +0200928 vc4_crtc_state->assigned_channel = VC4_HVS_CHANNEL_DISABLED;
Maxime Ripard427c4a02020-09-23 10:40:31 +0200929 __drm_atomic_helper_crtc_reset(crtc, &vc4_crtc_state->base);
Eric Anholt6d6e5002017-03-28 13:13:43 -0700930}
931
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800932static const struct drm_crtc_funcs vc4_crtc_funcs = {
933 .set_config = drm_atomic_helper_set_config,
934 .destroy = vc4_crtc_destroy,
Eric Anholtb501bac2015-11-30 12:34:01 -0800935 .page_flip = vc4_page_flip,
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800936 .set_property = NULL,
937 .cursor_set = NULL, /* handled by drm_mode_cursor_universal */
938 .cursor_move = NULL, /* handled by drm_mode_cursor_universal */
Eric Anholt6d6e5002017-03-28 13:13:43 -0700939 .reset = vc4_crtc_reset,
Eric Anholtd8dbf442015-12-28 13:25:41 -0800940 .atomic_duplicate_state = vc4_crtc_duplicate_state,
941 .atomic_destroy_state = vc4_crtc_destroy_state,
Shawn Guo0d5f46f2017-02-07 17:16:34 +0800942 .enable_vblank = vc4_enable_vblank,
943 .disable_vblank = vc4_disable_vblank,
Thomas Zimmermann7e69ed62020-01-23 14:59:39 +0100944 .get_vblank_timestamp = drm_crtc_vblank_helper_get_vblank_timestamp,
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800945};
946
947static const struct drm_crtc_helper_funcs vc4_crtc_helper_funcs = {
Jose Abreuc50a1152017-05-25 15:19:22 +0100948 .mode_valid = vc4_crtc_mode_valid,
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800949 .atomic_check = vc4_crtc_atomic_check,
Maxime Ripard81752872020-06-11 15:36:47 +0200950 .atomic_flush = vc4_hvs_atomic_flush,
Laurent Pinchart0b20a0f2017-06-30 12:36:44 +0300951 .atomic_enable = vc4_crtc_atomic_enable,
Laurent Pinchart64581712017-06-30 12:36:45 +0300952 .atomic_disable = vc4_crtc_atomic_disable,
Thomas Zimmermann3c8639c2020-01-23 14:59:38 +0100953 .get_scanout_position = vc4_crtc_get_scanout_position,
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800954};
955
Maxime Ripard5a20ff82020-06-11 15:36:49 +0200956static const struct vc4_pv_data bcm2835_pv0_data = {
957 .base = {
Maxime Ripard87ebcd42020-09-03 10:00:46 +0200958 .hvs_available_channels = BIT(0),
Maxime Ripard8ebb2cf2020-09-03 10:00:42 +0200959 .hvs_output = 0,
Maxime Ripard5a20ff82020-06-11 15:36:49 +0200960 },
Eric Anholtc9be8042019-04-01 11:35:58 -0700961 .debugfs_name = "crtc0_regs",
Maxime Ripard649abf22020-09-03 10:00:47 +0200962 .fifo_depth = 64,
Maxime Ripard644df222020-09-03 10:00:39 +0200963 .pixels_per_clock = 1,
Boris Brezillonab8df602016-12-02 14:48:07 +0100964 .encoder_types = {
965 [PV_CONTROL_CLK_SELECT_DSI] = VC4_ENCODER_TYPE_DSI0,
966 [PV_CONTROL_CLK_SELECT_DPI_SMI_HDMI] = VC4_ENCODER_TYPE_DPI,
967 },
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800968};
969
Maxime Ripard5a20ff82020-06-11 15:36:49 +0200970static const struct vc4_pv_data bcm2835_pv1_data = {
971 .base = {
Maxime Ripard87ebcd42020-09-03 10:00:46 +0200972 .hvs_available_channels = BIT(2),
Maxime Ripard8ebb2cf2020-09-03 10:00:42 +0200973 .hvs_output = 2,
Maxime Ripard5a20ff82020-06-11 15:36:49 +0200974 },
Eric Anholtc9be8042019-04-01 11:35:58 -0700975 .debugfs_name = "crtc1_regs",
Maxime Ripard649abf22020-09-03 10:00:47 +0200976 .fifo_depth = 64,
Maxime Ripard644df222020-09-03 10:00:39 +0200977 .pixels_per_clock = 1,
Boris Brezillonab8df602016-12-02 14:48:07 +0100978 .encoder_types = {
979 [PV_CONTROL_CLK_SELECT_DSI] = VC4_ENCODER_TYPE_DSI1,
980 [PV_CONTROL_CLK_SELECT_DPI_SMI_HDMI] = VC4_ENCODER_TYPE_SMI,
981 },
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800982};
983
Maxime Ripard5a20ff82020-06-11 15:36:49 +0200984static const struct vc4_pv_data bcm2835_pv2_data = {
985 .base = {
Maxime Ripard87ebcd42020-09-03 10:00:46 +0200986 .hvs_available_channels = BIT(1),
Maxime Ripard8ebb2cf2020-09-03 10:00:42 +0200987 .hvs_output = 1,
Maxime Ripard5a20ff82020-06-11 15:36:49 +0200988 },
Eric Anholtc9be8042019-04-01 11:35:58 -0700989 .debugfs_name = "crtc2_regs",
Maxime Ripard649abf22020-09-03 10:00:47 +0200990 .fifo_depth = 64,
Maxime Ripard644df222020-09-03 10:00:39 +0200991 .pixels_per_clock = 1,
Boris Brezillonab8df602016-12-02 14:48:07 +0100992 .encoder_types = {
Maxime Riparded024b22020-09-03 10:00:49 +0200993 [PV_CONTROL_CLK_SELECT_DPI_SMI_HDMI] = VC4_ENCODER_TYPE_HDMI0,
Boris Brezillonab8df602016-12-02 14:48:07 +0100994 [PV_CONTROL_CLK_SELECT_VEC] = VC4_ENCODER_TYPE_VEC,
995 },
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800996};
997
Maxime Ripard658a7312020-09-03 10:01:09 +0200998static const struct vc4_pv_data bcm2711_pv0_data = {
999 .base = {
1000 .hvs_available_channels = BIT(0),
1001 .hvs_output = 0,
1002 },
1003 .debugfs_name = "crtc0_regs",
1004 .fifo_depth = 64,
1005 .pixels_per_clock = 1,
1006 .encoder_types = {
1007 [0] = VC4_ENCODER_TYPE_DSI0,
1008 [1] = VC4_ENCODER_TYPE_DPI,
1009 },
1010};
1011
1012static const struct vc4_pv_data bcm2711_pv1_data = {
1013 .base = {
1014 .hvs_available_channels = BIT(0) | BIT(1) | BIT(2),
1015 .hvs_output = 3,
1016 },
1017 .debugfs_name = "crtc1_regs",
1018 .fifo_depth = 64,
1019 .pixels_per_clock = 1,
1020 .encoder_types = {
1021 [0] = VC4_ENCODER_TYPE_DSI1,
1022 [1] = VC4_ENCODER_TYPE_SMI,
1023 },
1024};
1025
1026static const struct vc4_pv_data bcm2711_pv2_data = {
1027 .base = {
1028 .hvs_available_channels = BIT(0) | BIT(1) | BIT(2),
1029 .hvs_output = 4,
1030 },
1031 .debugfs_name = "crtc2_regs",
1032 .fifo_depth = 256,
1033 .pixels_per_clock = 2,
1034 .encoder_types = {
1035 [0] = VC4_ENCODER_TYPE_HDMI0,
1036 },
1037};
1038
1039static const struct vc4_pv_data bcm2711_pv3_data = {
1040 .base = {
1041 .hvs_available_channels = BIT(1),
1042 .hvs_output = 1,
1043 },
1044 .debugfs_name = "crtc3_regs",
1045 .fifo_depth = 64,
1046 .pixels_per_clock = 1,
1047 .encoder_types = {
Mateusz Kwiatkowskifc7a8ab2021-05-20 17:03:41 +02001048 [PV_CONTROL_CLK_SELECT_VEC] = VC4_ENCODER_TYPE_VEC,
Maxime Ripard658a7312020-09-03 10:01:09 +02001049 },
1050};
1051
1052static const struct vc4_pv_data bcm2711_pv4_data = {
1053 .base = {
1054 .hvs_available_channels = BIT(0) | BIT(1) | BIT(2),
1055 .hvs_output = 5,
1056 },
1057 .debugfs_name = "crtc4_regs",
1058 .fifo_depth = 64,
1059 .pixels_per_clock = 2,
1060 .encoder_types = {
1061 [0] = VC4_ENCODER_TYPE_HDMI1,
1062 },
1063};
1064
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001065static const struct of_device_id vc4_crtc_dt_match[] = {
Maxime Riparddebf5852020-05-27 17:47:52 +02001066 { .compatible = "brcm,bcm2835-pixelvalve0", .data = &bcm2835_pv0_data },
1067 { .compatible = "brcm,bcm2835-pixelvalve1", .data = &bcm2835_pv1_data },
1068 { .compatible = "brcm,bcm2835-pixelvalve2", .data = &bcm2835_pv2_data },
Maxime Ripard658a7312020-09-03 10:01:09 +02001069 { .compatible = "brcm,bcm2711-pixelvalve0", .data = &bcm2711_pv0_data },
1070 { .compatible = "brcm,bcm2711-pixelvalve1", .data = &bcm2711_pv1_data },
1071 { .compatible = "brcm,bcm2711-pixelvalve2", .data = &bcm2711_pv2_data },
1072 { .compatible = "brcm,bcm2711-pixelvalve3", .data = &bcm2711_pv3_data },
1073 { .compatible = "brcm,bcm2711-pixelvalve4", .data = &bcm2711_pv4_data },
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001074 {}
1075};
1076
1077static void vc4_set_crtc_possible_masks(struct drm_device *drm,
1078 struct drm_crtc *crtc)
1079{
1080 struct vc4_crtc *vc4_crtc = to_vc4_crtc(crtc);
Maxime Ripard5a20ff82020-06-11 15:36:49 +02001081 const struct vc4_pv_data *pv_data = vc4_crtc_to_vc4_pv_data(vc4_crtc);
1082 const enum vc4_encoder_type *encoder_types = pv_data->encoder_types;
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001083 struct drm_encoder *encoder;
1084
1085 drm_for_each_encoder(encoder, drm) {
Boris Brezillon008095e2018-07-03 09:50:22 +02001086 struct vc4_encoder *vc4_encoder;
Boris Brezillonab8df602016-12-02 14:48:07 +01001087 int i;
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001088
Maxime Ripard47a50742021-05-07 17:05:05 +02001089 if (encoder->encoder_type == DRM_MODE_ENCODER_VIRTUAL)
1090 continue;
1091
Boris Brezillon008095e2018-07-03 09:50:22 +02001092 vc4_encoder = to_vc4_encoder(encoder);
Maxime Ripard5a20ff82020-06-11 15:36:49 +02001093 for (i = 0; i < ARRAY_SIZE(pv_data->encoder_types); i++) {
Boris Brezillonab8df602016-12-02 14:48:07 +01001094 if (vc4_encoder->type == encoder_types[i]) {
1095 vc4_encoder->clock_select = i;
1096 encoder->possible_crtcs |= drm_crtc_mask(crtc);
1097 break;
1098 }
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001099 }
1100 }
1101}
1102
Maxime Ripard5fefc602020-06-11 15:36:51 +02001103int vc4_crtc_init(struct drm_device *drm, struct vc4_crtc *vc4_crtc,
1104 const struct drm_crtc_funcs *crtc_funcs,
1105 const struct drm_crtc_helper_funcs *crtc_helper_funcs)
1106{
Maxime Ripardeb92bc72020-09-03 10:00:51 +02001107 struct vc4_dev *vc4 = to_vc4_dev(drm);
Maxime Ripard5fefc602020-06-11 15:36:51 +02001108 struct drm_crtc *crtc = &vc4_crtc->base;
1109 struct drm_plane *primary_plane;
1110 unsigned int i;
1111
1112 /* For now, we create just the primary and the legacy cursor
1113 * planes. We should be able to stack more planes on easily,
1114 * but to do that we would need to compute the bandwidth
1115 * requirement of the plane configuration, and reject ones
1116 * that will take too much.
1117 */
1118 primary_plane = vc4_plane_init(drm, DRM_PLANE_TYPE_PRIMARY);
1119 if (IS_ERR(primary_plane)) {
1120 dev_err(drm->dev, "failed to construct primary plane\n");
1121 return PTR_ERR(primary_plane);
1122 }
1123
1124 drm_crtc_init_with_planes(drm, crtc, primary_plane, NULL,
1125 crtc_funcs, NULL);
1126 drm_crtc_helper_add(crtc, crtc_helper_funcs);
Maxime Ripard5fefc602020-06-11 15:36:51 +02001127
Maxime Ripardeb92bc72020-09-03 10:00:51 +02001128 if (!vc4->hvs->hvs5) {
1129 drm_mode_crtc_set_gamma_size(crtc, ARRAY_SIZE(vc4_crtc->lut_r));
1130
1131 drm_crtc_enable_color_mgmt(crtc, 0, false, crtc->gamma_size);
1132
1133 /* We support CTM, but only for one CRTC at a time. It's therefore
1134 * implemented as private driver state in vc4_kms, not here.
1135 */
1136 drm_crtc_enable_color_mgmt(crtc, 0, true, crtc->gamma_size);
1137 }
Maxime Ripard5fefc602020-06-11 15:36:51 +02001138
1139 for (i = 0; i < crtc->gamma_size; i++) {
1140 vc4_crtc->lut_r[i] = i;
1141 vc4_crtc->lut_g[i] = i;
1142 vc4_crtc->lut_b[i] = i;
1143 }
1144
1145 return 0;
1146}
1147
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001148static int vc4_crtc_bind(struct device *dev, struct device *master, void *data)
1149{
1150 struct platform_device *pdev = to_platform_device(dev);
1151 struct drm_device *drm = dev_get_drvdata(master);
Maxime Ripard5a20ff82020-06-11 15:36:49 +02001152 const struct vc4_pv_data *pv_data;
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001153 struct vc4_crtc *vc4_crtc;
1154 struct drm_crtc *crtc;
Maxime Ripard5fefc602020-06-11 15:36:51 +02001155 struct drm_plane *destroy_plane, *temp;
1156 int ret;
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001157
1158 vc4_crtc = devm_kzalloc(dev, sizeof(*vc4_crtc), GFP_KERNEL);
1159 if (!vc4_crtc)
1160 return -ENOMEM;
1161 crtc = &vc4_crtc->base;
1162
Maxime Ripard76781422020-05-27 17:47:53 +02001163 pv_data = of_device_get_match_data(dev);
1164 if (!pv_data)
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001165 return -ENODEV;
Maxime Ripard5a20ff82020-06-11 15:36:49 +02001166 vc4_crtc->data = &pv_data->base;
Eric Anholt30517192019-02-20 13:03:38 -08001167 vc4_crtc->pdev = pdev;
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001168
1169 vc4_crtc->regs = vc4_ioremap_regs(pdev, 0);
1170 if (IS_ERR(vc4_crtc->regs))
1171 return PTR_ERR(vc4_crtc->regs);
1172
Eric Anholt30517192019-02-20 13:03:38 -08001173 vc4_crtc->regset.base = vc4_crtc->regs;
1174 vc4_crtc->regset.regs = crtc_regs;
1175 vc4_crtc->regset.nregs = ARRAY_SIZE(crtc_regs);
1176
Maxime Ripard5fefc602020-06-11 15:36:51 +02001177 ret = vc4_crtc_init(drm, vc4_crtc,
1178 &vc4_crtc_funcs, &vc4_crtc_helper_funcs);
1179 if (ret)
1180 return ret;
1181 vc4_set_crtc_possible_masks(drm, crtc);
Mario Kleiner1bf59f12016-06-23 08:17:50 +02001182
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001183 CRTC_WRITE(PV_INTEN, 0);
1184 CRTC_WRITE(PV_INTSTAT, PV_INT_VFP_START);
1185 ret = devm_request_irq(dev, platform_get_irq(pdev, 0),
Maxime Riparda1962d62020-09-03 10:00:40 +02001186 vc4_crtc_irq_handler,
1187 IRQF_SHARED,
1188 "vc4 crtc", vc4_crtc);
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001189 if (ret)
Eric Anholtfc2d6f12015-10-20 14:18:56 +01001190 goto err_destroy_planes;
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001191
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001192 platform_set_drvdata(pdev, vc4_crtc);
1193
Maxime Ripard76781422020-05-27 17:47:53 +02001194 vc4_debugfs_add_regset32(drm, pv_data->debugfs_name,
Eric Anholtc9be8042019-04-01 11:35:58 -07001195 &vc4_crtc->regset);
1196
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001197 return 0;
1198
Eric Anholtfc2d6f12015-10-20 14:18:56 +01001199err_destroy_planes:
1200 list_for_each_entry_safe(destroy_plane, temp,
1201 &drm->mode_config.plane_list, head) {
Ville Syrjäläc0183a82018-06-26 22:47:15 +03001202 if (destroy_plane->possible_crtcs == drm_crtc_mask(crtc))
Eric Anholtfc2d6f12015-10-20 14:18:56 +01001203 destroy_plane->funcs->destroy(destroy_plane);
1204 }
Maxime Ripard5fefc602020-06-11 15:36:51 +02001205
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001206 return ret;
1207}
1208
1209static void vc4_crtc_unbind(struct device *dev, struct device *master,
1210 void *data)
1211{
1212 struct platform_device *pdev = to_platform_device(dev);
1213 struct vc4_crtc *vc4_crtc = dev_get_drvdata(dev);
1214
1215 vc4_crtc_destroy(&vc4_crtc->base);
1216
1217 CRTC_WRITE(PV_INTEN, 0);
1218
1219 platform_set_drvdata(pdev, NULL);
1220}
1221
1222static const struct component_ops vc4_crtc_ops = {
1223 .bind = vc4_crtc_bind,
1224 .unbind = vc4_crtc_unbind,
1225};
1226
1227static int vc4_crtc_dev_probe(struct platform_device *pdev)
1228{
1229 return component_add(&pdev->dev, &vc4_crtc_ops);
1230}
1231
1232static int vc4_crtc_dev_remove(struct platform_device *pdev)
1233{
1234 component_del(&pdev->dev, &vc4_crtc_ops);
1235 return 0;
1236}
1237
1238struct platform_driver vc4_crtc_driver = {
1239 .probe = vc4_crtc_dev_probe,
1240 .remove = vc4_crtc_dev_remove,
1241 .driver = {
1242 .name = "vc4_crtc",
1243 .of_match_table = vc4_crtc_dt_match,
1244 },
1245};