blob: 6efd55bae8dbd62996c7f5ab4f2915f6a120f0ef [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 plane module
11 *
12 * Each DRM plane is a layer of pixels being scanned out by the HVS.
13 *
14 * At atomic modeset check time, we compute the HVS display element
15 * state that would be necessary for displaying the plane (giving us a
16 * chance to figure out if a plane configuration is invalid), then at
17 * atomic flush time the CRTC will ask us to write our element state
18 * into the region of the HVS that it has allocated for us.
19 */
20
Masahiro Yamadab7e8e252017-05-18 13:29:38 +090021#include <drm/drm_atomic.h>
22#include <drm/drm_atomic_helper.h>
23#include <drm/drm_fb_cma_helper.h>
24#include <drm/drm_plane_helper.h>
25
Boris Brezillonb9f19252017-10-19 14:57:48 +020026#include "uapi/drm/vc4_drm.h"
Eric Anholtc8b75bc2015-03-02 13:01:12 -080027#include "vc4_drv.h"
28#include "vc4_regs.h"
Eric Anholtc8b75bc2015-03-02 13:01:12 -080029
Eric Anholtc8b75bc2015-03-02 13:01:12 -080030static const struct hvs_format {
31 u32 drm; /* DRM_FORMAT_* */
32 u32 hvs; /* HVS_FORMAT_* */
33 u32 pixel_order;
Eric Anholtc8b75bc2015-03-02 13:01:12 -080034} hvs_formats[] = {
35 {
36 .drm = DRM_FORMAT_XRGB8888, .hvs = HVS_PIXEL_FORMAT_RGBA8888,
Maxime Ripard124e5da2017-12-22 15:31:27 +010037 .pixel_order = HVS_PIXEL_ORDER_ABGR,
Eric Anholtc8b75bc2015-03-02 13:01:12 -080038 },
39 {
40 .drm = DRM_FORMAT_ARGB8888, .hvs = HVS_PIXEL_FORMAT_RGBA8888,
Maxime Ripard124e5da2017-12-22 15:31:27 +010041 .pixel_order = HVS_PIXEL_ORDER_ABGR,
Eric Anholtc8b75bc2015-03-02 13:01:12 -080042 },
Eric Anholtfe4cd842015-10-20 13:59:15 +010043 {
Rob Herring93977762016-06-09 16:19:25 -050044 .drm = DRM_FORMAT_ABGR8888, .hvs = HVS_PIXEL_FORMAT_RGBA8888,
Maxime Ripard124e5da2017-12-22 15:31:27 +010045 .pixel_order = HVS_PIXEL_ORDER_ARGB,
Rob Herring93977762016-06-09 16:19:25 -050046 },
47 {
48 .drm = DRM_FORMAT_XBGR8888, .hvs = HVS_PIXEL_FORMAT_RGBA8888,
Maxime Ripard124e5da2017-12-22 15:31:27 +010049 .pixel_order = HVS_PIXEL_ORDER_ARGB,
Rob Herring93977762016-06-09 16:19:25 -050050 },
51 {
Eric Anholtfe4cd842015-10-20 13:59:15 +010052 .drm = DRM_FORMAT_RGB565, .hvs = HVS_PIXEL_FORMAT_RGB565,
Maxime Ripard124e5da2017-12-22 15:31:27 +010053 .pixel_order = HVS_PIXEL_ORDER_XRGB,
Eric Anholtfe4cd842015-10-20 13:59:15 +010054 },
55 {
56 .drm = DRM_FORMAT_BGR565, .hvs = HVS_PIXEL_FORMAT_RGB565,
Maxime Ripard124e5da2017-12-22 15:31:27 +010057 .pixel_order = HVS_PIXEL_ORDER_XBGR,
Eric Anholtfe4cd842015-10-20 13:59:15 +010058 },
59 {
60 .drm = DRM_FORMAT_ARGB1555, .hvs = HVS_PIXEL_FORMAT_RGBA5551,
Maxime Ripard124e5da2017-12-22 15:31:27 +010061 .pixel_order = HVS_PIXEL_ORDER_ABGR,
Eric Anholtfe4cd842015-10-20 13:59:15 +010062 },
63 {
64 .drm = DRM_FORMAT_XRGB1555, .hvs = HVS_PIXEL_FORMAT_RGBA5551,
Maxime Ripard124e5da2017-12-22 15:31:27 +010065 .pixel_order = HVS_PIXEL_ORDER_ABGR,
Eric Anholtfe4cd842015-10-20 13:59:15 +010066 },
Eric Anholtfc040232015-12-30 12:25:44 -080067 {
Dave Stevenson88f81562017-11-16 14:22:29 +000068 .drm = DRM_FORMAT_RGB888, .hvs = HVS_PIXEL_FORMAT_RGB888,
Maxime Ripard124e5da2017-12-22 15:31:27 +010069 .pixel_order = HVS_PIXEL_ORDER_XRGB,
Dave Stevenson88f81562017-11-16 14:22:29 +000070 },
71 {
72 .drm = DRM_FORMAT_BGR888, .hvs = HVS_PIXEL_FORMAT_RGB888,
Maxime Ripard124e5da2017-12-22 15:31:27 +010073 .pixel_order = HVS_PIXEL_ORDER_XBGR,
Dave Stevenson88f81562017-11-16 14:22:29 +000074 },
75 {
Eric Anholtfc040232015-12-30 12:25:44 -080076 .drm = DRM_FORMAT_YUV422,
77 .hvs = HVS_PIXEL_FORMAT_YCBCR_YUV422_3PLANE,
Dave Stevenson090cb0c2017-11-16 14:22:30 +000078 .pixel_order = HVS_PIXEL_ORDER_XYCBCR,
Eric Anholtfc040232015-12-30 12:25:44 -080079 },
80 {
81 .drm = DRM_FORMAT_YVU422,
82 .hvs = HVS_PIXEL_FORMAT_YCBCR_YUV422_3PLANE,
Dave Stevenson090cb0c2017-11-16 14:22:30 +000083 .pixel_order = HVS_PIXEL_ORDER_XYCRCB,
Eric Anholtfc040232015-12-30 12:25:44 -080084 },
85 {
86 .drm = DRM_FORMAT_YUV420,
87 .hvs = HVS_PIXEL_FORMAT_YCBCR_YUV420_3PLANE,
Dave Stevenson090cb0c2017-11-16 14:22:30 +000088 .pixel_order = HVS_PIXEL_ORDER_XYCBCR,
Eric Anholtfc040232015-12-30 12:25:44 -080089 },
90 {
91 .drm = DRM_FORMAT_YVU420,
92 .hvs = HVS_PIXEL_FORMAT_YCBCR_YUV420_3PLANE,
Dave Stevenson090cb0c2017-11-16 14:22:30 +000093 .pixel_order = HVS_PIXEL_ORDER_XYCRCB,
Eric Anholtfc040232015-12-30 12:25:44 -080094 },
95 {
96 .drm = DRM_FORMAT_NV12,
97 .hvs = HVS_PIXEL_FORMAT_YCBCR_YUV420_2PLANE,
Dave Stevenson090cb0c2017-11-16 14:22:30 +000098 .pixel_order = HVS_PIXEL_ORDER_XYCBCR,
Eric Anholtfc040232015-12-30 12:25:44 -080099 },
100 {
Dave Stevensoncb20dd12017-11-16 14:22:31 +0000101 .drm = DRM_FORMAT_NV21,
102 .hvs = HVS_PIXEL_FORMAT_YCBCR_YUV420_2PLANE,
103 .pixel_order = HVS_PIXEL_ORDER_XYCRCB,
104 },
105 {
Eric Anholtfc040232015-12-30 12:25:44 -0800106 .drm = DRM_FORMAT_NV16,
107 .hvs = HVS_PIXEL_FORMAT_YCBCR_YUV422_2PLANE,
Dave Stevenson090cb0c2017-11-16 14:22:30 +0000108 .pixel_order = HVS_PIXEL_ORDER_XYCBCR,
Eric Anholtfc040232015-12-30 12:25:44 -0800109 },
Dave Stevensoncb20dd12017-11-16 14:22:31 +0000110 {
111 .drm = DRM_FORMAT_NV61,
112 .hvs = HVS_PIXEL_FORMAT_YCBCR_YUV422_2PLANE,
113 .pixel_order = HVS_PIXEL_ORDER_XYCRCB,
114 },
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800115};
116
117static const struct hvs_format *vc4_get_hvs_format(u32 drm_format)
118{
119 unsigned i;
120
121 for (i = 0; i < ARRAY_SIZE(hvs_formats); i++) {
122 if (hvs_formats[i].drm == drm_format)
123 return &hvs_formats[i];
124 }
125
126 return NULL;
127}
128
Eric Anholt21af94c2015-10-20 16:06:57 +0100129static enum vc4_scaling_mode vc4_get_scaling_mode(u32 src, u32 dst)
130{
131 if (dst > src)
132 return VC4_SCALING_PPF;
133 else if (dst < src)
134 return VC4_SCALING_TPZ;
135 else
136 return VC4_SCALING_NONE;
137}
138
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800139static bool plane_enabled(struct drm_plane_state *state)
140{
141 return state->fb && state->crtc;
142}
143
kbuild test robot91276ae2015-10-22 11:12:26 +0800144static struct drm_plane_state *vc4_plane_duplicate_state(struct drm_plane *plane)
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800145{
146 struct vc4_plane_state *vc4_state;
147
148 if (WARN_ON(!plane->state))
149 return NULL;
150
151 vc4_state = kmemdup(plane->state, sizeof(*vc4_state), GFP_KERNEL);
152 if (!vc4_state)
153 return NULL;
154
Eric Anholt21af94c2015-10-20 16:06:57 +0100155 memset(&vc4_state->lbm, 0, sizeof(vc4_state->lbm));
156
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800157 __drm_atomic_helper_plane_duplicate_state(plane, &vc4_state->base);
158
159 if (vc4_state->dlist) {
160 vc4_state->dlist = kmemdup(vc4_state->dlist,
161 vc4_state->dlist_count * 4,
162 GFP_KERNEL);
163 if (!vc4_state->dlist) {
164 kfree(vc4_state);
165 return NULL;
166 }
167 vc4_state->dlist_size = vc4_state->dlist_count;
168 }
169
170 return &vc4_state->base;
171}
172
kbuild test robot91276ae2015-10-22 11:12:26 +0800173static void vc4_plane_destroy_state(struct drm_plane *plane,
174 struct drm_plane_state *state)
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800175{
Eric Anholt21af94c2015-10-20 16:06:57 +0100176 struct vc4_dev *vc4 = to_vc4_dev(plane->dev);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800177 struct vc4_plane_state *vc4_state = to_vc4_plane_state(state);
178
Eric Anholt21af94c2015-10-20 16:06:57 +0100179 if (vc4_state->lbm.allocated) {
180 unsigned long irqflags;
181
182 spin_lock_irqsave(&vc4->hvs->mm_lock, irqflags);
183 drm_mm_remove_node(&vc4_state->lbm);
184 spin_unlock_irqrestore(&vc4->hvs->mm_lock, irqflags);
185 }
186
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800187 kfree(vc4_state->dlist);
Daniel Vetter2f701692016-05-09 16:34:10 +0200188 __drm_atomic_helper_plane_destroy_state(&vc4_state->base);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800189 kfree(state);
190}
191
192/* Called during init to allocate the plane's atomic state. */
kbuild test robot91276ae2015-10-22 11:12:26 +0800193static void vc4_plane_reset(struct drm_plane *plane)
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800194{
195 struct vc4_plane_state *vc4_state;
196
197 WARN_ON(plane->state);
198
199 vc4_state = kzalloc(sizeof(*vc4_state), GFP_KERNEL);
200 if (!vc4_state)
201 return;
202
203 plane->state = &vc4_state->base;
Stefan Schake22445f02018-04-20 17:09:54 -0700204 plane->state->alpha = DRM_BLEND_ALPHA_OPAQUE;
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800205 vc4_state->base.plane = plane;
206}
207
208static void vc4_dlist_write(struct vc4_plane_state *vc4_state, u32 val)
209{
210 if (vc4_state->dlist_count == vc4_state->dlist_size) {
211 u32 new_size = max(4u, vc4_state->dlist_count * 2);
212 u32 *new_dlist = kmalloc(new_size * 4, GFP_KERNEL);
213
214 if (!new_dlist)
215 return;
216 memcpy(new_dlist, vc4_state->dlist, vc4_state->dlist_count * 4);
217
218 kfree(vc4_state->dlist);
219 vc4_state->dlist = new_dlist;
220 vc4_state->dlist_size = new_size;
221 }
222
223 vc4_state->dlist[vc4_state->dlist_count++] = val;
224}
225
Eric Anholt21af94c2015-10-20 16:06:57 +0100226/* Returns the scl0/scl1 field based on whether the dimensions need to
227 * be up/down/non-scaled.
228 *
229 * This is a replication of a table from the spec.
230 */
Eric Anholtfc040232015-12-30 12:25:44 -0800231static u32 vc4_get_scl_field(struct drm_plane_state *state, int plane)
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800232{
233 struct vc4_plane_state *vc4_state = to_vc4_plane_state(state);
Eric Anholt21af94c2015-10-20 16:06:57 +0100234
Eric Anholtfc040232015-12-30 12:25:44 -0800235 switch (vc4_state->x_scaling[plane] << 2 | vc4_state->y_scaling[plane]) {
Eric Anholt21af94c2015-10-20 16:06:57 +0100236 case VC4_SCALING_PPF << 2 | VC4_SCALING_PPF:
237 return SCALER_CTL0_SCL_H_PPF_V_PPF;
238 case VC4_SCALING_TPZ << 2 | VC4_SCALING_PPF:
239 return SCALER_CTL0_SCL_H_TPZ_V_PPF;
240 case VC4_SCALING_PPF << 2 | VC4_SCALING_TPZ:
241 return SCALER_CTL0_SCL_H_PPF_V_TPZ;
242 case VC4_SCALING_TPZ << 2 | VC4_SCALING_TPZ:
243 return SCALER_CTL0_SCL_H_TPZ_V_TPZ;
244 case VC4_SCALING_PPF << 2 | VC4_SCALING_NONE:
245 return SCALER_CTL0_SCL_H_PPF_V_NONE;
246 case VC4_SCALING_NONE << 2 | VC4_SCALING_PPF:
247 return SCALER_CTL0_SCL_H_NONE_V_PPF;
248 case VC4_SCALING_NONE << 2 | VC4_SCALING_TPZ:
249 return SCALER_CTL0_SCL_H_NONE_V_TPZ;
250 case VC4_SCALING_TPZ << 2 | VC4_SCALING_NONE:
251 return SCALER_CTL0_SCL_H_TPZ_V_NONE;
252 default:
253 case VC4_SCALING_NONE << 2 | VC4_SCALING_NONE:
254 /* The unity case is independently handled by
255 * SCALER_CTL0_UNITY.
256 */
257 return 0;
258 }
259}
260
261static int vc4_plane_setup_clipping_and_scaling(struct drm_plane_state *state)
262{
263 struct drm_plane *plane = state->plane;
264 struct vc4_plane_state *vc4_state = to_vc4_plane_state(state);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800265 struct drm_framebuffer *fb = state->fb;
Eric Anholtfc040232015-12-30 12:25:44 -0800266 struct drm_gem_cma_object *bo = drm_fb_cma_get_gem_obj(fb, 0);
Eric Anholt21af94c2015-10-20 16:06:57 +0100267 u32 subpixel_src_mask = (1 << 16) - 1;
Ville Syrjälä438b74a2016-12-14 23:32:55 +0200268 u32 format = fb->format->format;
Ville Syrjäläbcb0b462016-12-14 23:30:22 +0200269 int num_planes = fb->format->num_planes;
Eric Anholtfc040232015-12-30 12:25:44 -0800270 u32 h_subsample = 1;
271 u32 v_subsample = 1;
272 int i;
Eric Anholt5c679992015-12-28 14:34:44 -0800273
Eric Anholtfc040232015-12-30 12:25:44 -0800274 for (i = 0; i < num_planes; i++)
275 vc4_state->offsets[i] = bo->paddr + fb->offsets[i];
Eric Anholt5c679992015-12-28 14:34:44 -0800276
Eric Anholt21af94c2015-10-20 16:06:57 +0100277 /* We don't support subpixel source positioning for scaling. */
278 if ((state->src_x & subpixel_src_mask) ||
279 (state->src_y & subpixel_src_mask) ||
280 (state->src_w & subpixel_src_mask) ||
281 (state->src_h & subpixel_src_mask)) {
Eric Anholtbf893ac2015-10-23 10:36:27 +0100282 return -EINVAL;
283 }
284
Eric Anholt21af94c2015-10-20 16:06:57 +0100285 vc4_state->src_x = state->src_x >> 16;
286 vc4_state->src_y = state->src_y >> 16;
Eric Anholtfc040232015-12-30 12:25:44 -0800287 vc4_state->src_w[0] = state->src_w >> 16;
288 vc4_state->src_h[0] = state->src_h >> 16;
Eric Anholtf863e352015-12-28 14:45:25 -0800289
290 vc4_state->crtc_x = state->crtc_x;
291 vc4_state->crtc_y = state->crtc_y;
292 vc4_state->crtc_w = state->crtc_w;
293 vc4_state->crtc_h = state->crtc_h;
294
Eric Anholtfc040232015-12-30 12:25:44 -0800295 vc4_state->x_scaling[0] = vc4_get_scaling_mode(vc4_state->src_w[0],
296 vc4_state->crtc_w);
297 vc4_state->y_scaling[0] = vc4_get_scaling_mode(vc4_state->src_h[0],
298 vc4_state->crtc_h);
299
300 if (num_planes > 1) {
301 vc4_state->is_yuv = true;
302
303 h_subsample = drm_format_horz_chroma_subsampling(format);
304 v_subsample = drm_format_vert_chroma_subsampling(format);
305 vc4_state->src_w[1] = vc4_state->src_w[0] / h_subsample;
306 vc4_state->src_h[1] = vc4_state->src_h[0] / v_subsample;
307
308 vc4_state->x_scaling[1] =
309 vc4_get_scaling_mode(vc4_state->src_w[1],
310 vc4_state->crtc_w);
311 vc4_state->y_scaling[1] =
312 vc4_get_scaling_mode(vc4_state->src_h[1],
313 vc4_state->crtc_h);
314
315 /* YUV conversion requires that scaling be enabled,
316 * even on a plane that's otherwise 1:1. Choose TPZ
317 * for simplicity.
318 */
319 if (vc4_state->x_scaling[0] == VC4_SCALING_NONE)
320 vc4_state->x_scaling[0] = VC4_SCALING_TPZ;
321 if (vc4_state->y_scaling[0] == VC4_SCALING_NONE)
322 vc4_state->y_scaling[0] = VC4_SCALING_TPZ;
323 }
324
325 vc4_state->is_unity = (vc4_state->x_scaling[0] == VC4_SCALING_NONE &&
326 vc4_state->y_scaling[0] == VC4_SCALING_NONE &&
327 vc4_state->x_scaling[1] == VC4_SCALING_NONE &&
328 vc4_state->y_scaling[1] == VC4_SCALING_NONE);
Eric Anholt21af94c2015-10-20 16:06:57 +0100329
330 /* No configuring scaling on the cursor plane, since it gets
331 non-vblank-synced updates, and scaling requires requires
332 LBM changes which have to be vblank-synced.
333 */
334 if (plane->type == DRM_PLANE_TYPE_CURSOR && !vc4_state->is_unity)
335 return -EINVAL;
336
337 /* Clamp the on-screen start x/y to 0. The hardware doesn't
338 * support negative y, and negative x wastes bandwidth.
339 */
Eric Anholt5c679992015-12-28 14:34:44 -0800340 if (vc4_state->crtc_x < 0) {
Eric Anholtfc040232015-12-30 12:25:44 -0800341 for (i = 0; i < num_planes; i++) {
Ville Syrjälä353c8592016-12-14 23:30:57 +0200342 u32 cpp = fb->format->cpp[i];
Eric Anholtfc040232015-12-30 12:25:44 -0800343 u32 subs = ((i == 0) ? 1 : h_subsample);
344
345 vc4_state->offsets[i] += (cpp *
346 (-vc4_state->crtc_x) / subs);
347 }
348 vc4_state->src_w[0] += vc4_state->crtc_x;
349 vc4_state->src_w[1] += vc4_state->crtc_x / h_subsample;
Eric Anholt5c679992015-12-28 14:34:44 -0800350 vc4_state->crtc_x = 0;
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800351 }
352
Eric Anholt5c679992015-12-28 14:34:44 -0800353 if (vc4_state->crtc_y < 0) {
Eric Anholtfc040232015-12-30 12:25:44 -0800354 for (i = 0; i < num_planes; i++) {
355 u32 subs = ((i == 0) ? 1 : v_subsample);
356
357 vc4_state->offsets[i] += (fb->pitches[i] *
358 (-vc4_state->crtc_y) / subs);
359 }
360 vc4_state->src_h[0] += vc4_state->crtc_y;
361 vc4_state->src_h[1] += vc4_state->crtc_y / v_subsample;
Eric Anholt5c679992015-12-28 14:34:44 -0800362 vc4_state->crtc_y = 0;
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800363 }
364
Eric Anholt5c679992015-12-28 14:34:44 -0800365 return 0;
366}
367
Eric Anholt21af94c2015-10-20 16:06:57 +0100368static void vc4_write_tpz(struct vc4_plane_state *vc4_state, u32 src, u32 dst)
369{
370 u32 scale, recip;
371
372 scale = (1 << 16) * src / dst;
373
374 /* The specs note that while the reciprocal would be defined
375 * as (1<<32)/scale, ~0 is close enough.
376 */
377 recip = ~0 / scale;
378
379 vc4_dlist_write(vc4_state,
380 VC4_SET_FIELD(scale, SCALER_TPZ0_SCALE) |
381 VC4_SET_FIELD(0, SCALER_TPZ0_IPHASE));
382 vc4_dlist_write(vc4_state,
383 VC4_SET_FIELD(recip, SCALER_TPZ1_RECIP));
384}
385
386static void vc4_write_ppf(struct vc4_plane_state *vc4_state, u32 src, u32 dst)
387{
388 u32 scale = (1 << 16) * src / dst;
389
390 vc4_dlist_write(vc4_state,
391 SCALER_PPF_AGC |
392 VC4_SET_FIELD(scale, SCALER_PPF_SCALE) |
393 VC4_SET_FIELD(0, SCALER_PPF_IPHASE));
394}
395
396static u32 vc4_lbm_size(struct drm_plane_state *state)
397{
398 struct vc4_plane_state *vc4_state = to_vc4_plane_state(state);
399 /* This is the worst case number. One of the two sizes will
400 * be used depending on the scaling configuration.
401 */
Eric Anholtfc040232015-12-30 12:25:44 -0800402 u32 pix_per_line = max(vc4_state->src_w[0], (u32)vc4_state->crtc_w);
Eric Anholt21af94c2015-10-20 16:06:57 +0100403 u32 lbm;
404
Eric Anholtfc040232015-12-30 12:25:44 -0800405 if (!vc4_state->is_yuv) {
406 if (vc4_state->is_unity)
407 return 0;
408 else if (vc4_state->y_scaling[0] == VC4_SCALING_TPZ)
409 lbm = pix_per_line * 8;
410 else {
411 /* In special cases, this multiplier might be 12. */
412 lbm = pix_per_line * 16;
413 }
414 } else {
415 /* There are cases for this going down to a multiplier
416 * of 2, but according to the firmware source, the
417 * table in the docs is somewhat wrong.
418 */
Eric Anholt21af94c2015-10-20 16:06:57 +0100419 lbm = pix_per_line * 16;
420 }
421
422 lbm = roundup(lbm, 32);
423
424 return lbm;
425}
426
Eric Anholtfc040232015-12-30 12:25:44 -0800427static void vc4_write_scaling_parameters(struct drm_plane_state *state,
428 int channel)
Eric Anholt21af94c2015-10-20 16:06:57 +0100429{
430 struct vc4_plane_state *vc4_state = to_vc4_plane_state(state);
431
432 /* Ch0 H-PPF Word 0: Scaling Parameters */
Eric Anholtfc040232015-12-30 12:25:44 -0800433 if (vc4_state->x_scaling[channel] == VC4_SCALING_PPF) {
Eric Anholt21af94c2015-10-20 16:06:57 +0100434 vc4_write_ppf(vc4_state,
Eric Anholtfc040232015-12-30 12:25:44 -0800435 vc4_state->src_w[channel], vc4_state->crtc_w);
Eric Anholt21af94c2015-10-20 16:06:57 +0100436 }
437
438 /* Ch0 V-PPF Words 0-1: Scaling Parameters, Context */
Eric Anholtfc040232015-12-30 12:25:44 -0800439 if (vc4_state->y_scaling[channel] == VC4_SCALING_PPF) {
Eric Anholt21af94c2015-10-20 16:06:57 +0100440 vc4_write_ppf(vc4_state,
Eric Anholtfc040232015-12-30 12:25:44 -0800441 vc4_state->src_h[channel], vc4_state->crtc_h);
Eric Anholt21af94c2015-10-20 16:06:57 +0100442 vc4_dlist_write(vc4_state, 0xc0c0c0c0);
443 }
444
445 /* Ch0 H-TPZ Words 0-1: Scaling Parameters, Recip */
Eric Anholtfc040232015-12-30 12:25:44 -0800446 if (vc4_state->x_scaling[channel] == VC4_SCALING_TPZ) {
Eric Anholt21af94c2015-10-20 16:06:57 +0100447 vc4_write_tpz(vc4_state,
Eric Anholtfc040232015-12-30 12:25:44 -0800448 vc4_state->src_w[channel], vc4_state->crtc_w);
Eric Anholt21af94c2015-10-20 16:06:57 +0100449 }
450
451 /* Ch0 V-TPZ Words 0-2: Scaling Parameters, Recip, Context */
Eric Anholtfc040232015-12-30 12:25:44 -0800452 if (vc4_state->y_scaling[channel] == VC4_SCALING_TPZ) {
Eric Anholt21af94c2015-10-20 16:06:57 +0100453 vc4_write_tpz(vc4_state,
Eric Anholtfc040232015-12-30 12:25:44 -0800454 vc4_state->src_h[channel], vc4_state->crtc_h);
Eric Anholt21af94c2015-10-20 16:06:57 +0100455 vc4_dlist_write(vc4_state, 0xc0c0c0c0);
456 }
457}
Eric Anholt5c679992015-12-28 14:34:44 -0800458
459/* Writes out a full display list for an active plane to the plane's
460 * private dlist state.
461 */
462static int vc4_plane_mode_set(struct drm_plane *plane,
463 struct drm_plane_state *state)
464{
Eric Anholt21af94c2015-10-20 16:06:57 +0100465 struct vc4_dev *vc4 = to_vc4_dev(plane->dev);
Eric Anholt5c679992015-12-28 14:34:44 -0800466 struct vc4_plane_state *vc4_state = to_vc4_plane_state(state);
467 struct drm_framebuffer *fb = state->fb;
Eric Anholt5c679992015-12-28 14:34:44 -0800468 u32 ctl0_offset = vc4_state->dlist_count;
Ville Syrjälä438b74a2016-12-14 23:32:55 +0200469 const struct hvs_format *format = vc4_get_hvs_format(fb->format->format);
Eric Anholtfc040232015-12-30 12:25:44 -0800470 int num_planes = drm_format_num_planes(format->drm);
Stefan Schake22445f02018-04-20 17:09:54 -0700471 bool mix_plane_alpha;
Stefan Schake3d67b682018-03-09 01:53:35 +0100472 bool covers_screen;
Eric Anholt98830d912017-06-07 17:13:35 -0700473 u32 scl0, scl1, pitch0;
474 u32 lbm_size, tiling;
Eric Anholt21af94c2015-10-20 16:06:57 +0100475 unsigned long irqflags;
Eric Anholtfc040232015-12-30 12:25:44 -0800476 int ret, i;
Eric Anholt5c679992015-12-28 14:34:44 -0800477
478 ret = vc4_plane_setup_clipping_and_scaling(state);
479 if (ret)
480 return ret;
481
Eric Anholt21af94c2015-10-20 16:06:57 +0100482 /* Allocate the LBM memory that the HVS will use for temporary
483 * storage due to our scaling/format conversion.
484 */
485 lbm_size = vc4_lbm_size(state);
486 if (lbm_size) {
487 if (!vc4_state->lbm.allocated) {
488 spin_lock_irqsave(&vc4->hvs->mm_lock, irqflags);
Chris Wilson4e64e552017-02-02 21:04:38 +0000489 ret = drm_mm_insert_node_generic(&vc4->hvs->lbm_mm,
490 &vc4_state->lbm,
491 lbm_size, 32, 0, 0);
Eric Anholt21af94c2015-10-20 16:06:57 +0100492 spin_unlock_irqrestore(&vc4->hvs->mm_lock, irqflags);
493 } else {
494 WARN_ON_ONCE(lbm_size != vc4_state->lbm.size);
495 }
496 }
497
498 if (ret)
499 return ret;
500
Eric Anholtfc040232015-12-30 12:25:44 -0800501 /* SCL1 is used for Cb/Cr scaling of planar formats. For RGB
502 * and 4:4:4, scl1 should be set to scl0 so both channels of
503 * the scaler do the same thing. For YUV, the Y plane needs
504 * to be put in channel 1 and Cb/Cr in channel 0, so we swap
505 * the scl fields here.
506 */
507 if (num_planes == 1) {
508 scl0 = vc4_get_scl_field(state, 1);
509 scl1 = scl0;
510 } else {
511 scl0 = vc4_get_scl_field(state, 1);
512 scl1 = vc4_get_scl_field(state, 0);
513 }
Eric Anholt21af94c2015-10-20 16:06:57 +0100514
Eric Anholt98830d912017-06-07 17:13:35 -0700515 switch (fb->modifier) {
516 case DRM_FORMAT_MOD_LINEAR:
517 tiling = SCALER_CTL0_TILING_LINEAR;
518 pitch0 = VC4_SET_FIELD(fb->pitches[0], SCALER_SRC_PITCH);
519 break;
Eric Anholt652badb2017-09-27 12:32:09 -0700520
521 case DRM_FORMAT_MOD_BROADCOM_VC4_T_TILED: {
522 /* For T-tiled, the FB pitch is "how many bytes from
523 * one row to the next, such that pitch * tile_h ==
524 * tile_size * tiles_per_row."
525 */
526 u32 tile_size_shift = 12; /* T tiles are 4kb */
527 u32 tile_h_shift = 5; /* 16 and 32bpp are 32 pixels high */
528 u32 tiles_w = fb->pitches[0] >> (tile_size_shift - tile_h_shift);
529
Eric Anholt98830d912017-06-07 17:13:35 -0700530 tiling = SCALER_CTL0_TILING_256B_OR_T;
531
Eric Anholt652badb2017-09-27 12:32:09 -0700532 pitch0 = (VC4_SET_FIELD(0, SCALER_PITCH0_TILE_Y_OFFSET) |
533 VC4_SET_FIELD(0, SCALER_PITCH0_TILE_WIDTH_L) |
534 VC4_SET_FIELD(tiles_w, SCALER_PITCH0_TILE_WIDTH_R));
Eric Anholt98830d912017-06-07 17:13:35 -0700535 break;
Eric Anholt652badb2017-09-27 12:32:09 -0700536 }
537
Eric Anholt98830d912017-06-07 17:13:35 -0700538 default:
539 DRM_DEBUG_KMS("Unsupported FB tiling flag 0x%16llx",
540 (long long)fb->modifier);
541 return -EINVAL;
542 }
543
Eric Anholt21af94c2015-10-20 16:06:57 +0100544 /* Control word */
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800545 vc4_dlist_write(vc4_state,
546 SCALER_CTL0_VALID |
Maxime Ripard3257ec72018-05-17 15:37:59 +0200547 VC4_SET_FIELD(SCALER_CTL0_RGBA_EXPAND_ROUND, SCALER_CTL0_RGBA_EXPAND) |
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800548 (format->pixel_order << SCALER_CTL0_ORDER_SHIFT) |
549 (format->hvs << SCALER_CTL0_PIXEL_FORMAT_SHIFT) |
Eric Anholt98830d912017-06-07 17:13:35 -0700550 VC4_SET_FIELD(tiling, SCALER_CTL0_TILING) |
Eric Anholt21af94c2015-10-20 16:06:57 +0100551 (vc4_state->is_unity ? SCALER_CTL0_UNITY : 0) |
Eric Anholtfc040232015-12-30 12:25:44 -0800552 VC4_SET_FIELD(scl0, SCALER_CTL0_SCL0) |
553 VC4_SET_FIELD(scl1, SCALER_CTL0_SCL1));
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800554
555 /* Position Word 0: Image Positions and Alpha Value */
Eric Anholt6674a9042015-12-30 11:50:22 -0800556 vc4_state->pos0_offset = vc4_state->dlist_count;
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800557 vc4_dlist_write(vc4_state,
Stefan Schake22445f02018-04-20 17:09:54 -0700558 VC4_SET_FIELD(state->alpha >> 8, SCALER_POS0_FIXED_ALPHA) |
Eric Anholt5c679992015-12-28 14:34:44 -0800559 VC4_SET_FIELD(vc4_state->crtc_x, SCALER_POS0_START_X) |
560 VC4_SET_FIELD(vc4_state->crtc_y, SCALER_POS0_START_Y));
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800561
Eric Anholt21af94c2015-10-20 16:06:57 +0100562 /* Position Word 1: Scaled Image Dimensions. */
563 if (!vc4_state->is_unity) {
564 vc4_dlist_write(vc4_state,
565 VC4_SET_FIELD(vc4_state->crtc_w,
566 SCALER_POS1_SCL_WIDTH) |
567 VC4_SET_FIELD(vc4_state->crtc_h,
568 SCALER_POS1_SCL_HEIGHT));
569 }
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800570
Stefan Schake22445f02018-04-20 17:09:54 -0700571 /* Don't waste cycles mixing with plane alpha if the set alpha
572 * is opaque or there is no per-pixel alpha information.
573 * In any case we use the alpha property value as the fixed alpha.
574 */
575 mix_plane_alpha = state->alpha != DRM_BLEND_ALPHA_OPAQUE &&
576 fb->format->has_alpha;
577
Stefan Schake05202c22018-03-09 01:53:34 +0100578 /* Position Word 2: Source Image Size, Alpha */
Eric Anholt6674a9042015-12-30 11:50:22 -0800579 vc4_state->pos2_offset = vc4_state->dlist_count;
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800580 vc4_dlist_write(vc4_state,
Maxime Ripard124e5da2017-12-22 15:31:27 +0100581 VC4_SET_FIELD(fb->format->has_alpha ?
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800582 SCALER_POS2_ALPHA_MODE_PIPELINE :
583 SCALER_POS2_ALPHA_MODE_FIXED,
584 SCALER_POS2_ALPHA_MODE) |
Stefan Schake22445f02018-04-20 17:09:54 -0700585 (mix_plane_alpha ? SCALER_POS2_ALPHA_MIX : 0) |
Stefan Schake05202c22018-03-09 01:53:34 +0100586 (fb->format->has_alpha ? SCALER_POS2_ALPHA_PREMULT : 0) |
Eric Anholtfc040232015-12-30 12:25:44 -0800587 VC4_SET_FIELD(vc4_state->src_w[0], SCALER_POS2_WIDTH) |
588 VC4_SET_FIELD(vc4_state->src_h[0], SCALER_POS2_HEIGHT));
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800589
590 /* Position Word 3: Context. Written by the HVS. */
591 vc4_dlist_write(vc4_state, 0xc0c0c0c0);
592
Eric Anholtfc040232015-12-30 12:25:44 -0800593
594 /* Pointer Word 0/1/2: RGB / Y / Cb / Cr Pointers
595 *
596 * The pointers may be any byte address.
597 */
Eric Anholt6674a9042015-12-30 11:50:22 -0800598 vc4_state->ptr0_offset = vc4_state->dlist_count;
Dave Stevenson090cb0c2017-11-16 14:22:30 +0000599 for (i = 0; i < num_planes; i++)
600 vc4_dlist_write(vc4_state, vc4_state->offsets[i]);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800601
Eric Anholtfc040232015-12-30 12:25:44 -0800602 /* Pointer Context Word 0/1/2: Written by the HVS */
603 for (i = 0; i < num_planes; i++)
604 vc4_dlist_write(vc4_state, 0xc0c0c0c0);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800605
Eric Anholt98830d912017-06-07 17:13:35 -0700606 /* Pitch word 0 */
607 vc4_dlist_write(vc4_state, pitch0);
608
609 /* Pitch word 1/2 */
610 for (i = 1; i < num_planes; i++) {
Eric Anholtfc040232015-12-30 12:25:44 -0800611 vc4_dlist_write(vc4_state,
612 VC4_SET_FIELD(fb->pitches[i], SCALER_SRC_PITCH));
613 }
614
615 /* Colorspace conversion words */
616 if (vc4_state->is_yuv) {
617 vc4_dlist_write(vc4_state, SCALER_CSC0_ITR_R_601_5);
618 vc4_dlist_write(vc4_state, SCALER_CSC1_ITR_R_601_5);
619 vc4_dlist_write(vc4_state, SCALER_CSC2_ITR_R_601_5);
620 }
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800621
Eric Anholt21af94c2015-10-20 16:06:57 +0100622 if (!vc4_state->is_unity) {
623 /* LBM Base Address. */
Eric Anholtfc040232015-12-30 12:25:44 -0800624 if (vc4_state->y_scaling[0] != VC4_SCALING_NONE ||
625 vc4_state->y_scaling[1] != VC4_SCALING_NONE) {
Eric Anholt21af94c2015-10-20 16:06:57 +0100626 vc4_dlist_write(vc4_state, vc4_state->lbm.start);
Eric Anholtfc040232015-12-30 12:25:44 -0800627 }
Eric Anholt21af94c2015-10-20 16:06:57 +0100628
Eric Anholtfc040232015-12-30 12:25:44 -0800629 if (num_planes > 1) {
630 /* Emit Cb/Cr as channel 0 and Y as channel
631 * 1. This matches how we set up scl0/scl1
632 * above.
633 */
634 vc4_write_scaling_parameters(state, 1);
635 }
636 vc4_write_scaling_parameters(state, 0);
Eric Anholt21af94c2015-10-20 16:06:57 +0100637
638 /* If any PPF setup was done, then all the kernel
639 * pointers get uploaded.
640 */
Eric Anholtfc040232015-12-30 12:25:44 -0800641 if (vc4_state->x_scaling[0] == VC4_SCALING_PPF ||
642 vc4_state->y_scaling[0] == VC4_SCALING_PPF ||
643 vc4_state->x_scaling[1] == VC4_SCALING_PPF ||
644 vc4_state->y_scaling[1] == VC4_SCALING_PPF) {
Eric Anholt21af94c2015-10-20 16:06:57 +0100645 u32 kernel = VC4_SET_FIELD(vc4->hvs->mitchell_netravali_filter.start,
646 SCALER_PPF_KERNEL_OFFSET);
647
648 /* HPPF plane 0 */
649 vc4_dlist_write(vc4_state, kernel);
650 /* VPPF plane 0 */
651 vc4_dlist_write(vc4_state, kernel);
652 /* HPPF plane 1 */
653 vc4_dlist_write(vc4_state, kernel);
654 /* VPPF plane 1 */
655 vc4_dlist_write(vc4_state, kernel);
656 }
657 }
658
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800659 vc4_state->dlist[ctl0_offset] |=
660 VC4_SET_FIELD(vc4_state->dlist_count, SCALER_CTL0_SIZE);
661
Stefan Schake3d67b682018-03-09 01:53:35 +0100662 /* crtc_* are already clipped coordinates. */
663 covers_screen = vc4_state->crtc_x == 0 && vc4_state->crtc_y == 0 &&
664 vc4_state->crtc_w == state->crtc->mode.hdisplay &&
665 vc4_state->crtc_h == state->crtc->mode.vdisplay;
666 /* Background fill might be necessary when the plane has per-pixel
Stefan Schake22445f02018-04-20 17:09:54 -0700667 * alpha content or a non-opaque plane alpha and could blend from the
668 * background or does not cover the entire screen.
Stefan Schake3d67b682018-03-09 01:53:35 +0100669 */
Stefan Schake22445f02018-04-20 17:09:54 -0700670 vc4_state->needs_bg_fill = fb->format->has_alpha || !covers_screen ||
671 state->alpha != DRM_BLEND_ALPHA_OPAQUE;
Stefan Schake3d67b682018-03-09 01:53:35 +0100672
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800673 return 0;
674}
675
676/* If a modeset involves changing the setup of a plane, the atomic
677 * infrastructure will call this to validate a proposed plane setup.
678 * However, if a plane isn't getting updated, this (and the
679 * corresponding vc4_plane_atomic_update) won't get called. Thus, we
680 * compute the dlist here and have all active plane dlists get updated
681 * in the CRTC's flush.
682 */
683static int vc4_plane_atomic_check(struct drm_plane *plane,
684 struct drm_plane_state *state)
685{
686 struct vc4_plane_state *vc4_state = to_vc4_plane_state(state);
687
688 vc4_state->dlist_count = 0;
689
690 if (plane_enabled(state))
691 return vc4_plane_mode_set(plane, state);
692 else
693 return 0;
694}
695
696static void vc4_plane_atomic_update(struct drm_plane *plane,
697 struct drm_plane_state *old_state)
698{
699 /* No contents here. Since we don't know where in the CRTC's
700 * dlist we should be stored, our dlist is uploaded to the
701 * hardware with vc4_plane_write_dlist() at CRTC atomic_flush
702 * time.
703 */
704}
705
706u32 vc4_plane_write_dlist(struct drm_plane *plane, u32 __iomem *dlist)
707{
708 struct vc4_plane_state *vc4_state = to_vc4_plane_state(plane->state);
709 int i;
710
Eric Anholtb501bac2015-11-30 12:34:01 -0800711 vc4_state->hw_dlist = dlist;
712
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800713 /* Can't memcpy_toio() because it needs to be 32-bit writes. */
714 for (i = 0; i < vc4_state->dlist_count; i++)
715 writel(vc4_state->dlist[i], &dlist[i]);
716
717 return vc4_state->dlist_count;
718}
719
Daniel Vetter2f196b72016-06-02 16:21:44 +0200720u32 vc4_plane_dlist_size(const struct drm_plane_state *state)
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800721{
Daniel Vetter2f196b72016-06-02 16:21:44 +0200722 const struct vc4_plane_state *vc4_state =
723 container_of(state, typeof(*vc4_state), base);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800724
725 return vc4_state->dlist_count;
726}
727
Eric Anholtb501bac2015-11-30 12:34:01 -0800728/* Updates the plane to immediately (well, once the FIFO needs
729 * refilling) scan out from at a new framebuffer.
730 */
731void vc4_plane_async_set_fb(struct drm_plane *plane, struct drm_framebuffer *fb)
732{
733 struct vc4_plane_state *vc4_state = to_vc4_plane_state(plane->state);
734 struct drm_gem_cma_object *bo = drm_fb_cma_get_gem_obj(fb, 0);
735 uint32_t addr;
736
737 /* We're skipping the address adjustment for negative origin,
738 * because this is only called on the primary plane.
739 */
740 WARN_ON_ONCE(plane->state->crtc_x < 0 || plane->state->crtc_y < 0);
741 addr = bo->paddr + fb->offsets[0];
742
743 /* Write the new address into the hardware immediately. The
744 * scanout will start from this address as soon as the FIFO
745 * needs to refill with pixels.
746 */
Eric Anholt6674a9042015-12-30 11:50:22 -0800747 writel(addr, &vc4_state->hw_dlist[vc4_state->ptr0_offset]);
Eric Anholtb501bac2015-11-30 12:34:01 -0800748
749 /* Also update the CPU-side dlist copy, so that any later
750 * atomic updates that don't do a new modeset on our plane
751 * also use our updated address.
752 */
Eric Anholt6674a9042015-12-30 11:50:22 -0800753 vc4_state->dlist[vc4_state->ptr0_offset] = addr;
Eric Anholtb501bac2015-11-30 12:34:01 -0800754}
755
Gustavo Padovan539c3202018-03-30 10:54:45 +0200756static void vc4_plane_atomic_async_update(struct drm_plane *plane,
757 struct drm_plane_state *state)
758{
759 struct vc4_plane_state *vc4_state = to_vc4_plane_state(plane->state);
760
761 if (plane->state->fb != state->fb) {
762 vc4_plane_async_set_fb(plane, state->fb);
763 drm_atomic_set_fb_for_plane(plane->state, state->fb);
764 }
765
766 /* Set the cursor's position on the screen. This is the
767 * expected change from the drm_mode_cursor_universal()
768 * helper.
769 */
770 plane->state->crtc_x = state->crtc_x;
771 plane->state->crtc_y = state->crtc_y;
772
773 /* Allow changing the start position within the cursor BO, if
774 * that matters.
775 */
776 plane->state->src_x = state->src_x;
777 plane->state->src_y = state->src_y;
778
779 /* Update the display list based on the new crtc_x/y. */
780 vc4_plane_atomic_check(plane, plane->state);
781
782 /* Note that we can't just call vc4_plane_write_dlist()
783 * because that would smash the context data that the HVS is
784 * currently using.
785 */
786 writel(vc4_state->dlist[vc4_state->pos0_offset],
787 &vc4_state->hw_dlist[vc4_state->pos0_offset]);
788 writel(vc4_state->dlist[vc4_state->pos2_offset],
789 &vc4_state->hw_dlist[vc4_state->pos2_offset]);
790 writel(vc4_state->dlist[vc4_state->ptr0_offset],
791 &vc4_state->hw_dlist[vc4_state->ptr0_offset]);
792}
793
794static int vc4_plane_atomic_async_check(struct drm_plane *plane,
795 struct drm_plane_state *state)
796{
797 /* No configuring new scaling in the fast path. */
798 if (plane->state->crtc_w != state->crtc_w ||
799 plane->state->crtc_h != state->crtc_h ||
800 plane->state->src_w != state->src_w ||
801 plane->state->src_h != state->src_h)
802 return -EINVAL;
803
804 return 0;
805}
806
Eric Anholt334dbd62017-06-21 11:49:59 -0700807static int vc4_prepare_fb(struct drm_plane *plane,
808 struct drm_plane_state *state)
809{
810 struct vc4_bo *bo;
811 struct dma_fence *fence;
Boris Brezillonb9f19252017-10-19 14:57:48 +0200812 int ret;
Eric Anholt334dbd62017-06-21 11:49:59 -0700813
814 if ((plane->state->fb == state->fb) || !state->fb)
815 return 0;
816
817 bo = to_vc4_bo(&drm_fb_cma_get_gem_obj(state->fb, 0)->base);
Boris Brezillonb9f19252017-10-19 14:57:48 +0200818
819 ret = vc4_bo_inc_usecnt(bo);
820 if (ret)
821 return ret;
822
Eric Anholt334dbd62017-06-21 11:49:59 -0700823 fence = reservation_object_get_excl_rcu(bo->resv);
824 drm_atomic_set_fence_for_plane(state, fence);
825
826 return 0;
827}
828
Boris Brezillonb9f19252017-10-19 14:57:48 +0200829static void vc4_cleanup_fb(struct drm_plane *plane,
830 struct drm_plane_state *state)
831{
832 struct vc4_bo *bo;
833
834 if (plane->state->fb == state->fb || !state->fb)
835 return;
836
837 bo = to_vc4_bo(&drm_fb_cma_get_gem_obj(state->fb, 0)->base);
838 vc4_bo_dec_usecnt(bo);
839}
840
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800841static const struct drm_plane_helper_funcs vc4_plane_helper_funcs = {
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800842 .atomic_check = vc4_plane_atomic_check,
843 .atomic_update = vc4_plane_atomic_update,
Eric Anholt334dbd62017-06-21 11:49:59 -0700844 .prepare_fb = vc4_prepare_fb,
Boris Brezillonb9f19252017-10-19 14:57:48 +0200845 .cleanup_fb = vc4_cleanup_fb,
Gustavo Padovan539c3202018-03-30 10:54:45 +0200846 .atomic_async_check = vc4_plane_atomic_async_check,
847 .atomic_async_update = vc4_plane_atomic_async_update,
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800848};
849
850static void vc4_plane_destroy(struct drm_plane *plane)
851{
852 drm_plane_helper_disable(plane);
853 drm_plane_cleanup(plane);
854}
855
Daniel Stone423ad7b2017-08-08 17:44:48 +0100856static bool vc4_format_mod_supported(struct drm_plane *plane,
857 uint32_t format,
858 uint64_t modifier)
859{
860 /* Support T_TILING for RGB formats only. */
861 switch (format) {
862 case DRM_FORMAT_XRGB8888:
863 case DRM_FORMAT_ARGB8888:
864 case DRM_FORMAT_ABGR8888:
865 case DRM_FORMAT_XBGR8888:
866 case DRM_FORMAT_RGB565:
867 case DRM_FORMAT_BGR565:
868 case DRM_FORMAT_ARGB1555:
869 case DRM_FORMAT_XRGB1555:
870 return true;
871 case DRM_FORMAT_YUV422:
872 case DRM_FORMAT_YVU422:
873 case DRM_FORMAT_YUV420:
874 case DRM_FORMAT_YVU420:
875 case DRM_FORMAT_NV12:
Eric Anholt1e871d62018-03-16 15:04:34 -0700876 case DRM_FORMAT_NV21:
Daniel Stone423ad7b2017-08-08 17:44:48 +0100877 case DRM_FORMAT_NV16:
Eric Anholt1e871d62018-03-16 15:04:34 -0700878 case DRM_FORMAT_NV61:
Daniel Stone423ad7b2017-08-08 17:44:48 +0100879 default:
880 return (modifier == DRM_FORMAT_MOD_LINEAR);
881 }
882}
883
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800884static const struct drm_plane_funcs vc4_plane_funcs = {
Gustavo Padovan539c3202018-03-30 10:54:45 +0200885 .update_plane = drm_atomic_helper_update_plane,
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800886 .disable_plane = drm_atomic_helper_disable_plane,
887 .destroy = vc4_plane_destroy,
888 .set_property = NULL,
889 .reset = vc4_plane_reset,
890 .atomic_duplicate_state = vc4_plane_duplicate_state,
891 .atomic_destroy_state = vc4_plane_destroy_state,
Daniel Stone423ad7b2017-08-08 17:44:48 +0100892 .format_mod_supported = vc4_format_mod_supported,
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800893};
894
895struct drm_plane *vc4_plane_init(struct drm_device *dev,
896 enum drm_plane_type type)
897{
898 struct drm_plane *plane = NULL;
899 struct vc4_plane *vc4_plane;
900 u32 formats[ARRAY_SIZE(hvs_formats)];
Eric Anholtfc040232015-12-30 12:25:44 -0800901 u32 num_formats = 0;
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800902 int ret = 0;
903 unsigned i;
Daniel Stone423ad7b2017-08-08 17:44:48 +0100904 static const uint64_t modifiers[] = {
905 DRM_FORMAT_MOD_BROADCOM_VC4_T_TILED,
906 DRM_FORMAT_MOD_LINEAR,
907 DRM_FORMAT_MOD_INVALID
908 };
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800909
910 vc4_plane = devm_kzalloc(dev->dev, sizeof(*vc4_plane),
911 GFP_KERNEL);
Colin Ian King7b347342017-03-16 18:54:18 +0000912 if (!vc4_plane)
913 return ERR_PTR(-ENOMEM);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800914
Eric Anholtfc040232015-12-30 12:25:44 -0800915 for (i = 0; i < ARRAY_SIZE(hvs_formats); i++) {
916 /* Don't allow YUV in cursor planes, since that means
917 * tuning on the scaler, which we don't allow for the
918 * cursor.
919 */
920 if (type != DRM_PLANE_TYPE_CURSOR ||
921 hvs_formats[i].hvs < HVS_PIXEL_FORMAT_YCBCR_YUV420_3PLANE) {
922 formats[num_formats++] = hvs_formats[i].drm;
923 }
924 }
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800925 plane = &vc4_plane->base;
Andrzej Pietrasiewicz49d29a02017-02-01 10:35:08 +0100926 ret = drm_universal_plane_init(dev, plane, 0,
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800927 &vc4_plane_funcs,
Eric Anholtfc040232015-12-30 12:25:44 -0800928 formats, num_formats,
Daniel Stone423ad7b2017-08-08 17:44:48 +0100929 modifiers, type, NULL);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800930
931 drm_plane_helper_add(plane, &vc4_plane_helper_funcs);
932
Stefan Schake22445f02018-04-20 17:09:54 -0700933 drm_plane_create_alpha_property(plane);
934
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800935 return plane;
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800936}