blob: 203f247d485471346af9e001c21b8b01cc0a51a0 [file] [log] [blame]
Philipp Zabelb8d181e2013-10-10 16:18:45 +02001/*
2 * i.MX IPUv3 DP Overlay Planes
3 *
4 * Copyright (C) 2013 Philipp Zabel, Pengutronix
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 */
15
16#include <drm/drmP.h>
Liu Ying5f2f9112016-07-08 17:40:59 +080017#include <drm/drm_atomic.h>
Liu Ying255c35f2016-07-08 17:40:56 +080018#include <drm/drm_atomic_helper.h>
Philipp Zabelb8d181e2013-10-10 16:18:45 +020019#include <drm/drm_fb_cma_helper.h>
20#include <drm/drm_gem_cma_helper.h>
Noralf Trønnesbd106352017-08-13 15:31:53 +020021#include <drm/drm_gem_framebuffer_helper.h>
Liu Ying33f14232016-07-08 17:40:55 +080022#include <drm/drm_plane_helper.h>
Philipp Zabelb8d181e2013-10-10 16:18:45 +020023
Philipp Zabel39b90042013-09-30 16:13:39 +020024#include "video/imx-ipu-v3.h"
Fabio Estevama71d3242018-02-13 17:11:35 -020025#include "imx-drm.h"
Philipp Zabelb8d181e2013-10-10 16:18:45 +020026#include "ipuv3-plane.h"
27
Lucas Stach00514e82017-03-08 12:13:21 +010028struct ipu_plane_state {
29 struct drm_plane_state base;
30 bool use_pre;
31};
32
33static inline struct ipu_plane_state *
34to_ipu_plane_state(struct drm_plane_state *p)
35{
36 return container_of(p, struct ipu_plane_state, base);
37}
38
Philipp Zabel3df07392016-07-06 15:47:11 +020039static inline struct ipu_plane *to_ipu_plane(struct drm_plane *p)
40{
41 return container_of(p, struct ipu_plane, base);
42}
Philipp Zabelb8d181e2013-10-10 16:18:45 +020043
44static const uint32_t ipu_plane_formats[] = {
Philipp Zabelc639a1c2014-12-12 13:40:38 +010045 DRM_FORMAT_ARGB1555,
Philipp Zabelb8d181e2013-10-10 16:18:45 +020046 DRM_FORMAT_XRGB1555,
Philipp Zabelc639a1c2014-12-12 13:40:38 +010047 DRM_FORMAT_ABGR1555,
Philipp Zabelb8d181e2013-10-10 16:18:45 +020048 DRM_FORMAT_XBGR1555,
Philipp Zabelc639a1c2014-12-12 13:40:38 +010049 DRM_FORMAT_RGBA5551,
50 DRM_FORMAT_BGRA5551,
Lucas Stachcb166a32015-08-04 17:22:06 +020051 DRM_FORMAT_ARGB4444,
Philipp Zabelb8d181e2013-10-10 16:18:45 +020052 DRM_FORMAT_ARGB8888,
53 DRM_FORMAT_XRGB8888,
54 DRM_FORMAT_ABGR8888,
55 DRM_FORMAT_XBGR8888,
Philipp Zabel59d6b712015-04-16 15:56:40 +020056 DRM_FORMAT_RGBA8888,
57 DRM_FORMAT_RGBX8888,
58 DRM_FORMAT_BGRA8888,
Laurentiu Palcuf2ad99f2017-06-28 12:31:34 +030059 DRM_FORMAT_BGRX8888,
Philipp Zabel79321312016-02-12 14:35:55 +010060 DRM_FORMAT_UYVY,
61 DRM_FORMAT_VYUY,
Philipp Zabelb8d181e2013-10-10 16:18:45 +020062 DRM_FORMAT_YUYV,
63 DRM_FORMAT_YVYU,
64 DRM_FORMAT_YUV420,
65 DRM_FORMAT_YVU420,
Philipp Zabeleae13c92016-10-18 12:31:40 +020066 DRM_FORMAT_YUV422,
67 DRM_FORMAT_YVU422,
68 DRM_FORMAT_YUV444,
69 DRM_FORMAT_YVU444,
70 DRM_FORMAT_NV12,
71 DRM_FORMAT_NV16,
Enrico Jorns33bee522015-11-24 16:29:22 +010072 DRM_FORMAT_RGB565,
Philipp Zabelf6b50ef2016-07-22 12:02:45 +020073 DRM_FORMAT_RGB565_A8,
74 DRM_FORMAT_BGR565_A8,
75 DRM_FORMAT_RGB888_A8,
76 DRM_FORMAT_BGR888_A8,
77 DRM_FORMAT_RGBX8888_A8,
78 DRM_FORMAT_BGRX8888_A8,
Philipp Zabelb8d181e2013-10-10 16:18:45 +020079};
80
Lucas Stach37aca512017-11-10 17:10:01 +010081static const uint64_t ipu_format_modifiers[] = {
82 DRM_FORMAT_MOD_LINEAR,
83 DRM_FORMAT_MOD_INVALID
84};
85
86static const uint64_t pre_format_modifiers[] = {
87 DRM_FORMAT_MOD_LINEAR,
88 DRM_FORMAT_MOD_VIVANTE_TILED,
89 DRM_FORMAT_MOD_VIVANTE_SUPER_TILED,
90 DRM_FORMAT_MOD_INVALID
91};
92
Philipp Zabelb8d181e2013-10-10 16:18:45 +020093int ipu_plane_irq(struct ipu_plane *ipu_plane)
94{
95 return ipu_idmac_channel_irq(ipu_plane->ipu, ipu_plane->ipu_ch,
96 IPU_IRQ_EOF);
97}
98
Liu Ying33f14232016-07-08 17:40:55 +080099static inline unsigned long
Philipp Zabel0bfd56f2016-07-22 12:01:11 +0200100drm_plane_state_to_eba(struct drm_plane_state *state, int plane)
Liu Ying33f14232016-07-08 17:40:55 +0800101{
102 struct drm_framebuffer *fb = state->fb;
103 struct drm_gem_cma_object *cma_obj;
Philipp Zabel03ee3da2016-10-19 10:50:26 +0200104 int x = state->src.x1 >> 16;
105 int y = state->src.y1 >> 16;
Liu Ying33f14232016-07-08 17:40:55 +0800106
Philipp Zabel0bfd56f2016-07-22 12:01:11 +0200107 cma_obj = drm_fb_cma_get_gem_obj(fb, plane);
Liu Ying33f14232016-07-08 17:40:55 +0800108 BUG_ON(!cma_obj);
109
Philipp Zabel0bfd56f2016-07-22 12:01:11 +0200110 return cma_obj->paddr + fb->offsets[plane] + fb->pitches[plane] * y +
111 fb->format->cpp[plane] * x;
Liu Ying33f14232016-07-08 17:40:55 +0800112}
113
114static inline unsigned long
115drm_plane_state_to_ubo(struct drm_plane_state *state)
116{
117 struct drm_framebuffer *fb = state->fb;
118 struct drm_gem_cma_object *cma_obj;
Philipp Zabel0bfd56f2016-07-22 12:01:11 +0200119 unsigned long eba = drm_plane_state_to_eba(state, 0);
Philipp Zabel03ee3da2016-10-19 10:50:26 +0200120 int x = state->src.x1 >> 16;
121 int y = state->src.y1 >> 16;
Liu Ying33f14232016-07-08 17:40:55 +0800122
123 cma_obj = drm_fb_cma_get_gem_obj(fb, 1);
124 BUG_ON(!cma_obj);
125
Ville Syrjälä438b74a2016-12-14 23:32:55 +0200126 x /= drm_format_horz_chroma_subsampling(fb->format->format);
127 y /= drm_format_vert_chroma_subsampling(fb->format->format);
Philipp Zabelf2fa3532016-10-18 12:26:19 +0200128
129 return cma_obj->paddr + fb->offsets[1] + fb->pitches[1] * y +
Ville Syrjälä353c8592016-12-14 23:30:57 +0200130 fb->format->cpp[1] * x - eba;
Liu Ying33f14232016-07-08 17:40:55 +0800131}
132
133static inline unsigned long
134drm_plane_state_to_vbo(struct drm_plane_state *state)
135{
136 struct drm_framebuffer *fb = state->fb;
137 struct drm_gem_cma_object *cma_obj;
Philipp Zabel0bfd56f2016-07-22 12:01:11 +0200138 unsigned long eba = drm_plane_state_to_eba(state, 0);
Philipp Zabel03ee3da2016-10-19 10:50:26 +0200139 int x = state->src.x1 >> 16;
140 int y = state->src.y1 >> 16;
Liu Ying33f14232016-07-08 17:40:55 +0800141
142 cma_obj = drm_fb_cma_get_gem_obj(fb, 2);
143 BUG_ON(!cma_obj);
144
Ville Syrjälä438b74a2016-12-14 23:32:55 +0200145 x /= drm_format_horz_chroma_subsampling(fb->format->format);
146 y /= drm_format_vert_chroma_subsampling(fb->format->format);
Philipp Zabelf2fa3532016-10-18 12:26:19 +0200147
148 return cma_obj->paddr + fb->offsets[2] + fb->pitches[2] * y +
Ville Syrjälä353c8592016-12-14 23:30:57 +0200149 fb->format->cpp[2] * x - eba;
Liu Ying33f14232016-07-08 17:40:55 +0800150}
151
Philipp Zabelb8d181e2013-10-10 16:18:45 +0200152void ipu_plane_put_resources(struct ipu_plane *ipu_plane)
153{
154 if (!IS_ERR_OR_NULL(ipu_plane->dp))
155 ipu_dp_put(ipu_plane->dp);
156 if (!IS_ERR_OR_NULL(ipu_plane->dmfc))
157 ipu_dmfc_put(ipu_plane->dmfc);
158 if (!IS_ERR_OR_NULL(ipu_plane->ipu_ch))
159 ipu_idmac_put(ipu_plane->ipu_ch);
Philipp Zabelf6b50ef2016-07-22 12:02:45 +0200160 if (!IS_ERR_OR_NULL(ipu_plane->alpha_ch))
161 ipu_idmac_put(ipu_plane->alpha_ch);
Philipp Zabelb8d181e2013-10-10 16:18:45 +0200162}
163
164int ipu_plane_get_resources(struct ipu_plane *ipu_plane)
165{
166 int ret;
Philipp Zabelf6b50ef2016-07-22 12:02:45 +0200167 int alpha_ch;
Philipp Zabelb8d181e2013-10-10 16:18:45 +0200168
169 ipu_plane->ipu_ch = ipu_idmac_get(ipu_plane->ipu, ipu_plane->dma);
170 if (IS_ERR(ipu_plane->ipu_ch)) {
171 ret = PTR_ERR(ipu_plane->ipu_ch);
172 DRM_ERROR("failed to get idmac channel: %d\n", ret);
173 return ret;
174 }
175
Philipp Zabelf6b50ef2016-07-22 12:02:45 +0200176 alpha_ch = ipu_channel_alpha_channel(ipu_plane->dma);
177 if (alpha_ch >= 0) {
178 ipu_plane->alpha_ch = ipu_idmac_get(ipu_plane->ipu, alpha_ch);
179 if (IS_ERR(ipu_plane->alpha_ch)) {
180 ret = PTR_ERR(ipu_plane->alpha_ch);
181 DRM_ERROR("failed to get alpha idmac channel %d: %d\n",
182 alpha_ch, ret);
183 return ret;
184 }
185 }
186
Philipp Zabelb8d181e2013-10-10 16:18:45 +0200187 ipu_plane->dmfc = ipu_dmfc_get(ipu_plane->ipu, ipu_plane->dma);
188 if (IS_ERR(ipu_plane->dmfc)) {
189 ret = PTR_ERR(ipu_plane->dmfc);
190 DRM_ERROR("failed to get dmfc: ret %d\n", ret);
191 goto err_out;
192 }
193
194 if (ipu_plane->dp_flow >= 0) {
195 ipu_plane->dp = ipu_dp_get(ipu_plane->ipu, ipu_plane->dp_flow);
196 if (IS_ERR(ipu_plane->dp)) {
197 ret = PTR_ERR(ipu_plane->dp);
198 DRM_ERROR("failed to get dp flow: %d\n", ret);
199 goto err_out;
200 }
201 }
202
203 return 0;
204err_out:
205 ipu_plane_put_resources(ipu_plane);
206
207 return ret;
208}
209
Philipp Zabelf6b50ef2016-07-22 12:02:45 +0200210static bool ipu_plane_separate_alpha(struct ipu_plane *ipu_plane)
211{
212 switch (ipu_plane->base.state->fb->format->format) {
213 case DRM_FORMAT_RGB565_A8:
214 case DRM_FORMAT_BGR565_A8:
215 case DRM_FORMAT_RGB888_A8:
216 case DRM_FORMAT_BGR888_A8:
217 case DRM_FORMAT_RGBX8888_A8:
218 case DRM_FORMAT_BGRX8888_A8:
219 return true;
220 default:
221 return false;
222 }
223}
224
Liu Ying33f14232016-07-08 17:40:55 +0800225static void ipu_plane_enable(struct ipu_plane *ipu_plane)
Philipp Zabelb8d181e2013-10-10 16:18:45 +0200226{
Philipp Zabel285bbb02014-04-14 23:53:20 +0200227 if (ipu_plane->dp)
228 ipu_dp_enable(ipu_plane->ipu);
Philipp Zabelb8d181e2013-10-10 16:18:45 +0200229 ipu_dmfc_enable_channel(ipu_plane->dmfc);
230 ipu_idmac_enable_channel(ipu_plane->ipu_ch);
Philipp Zabelf6b50ef2016-07-22 12:02:45 +0200231 if (ipu_plane_separate_alpha(ipu_plane))
232 ipu_idmac_enable_channel(ipu_plane->alpha_ch);
Philipp Zabelb8d181e2013-10-10 16:18:45 +0200233 if (ipu_plane->dp)
234 ipu_dp_enable_channel(ipu_plane->dp);
Philipp Zabelb8d181e2013-10-10 16:18:45 +0200235}
236
Philipp Zabeleb8c8882017-02-24 18:31:05 +0100237void ipu_plane_disable(struct ipu_plane *ipu_plane, bool disable_dp_channel)
Philipp Zabelb8d181e2013-10-10 16:18:45 +0200238{
Lucas Stachdf4b2232016-08-11 11:18:50 +0200239 DRM_DEBUG_KMS("[%d] %s\n", __LINE__, __func__);
240
Philipp Zabelb8d181e2013-10-10 16:18:45 +0200241 ipu_idmac_wait_busy(ipu_plane->ipu_ch, 50);
242
Philipp Zabeleb8c8882017-02-24 18:31:05 +0100243 if (ipu_plane->dp && disable_dp_channel)
244 ipu_dp_disable_channel(ipu_plane->dp, false);
Philipp Zabelb8d181e2013-10-10 16:18:45 +0200245 ipu_idmac_disable_channel(ipu_plane->ipu_ch);
Philipp Zabelf6b50ef2016-07-22 12:02:45 +0200246 if (ipu_plane->alpha_ch)
247 ipu_idmac_disable_channel(ipu_plane->alpha_ch);
Philipp Zabelb8d181e2013-10-10 16:18:45 +0200248 ipu_dmfc_disable_channel(ipu_plane->dmfc);
Philipp Zabel285bbb02014-04-14 23:53:20 +0200249 if (ipu_plane->dp)
250 ipu_dp_disable(ipu_plane->ipu);
Lucas Stach00514e82017-03-08 12:13:21 +0100251 if (ipu_prg_present(ipu_plane->ipu))
252 ipu_prg_channel_disable(ipu_plane->ipu_ch);
Philipp Zabelb8d181e2013-10-10 16:18:45 +0200253}
254
Philipp Zabeleb8c8882017-02-24 18:31:05 +0100255void ipu_plane_disable_deferred(struct drm_plane *plane)
256{
257 struct ipu_plane *ipu_plane = to_ipu_plane(plane);
258
259 if (ipu_plane->disabling) {
260 ipu_plane->disabling = false;
261 ipu_plane_disable(ipu_plane, false);
262 }
263}
264EXPORT_SYMBOL_GPL(ipu_plane_disable_deferred);
265
Philipp Zabelb8d181e2013-10-10 16:18:45 +0200266static void ipu_plane_destroy(struct drm_plane *plane)
267{
268 struct ipu_plane *ipu_plane = to_ipu_plane(plane);
269
270 DRM_DEBUG_KMS("[%d] %s\n", __LINE__, __func__);
271
Philipp Zabelb8d181e2013-10-10 16:18:45 +0200272 drm_plane_cleanup(plane);
273 kfree(ipu_plane);
274}
275
Fabio Estevam2ead44a2018-02-13 17:11:34 -0200276static void ipu_plane_state_reset(struct drm_plane *plane)
Lucas Stach00514e82017-03-08 12:13:21 +0100277{
278 struct ipu_plane_state *ipu_state;
279
280 if (plane->state) {
281 ipu_state = to_ipu_plane_state(plane->state);
282 __drm_atomic_helper_plane_destroy_state(plane->state);
283 kfree(ipu_state);
284 }
285
286 ipu_state = kzalloc(sizeof(*ipu_state), GFP_KERNEL);
287
288 if (ipu_state) {
289 ipu_state->base.plane = plane;
Robert Fossc2c446a2017-05-19 16:50:17 -0400290 ipu_state->base.rotation = DRM_MODE_ROTATE_0;
Lucas Stach00514e82017-03-08 12:13:21 +0100291 }
292
293 plane->state = &ipu_state->base;
294}
295
Fabio Estevam2ead44a2018-02-13 17:11:34 -0200296static struct drm_plane_state *
297ipu_plane_duplicate_state(struct drm_plane *plane)
Lucas Stach00514e82017-03-08 12:13:21 +0100298{
299 struct ipu_plane_state *state;
300
301 if (WARN_ON(!plane->state))
302 return NULL;
303
304 state = kmalloc(sizeof(*state), GFP_KERNEL);
305 if (state)
306 __drm_atomic_helper_plane_duplicate_state(plane, &state->base);
307
308 return &state->base;
309}
310
Fabio Estevam2ead44a2018-02-13 17:11:34 -0200311static void ipu_plane_destroy_state(struct drm_plane *plane,
312 struct drm_plane_state *state)
Lucas Stach00514e82017-03-08 12:13:21 +0100313{
314 struct ipu_plane_state *ipu_state = to_ipu_plane_state(state);
315
316 __drm_atomic_helper_plane_destroy_state(state);
317 kfree(ipu_state);
318}
319
Lucas Stach37aca512017-11-10 17:10:01 +0100320static bool ipu_plane_format_mod_supported(struct drm_plane *plane,
321 uint32_t format, uint64_t modifier)
322{
323 struct ipu_soc *ipu = to_ipu_plane(plane)->ipu;
324
325 /* linear is supported for all planes and formats */
326 if (modifier == DRM_FORMAT_MOD_LINEAR)
327 return true;
328
329 /* without a PRG there are no supported modifiers */
330 if (!ipu_prg_present(ipu))
331 return false;
332
333 return ipu_prg_format_supported(ipu, format, modifier);
334}
335
Liu Ying8b3ce872016-05-24 18:10:40 +0800336static const struct drm_plane_funcs ipu_plane_funcs = {
Liu Ying5f2f9112016-07-08 17:40:59 +0800337 .update_plane = drm_atomic_helper_update_plane,
338 .disable_plane = drm_atomic_helper_disable_plane,
Philipp Zabelb8d181e2013-10-10 16:18:45 +0200339 .destroy = ipu_plane_destroy,
Lucas Stach00514e82017-03-08 12:13:21 +0100340 .reset = ipu_plane_state_reset,
341 .atomic_duplicate_state = ipu_plane_duplicate_state,
342 .atomic_destroy_state = ipu_plane_destroy_state,
Lucas Stach37aca512017-11-10 17:10:01 +0100343 .format_mod_supported = ipu_plane_format_mod_supported,
Philipp Zabelb8d181e2013-10-10 16:18:45 +0200344};
345
Liu Ying33f14232016-07-08 17:40:55 +0800346static int ipu_plane_atomic_check(struct drm_plane *plane,
347 struct drm_plane_state *state)
348{
349 struct drm_plane_state *old_state = plane->state;
350 struct drm_crtc_state *crtc_state;
351 struct device *dev = plane->dev->dev;
352 struct drm_framebuffer *fb = state->fb;
353 struct drm_framebuffer *old_fb = old_state->fb;
Philipp Zabelf6b50ef2016-07-22 12:02:45 +0200354 unsigned long eba, ubo, vbo, old_ubo, old_vbo, alpha_eba;
Philipp Zabel03ee3da2016-10-19 10:50:26 +0200355 bool can_position = (plane->type == DRM_PLANE_TYPE_OVERLAY);
Philipp Zabel5fb57ab2016-10-18 12:30:36 +0200356 int hsub, vsub;
Philipp Zabel03ee3da2016-10-19 10:50:26 +0200357 int ret;
Liu Ying33f14232016-07-08 17:40:55 +0800358
359 /* Ok to disable */
360 if (!fb)
Liu Ying5f2f9112016-07-08 17:40:59 +0800361 return 0;
362
363 if (!state->crtc)
364 return -EINVAL;
365
366 crtc_state =
367 drm_atomic_get_existing_crtc_state(state->state, state->crtc);
368 if (WARN_ON(!crtc_state))
369 return -EINVAL;
Liu Ying33f14232016-07-08 17:40:55 +0800370
Ville Syrjälä81af63a2018-01-23 19:08:57 +0200371 ret = drm_atomic_helper_check_plane_state(state, crtc_state,
Ville Syrjäläa01cb8b2017-11-01 22:16:19 +0200372 DRM_PLANE_HELPER_NO_SCALING,
373 DRM_PLANE_HELPER_NO_SCALING,
374 can_position, true);
Philipp Zabel03ee3da2016-10-19 10:50:26 +0200375 if (ret)
376 return ret;
377
Liu Ying33f14232016-07-08 17:40:55 +0800378 /* CRTC should be enabled */
Liu Ying5f2f9112016-07-08 17:40:59 +0800379 if (!crtc_state->enable)
Liu Ying33f14232016-07-08 17:40:55 +0800380 return -EINVAL;
381
Liu Ying33f14232016-07-08 17:40:55 +0800382 switch (plane->type) {
383 case DRM_PLANE_TYPE_PRIMARY:
Liu Ying33f14232016-07-08 17:40:55 +0800384 /* full plane minimum width is 13 pixels */
Philipp Zabel03ee3da2016-10-19 10:50:26 +0200385 if (drm_rect_width(&state->dst) < 13)
Liu Ying33f14232016-07-08 17:40:55 +0800386 return -EINVAL;
387 break;
388 case DRM_PLANE_TYPE_OVERLAY:
Liu Ying33f14232016-07-08 17:40:55 +0800389 break;
390 default:
Philipp Zabel03ee3da2016-10-19 10:50:26 +0200391 dev_warn(dev, "Unsupported plane type %d\n", plane->type);
Liu Ying33f14232016-07-08 17:40:55 +0800392 return -EINVAL;
393 }
394
Philipp Zabel03ee3da2016-10-19 10:50:26 +0200395 if (drm_rect_height(&state->dst) < 2)
Liu Ying33f14232016-07-08 17:40:55 +0800396 return -EINVAL;
397
398 /*
Liu Ying17809992016-08-26 15:30:44 +0800399 * We support resizing active plane or changing its format by
400 * forcing CRTC mode change in plane's ->atomic_check callback
401 * and disabling all affected active planes in CRTC's ->atomic_disable
402 * callback. The planes will be reenabled in plane's ->atomic_update
403 * callback.
Liu Ying33f14232016-07-08 17:40:55 +0800404 */
Philipp Zabel03ee3da2016-10-19 10:50:26 +0200405 if (old_fb &&
406 (drm_rect_width(&state->dst) != drm_rect_width(&old_state->dst) ||
407 drm_rect_height(&state->dst) != drm_rect_height(&old_state->dst) ||
408 fb->format != old_fb->format))
Liu Ying17809992016-08-26 15:30:44 +0800409 crtc_state->mode_changed = true;
Liu Ying33f14232016-07-08 17:40:55 +0800410
Philipp Zabel0bfd56f2016-07-22 12:01:11 +0200411 eba = drm_plane_state_to_eba(state, 0);
Liu Ying33f14232016-07-08 17:40:55 +0800412
413 if (eba & 0x7)
414 return -EINVAL;
415
416 if (fb->pitches[0] < 1 || fb->pitches[0] > 16384)
417 return -EINVAL;
418
419 if (old_fb && fb->pitches[0] != old_fb->pitches[0])
Liu Ying17809992016-08-26 15:30:44 +0800420 crtc_state->mode_changed = true;
Liu Ying33f14232016-07-08 17:40:55 +0800421
Ville Syrjälä438b74a2016-12-14 23:32:55 +0200422 switch (fb->format->format) {
Liu Ying33f14232016-07-08 17:40:55 +0800423 case DRM_FORMAT_YUV420:
424 case DRM_FORMAT_YVU420:
Philipp Zabeleae13c92016-10-18 12:31:40 +0200425 case DRM_FORMAT_YUV422:
426 case DRM_FORMAT_YVU422:
427 case DRM_FORMAT_YUV444:
428 case DRM_FORMAT_YVU444:
Liu Ying33f14232016-07-08 17:40:55 +0800429 /*
430 * Multiplanar formats have to meet the following restrictions:
431 * - The (up to) three plane addresses are EBA, EBA+UBO, EBA+VBO
432 * - EBA, UBO and VBO are a multiple of 8
433 * - UBO and VBO are unsigned and not larger than 0xfffff8
434 * - Only EBA may be changed while scanout is active
435 * - The strides of U and V planes must be identical.
436 */
Liu Ying33f14232016-07-08 17:40:55 +0800437 vbo = drm_plane_state_to_vbo(state);
438
Philipp Zabeleae13c92016-10-18 12:31:40 +0200439 if (vbo & 0x7 || vbo > 0xfffff8)
Liu Ying33f14232016-07-08 17:40:55 +0800440 return -EINVAL;
441
Ville Syrjälädbd4d572016-11-18 21:53:10 +0200442 if (old_fb && (fb->format == old_fb->format)) {
Liu Ying33f14232016-07-08 17:40:55 +0800443 old_vbo = drm_plane_state_to_vbo(old_state);
Philipp Zabeleae13c92016-10-18 12:31:40 +0200444 if (vbo != old_vbo)
Philipp Zabel181c9bf2016-10-18 12:13:15 +0200445 crtc_state->mode_changed = true;
Liu Ying33f14232016-07-08 17:40:55 +0800446 }
447
448 if (fb->pitches[1] != fb->pitches[2])
449 return -EINVAL;
450
Philipp Zabeleae13c92016-10-18 12:31:40 +0200451 /* fall-through */
452 case DRM_FORMAT_NV12:
453 case DRM_FORMAT_NV16:
454 ubo = drm_plane_state_to_ubo(state);
455
456 if (ubo & 0x7 || ubo > 0xfffff8)
457 return -EINVAL;
458
Ville Syrjälädbd4d572016-11-18 21:53:10 +0200459 if (old_fb && (fb->format == old_fb->format)) {
Philipp Zabeleae13c92016-10-18 12:31:40 +0200460 old_ubo = drm_plane_state_to_ubo(old_state);
461 if (ubo != old_ubo)
462 crtc_state->mode_changed = true;
463 }
464
Liu Ying33f14232016-07-08 17:40:55 +0800465 if (fb->pitches[1] < 1 || fb->pitches[1] > 16384)
466 return -EINVAL;
467
468 if (old_fb && old_fb->pitches[1] != fb->pitches[1])
Liu Ying17809992016-08-26 15:30:44 +0800469 crtc_state->mode_changed = true;
Philipp Zabel5fb57ab2016-10-18 12:30:36 +0200470
471 /*
472 * The x/y offsets must be even in case of horizontal/vertical
473 * chroma subsampling.
474 */
Ville Syrjälä438b74a2016-12-14 23:32:55 +0200475 hsub = drm_format_horz_chroma_subsampling(fb->format->format);
476 vsub = drm_format_vert_chroma_subsampling(fb->format->format);
Philipp Zabel03ee3da2016-10-19 10:50:26 +0200477 if (((state->src.x1 >> 16) & (hsub - 1)) ||
478 ((state->src.y1 >> 16) & (vsub - 1)))
Philipp Zabel5fb57ab2016-10-18 12:30:36 +0200479 return -EINVAL;
Philipp Zabelf6b50ef2016-07-22 12:02:45 +0200480 break;
481 case DRM_FORMAT_RGB565_A8:
482 case DRM_FORMAT_BGR565_A8:
483 case DRM_FORMAT_RGB888_A8:
484 case DRM_FORMAT_BGR888_A8:
485 case DRM_FORMAT_RGBX8888_A8:
486 case DRM_FORMAT_BGRX8888_A8:
487 alpha_eba = drm_plane_state_to_eba(state, 1);
488 if (alpha_eba & 0x7)
489 return -EINVAL;
490
491 if (fb->pitches[1] < 1 || fb->pitches[1] > 16384)
492 return -EINVAL;
493
494 if (old_fb && old_fb->pitches[1] != fb->pitches[1])
495 crtc_state->mode_changed = true;
496 break;
Liu Ying33f14232016-07-08 17:40:55 +0800497 }
498
499 return 0;
500}
501
502static void ipu_plane_atomic_disable(struct drm_plane *plane,
503 struct drm_plane_state *old_state)
504{
Philipp Zabeleb8c8882017-02-24 18:31:05 +0100505 struct ipu_plane *ipu_plane = to_ipu_plane(plane);
506
507 if (ipu_plane->dp)
508 ipu_dp_disable_channel(ipu_plane->dp, true);
509 ipu_plane->disabling = true;
Liu Ying33f14232016-07-08 17:40:55 +0800510}
511
Lucas Stach00514e82017-03-08 12:13:21 +0100512static int ipu_chan_assign_axi_id(int ipu_chan)
513{
514 switch (ipu_chan) {
515 case IPUV3_CHANNEL_MEM_BG_SYNC:
516 return 1;
517 case IPUV3_CHANNEL_MEM_FG_SYNC:
518 return 2;
519 case IPUV3_CHANNEL_MEM_DC_SYNC:
520 return 3;
521 default:
522 return 0;
523 }
524}
525
Philipp Zabel790cb4c2017-05-19 16:05:51 +0200526static void ipu_calculate_bursts(u32 width, u32 cpp, u32 stride,
527 u8 *burstsize, u8 *num_bursts)
528{
529 const unsigned int width_bytes = width * cpp;
530 unsigned int npb, bursts;
531
532 /* Maximum number of pixels per burst without overshooting stride */
533 for (npb = 64 / cpp; npb > 0; --npb) {
534 if (round_up(width_bytes, npb * cpp) <= stride)
535 break;
536 }
537 *burstsize = npb;
538
539 /* Maximum number of consecutive bursts without overshooting stride */
540 for (bursts = 8; bursts > 1; bursts /= 2) {
541 if (round_up(width_bytes, npb * cpp * bursts) <= stride)
542 break;
543 }
544 *num_bursts = bursts;
545}
546
Liu Ying33f14232016-07-08 17:40:55 +0800547static void ipu_plane_atomic_update(struct drm_plane *plane,
548 struct drm_plane_state *old_state)
549{
550 struct ipu_plane *ipu_plane = to_ipu_plane(plane);
551 struct drm_plane_state *state = plane->state;
Lucas Stach00514e82017-03-08 12:13:21 +0100552 struct ipu_plane_state *ipu_state = to_ipu_plane_state(state);
Philipp Zabel3fd8b292016-10-18 11:40:25 +0200553 struct drm_crtc_state *crtc_state = state->crtc->state;
554 struct drm_framebuffer *fb = state->fb;
Philipp Zabel2e9a7122016-10-20 15:37:52 +0200555 struct drm_rect *dst = &state->dst;
Philipp Zabel3fd8b292016-10-18 11:40:25 +0200556 unsigned long eba, ubo, vbo;
Philipp Zabelf6b50ef2016-07-22 12:02:45 +0200557 unsigned long alpha_eba = 0;
Liu Ying33f14232016-07-08 17:40:55 +0800558 enum ipu_color_space ics;
Lucas Stach00514e82017-03-08 12:13:21 +0100559 unsigned int axi_id = 0;
Philipp Zabel790cb4c2017-05-19 16:05:51 +0200560 const struct drm_format_info *info;
561 u8 burstsize, num_bursts;
562 u32 width, height;
Philipp Zabel3fd8b292016-10-18 11:40:25 +0200563 int active;
Liu Ying33f14232016-07-08 17:40:55 +0800564
Philipp Zabel2e9a7122016-10-20 15:37:52 +0200565 if (ipu_plane->dp_flow == IPU_DP_FLOW_SYNC_FG)
566 ipu_dp_set_window_pos(ipu_plane->dp, dst->x1, dst->y1);
567
Philipp Zabel0bfd56f2016-07-22 12:01:11 +0200568 eba = drm_plane_state_to_eba(state, 0);
Liu Ying5f4df0c2016-08-26 15:30:43 +0800569
Lucas Stach00514e82017-03-08 12:13:21 +0100570 /*
571 * Configure PRG channel and attached PRE, this changes the EBA to an
572 * internal SRAM location.
573 */
574 if (ipu_state->use_pre) {
575 axi_id = ipu_chan_assign_axi_id(ipu_plane->dma);
576 ipu_prg_channel_configure(ipu_plane->ipu_ch, axi_id,
577 drm_rect_width(&state->src) >> 16,
578 drm_rect_height(&state->src) >> 16,
Lucas Stacha2ceec52017-11-10 17:09:59 +0100579 fb->pitches[0], fb->format->format,
Lucas Stach9222f762017-11-10 17:10:00 +0100580 fb->modifier, &eba);
Lucas Stach00514e82017-03-08 12:13:21 +0100581 }
582
Philipp Zabel3fd8b292016-10-18 11:40:25 +0200583 if (old_state->fb && !drm_atomic_crtc_needs_modeset(crtc_state)) {
Lucas Stach00514e82017-03-08 12:13:21 +0100584 /* nothing to do if PRE is used */
585 if (ipu_state->use_pre)
586 return;
Philipp Zabel3fd8b292016-10-18 11:40:25 +0200587 active = ipu_idmac_get_current_buffer(ipu_plane->ipu_ch);
588 ipu_cpmem_set_buffer(ipu_plane->ipu_ch, !active, eba);
589 ipu_idmac_select_buffer(ipu_plane->ipu_ch, !active);
Philipp Zabelf6b50ef2016-07-22 12:02:45 +0200590 if (ipu_plane_separate_alpha(ipu_plane)) {
591 active = ipu_idmac_get_current_buffer(ipu_plane->alpha_ch);
592 ipu_cpmem_set_buffer(ipu_plane->alpha_ch, !active,
593 alpha_eba);
594 ipu_idmac_select_buffer(ipu_plane->alpha_ch, !active);
595 }
Philipp Zabel3fd8b292016-10-18 11:40:25 +0200596 return;
Liu Ying33f14232016-07-08 17:40:55 +0800597 }
598
Philipp Zabel5be5dd32016-08-05 11:55:18 +0200599 ics = ipu_drm_fourcc_to_colorspace(fb->format->format);
Liu Ying33f14232016-07-08 17:40:55 +0800600 switch (ipu_plane->dp_flow) {
601 case IPU_DP_FLOW_SYNC_BG:
Philipp Zabel5be5dd32016-08-05 11:55:18 +0200602 ipu_dp_setup_channel(ipu_plane->dp, ics, IPUV3_COLORSPACE_RGB);
Liu Ying33f14232016-07-08 17:40:55 +0800603 ipu_dp_set_global_alpha(ipu_plane->dp, true, 0, true);
604 break;
605 case IPU_DP_FLOW_SYNC_FG:
Liu Ying33f14232016-07-08 17:40:55 +0800606 ipu_dp_setup_channel(ipu_plane->dp, ics,
607 IPUV3_COLORSPACE_UNKNOWN);
Liu Ying33f14232016-07-08 17:40:55 +0800608 /* Enable local alpha on partial plane */
Philipp Zabel58dff392017-05-19 17:47:33 +0200609 switch (fb->format->format) {
Liu Ying33f14232016-07-08 17:40:55 +0800610 case DRM_FORMAT_ARGB1555:
611 case DRM_FORMAT_ABGR1555:
612 case DRM_FORMAT_RGBA5551:
613 case DRM_FORMAT_BGRA5551:
614 case DRM_FORMAT_ARGB4444:
615 case DRM_FORMAT_ARGB8888:
616 case DRM_FORMAT_ABGR8888:
617 case DRM_FORMAT_RGBA8888:
618 case DRM_FORMAT_BGRA8888:
Philipp Zabelf6b50ef2016-07-22 12:02:45 +0200619 case DRM_FORMAT_RGB565_A8:
620 case DRM_FORMAT_BGR565_A8:
621 case DRM_FORMAT_RGB888_A8:
622 case DRM_FORMAT_BGR888_A8:
623 case DRM_FORMAT_RGBX8888_A8:
624 case DRM_FORMAT_BGRX8888_A8:
Liu Ying33f14232016-07-08 17:40:55 +0800625 ipu_dp_set_global_alpha(ipu_plane->dp, false, 0, false);
626 break;
627 default:
Philipp Zabel86126742016-10-18 17:09:30 +0200628 ipu_dp_set_global_alpha(ipu_plane->dp, true, 0, true);
Liu Ying33f14232016-07-08 17:40:55 +0800629 break;
630 }
631 }
632
Philipp Zabel2e9a7122016-10-20 15:37:52 +0200633 ipu_dmfc_config_wait4eot(ipu_plane->dmfc, drm_rect_width(dst));
Liu Ying33f14232016-07-08 17:40:55 +0800634
Philipp Zabel790cb4c2017-05-19 16:05:51 +0200635 width = drm_rect_width(&state->src) >> 16;
636 height = drm_rect_height(&state->src) >> 16;
637 info = drm_format_info(fb->format->format);
638 ipu_calculate_bursts(width, info->cpp[0], fb->pitches[0],
639 &burstsize, &num_bursts);
640
Liu Ying33f14232016-07-08 17:40:55 +0800641 ipu_cpmem_zero(ipu_plane->ipu_ch);
Philipp Zabel790cb4c2017-05-19 16:05:51 +0200642 ipu_cpmem_set_resolution(ipu_plane->ipu_ch, width, height);
Philipp Zabel58dff392017-05-19 17:47:33 +0200643 ipu_cpmem_set_fmt(ipu_plane->ipu_ch, fb->format->format);
Philipp Zabel790cb4c2017-05-19 16:05:51 +0200644 ipu_cpmem_set_burstsize(ipu_plane->ipu_ch, burstsize);
Liu Ying33f14232016-07-08 17:40:55 +0800645 ipu_cpmem_set_high_priority(ipu_plane->ipu_ch);
646 ipu_idmac_set_double_buffer(ipu_plane->ipu_ch, 1);
Philipp Zabel58dff392017-05-19 17:47:33 +0200647 ipu_cpmem_set_stride(ipu_plane->ipu_ch, fb->pitches[0]);
Lucas Stach00514e82017-03-08 12:13:21 +0100648 ipu_cpmem_set_axi_id(ipu_plane->ipu_ch, axi_id);
Philipp Zabel790cb4c2017-05-19 16:05:51 +0200649
Ville Syrjälä438b74a2016-12-14 23:32:55 +0200650 switch (fb->format->format) {
Philipp Zabel3fd8b292016-10-18 11:40:25 +0200651 case DRM_FORMAT_YUV420:
652 case DRM_FORMAT_YVU420:
Philipp Zabeleae13c92016-10-18 12:31:40 +0200653 case DRM_FORMAT_YUV422:
654 case DRM_FORMAT_YVU422:
655 case DRM_FORMAT_YUV444:
656 case DRM_FORMAT_YVU444:
Philipp Zabel3fd8b292016-10-18 11:40:25 +0200657 ubo = drm_plane_state_to_ubo(state);
658 vbo = drm_plane_state_to_vbo(state);
Ville Syrjälä438b74a2016-12-14 23:32:55 +0200659 if (fb->format->format == DRM_FORMAT_YVU420 ||
660 fb->format->format == DRM_FORMAT_YVU422 ||
661 fb->format->format == DRM_FORMAT_YVU444)
Philipp Zabeleae13c92016-10-18 12:31:40 +0200662 swap(ubo, vbo);
Philipp Zabel3fd8b292016-10-18 11:40:25 +0200663
Philipp Zabeleae13c92016-10-18 12:31:40 +0200664 ipu_cpmem_set_yuv_planar_full(ipu_plane->ipu_ch,
665 fb->pitches[1], ubo, vbo);
Philipp Zabel3fd8b292016-10-18 11:40:25 +0200666
667 dev_dbg(ipu_plane->base.dev->dev,
668 "phy = %lu %lu %lu, x = %d, y = %d", eba, ubo, vbo,
Philipp Zabel03ee3da2016-10-19 10:50:26 +0200669 state->src.x1 >> 16, state->src.y1 >> 16);
Philipp Zabel3fd8b292016-10-18 11:40:25 +0200670 break;
Philipp Zabeleae13c92016-10-18 12:31:40 +0200671 case DRM_FORMAT_NV12:
672 case DRM_FORMAT_NV16:
673 ubo = drm_plane_state_to_ubo(state);
674
675 ipu_cpmem_set_yuv_planar_full(ipu_plane->ipu_ch,
676 fb->pitches[1], ubo, ubo);
677
678 dev_dbg(ipu_plane->base.dev->dev,
679 "phy = %lu %lu, x = %d, y = %d", eba, ubo,
Philipp Zabel03ee3da2016-10-19 10:50:26 +0200680 state->src.x1 >> 16, state->src.y1 >> 16);
Philipp Zabeleae13c92016-10-18 12:31:40 +0200681 break;
Philipp Zabelf6b50ef2016-07-22 12:02:45 +0200682 case DRM_FORMAT_RGB565_A8:
683 case DRM_FORMAT_BGR565_A8:
684 case DRM_FORMAT_RGB888_A8:
685 case DRM_FORMAT_BGR888_A8:
686 case DRM_FORMAT_RGBX8888_A8:
687 case DRM_FORMAT_BGRX8888_A8:
688 alpha_eba = drm_plane_state_to_eba(state, 1);
Philipp Zabel790cb4c2017-05-19 16:05:51 +0200689 num_bursts = 0;
Philipp Zabelf6b50ef2016-07-22 12:02:45 +0200690
691 dev_dbg(ipu_plane->base.dev->dev, "phys = %lu %lu, x = %d, y = %d",
692 eba, alpha_eba, state->src.x1 >> 16, state->src.y1 >> 16);
693
694 ipu_cpmem_set_burstsize(ipu_plane->ipu_ch, 16);
695
696 ipu_cpmem_zero(ipu_plane->alpha_ch);
697 ipu_cpmem_set_resolution(ipu_plane->alpha_ch,
698 drm_rect_width(&state->src) >> 16,
699 drm_rect_height(&state->src) >> 16);
700 ipu_cpmem_set_format_passthrough(ipu_plane->alpha_ch, 8);
701 ipu_cpmem_set_high_priority(ipu_plane->alpha_ch);
702 ipu_idmac_set_double_buffer(ipu_plane->alpha_ch, 1);
Philipp Zabel58dff392017-05-19 17:47:33 +0200703 ipu_cpmem_set_stride(ipu_plane->alpha_ch, fb->pitches[1]);
Philipp Zabelf6b50ef2016-07-22 12:02:45 +0200704 ipu_cpmem_set_burstsize(ipu_plane->alpha_ch, 16);
705 ipu_cpmem_set_buffer(ipu_plane->alpha_ch, 0, alpha_eba);
706 ipu_cpmem_set_buffer(ipu_plane->alpha_ch, 1, alpha_eba);
707 break;
Philipp Zabel3fd8b292016-10-18 11:40:25 +0200708 default:
709 dev_dbg(ipu_plane->base.dev->dev, "phys = %lu, x = %d, y = %d",
Philipp Zabel03ee3da2016-10-19 10:50:26 +0200710 eba, state->src.x1 >> 16, state->src.y1 >> 16);
Philipp Zabel3fd8b292016-10-18 11:40:25 +0200711 break;
712 }
713 ipu_cpmem_set_buffer(ipu_plane->ipu_ch, 0, eba);
714 ipu_cpmem_set_buffer(ipu_plane->ipu_ch, 1, eba);
Philipp Zabel790cb4c2017-05-19 16:05:51 +0200715 ipu_idmac_lock_enable(ipu_plane->ipu_ch, num_bursts);
Liu Ying33f14232016-07-08 17:40:55 +0800716 ipu_plane_enable(ipu_plane);
717}
718
719static const struct drm_plane_helper_funcs ipu_plane_helper_funcs = {
Noralf Trønnesbd106352017-08-13 15:31:53 +0200720 .prepare_fb = drm_gem_fb_prepare_fb,
Liu Ying33f14232016-07-08 17:40:55 +0800721 .atomic_check = ipu_plane_atomic_check,
722 .atomic_disable = ipu_plane_atomic_disable,
723 .atomic_update = ipu_plane_atomic_update,
724};
725
Lucas Stach00514e82017-03-08 12:13:21 +0100726int ipu_planes_assign_pre(struct drm_device *dev,
727 struct drm_atomic_state *state)
728{
Lucas Stach9222f762017-11-10 17:10:00 +0100729 struct drm_crtc_state *old_crtc_state, *crtc_state;
Lucas Stach00514e82017-03-08 12:13:21 +0100730 struct drm_plane_state *plane_state;
Lucas Stach9222f762017-11-10 17:10:00 +0100731 struct ipu_plane_state *ipu_state;
732 struct ipu_plane *ipu_plane;
Lucas Stach00514e82017-03-08 12:13:21 +0100733 struct drm_plane *plane;
Lucas Stach9222f762017-11-10 17:10:00 +0100734 struct drm_crtc *crtc;
Lucas Stach00514e82017-03-08 12:13:21 +0100735 int available_pres = ipu_prg_max_active_channels();
Lucas Stach9222f762017-11-10 17:10:00 +0100736 int ret, i;
737
738 for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state, crtc_state, i) {
739 ret = drm_atomic_add_affected_planes(state, crtc);
740 if (ret)
741 return ret;
742 }
743
744 /*
745 * We are going over the planes in 2 passes: first we assign PREs to
746 * planes with a tiling modifier, which need the PREs to resolve into
747 * linear. Any failure to assign a PRE there is fatal. In the second
748 * pass we try to assign PREs to linear FBs, to improve memory access
749 * patterns for them. Failure at this point is non-fatal, as we can
750 * scan out linear FBs without a PRE.
751 */
752 for_each_new_plane_in_state(state, plane, plane_state, i) {
753 ipu_state = to_ipu_plane_state(plane_state);
754 ipu_plane = to_ipu_plane(plane);
755
756 if (!plane_state->fb) {
757 ipu_state->use_pre = false;
758 continue;
759 }
760
761 if (!(plane_state->fb->flags & DRM_MODE_FB_MODIFIERS) ||
762 plane_state->fb->modifier == DRM_FORMAT_MOD_LINEAR)
763 continue;
764
765 if (!ipu_prg_present(ipu_plane->ipu) || !available_pres)
766 return -EINVAL;
767
768 if (!ipu_prg_format_supported(ipu_plane->ipu,
769 plane_state->fb->format->format,
770 plane_state->fb->modifier))
771 return -EINVAL;
772
773 ipu_state->use_pre = true;
774 available_pres--;
775 }
Lucas Stach00514e82017-03-08 12:13:21 +0100776
Maarten Lankhorst30ea7522017-07-12 10:13:40 +0200777 for_each_new_plane_in_state(state, plane, plane_state, i) {
Lucas Stach9222f762017-11-10 17:10:00 +0100778 ipu_state = to_ipu_plane_state(plane_state);
779 ipu_plane = to_ipu_plane(plane);
780
781 if (!plane_state->fb) {
782 ipu_state->use_pre = false;
783 continue;
784 }
785
786 if ((plane_state->fb->flags & DRM_MODE_FB_MODIFIERS) &&
787 plane_state->fb->modifier != DRM_FORMAT_MOD_LINEAR)
788 continue;
789
790 /* make sure that modifier is initialized */
791 plane_state->fb->modifier = DRM_FORMAT_MOD_LINEAR;
Lucas Stach00514e82017-03-08 12:13:21 +0100792
793 if (ipu_prg_present(ipu_plane->ipu) && available_pres &&
Lucas Stach00514e82017-03-08 12:13:21 +0100794 ipu_prg_format_supported(ipu_plane->ipu,
795 plane_state->fb->format->format,
796 plane_state->fb->modifier)) {
797 ipu_state->use_pre = true;
798 available_pres--;
799 } else {
800 ipu_state->use_pre = false;
801 }
802 }
803
804 return 0;
805}
806EXPORT_SYMBOL_GPL(ipu_planes_assign_pre);
807
Philipp Zabelb8d181e2013-10-10 16:18:45 +0200808struct ipu_plane *ipu_plane_init(struct drm_device *dev, struct ipu_soc *ipu,
809 int dma, int dp, unsigned int possible_crtcs,
Philipp Zabel43895592015-11-06 11:08:02 +0100810 enum drm_plane_type type)
Philipp Zabelb8d181e2013-10-10 16:18:45 +0200811{
812 struct ipu_plane *ipu_plane;
Lucas Stach37aca512017-11-10 17:10:01 +0100813 const uint64_t *modifiers = ipu_format_modifiers;
Philipp Zabelb8d181e2013-10-10 16:18:45 +0200814 int ret;
815
816 DRM_DEBUG_KMS("channel %d, dp flow %d, possible_crtcs=0x%x\n",
817 dma, dp, possible_crtcs);
818
819 ipu_plane = kzalloc(sizeof(*ipu_plane), GFP_KERNEL);
820 if (!ipu_plane) {
821 DRM_ERROR("failed to allocate plane\n");
822 return ERR_PTR(-ENOMEM);
823 }
824
825 ipu_plane->ipu = ipu;
826 ipu_plane->dma = dma;
827 ipu_plane->dp_flow = dp;
828
Lucas Stach37aca512017-11-10 17:10:01 +0100829 if (ipu_prg_present(ipu))
830 modifiers = pre_format_modifiers;
831
Philipp Zabel43895592015-11-06 11:08:02 +0100832 ret = drm_universal_plane_init(dev, &ipu_plane->base, possible_crtcs,
833 &ipu_plane_funcs, ipu_plane_formats,
Ben Widawskye6fc3b62017-07-23 20:46:38 -0700834 ARRAY_SIZE(ipu_plane_formats),
Lucas Stach37aca512017-11-10 17:10:01 +0100835 modifiers, type, NULL);
Philipp Zabelb8d181e2013-10-10 16:18:45 +0200836 if (ret) {
837 DRM_ERROR("failed to initialize plane\n");
838 kfree(ipu_plane);
839 return ERR_PTR(ret);
840 }
841
Liu Ying33f14232016-07-08 17:40:55 +0800842 drm_plane_helper_add(&ipu_plane->base, &ipu_plane_helper_funcs);
843
Philipp Zabelb8d181e2013-10-10 16:18:45 +0200844 return ipu_plane;
845}