blob: f39ee212412daaf5d328c4888b1e3a7452142003 [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>
Daniel Vetter72fdb402018-09-05 15:57:11 +020025#include <drm/drm_atomic_uapi.h>
Masahiro Yamadab7e8e252017-05-18 13:29:38 +090026
Boris Brezillonb9f19252017-10-19 14:57:48 +020027#include "uapi/drm/vc4_drm.h"
Eric Anholtc8b75bc2015-03-02 13:01:12 -080028#include "vc4_drv.h"
29#include "vc4_regs.h"
Eric Anholtc8b75bc2015-03-02 13:01:12 -080030
Eric Anholtc8b75bc2015-03-02 13:01:12 -080031static const struct hvs_format {
32 u32 drm; /* DRM_FORMAT_* */
33 u32 hvs; /* HVS_FORMAT_* */
34 u32 pixel_order;
Eric Anholtc8b75bc2015-03-02 13:01:12 -080035} hvs_formats[] = {
36 {
37 .drm = DRM_FORMAT_XRGB8888, .hvs = HVS_PIXEL_FORMAT_RGBA8888,
Maxime Ripard124e5da2017-12-22 15:31:27 +010038 .pixel_order = HVS_PIXEL_ORDER_ABGR,
Eric Anholtc8b75bc2015-03-02 13:01:12 -080039 },
40 {
41 .drm = DRM_FORMAT_ARGB8888, .hvs = HVS_PIXEL_FORMAT_RGBA8888,
Maxime Ripard124e5da2017-12-22 15:31:27 +010042 .pixel_order = HVS_PIXEL_ORDER_ABGR,
Eric Anholtc8b75bc2015-03-02 13:01:12 -080043 },
Eric Anholtfe4cd842015-10-20 13:59:15 +010044 {
Rob Herring93977762016-06-09 16:19:25 -050045 .drm = DRM_FORMAT_ABGR8888, .hvs = HVS_PIXEL_FORMAT_RGBA8888,
Maxime Ripard124e5da2017-12-22 15:31:27 +010046 .pixel_order = HVS_PIXEL_ORDER_ARGB,
Rob Herring93977762016-06-09 16:19:25 -050047 },
48 {
49 .drm = DRM_FORMAT_XBGR8888, .hvs = HVS_PIXEL_FORMAT_RGBA8888,
Maxime Ripard124e5da2017-12-22 15:31:27 +010050 .pixel_order = HVS_PIXEL_ORDER_ARGB,
Rob Herring93977762016-06-09 16:19:25 -050051 },
52 {
Eric Anholtfe4cd842015-10-20 13:59:15 +010053 .drm = DRM_FORMAT_RGB565, .hvs = HVS_PIXEL_FORMAT_RGB565,
Maxime Ripard124e5da2017-12-22 15:31:27 +010054 .pixel_order = HVS_PIXEL_ORDER_XRGB,
Eric Anholtfe4cd842015-10-20 13:59:15 +010055 },
56 {
57 .drm = DRM_FORMAT_BGR565, .hvs = HVS_PIXEL_FORMAT_RGB565,
Maxime Ripard124e5da2017-12-22 15:31:27 +010058 .pixel_order = HVS_PIXEL_ORDER_XBGR,
Eric Anholtfe4cd842015-10-20 13:59:15 +010059 },
60 {
61 .drm = DRM_FORMAT_ARGB1555, .hvs = HVS_PIXEL_FORMAT_RGBA5551,
Maxime Ripard124e5da2017-12-22 15:31:27 +010062 .pixel_order = HVS_PIXEL_ORDER_ABGR,
Eric Anholtfe4cd842015-10-20 13:59:15 +010063 },
64 {
65 .drm = DRM_FORMAT_XRGB1555, .hvs = HVS_PIXEL_FORMAT_RGBA5551,
Maxime Ripard124e5da2017-12-22 15:31:27 +010066 .pixel_order = HVS_PIXEL_ORDER_ABGR,
Eric Anholtfe4cd842015-10-20 13:59:15 +010067 },
Eric Anholtfc040232015-12-30 12:25:44 -080068 {
Dave Stevenson88f81562017-11-16 14:22:29 +000069 .drm = DRM_FORMAT_RGB888, .hvs = HVS_PIXEL_FORMAT_RGB888,
Maxime Ripard124e5da2017-12-22 15:31:27 +010070 .pixel_order = HVS_PIXEL_ORDER_XRGB,
Dave Stevenson88f81562017-11-16 14:22:29 +000071 },
72 {
73 .drm = DRM_FORMAT_BGR888, .hvs = HVS_PIXEL_FORMAT_RGB888,
Maxime Ripard124e5da2017-12-22 15:31:27 +010074 .pixel_order = HVS_PIXEL_ORDER_XBGR,
Dave Stevenson88f81562017-11-16 14:22:29 +000075 },
76 {
Eric Anholtfc040232015-12-30 12:25:44 -080077 .drm = DRM_FORMAT_YUV422,
78 .hvs = HVS_PIXEL_FORMAT_YCBCR_YUV422_3PLANE,
Dave Stevenson090cb0c2017-11-16 14:22:30 +000079 .pixel_order = HVS_PIXEL_ORDER_XYCBCR,
Eric Anholtfc040232015-12-30 12:25:44 -080080 },
81 {
82 .drm = DRM_FORMAT_YVU422,
83 .hvs = HVS_PIXEL_FORMAT_YCBCR_YUV422_3PLANE,
Dave Stevenson090cb0c2017-11-16 14:22:30 +000084 .pixel_order = HVS_PIXEL_ORDER_XYCRCB,
Eric Anholtfc040232015-12-30 12:25:44 -080085 },
86 {
87 .drm = DRM_FORMAT_YUV420,
88 .hvs = HVS_PIXEL_FORMAT_YCBCR_YUV420_3PLANE,
Dave Stevenson090cb0c2017-11-16 14:22:30 +000089 .pixel_order = HVS_PIXEL_ORDER_XYCBCR,
Eric Anholtfc040232015-12-30 12:25:44 -080090 },
91 {
92 .drm = DRM_FORMAT_YVU420,
93 .hvs = HVS_PIXEL_FORMAT_YCBCR_YUV420_3PLANE,
Dave Stevenson090cb0c2017-11-16 14:22:30 +000094 .pixel_order = HVS_PIXEL_ORDER_XYCRCB,
Eric Anholtfc040232015-12-30 12:25:44 -080095 },
96 {
97 .drm = DRM_FORMAT_NV12,
98 .hvs = HVS_PIXEL_FORMAT_YCBCR_YUV420_2PLANE,
Dave Stevenson090cb0c2017-11-16 14:22:30 +000099 .pixel_order = HVS_PIXEL_ORDER_XYCBCR,
Eric Anholtfc040232015-12-30 12:25:44 -0800100 },
101 {
Dave Stevensoncb20dd12017-11-16 14:22:31 +0000102 .drm = DRM_FORMAT_NV21,
103 .hvs = HVS_PIXEL_FORMAT_YCBCR_YUV420_2PLANE,
104 .pixel_order = HVS_PIXEL_ORDER_XYCRCB,
105 },
106 {
Eric Anholtfc040232015-12-30 12:25:44 -0800107 .drm = DRM_FORMAT_NV16,
108 .hvs = HVS_PIXEL_FORMAT_YCBCR_YUV422_2PLANE,
Dave Stevenson090cb0c2017-11-16 14:22:30 +0000109 .pixel_order = HVS_PIXEL_ORDER_XYCBCR,
Eric Anholtfc040232015-12-30 12:25:44 -0800110 },
Dave Stevensoncb20dd12017-11-16 14:22:31 +0000111 {
112 .drm = DRM_FORMAT_NV61,
113 .hvs = HVS_PIXEL_FORMAT_YCBCR_YUV422_2PLANE,
114 .pixel_order = HVS_PIXEL_ORDER_XYCRCB,
115 },
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800116};
117
118static const struct hvs_format *vc4_get_hvs_format(u32 drm_format)
119{
120 unsigned i;
121
122 for (i = 0; i < ARRAY_SIZE(hvs_formats); i++) {
123 if (hvs_formats[i].drm == drm_format)
124 return &hvs_formats[i];
125 }
126
127 return NULL;
128}
129
Eric Anholt21af94c2015-10-20 16:06:57 +0100130static enum vc4_scaling_mode vc4_get_scaling_mode(u32 src, u32 dst)
131{
132 if (dst > src)
133 return VC4_SCALING_PPF;
134 else if (dst < src)
135 return VC4_SCALING_TPZ;
136 else
137 return VC4_SCALING_NONE;
138}
139
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800140static bool plane_enabled(struct drm_plane_state *state)
141{
142 return state->fb && state->crtc;
143}
144
kbuild test robot91276ae2015-10-22 11:12:26 +0800145static struct drm_plane_state *vc4_plane_duplicate_state(struct drm_plane *plane)
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800146{
147 struct vc4_plane_state *vc4_state;
148
149 if (WARN_ON(!plane->state))
150 return NULL;
151
152 vc4_state = kmemdup(plane->state, sizeof(*vc4_state), GFP_KERNEL);
153 if (!vc4_state)
154 return NULL;
155
Eric Anholt21af94c2015-10-20 16:06:57 +0100156 memset(&vc4_state->lbm, 0, sizeof(vc4_state->lbm));
157
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800158 __drm_atomic_helper_plane_duplicate_state(plane, &vc4_state->base);
159
160 if (vc4_state->dlist) {
161 vc4_state->dlist = kmemdup(vc4_state->dlist,
162 vc4_state->dlist_count * 4,
163 GFP_KERNEL);
164 if (!vc4_state->dlist) {
165 kfree(vc4_state);
166 return NULL;
167 }
168 vc4_state->dlist_size = vc4_state->dlist_count;
169 }
170
171 return &vc4_state->base;
172}
173
kbuild test robot91276ae2015-10-22 11:12:26 +0800174static void vc4_plane_destroy_state(struct drm_plane *plane,
175 struct drm_plane_state *state)
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800176{
Eric Anholt21af94c2015-10-20 16:06:57 +0100177 struct vc4_dev *vc4 = to_vc4_dev(plane->dev);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800178 struct vc4_plane_state *vc4_state = to_vc4_plane_state(state);
179
Eric Anholt21af94c2015-10-20 16:06:57 +0100180 if (vc4_state->lbm.allocated) {
181 unsigned long irqflags;
182
183 spin_lock_irqsave(&vc4->hvs->mm_lock, irqflags);
184 drm_mm_remove_node(&vc4_state->lbm);
185 spin_unlock_irqrestore(&vc4->hvs->mm_lock, irqflags);
186 }
187
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800188 kfree(vc4_state->dlist);
Daniel Vetter2f701692016-05-09 16:34:10 +0200189 __drm_atomic_helper_plane_destroy_state(&vc4_state->base);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800190 kfree(state);
191}
192
193/* Called during init to allocate the plane's atomic state. */
kbuild test robot91276ae2015-10-22 11:12:26 +0800194static void vc4_plane_reset(struct drm_plane *plane)
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800195{
196 struct vc4_plane_state *vc4_state;
197
198 WARN_ON(plane->state);
199
200 vc4_state = kzalloc(sizeof(*vc4_state), GFP_KERNEL);
201 if (!vc4_state)
202 return;
203
Alexandru Gheorghe42da6332018-08-04 17:15:29 +0100204 __drm_atomic_helper_plane_reset(plane, &vc4_state->base);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800205}
206
207static void vc4_dlist_write(struct vc4_plane_state *vc4_state, u32 val)
208{
209 if (vc4_state->dlist_count == vc4_state->dlist_size) {
210 u32 new_size = max(4u, vc4_state->dlist_count * 2);
Kees Cook6da2ec52018-06-12 13:55:00 -0700211 u32 *new_dlist = kmalloc_array(new_size, 4, GFP_KERNEL);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800212
213 if (!new_dlist)
214 return;
215 memcpy(new_dlist, vc4_state->dlist, vc4_state->dlist_count * 4);
216
217 kfree(vc4_state->dlist);
218 vc4_state->dlist = new_dlist;
219 vc4_state->dlist_size = new_size;
220 }
221
222 vc4_state->dlist[vc4_state->dlist_count++] = val;
223}
224
Eric Anholt21af94c2015-10-20 16:06:57 +0100225/* Returns the scl0/scl1 field based on whether the dimensions need to
226 * be up/down/non-scaled.
227 *
228 * This is a replication of a table from the spec.
229 */
Eric Anholtfc040232015-12-30 12:25:44 -0800230static u32 vc4_get_scl_field(struct drm_plane_state *state, int plane)
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800231{
232 struct vc4_plane_state *vc4_state = to_vc4_plane_state(state);
Eric Anholt21af94c2015-10-20 16:06:57 +0100233
Eric Anholtfc040232015-12-30 12:25:44 -0800234 switch (vc4_state->x_scaling[plane] << 2 | vc4_state->y_scaling[plane]) {
Eric Anholt21af94c2015-10-20 16:06:57 +0100235 case VC4_SCALING_PPF << 2 | VC4_SCALING_PPF:
236 return SCALER_CTL0_SCL_H_PPF_V_PPF;
237 case VC4_SCALING_TPZ << 2 | VC4_SCALING_PPF:
238 return SCALER_CTL0_SCL_H_TPZ_V_PPF;
239 case VC4_SCALING_PPF << 2 | VC4_SCALING_TPZ:
240 return SCALER_CTL0_SCL_H_PPF_V_TPZ;
241 case VC4_SCALING_TPZ << 2 | VC4_SCALING_TPZ:
242 return SCALER_CTL0_SCL_H_TPZ_V_TPZ;
243 case VC4_SCALING_PPF << 2 | VC4_SCALING_NONE:
244 return SCALER_CTL0_SCL_H_PPF_V_NONE;
245 case VC4_SCALING_NONE << 2 | VC4_SCALING_PPF:
246 return SCALER_CTL0_SCL_H_NONE_V_PPF;
247 case VC4_SCALING_NONE << 2 | VC4_SCALING_TPZ:
248 return SCALER_CTL0_SCL_H_NONE_V_TPZ;
249 case VC4_SCALING_TPZ << 2 | VC4_SCALING_NONE:
250 return SCALER_CTL0_SCL_H_TPZ_V_NONE;
251 default:
252 case VC4_SCALING_NONE << 2 | VC4_SCALING_NONE:
253 /* The unity case is independently handled by
254 * SCALER_CTL0_UNITY.
255 */
256 return 0;
257 }
258}
259
260static int vc4_plane_setup_clipping_and_scaling(struct drm_plane_state *state)
261{
262 struct drm_plane *plane = state->plane;
263 struct vc4_plane_state *vc4_state = to_vc4_plane_state(state);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800264 struct drm_framebuffer *fb = state->fb;
Eric Anholtfc040232015-12-30 12:25:44 -0800265 struct drm_gem_cma_object *bo = drm_fb_cma_get_gem_obj(fb, 0);
Eric Anholt21af94c2015-10-20 16:06:57 +0100266 u32 subpixel_src_mask = (1 << 16) - 1;
Ville Syrjälä438b74a2016-12-14 23:32:55 +0200267 u32 format = fb->format->format;
Ville Syrjäläbcb0b462016-12-14 23:30:22 +0200268 int num_planes = fb->format->num_planes;
Eric Anholtfc040232015-12-30 12:25:44 -0800269 u32 h_subsample = 1;
270 u32 v_subsample = 1;
271 int i;
Eric Anholt5c679992015-12-28 14:34:44 -0800272
Eric Anholtfc040232015-12-30 12:25:44 -0800273 for (i = 0; i < num_planes; i++)
274 vc4_state->offsets[i] = bo->paddr + fb->offsets[i];
Eric Anholt5c679992015-12-28 14:34:44 -0800275
Eric Anholt21af94c2015-10-20 16:06:57 +0100276 /* We don't support subpixel source positioning for scaling. */
277 if ((state->src_x & subpixel_src_mask) ||
278 (state->src_y & subpixel_src_mask) ||
279 (state->src_w & subpixel_src_mask) ||
280 (state->src_h & subpixel_src_mask)) {
Eric Anholtbf893ac2015-10-23 10:36:27 +0100281 return -EINVAL;
282 }
283
Eric Anholt21af94c2015-10-20 16:06:57 +0100284 vc4_state->src_x = state->src_x >> 16;
285 vc4_state->src_y = state->src_y >> 16;
Eric Anholtfc040232015-12-30 12:25:44 -0800286 vc4_state->src_w[0] = state->src_w >> 16;
287 vc4_state->src_h[0] = state->src_h >> 16;
Eric Anholtf863e352015-12-28 14:45:25 -0800288
289 vc4_state->crtc_x = state->crtc_x;
290 vc4_state->crtc_y = state->crtc_y;
291 vc4_state->crtc_w = state->crtc_w;
292 vc4_state->crtc_h = state->crtc_h;
293
Eric Anholtfc040232015-12-30 12:25:44 -0800294 vc4_state->x_scaling[0] = vc4_get_scaling_mode(vc4_state->src_w[0],
295 vc4_state->crtc_w);
296 vc4_state->y_scaling[0] = vc4_get_scaling_mode(vc4_state->src_h[0],
297 vc4_state->crtc_h);
298
299 if (num_planes > 1) {
300 vc4_state->is_yuv = true;
301
302 h_subsample = drm_format_horz_chroma_subsampling(format);
303 v_subsample = drm_format_vert_chroma_subsampling(format);
304 vc4_state->src_w[1] = vc4_state->src_w[0] / h_subsample;
305 vc4_state->src_h[1] = vc4_state->src_h[0] / v_subsample;
306
307 vc4_state->x_scaling[1] =
308 vc4_get_scaling_mode(vc4_state->src_w[1],
309 vc4_state->crtc_w);
310 vc4_state->y_scaling[1] =
311 vc4_get_scaling_mode(vc4_state->src_h[1],
312 vc4_state->crtc_h);
313
314 /* YUV conversion requires that scaling be enabled,
315 * even on a plane that's otherwise 1:1. Choose TPZ
316 * for simplicity.
317 */
318 if (vc4_state->x_scaling[0] == VC4_SCALING_NONE)
319 vc4_state->x_scaling[0] = VC4_SCALING_TPZ;
320 if (vc4_state->y_scaling[0] == VC4_SCALING_NONE)
321 vc4_state->y_scaling[0] = VC4_SCALING_TPZ;
Boris Brezillona6a00912018-07-24 15:36:01 +0200322 } else {
323 vc4_state->x_scaling[1] = VC4_SCALING_NONE;
324 vc4_state->y_scaling[1] = VC4_SCALING_NONE;
Eric Anholtfc040232015-12-30 12:25:44 -0800325 }
326
327 vc4_state->is_unity = (vc4_state->x_scaling[0] == VC4_SCALING_NONE &&
328 vc4_state->y_scaling[0] == VC4_SCALING_NONE &&
329 vc4_state->x_scaling[1] == VC4_SCALING_NONE &&
330 vc4_state->y_scaling[1] == VC4_SCALING_NONE);
Eric Anholt21af94c2015-10-20 16:06:57 +0100331
332 /* No configuring scaling on the cursor plane, since it gets
333 non-vblank-synced updates, and scaling requires requires
334 LBM changes which have to be vblank-synced.
335 */
336 if (plane->type == DRM_PLANE_TYPE_CURSOR && !vc4_state->is_unity)
337 return -EINVAL;
338
339 /* Clamp the on-screen start x/y to 0. The hardware doesn't
340 * support negative y, and negative x wastes bandwidth.
341 */
Eric Anholt5c679992015-12-28 14:34:44 -0800342 if (vc4_state->crtc_x < 0) {
Eric Anholtfc040232015-12-30 12:25:44 -0800343 for (i = 0; i < num_planes; i++) {
Ville Syrjälä353c8592016-12-14 23:30:57 +0200344 u32 cpp = fb->format->cpp[i];
Eric Anholtfc040232015-12-30 12:25:44 -0800345 u32 subs = ((i == 0) ? 1 : h_subsample);
346
347 vc4_state->offsets[i] += (cpp *
348 (-vc4_state->crtc_x) / subs);
349 }
350 vc4_state->src_w[0] += vc4_state->crtc_x;
351 vc4_state->src_w[1] += vc4_state->crtc_x / h_subsample;
Eric Anholt5c679992015-12-28 14:34:44 -0800352 vc4_state->crtc_x = 0;
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800353 }
354
Eric Anholt5c679992015-12-28 14:34:44 -0800355 if (vc4_state->crtc_y < 0) {
Eric Anholtfc040232015-12-30 12:25:44 -0800356 for (i = 0; i < num_planes; i++) {
357 u32 subs = ((i == 0) ? 1 : v_subsample);
358
359 vc4_state->offsets[i] += (fb->pitches[i] *
360 (-vc4_state->crtc_y) / subs);
361 }
362 vc4_state->src_h[0] += vc4_state->crtc_y;
363 vc4_state->src_h[1] += vc4_state->crtc_y / v_subsample;
Eric Anholt5c679992015-12-28 14:34:44 -0800364 vc4_state->crtc_y = 0;
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800365 }
366
Eric Anholt5c679992015-12-28 14:34:44 -0800367 return 0;
368}
369
Eric Anholt21af94c2015-10-20 16:06:57 +0100370static void vc4_write_tpz(struct vc4_plane_state *vc4_state, u32 src, u32 dst)
371{
372 u32 scale, recip;
373
374 scale = (1 << 16) * src / dst;
375
376 /* The specs note that while the reciprocal would be defined
377 * as (1<<32)/scale, ~0 is close enough.
378 */
379 recip = ~0 / scale;
380
381 vc4_dlist_write(vc4_state,
382 VC4_SET_FIELD(scale, SCALER_TPZ0_SCALE) |
383 VC4_SET_FIELD(0, SCALER_TPZ0_IPHASE));
384 vc4_dlist_write(vc4_state,
385 VC4_SET_FIELD(recip, SCALER_TPZ1_RECIP));
386}
387
388static void vc4_write_ppf(struct vc4_plane_state *vc4_state, u32 src, u32 dst)
389{
390 u32 scale = (1 << 16) * src / dst;
391
392 vc4_dlist_write(vc4_state,
393 SCALER_PPF_AGC |
394 VC4_SET_FIELD(scale, SCALER_PPF_SCALE) |
395 VC4_SET_FIELD(0, SCALER_PPF_IPHASE));
396}
397
398static u32 vc4_lbm_size(struct drm_plane_state *state)
399{
400 struct vc4_plane_state *vc4_state = to_vc4_plane_state(state);
401 /* This is the worst case number. One of the two sizes will
402 * be used depending on the scaling configuration.
403 */
Eric Anholtfc040232015-12-30 12:25:44 -0800404 u32 pix_per_line = max(vc4_state->src_w[0], (u32)vc4_state->crtc_w);
Eric Anholt21af94c2015-10-20 16:06:57 +0100405 u32 lbm;
406
Eric Anholtfc040232015-12-30 12:25:44 -0800407 if (!vc4_state->is_yuv) {
408 if (vc4_state->is_unity)
409 return 0;
410 else if (vc4_state->y_scaling[0] == VC4_SCALING_TPZ)
411 lbm = pix_per_line * 8;
412 else {
413 /* In special cases, this multiplier might be 12. */
414 lbm = pix_per_line * 16;
415 }
416 } else {
417 /* There are cases for this going down to a multiplier
418 * of 2, but according to the firmware source, the
419 * table in the docs is somewhat wrong.
420 */
Eric Anholt21af94c2015-10-20 16:06:57 +0100421 lbm = pix_per_line * 16;
422 }
423
424 lbm = roundup(lbm, 32);
425
426 return lbm;
427}
428
Eric Anholtfc040232015-12-30 12:25:44 -0800429static void vc4_write_scaling_parameters(struct drm_plane_state *state,
430 int channel)
Eric Anholt21af94c2015-10-20 16:06:57 +0100431{
432 struct vc4_plane_state *vc4_state = to_vc4_plane_state(state);
433
434 /* Ch0 H-PPF Word 0: Scaling Parameters */
Eric Anholtfc040232015-12-30 12:25:44 -0800435 if (vc4_state->x_scaling[channel] == VC4_SCALING_PPF) {
Eric Anholt21af94c2015-10-20 16:06:57 +0100436 vc4_write_ppf(vc4_state,
Eric Anholtfc040232015-12-30 12:25:44 -0800437 vc4_state->src_w[channel], vc4_state->crtc_w);
Eric Anholt21af94c2015-10-20 16:06:57 +0100438 }
439
440 /* Ch0 V-PPF Words 0-1: Scaling Parameters, Context */
Eric Anholtfc040232015-12-30 12:25:44 -0800441 if (vc4_state->y_scaling[channel] == VC4_SCALING_PPF) {
Eric Anholt21af94c2015-10-20 16:06:57 +0100442 vc4_write_ppf(vc4_state,
Eric Anholtfc040232015-12-30 12:25:44 -0800443 vc4_state->src_h[channel], vc4_state->crtc_h);
Eric Anholt21af94c2015-10-20 16:06:57 +0100444 vc4_dlist_write(vc4_state, 0xc0c0c0c0);
445 }
446
447 /* Ch0 H-TPZ Words 0-1: Scaling Parameters, Recip */
Eric Anholtfc040232015-12-30 12:25:44 -0800448 if (vc4_state->x_scaling[channel] == VC4_SCALING_TPZ) {
Eric Anholt21af94c2015-10-20 16:06:57 +0100449 vc4_write_tpz(vc4_state,
Eric Anholtfc040232015-12-30 12:25:44 -0800450 vc4_state->src_w[channel], vc4_state->crtc_w);
Eric Anholt21af94c2015-10-20 16:06:57 +0100451 }
452
453 /* Ch0 V-TPZ Words 0-2: Scaling Parameters, Recip, Context */
Eric Anholtfc040232015-12-30 12:25:44 -0800454 if (vc4_state->y_scaling[channel] == VC4_SCALING_TPZ) {
Eric Anholt21af94c2015-10-20 16:06:57 +0100455 vc4_write_tpz(vc4_state,
Eric Anholtfc040232015-12-30 12:25:44 -0800456 vc4_state->src_h[channel], vc4_state->crtc_h);
Eric Anholt21af94c2015-10-20 16:06:57 +0100457 vc4_dlist_write(vc4_state, 0xc0c0c0c0);
458 }
459}
Eric Anholt5c679992015-12-28 14:34:44 -0800460
461/* Writes out a full display list for an active plane to the plane's
462 * private dlist state.
463 */
464static int vc4_plane_mode_set(struct drm_plane *plane,
465 struct drm_plane_state *state)
466{
Eric Anholt21af94c2015-10-20 16:06:57 +0100467 struct vc4_dev *vc4 = to_vc4_dev(plane->dev);
Eric Anholt5c679992015-12-28 14:34:44 -0800468 struct vc4_plane_state *vc4_state = to_vc4_plane_state(state);
469 struct drm_framebuffer *fb = state->fb;
Eric Anholt5c679992015-12-28 14:34:44 -0800470 u32 ctl0_offset = vc4_state->dlist_count;
Ville Syrjälä438b74a2016-12-14 23:32:55 +0200471 const struct hvs_format *format = vc4_get_hvs_format(fb->format->format);
Dave Stevensone065a8d2018-03-16 15:04:35 -0700472 u64 base_format_mod = fourcc_mod_broadcom_mod(fb->modifier);
Eric Anholtfc040232015-12-30 12:25:44 -0800473 int num_planes = drm_format_num_planes(format->drm);
Stefan Schake22445f02018-04-20 17:09:54 -0700474 bool mix_plane_alpha;
Stefan Schake3d67b682018-03-09 01:53:35 +0100475 bool covers_screen;
Eric Anholt98830d912017-06-07 17:13:35 -0700476 u32 scl0, scl1, pitch0;
477 u32 lbm_size, tiling;
Eric Anholt21af94c2015-10-20 16:06:57 +0100478 unsigned long irqflags;
Dave Stevensone065a8d2018-03-16 15:04:35 -0700479 u32 hvs_format = format->hvs;
Eric Anholtfc040232015-12-30 12:25:44 -0800480 int ret, i;
Eric Anholt5c679992015-12-28 14:34:44 -0800481
482 ret = vc4_plane_setup_clipping_and_scaling(state);
483 if (ret)
484 return ret;
485
Eric Anholt21af94c2015-10-20 16:06:57 +0100486 /* Allocate the LBM memory that the HVS will use for temporary
487 * storage due to our scaling/format conversion.
488 */
489 lbm_size = vc4_lbm_size(state);
490 if (lbm_size) {
491 if (!vc4_state->lbm.allocated) {
492 spin_lock_irqsave(&vc4->hvs->mm_lock, irqflags);
Chris Wilson4e64e552017-02-02 21:04:38 +0000493 ret = drm_mm_insert_node_generic(&vc4->hvs->lbm_mm,
494 &vc4_state->lbm,
495 lbm_size, 32, 0, 0);
Eric Anholt21af94c2015-10-20 16:06:57 +0100496 spin_unlock_irqrestore(&vc4->hvs->mm_lock, irqflags);
497 } else {
498 WARN_ON_ONCE(lbm_size != vc4_state->lbm.size);
499 }
500 }
501
502 if (ret)
503 return ret;
504
Eric Anholtfc040232015-12-30 12:25:44 -0800505 /* SCL1 is used for Cb/Cr scaling of planar formats. For RGB
506 * and 4:4:4, scl1 should be set to scl0 so both channels of
507 * the scaler do the same thing. For YUV, the Y plane needs
508 * to be put in channel 1 and Cb/Cr in channel 0, so we swap
509 * the scl fields here.
510 */
511 if (num_planes == 1) {
Boris Brezillon9a0e9802018-05-07 14:13:03 +0200512 scl0 = vc4_get_scl_field(state, 0);
Eric Anholtfc040232015-12-30 12:25:44 -0800513 scl1 = scl0;
514 } else {
515 scl0 = vc4_get_scl_field(state, 1);
516 scl1 = vc4_get_scl_field(state, 0);
517 }
Eric Anholt21af94c2015-10-20 16:06:57 +0100518
Dave Stevensone065a8d2018-03-16 15:04:35 -0700519 switch (base_format_mod) {
Eric Anholt98830d912017-06-07 17:13:35 -0700520 case DRM_FORMAT_MOD_LINEAR:
521 tiling = SCALER_CTL0_TILING_LINEAR;
522 pitch0 = VC4_SET_FIELD(fb->pitches[0], SCALER_SRC_PITCH);
523 break;
Eric Anholt652badb2017-09-27 12:32:09 -0700524
525 case DRM_FORMAT_MOD_BROADCOM_VC4_T_TILED: {
526 /* For T-tiled, the FB pitch is "how many bytes from
527 * one row to the next, such that pitch * tile_h ==
528 * tile_size * tiles_per_row."
529 */
530 u32 tile_size_shift = 12; /* T tiles are 4kb */
531 u32 tile_h_shift = 5; /* 16 and 32bpp are 32 pixels high */
532 u32 tiles_w = fb->pitches[0] >> (tile_size_shift - tile_h_shift);
533
Eric Anholt98830d912017-06-07 17:13:35 -0700534 tiling = SCALER_CTL0_TILING_256B_OR_T;
535
Eric Anholt652badb2017-09-27 12:32:09 -0700536 pitch0 = (VC4_SET_FIELD(0, SCALER_PITCH0_TILE_Y_OFFSET) |
537 VC4_SET_FIELD(0, SCALER_PITCH0_TILE_WIDTH_L) |
538 VC4_SET_FIELD(tiles_w, SCALER_PITCH0_TILE_WIDTH_R));
Eric Anholt98830d912017-06-07 17:13:35 -0700539 break;
Eric Anholt652badb2017-09-27 12:32:09 -0700540 }
541
Dave Stevensone065a8d2018-03-16 15:04:35 -0700542 case DRM_FORMAT_MOD_BROADCOM_SAND64:
543 case DRM_FORMAT_MOD_BROADCOM_SAND128:
544 case DRM_FORMAT_MOD_BROADCOM_SAND256: {
545 uint32_t param = fourcc_mod_broadcom_param(fb->modifier);
546
547 /* Column-based NV12 or RGBA.
548 */
549 if (fb->format->num_planes > 1) {
550 if (hvs_format != HVS_PIXEL_FORMAT_YCBCR_YUV420_2PLANE) {
551 DRM_DEBUG_KMS("SAND format only valid for NV12/21");
552 return -EINVAL;
553 }
554 hvs_format = HVS_PIXEL_FORMAT_H264;
555 } else {
556 if (base_format_mod == DRM_FORMAT_MOD_BROADCOM_SAND256) {
557 DRM_DEBUG_KMS("SAND256 format only valid for H.264");
558 return -EINVAL;
559 }
560 }
561
562 switch (base_format_mod) {
563 case DRM_FORMAT_MOD_BROADCOM_SAND64:
564 tiling = SCALER_CTL0_TILING_64B;
565 break;
566 case DRM_FORMAT_MOD_BROADCOM_SAND128:
567 tiling = SCALER_CTL0_TILING_128B;
568 break;
569 case DRM_FORMAT_MOD_BROADCOM_SAND256:
570 tiling = SCALER_CTL0_TILING_256B_OR_T;
571 break;
572 default:
573 break;
574 }
575
576 if (param > SCALER_TILE_HEIGHT_MASK) {
577 DRM_DEBUG_KMS("SAND height too large (%d)\n", param);
578 return -EINVAL;
579 }
580
581 pitch0 = VC4_SET_FIELD(param, SCALER_TILE_HEIGHT);
582 break;
583 }
584
Eric Anholt98830d912017-06-07 17:13:35 -0700585 default:
586 DRM_DEBUG_KMS("Unsupported FB tiling flag 0x%16llx",
587 (long long)fb->modifier);
588 return -EINVAL;
589 }
590
Eric Anholt21af94c2015-10-20 16:06:57 +0100591 /* Control word */
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800592 vc4_dlist_write(vc4_state,
593 SCALER_CTL0_VALID |
Maxime Ripard3257ec72018-05-17 15:37:59 +0200594 VC4_SET_FIELD(SCALER_CTL0_RGBA_EXPAND_ROUND, SCALER_CTL0_RGBA_EXPAND) |
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800595 (format->pixel_order << SCALER_CTL0_ORDER_SHIFT) |
Dave Stevensone065a8d2018-03-16 15:04:35 -0700596 (hvs_format << SCALER_CTL0_PIXEL_FORMAT_SHIFT) |
Eric Anholt98830d912017-06-07 17:13:35 -0700597 VC4_SET_FIELD(tiling, SCALER_CTL0_TILING) |
Eric Anholt21af94c2015-10-20 16:06:57 +0100598 (vc4_state->is_unity ? SCALER_CTL0_UNITY : 0) |
Eric Anholtfc040232015-12-30 12:25:44 -0800599 VC4_SET_FIELD(scl0, SCALER_CTL0_SCL0) |
600 VC4_SET_FIELD(scl1, SCALER_CTL0_SCL1));
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800601
602 /* Position Word 0: Image Positions and Alpha Value */
Eric Anholt6674a902015-12-30 11:50:22 -0800603 vc4_state->pos0_offset = vc4_state->dlist_count;
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800604 vc4_dlist_write(vc4_state,
Stefan Schake22445f02018-04-20 17:09:54 -0700605 VC4_SET_FIELD(state->alpha >> 8, SCALER_POS0_FIXED_ALPHA) |
Eric Anholt5c679992015-12-28 14:34:44 -0800606 VC4_SET_FIELD(vc4_state->crtc_x, SCALER_POS0_START_X) |
607 VC4_SET_FIELD(vc4_state->crtc_y, SCALER_POS0_START_Y));
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800608
Eric Anholt21af94c2015-10-20 16:06:57 +0100609 /* Position Word 1: Scaled Image Dimensions. */
610 if (!vc4_state->is_unity) {
611 vc4_dlist_write(vc4_state,
612 VC4_SET_FIELD(vc4_state->crtc_w,
613 SCALER_POS1_SCL_WIDTH) |
614 VC4_SET_FIELD(vc4_state->crtc_h,
615 SCALER_POS1_SCL_HEIGHT));
616 }
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800617
Stefan Schake22445f02018-04-20 17:09:54 -0700618 /* Don't waste cycles mixing with plane alpha if the set alpha
619 * is opaque or there is no per-pixel alpha information.
620 * In any case we use the alpha property value as the fixed alpha.
621 */
622 mix_plane_alpha = state->alpha != DRM_BLEND_ALPHA_OPAQUE &&
623 fb->format->has_alpha;
624
Stefan Schake05202c22018-03-09 01:53:34 +0100625 /* Position Word 2: Source Image Size, Alpha */
Eric Anholt6674a902015-12-30 11:50:22 -0800626 vc4_state->pos2_offset = vc4_state->dlist_count;
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800627 vc4_dlist_write(vc4_state,
Maxime Ripard124e5da2017-12-22 15:31:27 +0100628 VC4_SET_FIELD(fb->format->has_alpha ?
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800629 SCALER_POS2_ALPHA_MODE_PIPELINE :
630 SCALER_POS2_ALPHA_MODE_FIXED,
631 SCALER_POS2_ALPHA_MODE) |
Stefan Schake22445f02018-04-20 17:09:54 -0700632 (mix_plane_alpha ? SCALER_POS2_ALPHA_MIX : 0) |
Stefan Schake05202c22018-03-09 01:53:34 +0100633 (fb->format->has_alpha ? SCALER_POS2_ALPHA_PREMULT : 0) |
Eric Anholtfc040232015-12-30 12:25:44 -0800634 VC4_SET_FIELD(vc4_state->src_w[0], SCALER_POS2_WIDTH) |
635 VC4_SET_FIELD(vc4_state->src_h[0], SCALER_POS2_HEIGHT));
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800636
637 /* Position Word 3: Context. Written by the HVS. */
638 vc4_dlist_write(vc4_state, 0xc0c0c0c0);
639
Eric Anholtfc040232015-12-30 12:25:44 -0800640
641 /* Pointer Word 0/1/2: RGB / Y / Cb / Cr Pointers
642 *
643 * The pointers may be any byte address.
644 */
Eric Anholt6674a902015-12-30 11:50:22 -0800645 vc4_state->ptr0_offset = vc4_state->dlist_count;
Dave Stevenson090cb0c2017-11-16 14:22:30 +0000646 for (i = 0; i < num_planes; i++)
647 vc4_dlist_write(vc4_state, vc4_state->offsets[i]);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800648
Eric Anholtfc040232015-12-30 12:25:44 -0800649 /* Pointer Context Word 0/1/2: Written by the HVS */
650 for (i = 0; i < num_planes; i++)
651 vc4_dlist_write(vc4_state, 0xc0c0c0c0);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800652
Eric Anholt98830d912017-06-07 17:13:35 -0700653 /* Pitch word 0 */
654 vc4_dlist_write(vc4_state, pitch0);
655
656 /* Pitch word 1/2 */
657 for (i = 1; i < num_planes; i++) {
Dave Stevensone065a8d2018-03-16 15:04:35 -0700658 if (hvs_format != HVS_PIXEL_FORMAT_H264) {
659 vc4_dlist_write(vc4_state,
660 VC4_SET_FIELD(fb->pitches[i],
661 SCALER_SRC_PITCH));
662 } else {
663 vc4_dlist_write(vc4_state, pitch0);
664 }
Eric Anholtfc040232015-12-30 12:25:44 -0800665 }
666
667 /* Colorspace conversion words */
668 if (vc4_state->is_yuv) {
669 vc4_dlist_write(vc4_state, SCALER_CSC0_ITR_R_601_5);
670 vc4_dlist_write(vc4_state, SCALER_CSC1_ITR_R_601_5);
671 vc4_dlist_write(vc4_state, SCALER_CSC2_ITR_R_601_5);
672 }
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800673
Eric Anholt21af94c2015-10-20 16:06:57 +0100674 if (!vc4_state->is_unity) {
675 /* LBM Base Address. */
Eric Anholtfc040232015-12-30 12:25:44 -0800676 if (vc4_state->y_scaling[0] != VC4_SCALING_NONE ||
677 vc4_state->y_scaling[1] != VC4_SCALING_NONE) {
Eric Anholt21af94c2015-10-20 16:06:57 +0100678 vc4_dlist_write(vc4_state, vc4_state->lbm.start);
Eric Anholtfc040232015-12-30 12:25:44 -0800679 }
Eric Anholt21af94c2015-10-20 16:06:57 +0100680
Eric Anholtfc040232015-12-30 12:25:44 -0800681 if (num_planes > 1) {
682 /* Emit Cb/Cr as channel 0 and Y as channel
683 * 1. This matches how we set up scl0/scl1
684 * above.
685 */
686 vc4_write_scaling_parameters(state, 1);
687 }
688 vc4_write_scaling_parameters(state, 0);
Eric Anholt21af94c2015-10-20 16:06:57 +0100689
690 /* If any PPF setup was done, then all the kernel
691 * pointers get uploaded.
692 */
Eric Anholtfc040232015-12-30 12:25:44 -0800693 if (vc4_state->x_scaling[0] == VC4_SCALING_PPF ||
694 vc4_state->y_scaling[0] == VC4_SCALING_PPF ||
695 vc4_state->x_scaling[1] == VC4_SCALING_PPF ||
696 vc4_state->y_scaling[1] == VC4_SCALING_PPF) {
Eric Anholt21af94c2015-10-20 16:06:57 +0100697 u32 kernel = VC4_SET_FIELD(vc4->hvs->mitchell_netravali_filter.start,
698 SCALER_PPF_KERNEL_OFFSET);
699
700 /* HPPF plane 0 */
701 vc4_dlist_write(vc4_state, kernel);
702 /* VPPF plane 0 */
703 vc4_dlist_write(vc4_state, kernel);
704 /* HPPF plane 1 */
705 vc4_dlist_write(vc4_state, kernel);
706 /* VPPF plane 1 */
707 vc4_dlist_write(vc4_state, kernel);
708 }
709 }
710
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800711 vc4_state->dlist[ctl0_offset] |=
712 VC4_SET_FIELD(vc4_state->dlist_count, SCALER_CTL0_SIZE);
713
Stefan Schake3d67b682018-03-09 01:53:35 +0100714 /* crtc_* are already clipped coordinates. */
715 covers_screen = vc4_state->crtc_x == 0 && vc4_state->crtc_y == 0 &&
716 vc4_state->crtc_w == state->crtc->mode.hdisplay &&
717 vc4_state->crtc_h == state->crtc->mode.vdisplay;
718 /* Background fill might be necessary when the plane has per-pixel
Stefan Schake22445f02018-04-20 17:09:54 -0700719 * alpha content or a non-opaque plane alpha and could blend from the
720 * background or does not cover the entire screen.
Stefan Schake3d67b682018-03-09 01:53:35 +0100721 */
Stefan Schake22445f02018-04-20 17:09:54 -0700722 vc4_state->needs_bg_fill = fb->format->has_alpha || !covers_screen ||
723 state->alpha != DRM_BLEND_ALPHA_OPAQUE;
Stefan Schake3d67b682018-03-09 01:53:35 +0100724
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800725 return 0;
726}
727
728/* If a modeset involves changing the setup of a plane, the atomic
729 * infrastructure will call this to validate a proposed plane setup.
730 * However, if a plane isn't getting updated, this (and the
731 * corresponding vc4_plane_atomic_update) won't get called. Thus, we
732 * compute the dlist here and have all active plane dlists get updated
733 * in the CRTC's flush.
734 */
735static int vc4_plane_atomic_check(struct drm_plane *plane,
736 struct drm_plane_state *state)
737{
738 struct vc4_plane_state *vc4_state = to_vc4_plane_state(state);
739
740 vc4_state->dlist_count = 0;
741
742 if (plane_enabled(state))
743 return vc4_plane_mode_set(plane, state);
744 else
745 return 0;
746}
747
748static void vc4_plane_atomic_update(struct drm_plane *plane,
749 struct drm_plane_state *old_state)
750{
751 /* No contents here. Since we don't know where in the CRTC's
752 * dlist we should be stored, our dlist is uploaded to the
753 * hardware with vc4_plane_write_dlist() at CRTC atomic_flush
754 * time.
755 */
756}
757
758u32 vc4_plane_write_dlist(struct drm_plane *plane, u32 __iomem *dlist)
759{
760 struct vc4_plane_state *vc4_state = to_vc4_plane_state(plane->state);
761 int i;
762
Eric Anholtb501bac2015-11-30 12:34:01 -0800763 vc4_state->hw_dlist = dlist;
764
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800765 /* Can't memcpy_toio() because it needs to be 32-bit writes. */
766 for (i = 0; i < vc4_state->dlist_count; i++)
767 writel(vc4_state->dlist[i], &dlist[i]);
768
769 return vc4_state->dlist_count;
770}
771
Daniel Vetter2f196b72016-06-02 16:21:44 +0200772u32 vc4_plane_dlist_size(const struct drm_plane_state *state)
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800773{
Daniel Vetter2f196b72016-06-02 16:21:44 +0200774 const struct vc4_plane_state *vc4_state =
775 container_of(state, typeof(*vc4_state), base);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800776
777 return vc4_state->dlist_count;
778}
779
Eric Anholtb501bac2015-11-30 12:34:01 -0800780/* Updates the plane to immediately (well, once the FIFO needs
781 * refilling) scan out from at a new framebuffer.
782 */
783void vc4_plane_async_set_fb(struct drm_plane *plane, struct drm_framebuffer *fb)
784{
785 struct vc4_plane_state *vc4_state = to_vc4_plane_state(plane->state);
786 struct drm_gem_cma_object *bo = drm_fb_cma_get_gem_obj(fb, 0);
787 uint32_t addr;
788
789 /* We're skipping the address adjustment for negative origin,
790 * because this is only called on the primary plane.
791 */
792 WARN_ON_ONCE(plane->state->crtc_x < 0 || plane->state->crtc_y < 0);
793 addr = bo->paddr + fb->offsets[0];
794
795 /* Write the new address into the hardware immediately. The
796 * scanout will start from this address as soon as the FIFO
797 * needs to refill with pixels.
798 */
Eric Anholt6674a902015-12-30 11:50:22 -0800799 writel(addr, &vc4_state->hw_dlist[vc4_state->ptr0_offset]);
Eric Anholtb501bac2015-11-30 12:34:01 -0800800
801 /* Also update the CPU-side dlist copy, so that any later
802 * atomic updates that don't do a new modeset on our plane
803 * also use our updated address.
804 */
Eric Anholt6674a902015-12-30 11:50:22 -0800805 vc4_state->dlist[vc4_state->ptr0_offset] = addr;
Eric Anholtb501bac2015-11-30 12:34:01 -0800806}
807
Gustavo Padovan539c3202018-03-30 10:54:45 +0200808static void vc4_plane_atomic_async_update(struct drm_plane *plane,
809 struct drm_plane_state *state)
810{
811 struct vc4_plane_state *vc4_state = to_vc4_plane_state(plane->state);
812
813 if (plane->state->fb != state->fb) {
814 vc4_plane_async_set_fb(plane, state->fb);
815 drm_atomic_set_fb_for_plane(plane->state, state->fb);
816 }
817
818 /* Set the cursor's position on the screen. This is the
819 * expected change from the drm_mode_cursor_universal()
820 * helper.
821 */
822 plane->state->crtc_x = state->crtc_x;
823 plane->state->crtc_y = state->crtc_y;
824
825 /* Allow changing the start position within the cursor BO, if
826 * that matters.
827 */
828 plane->state->src_x = state->src_x;
829 plane->state->src_y = state->src_y;
830
831 /* Update the display list based on the new crtc_x/y. */
832 vc4_plane_atomic_check(plane, plane->state);
833
834 /* Note that we can't just call vc4_plane_write_dlist()
835 * because that would smash the context data that the HVS is
836 * currently using.
837 */
838 writel(vc4_state->dlist[vc4_state->pos0_offset],
839 &vc4_state->hw_dlist[vc4_state->pos0_offset]);
840 writel(vc4_state->dlist[vc4_state->pos2_offset],
841 &vc4_state->hw_dlist[vc4_state->pos2_offset]);
842 writel(vc4_state->dlist[vc4_state->ptr0_offset],
843 &vc4_state->hw_dlist[vc4_state->ptr0_offset]);
844}
845
846static int vc4_plane_atomic_async_check(struct drm_plane *plane,
847 struct drm_plane_state *state)
848{
849 /* No configuring new scaling in the fast path. */
850 if (plane->state->crtc_w != state->crtc_w ||
851 plane->state->crtc_h != state->crtc_h ||
852 plane->state->src_w != state->src_w ||
853 plane->state->src_h != state->src_h)
854 return -EINVAL;
855
856 return 0;
857}
858
Eric Anholt334dbd62017-06-21 11:49:59 -0700859static int vc4_prepare_fb(struct drm_plane *plane,
860 struct drm_plane_state *state)
861{
862 struct vc4_bo *bo;
863 struct dma_fence *fence;
Boris Brezillonb9f19252017-10-19 14:57:48 +0200864 int ret;
Eric Anholt334dbd62017-06-21 11:49:59 -0700865
Daniel Vetter2227a7a2018-04-05 17:44:48 +0200866 if (!state->fb)
Eric Anholt334dbd62017-06-21 11:49:59 -0700867 return 0;
868
869 bo = to_vc4_bo(&drm_fb_cma_get_gem_obj(state->fb, 0)->base);
Boris Brezillonb9f19252017-10-19 14:57:48 +0200870
Daniel Vetter2227a7a2018-04-05 17:44:48 +0200871 fence = reservation_object_get_excl_rcu(bo->resv);
872 drm_atomic_set_fence_for_plane(state, fence);
873
874 if (plane->state->fb == state->fb)
875 return 0;
876
Boris Brezillonb9f19252017-10-19 14:57:48 +0200877 ret = vc4_bo_inc_usecnt(bo);
878 if (ret)
879 return ret;
880
Eric Anholt334dbd62017-06-21 11:49:59 -0700881 return 0;
882}
883
Boris Brezillonb9f19252017-10-19 14:57:48 +0200884static void vc4_cleanup_fb(struct drm_plane *plane,
885 struct drm_plane_state *state)
886{
887 struct vc4_bo *bo;
888
889 if (plane->state->fb == state->fb || !state->fb)
890 return;
891
892 bo = to_vc4_bo(&drm_fb_cma_get_gem_obj(state->fb, 0)->base);
893 vc4_bo_dec_usecnt(bo);
894}
895
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800896static const struct drm_plane_helper_funcs vc4_plane_helper_funcs = {
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800897 .atomic_check = vc4_plane_atomic_check,
898 .atomic_update = vc4_plane_atomic_update,
Eric Anholt334dbd62017-06-21 11:49:59 -0700899 .prepare_fb = vc4_prepare_fb,
Boris Brezillonb9f19252017-10-19 14:57:48 +0200900 .cleanup_fb = vc4_cleanup_fb,
Gustavo Padovan539c3202018-03-30 10:54:45 +0200901 .atomic_async_check = vc4_plane_atomic_async_check,
902 .atomic_async_update = vc4_plane_atomic_async_update,
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800903};
904
905static void vc4_plane_destroy(struct drm_plane *plane)
906{
Russell King070473b2018-07-02 17:21:23 +0100907 drm_plane_helper_disable(plane, NULL);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800908 drm_plane_cleanup(plane);
909}
910
Daniel Stone423ad7b2017-08-08 17:44:48 +0100911static bool vc4_format_mod_supported(struct drm_plane *plane,
912 uint32_t format,
913 uint64_t modifier)
914{
915 /* Support T_TILING for RGB formats only. */
916 switch (format) {
917 case DRM_FORMAT_XRGB8888:
918 case DRM_FORMAT_ARGB8888:
919 case DRM_FORMAT_ABGR8888:
920 case DRM_FORMAT_XBGR8888:
921 case DRM_FORMAT_RGB565:
922 case DRM_FORMAT_BGR565:
923 case DRM_FORMAT_ARGB1555:
924 case DRM_FORMAT_XRGB1555:
Dave Stevensone065a8d2018-03-16 15:04:35 -0700925 switch (fourcc_mod_broadcom_mod(modifier)) {
926 case DRM_FORMAT_MOD_LINEAR:
927 case DRM_FORMAT_MOD_BROADCOM_VC4_T_TILED:
928 case DRM_FORMAT_MOD_BROADCOM_SAND64:
929 case DRM_FORMAT_MOD_BROADCOM_SAND128:
930 return true;
931 default:
932 return false;
933 }
934 case DRM_FORMAT_NV12:
935 case DRM_FORMAT_NV21:
936 switch (fourcc_mod_broadcom_mod(modifier)) {
937 case DRM_FORMAT_MOD_LINEAR:
938 case DRM_FORMAT_MOD_BROADCOM_SAND64:
939 case DRM_FORMAT_MOD_BROADCOM_SAND128:
940 case DRM_FORMAT_MOD_BROADCOM_SAND256:
941 return true;
942 default:
943 return false;
944 }
Daniel Stone423ad7b2017-08-08 17:44:48 +0100945 case DRM_FORMAT_YUV422:
946 case DRM_FORMAT_YVU422:
947 case DRM_FORMAT_YUV420:
948 case DRM_FORMAT_YVU420:
Daniel Stone423ad7b2017-08-08 17:44:48 +0100949 case DRM_FORMAT_NV16:
Eric Anholt1e871d62018-03-16 15:04:34 -0700950 case DRM_FORMAT_NV61:
Daniel Stone423ad7b2017-08-08 17:44:48 +0100951 default:
952 return (modifier == DRM_FORMAT_MOD_LINEAR);
953 }
954}
955
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800956static const struct drm_plane_funcs vc4_plane_funcs = {
Gustavo Padovan539c3202018-03-30 10:54:45 +0200957 .update_plane = drm_atomic_helper_update_plane,
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800958 .disable_plane = drm_atomic_helper_disable_plane,
959 .destroy = vc4_plane_destroy,
960 .set_property = NULL,
961 .reset = vc4_plane_reset,
962 .atomic_duplicate_state = vc4_plane_duplicate_state,
963 .atomic_destroy_state = vc4_plane_destroy_state,
Daniel Stone423ad7b2017-08-08 17:44:48 +0100964 .format_mod_supported = vc4_format_mod_supported,
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800965};
966
967struct drm_plane *vc4_plane_init(struct drm_device *dev,
968 enum drm_plane_type type)
969{
970 struct drm_plane *plane = NULL;
971 struct vc4_plane *vc4_plane;
972 u32 formats[ARRAY_SIZE(hvs_formats)];
Eric Anholtfc040232015-12-30 12:25:44 -0800973 u32 num_formats = 0;
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800974 int ret = 0;
975 unsigned i;
Daniel Stone423ad7b2017-08-08 17:44:48 +0100976 static const uint64_t modifiers[] = {
977 DRM_FORMAT_MOD_BROADCOM_VC4_T_TILED,
Dave Stevensone065a8d2018-03-16 15:04:35 -0700978 DRM_FORMAT_MOD_BROADCOM_SAND128,
979 DRM_FORMAT_MOD_BROADCOM_SAND64,
980 DRM_FORMAT_MOD_BROADCOM_SAND256,
Daniel Stone423ad7b2017-08-08 17:44:48 +0100981 DRM_FORMAT_MOD_LINEAR,
982 DRM_FORMAT_MOD_INVALID
983 };
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800984
985 vc4_plane = devm_kzalloc(dev->dev, sizeof(*vc4_plane),
986 GFP_KERNEL);
Colin Ian King7b347342017-03-16 18:54:18 +0000987 if (!vc4_plane)
988 return ERR_PTR(-ENOMEM);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800989
Eric Anholtfc040232015-12-30 12:25:44 -0800990 for (i = 0; i < ARRAY_SIZE(hvs_formats); i++) {
991 /* Don't allow YUV in cursor planes, since that means
992 * tuning on the scaler, which we don't allow for the
993 * cursor.
994 */
995 if (type != DRM_PLANE_TYPE_CURSOR ||
996 hvs_formats[i].hvs < HVS_PIXEL_FORMAT_YCBCR_YUV420_3PLANE) {
997 formats[num_formats++] = hvs_formats[i].drm;
998 }
999 }
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001000 plane = &vc4_plane->base;
Andrzej Pietrasiewicz49d29a02017-02-01 10:35:08 +01001001 ret = drm_universal_plane_init(dev, plane, 0,
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001002 &vc4_plane_funcs,
Eric Anholtfc040232015-12-30 12:25:44 -08001003 formats, num_formats,
Daniel Stone423ad7b2017-08-08 17:44:48 +01001004 modifiers, type, NULL);
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001005
1006 drm_plane_helper_add(plane, &vc4_plane_helper_funcs);
1007
Stefan Schake22445f02018-04-20 17:09:54 -07001008 drm_plane_create_alpha_property(plane);
1009
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001010 return plane;
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001011}