blob: 8ad5b7294eb4801c189fa3b2cdf90ebb24606fd3 [file] [log] [blame]
Joonyoung Shim864ee9e2011-12-08 17:54:07 +09001/*
2 * Copyright (C) 2011 Samsung Electronics Co.Ltd
3 * Authors: Joonyoung Shim <jy0922.shim@samsung.com>
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version.
9 *
10 */
11
David Howells760285e2012-10-02 18:01:07 +010012#include <drm/drmP.h>
Joonyoung Shim864ee9e2011-12-08 17:54:07 +090013
David Howells760285e2012-10-02 18:01:07 +010014#include <drm/exynos_drm.h>
Gustavo Padovanadf56912014-11-27 14:56:09 -020015#include <drm/drm_plane_helper.h>
Joonyoung Shim864ee9e2011-12-08 17:54:07 +090016#include "exynos_drm_drv.h"
Sean Paul080be03d2014-02-19 21:02:55 +090017#include "exynos_drm_crtc.h"
Joonyoung Shim4070d212012-06-27 14:27:05 +090018#include "exynos_drm_fb.h"
19#include "exynos_drm_gem.h"
Mark Browne30655d2013-08-13 00:46:40 +010020#include "exynos_drm_plane.h"
Joonyoung Shim864ee9e2011-12-08 17:54:07 +090021
Eunchul Kimba3849d2012-03-16 18:47:15 +090022static const uint32_t formats[] = {
23 DRM_FORMAT_XRGB8888,
Seung-Woo Kim6b1c7622012-04-05 11:21:09 +090024 DRM_FORMAT_ARGB8888,
25 DRM_FORMAT_NV12,
Eunchul Kimba3849d2012-03-16 18:47:15 +090026};
27
Joonyoung Shim2ab97922012-09-27 19:25:21 +090028/*
29 * This function is to get X or Y size shown via screen. This needs length and
30 * start position of CRTC.
31 *
32 * <--- length --->
33 * CRTC ----------------
34 * ^ start ^ end
35 *
Joonyoung Shim60a705a2012-12-14 15:48:22 +090036 * There are six cases from a to f.
Joonyoung Shim2ab97922012-09-27 19:25:21 +090037 *
38 * <----- SCREEN ----->
39 * 0 last
40 * ----------|------------------|----------
41 * CRTCs
42 * a -------
43 * b -------
44 * c --------------------------
45 * d --------
46 * e -------
47 * f -------
48 */
49static int exynos_plane_get_size(int start, unsigned length, unsigned last)
50{
51 int end = start + length;
52 int size = 0;
53
54 if (start <= 0) {
55 if (end > 0)
56 size = min_t(unsigned, end, last);
57 } else if (start <= last) {
58 size = min_t(unsigned, last - start, length);
59 }
60
61 return size;
62}
63
Gustavo Padovanadf56912014-11-27 14:56:09 -020064int exynos_check_plane(struct drm_plane *plane, struct drm_framebuffer *fb)
Joonyoung Shim4070d212012-06-27 14:27:05 +090065{
Gustavo Padovan8837dee2014-11-03 18:13:27 -020066 struct exynos_drm_plane *exynos_plane = to_exynos_plane(plane);
Joonyoung Shim4070d212012-06-27 14:27:05 +090067 int nr;
68 int i;
69
Inki Dae01ed8122012-08-20 20:05:56 +090070 nr = exynos_drm_fb_get_buf_cnt(fb);
Joonyoung Shim4070d212012-06-27 14:27:05 +090071 for (i = 0; i < nr; i++) {
72 struct exynos_drm_gem_buf *buffer = exynos_drm_fb_buffer(fb, i);
73
74 if (!buffer) {
Lespiau, Damien133dcde2014-03-24 15:53:10 +000075 DRM_DEBUG_KMS("buffer is null\n");
Joonyoung Shim4070d212012-06-27 14:27:05 +090076 return -EFAULT;
77 }
78
Gustavo Padovan8837dee2014-11-03 18:13:27 -020079 exynos_plane->dma_addr[i] = buffer->dma_addr;
Joonyoung Shim4070d212012-06-27 14:27:05 +090080
YoungJun Choddd8e952012-12-10 15:44:58 +090081 DRM_DEBUG_KMS("buffer: %d, dma_addr = 0x%lx\n",
Gustavo Padovan8837dee2014-11-03 18:13:27 -020082 i, (unsigned long)exynos_plane->dma_addr[i]);
Joonyoung Shim4070d212012-06-27 14:27:05 +090083 }
84
Gustavo Padovanadf56912014-11-27 14:56:09 -020085 return 0;
86}
87
88void exynos_plane_mode_set(struct drm_plane *plane, struct drm_crtc *crtc,
89 struct drm_framebuffer *fb, int crtc_x, int crtc_y,
90 unsigned int crtc_w, unsigned int crtc_h,
91 uint32_t src_x, uint32_t src_y,
92 uint32_t src_w, uint32_t src_h)
93{
94 struct exynos_drm_plane *exynos_plane = to_exynos_plane(plane);
95 struct exynos_drm_crtc *exynos_crtc = to_exynos_crtc(crtc);
96 unsigned int actual_w;
97 unsigned int actual_h;
98
Joonyoung Shim2ab97922012-09-27 19:25:21 +090099 actual_w = exynos_plane_get_size(crtc_x, crtc_w, crtc->mode.hdisplay);
100 actual_h = exynos_plane_get_size(crtc_y, crtc_h, crtc->mode.vdisplay);
101
102 if (crtc_x < 0) {
103 if (actual_w)
104 src_x -= crtc_x;
Joonyoung Shim2ab97922012-09-27 19:25:21 +0900105 crtc_x = 0;
106 }
107
108 if (crtc_y < 0) {
109 if (actual_h)
110 src_y -= crtc_y;
Joonyoung Shim2ab97922012-09-27 19:25:21 +0900111 crtc_y = 0;
112 }
Joonyoung Shim4070d212012-06-27 14:27:05 +0900113
114 /* set drm framebuffer data. */
Gustavo Padovan8837dee2014-11-03 18:13:27 -0200115 exynos_plane->fb_x = src_x;
116 exynos_plane->fb_y = src_y;
117 exynos_plane->fb_width = fb->width;
118 exynos_plane->fb_height = fb->height;
119 exynos_plane->src_width = src_w;
120 exynos_plane->src_height = src_h;
121 exynos_plane->bpp = fb->bits_per_pixel;
122 exynos_plane->pitch = fb->pitches[0];
123 exynos_plane->pixel_format = fb->pixel_format;
Joonyoung Shim4070d212012-06-27 14:27:05 +0900124
Gustavo Padovan8837dee2014-11-03 18:13:27 -0200125 /* set plane range to be displayed. */
126 exynos_plane->crtc_x = crtc_x;
127 exynos_plane->crtc_y = crtc_y;
128 exynos_plane->crtc_width = actual_w;
129 exynos_plane->crtc_height = actual_h;
Joonyoung Shim4070d212012-06-27 14:27:05 +0900130
131 /* set drm mode data. */
Gustavo Padovan8837dee2014-11-03 18:13:27 -0200132 exynos_plane->mode_width = crtc->mode.hdisplay;
133 exynos_plane->mode_height = crtc->mode.vdisplay;
134 exynos_plane->refresh = crtc->mode.vrefresh;
135 exynos_plane->scan_flag = crtc->mode.flags;
Joonyoung Shim4070d212012-06-27 14:27:05 +0900136
Gustavo Padovan8837dee2014-11-03 18:13:27 -0200137 DRM_DEBUG_KMS("plane : offset_x/y(%d,%d), width/height(%d,%d)",
138 exynos_plane->crtc_x, exynos_plane->crtc_y,
139 exynos_plane->crtc_width, exynos_plane->crtc_height);
Joonyoung Shim4070d212012-06-27 14:27:05 +0900140
Andrzej Hajda72ed6cc2014-09-19 14:58:53 +0200141 plane->crtc = crtc;
142
Gustavo Padovan93bca242015-01-18 18:16:23 +0900143 if (exynos_crtc->ops->win_mode_set)
144 exynos_crtc->ops->win_mode_set(exynos_crtc, exynos_plane);
Joonyoung Shim4070d212012-06-27 14:27:05 +0900145}
146
Gustavo Padovan0e0a6492014-11-25 11:21:17 -0200147int
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900148exynos_update_plane(struct drm_plane *plane, struct drm_crtc *crtc,
149 struct drm_framebuffer *fb, int crtc_x, int crtc_y,
150 unsigned int crtc_w, unsigned int crtc_h,
151 uint32_t src_x, uint32_t src_y,
152 uint32_t src_w, uint32_t src_h)
153{
Gustavo Padovan9d5310c2014-11-13 22:17:46 -0200154
Gustavo Padovan93bca242015-01-18 18:16:23 +0900155 struct exynos_drm_crtc *exynos_crtc = to_exynos_crtc(crtc);
Gustavo Padovan9d5310c2014-11-13 22:17:46 -0200156 struct exynos_drm_plane *exynos_plane = to_exynos_plane(plane);
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900157 int ret;
158
Gustavo Padovanadf56912014-11-27 14:56:09 -0200159 ret = exynos_check_plane(plane, fb);
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900160 if (ret < 0)
161 return ret;
162
Gustavo Padovanadf56912014-11-27 14:56:09 -0200163 exynos_plane_mode_set(plane, crtc, fb, crtc_x, crtc_y,
164 crtc_w, crtc_h, src_x >> 16, src_y >> 16,
165 src_w >> 16, src_h >> 16);
166
Gustavo Padovan93bca242015-01-18 18:16:23 +0900167 if (exynos_crtc->ops->win_commit)
168 exynos_crtc->ops->win_commit(exynos_crtc, exynos_plane->zpos);
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900169
170 return 0;
171}
172
173static int exynos_disable_plane(struct drm_plane *plane)
174{
Joonyoung Shimd9ea6252015-02-05 16:11:37 +0900175 struct exynos_drm_plane *exynos_plane = to_exynos_plane(plane);
176 struct exynos_drm_crtc *exynos_crtc = to_exynos_crtc(plane->crtc);
177
Charles Keepax995fdfb2015-02-17 17:14:41 +0000178 if (exynos_crtc && exynos_crtc->ops->win_disable)
Joonyoung Shimd9ea6252015-02-05 16:11:37 +0900179 exynos_crtc->ops->win_disable(exynos_crtc,
180 exynos_plane->zpos);
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900181
182 return 0;
183}
184
185static void exynos_plane_destroy(struct drm_plane *plane)
186{
Gustavo Padovan8837dee2014-11-03 18:13:27 -0200187 struct exynos_drm_plane *exynos_plane = to_exynos_plane(plane);
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900188
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900189 exynos_disable_plane(plane);
190 drm_plane_cleanup(plane);
191 kfree(exynos_plane);
192}
193
Joonyoung Shim00ae67c2012-06-27 14:27:06 +0900194static int exynos_plane_set_property(struct drm_plane *plane,
195 struct drm_property *property,
196 uint64_t val)
197{
198 struct drm_device *dev = plane->dev;
Gustavo Padovan8837dee2014-11-03 18:13:27 -0200199 struct exynos_drm_plane *exynos_plane = to_exynos_plane(plane);
Joonyoung Shim00ae67c2012-06-27 14:27:06 +0900200 struct exynos_drm_private *dev_priv = dev->dev_private;
201
Joonyoung Shim00ae67c2012-06-27 14:27:06 +0900202 if (property == dev_priv->plane_zpos_property) {
Gustavo Padovan8837dee2014-11-03 18:13:27 -0200203 exynos_plane->zpos = val;
Joonyoung Shim00ae67c2012-06-27 14:27:06 +0900204 return 0;
205 }
206
207 return -EINVAL;
208}
209
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900210static struct drm_plane_funcs exynos_plane_funcs = {
211 .update_plane = exynos_update_plane,
212 .disable_plane = exynos_disable_plane,
213 .destroy = exynos_plane_destroy,
Joonyoung Shim00ae67c2012-06-27 14:27:06 +0900214 .set_property = exynos_plane_set_property,
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900215};
216
Joonyoung Shim00ae67c2012-06-27 14:27:06 +0900217static void exynos_plane_attach_zpos_property(struct drm_plane *plane)
218{
219 struct drm_device *dev = plane->dev;
220 struct exynos_drm_private *dev_priv = dev->dev_private;
221 struct drm_property *prop;
222
Joonyoung Shim00ae67c2012-06-27 14:27:06 +0900223 prop = dev_priv->plane_zpos_property;
224 if (!prop) {
225 prop = drm_property_create_range(dev, 0, "zpos", 0,
226 MAX_PLANE - 1);
227 if (!prop)
228 return;
229
230 dev_priv->plane_zpos_property = prop;
231 }
232
233 drm_object_attach_property(&plane->base, prop, 0);
234}
235
Joonyoung Shimb5d2eb32012-06-27 14:27:04 +0900236struct drm_plane *exynos_plane_init(struct drm_device *dev,
Andrzej Hajda72ed6cc2014-09-19 14:58:53 +0200237 unsigned long possible_crtcs,
238 enum drm_plane_type type)
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900239{
Gustavo Padovan8837dee2014-11-03 18:13:27 -0200240 struct exynos_drm_plane *exynos_plane;
Joonyoung Shimb5d2eb32012-06-27 14:27:04 +0900241 int err;
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900242
Gustavo Padovan8837dee2014-11-03 18:13:27 -0200243 exynos_plane = kzalloc(sizeof(struct exynos_drm_plane), GFP_KERNEL);
Sachin Kamat38bb5252013-08-19 19:04:55 +0900244 if (!exynos_plane)
Andrzej Hajda72ed6cc2014-09-19 14:58:53 +0200245 return ERR_PTR(-ENOMEM);
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900246
Andrzej Hajda72ed6cc2014-09-19 14:58:53 +0200247 err = drm_universal_plane_init(dev, &exynos_plane->base, possible_crtcs,
248 &exynos_plane_funcs, formats,
249 ARRAY_SIZE(formats), type);
Joonyoung Shimb5d2eb32012-06-27 14:27:04 +0900250 if (err) {
251 DRM_ERROR("failed to initialize plane\n");
252 kfree(exynos_plane);
Andrzej Hajda72ed6cc2014-09-19 14:58:53 +0200253 return ERR_PTR(err);
Joonyoung Shimb5d2eb32012-06-27 14:27:04 +0900254 }
255
Andrzej Hajda72ed6cc2014-09-19 14:58:53 +0200256 if (type == DRM_PLANE_TYPE_PRIMARY)
Gustavo Padovan8837dee2014-11-03 18:13:27 -0200257 exynos_plane->zpos = DEFAULT_ZPOS;
Joonyoung Shim00ae67c2012-06-27 14:27:06 +0900258 else
259 exynos_plane_attach_zpos_property(&exynos_plane->base);
260
Joonyoung Shimb5d2eb32012-06-27 14:27:04 +0900261 return &exynos_plane->base;
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900262}