blob: 79df1847a365a95eefc249552d1e9a823a6e30b6 [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>
17#include <drm/drm_fb_cma_helper.h>
18#include <drm/drm_gem_cma_helper.h>
19
Philipp Zabel39b90042013-09-30 16:13:39 +020020#include "video/imx-ipu-v3.h"
Philipp Zabelb8d181e2013-10-10 16:18:45 +020021#include "ipuv3-plane.h"
22
23#define to_ipu_plane(x) container_of(x, struct ipu_plane, base)
24
25static const uint32_t ipu_plane_formats[] = {
Philipp Zabelc639a1c2014-12-12 13:40:38 +010026 DRM_FORMAT_ARGB1555,
Philipp Zabelb8d181e2013-10-10 16:18:45 +020027 DRM_FORMAT_XRGB1555,
Philipp Zabelc639a1c2014-12-12 13:40:38 +010028 DRM_FORMAT_ABGR1555,
Philipp Zabelb8d181e2013-10-10 16:18:45 +020029 DRM_FORMAT_XBGR1555,
Philipp Zabelc639a1c2014-12-12 13:40:38 +010030 DRM_FORMAT_RGBA5551,
31 DRM_FORMAT_BGRA5551,
Lucas Stachcb166a32015-08-04 17:22:06 +020032 DRM_FORMAT_ARGB4444,
Philipp Zabelb8d181e2013-10-10 16:18:45 +020033 DRM_FORMAT_ARGB8888,
34 DRM_FORMAT_XRGB8888,
35 DRM_FORMAT_ABGR8888,
36 DRM_FORMAT_XBGR8888,
Philipp Zabel59d6b712015-04-16 15:56:40 +020037 DRM_FORMAT_RGBA8888,
38 DRM_FORMAT_RGBX8888,
39 DRM_FORMAT_BGRA8888,
40 DRM_FORMAT_BGRA8888,
Philipp Zabelb8d181e2013-10-10 16:18:45 +020041 DRM_FORMAT_YUYV,
42 DRM_FORMAT_YVYU,
43 DRM_FORMAT_YUV420,
44 DRM_FORMAT_YVU420,
Enrico Jorns33bee522015-11-24 16:29:22 +010045 DRM_FORMAT_RGB565,
Philipp Zabelb8d181e2013-10-10 16:18:45 +020046};
47
48int ipu_plane_irq(struct ipu_plane *ipu_plane)
49{
50 return ipu_idmac_channel_irq(ipu_plane->ipu, ipu_plane->ipu_ch,
51 IPU_IRQ_EOF);
52}
53
54static int calc_vref(struct drm_display_mode *mode)
55{
56 unsigned long htotal, vtotal;
57
58 htotal = mode->htotal;
59 vtotal = mode->vtotal;
60
61 if (!htotal || !vtotal)
62 return 60;
63
64 return DIV_ROUND_UP(mode->clock * 1000, vtotal * htotal);
65}
66
67static inline int calc_bandwidth(int width, int height, unsigned int vref)
68{
69 return width * height * vref;
70}
71
72int ipu_plane_set_base(struct ipu_plane *ipu_plane, struct drm_framebuffer *fb,
73 int x, int y)
74{
Philipp Zabel67ca6b62016-02-23 10:22:51 +010075 struct drm_gem_cma_object *cma_obj[3];
76 unsigned long eba, ubo, vbo;
77 int active, i;
Philipp Zabelb8d181e2013-10-10 16:18:45 +020078
Philipp Zabel67ca6b62016-02-23 10:22:51 +010079 for (i = 0; i < drm_format_num_planes(fb->pixel_format); i++) {
80 cma_obj[i] = drm_fb_cma_get_gem_obj(fb, i);
81 if (!cma_obj[i]) {
82 DRM_DEBUG_KMS("plane %d entry is null.\n", i);
83 return -EFAULT;
84 }
Philipp Zabelb8d181e2013-10-10 16:18:45 +020085 }
86
Philipp Zabel67ca6b62016-02-23 10:22:51 +010087 eba = cma_obj[0]->paddr + fb->offsets[0] +
Lucas Stachbc2b0672014-01-10 16:17:29 +010088 fb->pitches[0] * y + (fb->bits_per_pixel >> 3) * x;
Philipp Zabel356f9522014-10-08 17:19:14 +020089
Philipp Zabel67ca6b62016-02-23 10:22:51 +010090 if (eba & 0x7) {
91 DRM_DEBUG_KMS("base address must be a multiple of 8.\n");
92 return -EINVAL;
93 }
94
95 if (fb->pitches[0] < 1 || fb->pitches[0] > 16384) {
96 DRM_DEBUG_KMS("pitches out of range.\n");
97 return -EINVAL;
98 }
99
100 if (ipu_plane->enabled && fb->pitches[0] != ipu_plane->stride[0]) {
101 DRM_DEBUG_KMS("pitches must not change while plane is enabled.\n");
102 return -EINVAL;
103 }
104
105 ipu_plane->stride[0] = fb->pitches[0];
106
107 switch (fb->pixel_format) {
108 case DRM_FORMAT_YUV420:
109 case DRM_FORMAT_YVU420:
110 /*
111 * Multiplanar formats have to meet the following restrictions:
112 * - The (up to) three plane addresses are EBA, EBA+UBO, EBA+VBO
113 * - EBA, UBO and VBO are a multiple of 8
114 * - UBO and VBO are unsigned and not larger than 0xfffff8
115 * - Only EBA may be changed while scanout is active
116 * - The strides of U and V planes must be identical.
117 */
118 ubo = cma_obj[1]->paddr + fb->offsets[1] +
119 fb->pitches[1] * y / 2 + x / 2 - eba;
120 vbo = cma_obj[2]->paddr + fb->offsets[2] +
121 fb->pitches[2] * y / 2 + x / 2 - eba;
122
123 if ((ubo & 0x7) || (vbo & 0x7)) {
124 DRM_DEBUG_KMS("U/V buffer offsets must be a multiple of 8.\n");
125 return -EINVAL;
126 }
127
128 if ((ubo > 0xfffff8) || (vbo > 0xfffff8)) {
129 DRM_DEBUG_KMS("U/V buffer offsets must be positive and not larger than 0xfffff8.\n");
130 return -EINVAL;
131 }
132
133 if (ipu_plane->enabled && ((ipu_plane->u_offset != ubo) ||
134 (ipu_plane->v_offset != vbo))) {
135 DRM_DEBUG_KMS("U/V buffer offsets must not change while plane is enabled.\n");
136 return -EINVAL;
137 }
138
139 if (fb->pitches[1] != fb->pitches[2]) {
140 DRM_DEBUG_KMS("U/V pitches must be identical.\n");
141 return -EINVAL;
142 }
143
144 if (fb->pitches[1] < 1 || fb->pitches[1] > 16384) {
145 DRM_DEBUG_KMS("U/V pitches out of range.\n");
146 return -EINVAL;
147 }
148
149 if (ipu_plane->enabled &&
150 (ipu_plane->stride[1] != fb->pitches[1])) {
151 DRM_DEBUG_KMS("U/V pitches must not change while plane is enabled.\n");
152 return -EINVAL;
153 }
154
155 ipu_plane->u_offset = ubo;
156 ipu_plane->v_offset = vbo;
157 ipu_plane->stride[1] = fb->pitches[1];
158
159 dev_dbg(ipu_plane->base.dev->dev,
160 "phys = %pad %pad %pad, x = %d, y = %d",
161 &cma_obj[0]->paddr, &cma_obj[1]->paddr,
162 &cma_obj[2]->paddr, x, y);
163 break;
164 default:
165 dev_dbg(ipu_plane->base.dev->dev, "phys = %pad, x = %d, y = %d",
166 &cma_obj[0]->paddr, x, y);
167 break;
168 }
169
Philipp Zabel356f9522014-10-08 17:19:14 +0200170 if (ipu_plane->enabled) {
171 active = ipu_idmac_get_current_buffer(ipu_plane->ipu_ch);
172 ipu_cpmem_set_buffer(ipu_plane->ipu_ch, !active, eba);
173 ipu_idmac_select_buffer(ipu_plane->ipu_ch, !active);
174 } else {
175 ipu_cpmem_set_buffer(ipu_plane->ipu_ch, 0, eba);
176 ipu_cpmem_set_buffer(ipu_plane->ipu_ch, 1, eba);
177 }
Philipp Zabelb8d181e2013-10-10 16:18:45 +0200178
Lucas Stach32f71102014-01-10 16:17:30 +0100179 /* cache offsets for subsequent pageflips */
180 ipu_plane->x = x;
181 ipu_plane->y = y;
182
Philipp Zabelb8d181e2013-10-10 16:18:45 +0200183 return 0;
184}
185
186int ipu_plane_mode_set(struct ipu_plane *ipu_plane, struct drm_crtc *crtc,
187 struct drm_display_mode *mode,
188 struct drm_framebuffer *fb, int crtc_x, int crtc_y,
189 unsigned int crtc_w, unsigned int crtc_h,
190 uint32_t src_x, uint32_t src_y,
Philipp Zabeldd7fa6d2014-07-11 18:02:06 +0200191 uint32_t src_w, uint32_t src_h, bool interlaced)
Philipp Zabelb8d181e2013-10-10 16:18:45 +0200192{
Philipp Zabelb8d181e2013-10-10 16:18:45 +0200193 struct device *dev = ipu_plane->base.dev->dev;
194 int ret;
195
196 /* no scaling */
197 if (src_w != crtc_w || src_h != crtc_h)
198 return -EINVAL;
199
200 /* clip to crtc bounds */
201 if (crtc_x < 0) {
202 if (-crtc_x > crtc_w)
203 return -EINVAL;
204 src_x += -crtc_x;
205 src_w -= -crtc_x;
206 crtc_w -= -crtc_x;
207 crtc_x = 0;
208 }
209 if (crtc_y < 0) {
210 if (-crtc_y > crtc_h)
211 return -EINVAL;
212 src_y += -crtc_y;
213 src_h -= -crtc_y;
214 crtc_h -= -crtc_y;
215 crtc_y = 0;
216 }
217 if (crtc_x + crtc_w > mode->hdisplay) {
218 if (crtc_x > mode->hdisplay)
219 return -EINVAL;
220 crtc_w = mode->hdisplay - crtc_x;
221 src_w = crtc_w;
222 }
223 if (crtc_y + crtc_h > mode->vdisplay) {
224 if (crtc_y > mode->vdisplay)
225 return -EINVAL;
226 crtc_h = mode->vdisplay - crtc_y;
227 src_h = crtc_h;
228 }
229 /* full plane minimum width is 13 pixels */
230 if (crtc_w < 13 && (ipu_plane->dp_flow != IPU_DP_FLOW_SYNC_FG))
231 return -EINVAL;
232 if (crtc_h < 2)
233 return -EINVAL;
234
Philipp Zabel9a666032014-10-08 17:19:15 +0200235 /*
236 * since we cannot touch active IDMAC channels, we do not support
237 * resizing the enabled plane or changing its format
238 */
239 if (ipu_plane->enabled) {
240 if (src_w != ipu_plane->w || src_h != ipu_plane->h ||
241 fb->pixel_format != ipu_plane->base.fb->pixel_format)
242 return -EINVAL;
243
244 return ipu_plane_set_base(ipu_plane, fb, src_x, src_y);
245 }
246
Philipp Zabelb8d181e2013-10-10 16:18:45 +0200247 switch (ipu_plane->dp_flow) {
248 case IPU_DP_FLOW_SYNC_BG:
249 ret = ipu_dp_setup_channel(ipu_plane->dp,
250 IPUV3_COLORSPACE_RGB,
251 IPUV3_COLORSPACE_RGB);
252 if (ret) {
253 dev_err(dev,
254 "initializing display processor failed with %d\n",
255 ret);
256 return ret;
257 }
Philipp Zabele6245fc2014-10-08 17:19:12 +0200258 ipu_dp_set_global_alpha(ipu_plane->dp, true, 0, true);
Philipp Zabelb8d181e2013-10-10 16:18:45 +0200259 break;
260 case IPU_DP_FLOW_SYNC_FG:
261 ipu_dp_setup_channel(ipu_plane->dp,
262 ipu_drm_fourcc_to_colorspace(fb->pixel_format),
263 IPUV3_COLORSPACE_UNKNOWN);
264 ipu_dp_set_window_pos(ipu_plane->dp, crtc_x, crtc_y);
Philipp Zabele6245fc2014-10-08 17:19:12 +0200265 /* Enable local alpha on partial plane */
266 switch (fb->pixel_format) {
Philipp Zabelc639a1c2014-12-12 13:40:38 +0100267 case DRM_FORMAT_ARGB1555:
268 case DRM_FORMAT_ABGR1555:
269 case DRM_FORMAT_RGBA5551:
270 case DRM_FORMAT_BGRA5551:
Lucas Stachcb166a32015-08-04 17:22:06 +0200271 case DRM_FORMAT_ARGB4444:
Philipp Zabele6245fc2014-10-08 17:19:12 +0200272 case DRM_FORMAT_ARGB8888:
273 case DRM_FORMAT_ABGR8888:
Philipp Zabel59d6b712015-04-16 15:56:40 +0200274 case DRM_FORMAT_RGBA8888:
275 case DRM_FORMAT_BGRA8888:
Philipp Zabele6245fc2014-10-08 17:19:12 +0200276 ipu_dp_set_global_alpha(ipu_plane->dp, false, 0, false);
277 break;
278 default:
279 break;
280 }
Philipp Zabelb8d181e2013-10-10 16:18:45 +0200281 }
282
283 ret = ipu_dmfc_init_channel(ipu_plane->dmfc, crtc_w);
284 if (ret) {
285 dev_err(dev, "initializing dmfc channel failed with %d\n", ret);
286 return ret;
287 }
288
289 ret = ipu_dmfc_alloc_bandwidth(ipu_plane->dmfc,
290 calc_bandwidth(crtc_w, crtc_h,
291 calc_vref(mode)), 64);
292 if (ret) {
293 dev_err(dev, "allocating dmfc bandwidth failed with %d\n", ret);
294 return ret;
295 }
296
Steve Longerbeam2eb671c2014-06-25 18:05:48 -0700297 ipu_cpmem_zero(ipu_plane->ipu_ch);
298 ipu_cpmem_set_resolution(ipu_plane->ipu_ch, src_w, src_h);
299 ret = ipu_cpmem_set_fmt(ipu_plane->ipu_ch, fb->pixel_format);
Philipp Zabelb8d181e2013-10-10 16:18:45 +0200300 if (ret < 0) {
301 dev_err(dev, "unsupported pixel format 0x%08x\n",
302 fb->pixel_format);
303 return ret;
304 }
305 ipu_cpmem_set_high_priority(ipu_plane->ipu_ch);
Philipp Zabel356f9522014-10-08 17:19:14 +0200306 ipu_idmac_set_double_buffer(ipu_plane->ipu_ch, 1);
Philipp Zabel7cd9bebe2014-10-08 17:19:13 +0200307 ipu_cpmem_set_stride(ipu_plane->ipu_ch, fb->pitches[0]);
Philipp Zabelb8d181e2013-10-10 16:18:45 +0200308
309 ret = ipu_plane_set_base(ipu_plane, fb, src_x, src_y);
310 if (ret < 0)
311 return ret;
Philipp Zabeldd7fa6d2014-07-11 18:02:06 +0200312 if (interlaced)
313 ipu_cpmem_interlaced_scan(ipu_plane->ipu_ch, fb->pitches[0]);
Philipp Zabelb8d181e2013-10-10 16:18:45 +0200314
Philipp Zabel6ac217e2016-02-23 10:22:52 +0100315 if (fb->pixel_format == DRM_FORMAT_YUV420) {
316 ipu_cpmem_set_yuv_planar_full(ipu_plane->ipu_ch,
317 ipu_plane->stride[1],
318 ipu_plane->u_offset,
319 ipu_plane->v_offset);
320 } else if (fb->pixel_format == DRM_FORMAT_YVU420) {
321 ipu_cpmem_set_yuv_planar_full(ipu_plane->ipu_ch,
322 ipu_plane->stride[1],
323 ipu_plane->v_offset,
324 ipu_plane->u_offset);
325 }
326
Philipp Zabel9a666032014-10-08 17:19:15 +0200327 ipu_plane->w = src_w;
328 ipu_plane->h = src_h;
329
Philipp Zabelb8d181e2013-10-10 16:18:45 +0200330 return 0;
331}
332
333void ipu_plane_put_resources(struct ipu_plane *ipu_plane)
334{
335 if (!IS_ERR_OR_NULL(ipu_plane->dp))
336 ipu_dp_put(ipu_plane->dp);
337 if (!IS_ERR_OR_NULL(ipu_plane->dmfc))
338 ipu_dmfc_put(ipu_plane->dmfc);
339 if (!IS_ERR_OR_NULL(ipu_plane->ipu_ch))
340 ipu_idmac_put(ipu_plane->ipu_ch);
341}
342
343int ipu_plane_get_resources(struct ipu_plane *ipu_plane)
344{
345 int ret;
346
347 ipu_plane->ipu_ch = ipu_idmac_get(ipu_plane->ipu, ipu_plane->dma);
348 if (IS_ERR(ipu_plane->ipu_ch)) {
349 ret = PTR_ERR(ipu_plane->ipu_ch);
350 DRM_ERROR("failed to get idmac channel: %d\n", ret);
351 return ret;
352 }
353
354 ipu_plane->dmfc = ipu_dmfc_get(ipu_plane->ipu, ipu_plane->dma);
355 if (IS_ERR(ipu_plane->dmfc)) {
356 ret = PTR_ERR(ipu_plane->dmfc);
357 DRM_ERROR("failed to get dmfc: ret %d\n", ret);
358 goto err_out;
359 }
360
361 if (ipu_plane->dp_flow >= 0) {
362 ipu_plane->dp = ipu_dp_get(ipu_plane->ipu, ipu_plane->dp_flow);
363 if (IS_ERR(ipu_plane->dp)) {
364 ret = PTR_ERR(ipu_plane->dp);
365 DRM_ERROR("failed to get dp flow: %d\n", ret);
366 goto err_out;
367 }
368 }
369
370 return 0;
371err_out:
372 ipu_plane_put_resources(ipu_plane);
373
374 return ret;
375}
376
377void ipu_plane_enable(struct ipu_plane *ipu_plane)
378{
Philipp Zabel285bbb02014-04-14 23:53:20 +0200379 if (ipu_plane->dp)
380 ipu_dp_enable(ipu_plane->ipu);
Philipp Zabelb8d181e2013-10-10 16:18:45 +0200381 ipu_dmfc_enable_channel(ipu_plane->dmfc);
382 ipu_idmac_enable_channel(ipu_plane->ipu_ch);
383 if (ipu_plane->dp)
384 ipu_dp_enable_channel(ipu_plane->dp);
385
386 ipu_plane->enabled = true;
387}
388
389void ipu_plane_disable(struct ipu_plane *ipu_plane)
390{
391 ipu_plane->enabled = false;
392
393 ipu_idmac_wait_busy(ipu_plane->ipu_ch, 50);
394
395 if (ipu_plane->dp)
396 ipu_dp_disable_channel(ipu_plane->dp);
397 ipu_idmac_disable_channel(ipu_plane->ipu_ch);
398 ipu_dmfc_disable_channel(ipu_plane->dmfc);
Philipp Zabel285bbb02014-04-14 23:53:20 +0200399 if (ipu_plane->dp)
400 ipu_dp_disable(ipu_plane->ipu);
Philipp Zabelb8d181e2013-10-10 16:18:45 +0200401}
402
Philipp Zabelb8d181e2013-10-10 16:18:45 +0200403/*
404 * drm_plane API
405 */
406
407static int ipu_update_plane(struct drm_plane *plane, struct drm_crtc *crtc,
408 struct drm_framebuffer *fb, int crtc_x, int crtc_y,
409 unsigned int crtc_w, unsigned int crtc_h,
410 uint32_t src_x, uint32_t src_y,
411 uint32_t src_w, uint32_t src_h)
412{
413 struct ipu_plane *ipu_plane = to_ipu_plane(plane);
414 int ret = 0;
415
416 DRM_DEBUG_KMS("plane - %p\n", plane);
417
418 if (!ipu_plane->enabled)
419 ret = ipu_plane_get_resources(ipu_plane);
420 if (ret < 0)
421 return ret;
422
423 ret = ipu_plane_mode_set(ipu_plane, crtc, &crtc->hwmode, fb,
424 crtc_x, crtc_y, crtc_w, crtc_h,
Philipp Zabeldd7fa6d2014-07-11 18:02:06 +0200425 src_x >> 16, src_y >> 16, src_w >> 16, src_h >> 16,
426 false);
Philipp Zabelb8d181e2013-10-10 16:18:45 +0200427 if (ret < 0) {
428 ipu_plane_put_resources(ipu_plane);
429 return ret;
430 }
431
432 if (crtc != plane->crtc)
Liu Yingbeec8ec2015-11-20 16:14:11 +0800433 dev_dbg(plane->dev->dev, "crtc change: %p -> %p\n",
Philipp Zabelb8d181e2013-10-10 16:18:45 +0200434 plane->crtc, crtc);
435 plane->crtc = crtc;
436
Shawn Guob46355f2014-09-10 22:10:43 +0800437 if (!ipu_plane->enabled)
438 ipu_plane_enable(ipu_plane);
Philipp Zabelb8d181e2013-10-10 16:18:45 +0200439
440 return 0;
441}
442
443static int ipu_disable_plane(struct drm_plane *plane)
444{
445 struct ipu_plane *ipu_plane = to_ipu_plane(plane);
446
447 DRM_DEBUG_KMS("[%d] %s\n", __LINE__, __func__);
448
Shawn Guob46355f2014-09-10 22:10:43 +0800449 if (ipu_plane->enabled)
450 ipu_plane_disable(ipu_plane);
Philipp Zabelb8d181e2013-10-10 16:18:45 +0200451
452 ipu_plane_put_resources(ipu_plane);
453
454 return 0;
455}
456
457static void ipu_plane_destroy(struct drm_plane *plane)
458{
459 struct ipu_plane *ipu_plane = to_ipu_plane(plane);
460
461 DRM_DEBUG_KMS("[%d] %s\n", __LINE__, __func__);
462
463 ipu_disable_plane(plane);
464 drm_plane_cleanup(plane);
465 kfree(ipu_plane);
466}
467
468static struct drm_plane_funcs ipu_plane_funcs = {
469 .update_plane = ipu_update_plane,
470 .disable_plane = ipu_disable_plane,
471 .destroy = ipu_plane_destroy,
472};
473
474struct ipu_plane *ipu_plane_init(struct drm_device *dev, struct ipu_soc *ipu,
475 int dma, int dp, unsigned int possible_crtcs,
Philipp Zabel43895592015-11-06 11:08:02 +0100476 enum drm_plane_type type)
Philipp Zabelb8d181e2013-10-10 16:18:45 +0200477{
478 struct ipu_plane *ipu_plane;
479 int ret;
480
481 DRM_DEBUG_KMS("channel %d, dp flow %d, possible_crtcs=0x%x\n",
482 dma, dp, possible_crtcs);
483
484 ipu_plane = kzalloc(sizeof(*ipu_plane), GFP_KERNEL);
485 if (!ipu_plane) {
486 DRM_ERROR("failed to allocate plane\n");
487 return ERR_PTR(-ENOMEM);
488 }
489
490 ipu_plane->ipu = ipu;
491 ipu_plane->dma = dma;
492 ipu_plane->dp_flow = dp;
493
Philipp Zabel43895592015-11-06 11:08:02 +0100494 ret = drm_universal_plane_init(dev, &ipu_plane->base, possible_crtcs,
495 &ipu_plane_funcs, ipu_plane_formats,
Ville Syrjäläb0b3b792015-12-09 16:19:55 +0200496 ARRAY_SIZE(ipu_plane_formats), type,
497 NULL);
Philipp Zabelb8d181e2013-10-10 16:18:45 +0200498 if (ret) {
499 DRM_ERROR("failed to initialize plane\n");
500 kfree(ipu_plane);
501 return ERR_PTR(ret);
502 }
503
504 return ipu_plane;
505}