blob: 843f74175094f6fa07628b23665f603fad9bc3c8 [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>
Joonyoung Shim864ee9e2011-12-08 17:54:07 +090015#include "exynos_drm_drv.h"
Sean Paul080be03d2014-02-19 21:02:55 +090016#include "exynos_drm_crtc.h"
Joonyoung Shim4070d212012-06-27 14:27:05 +090017#include "exynos_drm_fb.h"
18#include "exynos_drm_gem.h"
Mark Browne30655d2013-08-13 00:46:40 +010019#include "exynos_drm_plane.h"
Joonyoung Shim864ee9e2011-12-08 17:54:07 +090020
Eunchul Kimba3849d2012-03-16 18:47:15 +090021static const uint32_t formats[] = {
22 DRM_FORMAT_XRGB8888,
Seung-Woo Kim6b1c7622012-04-05 11:21:09 +090023 DRM_FORMAT_ARGB8888,
24 DRM_FORMAT_NV12,
Seung-Woo Kim6b1c7622012-04-05 11:21:09 +090025 DRM_FORMAT_NV12MT,
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
Joonyoung Shim4070d212012-06-27 14:27:05 +090064int exynos_plane_mode_set(struct drm_plane *plane, struct drm_crtc *crtc,
65 struct drm_framebuffer *fb, int crtc_x, int crtc_y,
66 unsigned int crtc_w, unsigned int crtc_h,
67 uint32_t src_x, uint32_t src_y,
68 uint32_t src_w, uint32_t src_h)
69{
Gustavo Padovan8837dee2014-11-03 18:13:27 -020070 struct exynos_drm_plane *exynos_plane = to_exynos_plane(plane);
Gustavo Padovan1e3b4232014-10-29 19:25:53 +000071 struct exynos_drm_manager *manager = to_exynos_crtc(crtc)->manager;
Joonyoung Shim4070d212012-06-27 14:27:05 +090072 unsigned int actual_w;
73 unsigned int actual_h;
74 int nr;
75 int i;
76
Inki Dae01ed8122012-08-20 20:05:56 +090077 nr = exynos_drm_fb_get_buf_cnt(fb);
Joonyoung Shim4070d212012-06-27 14:27:05 +090078 for (i = 0; i < nr; i++) {
79 struct exynos_drm_gem_buf *buffer = exynos_drm_fb_buffer(fb, i);
80
81 if (!buffer) {
Lespiau, Damien133dcde2014-03-24 15:53:10 +000082 DRM_DEBUG_KMS("buffer is null\n");
Joonyoung Shim4070d212012-06-27 14:27:05 +090083 return -EFAULT;
84 }
85
Gustavo Padovan8837dee2014-11-03 18:13:27 -020086 exynos_plane->dma_addr[i] = buffer->dma_addr;
Joonyoung Shim4070d212012-06-27 14:27:05 +090087
YoungJun Choddd8e952012-12-10 15:44:58 +090088 DRM_DEBUG_KMS("buffer: %d, dma_addr = 0x%lx\n",
Gustavo Padovan8837dee2014-11-03 18:13:27 -020089 i, (unsigned long)exynos_plane->dma_addr[i]);
Joonyoung Shim4070d212012-06-27 14:27:05 +090090 }
91
Joonyoung Shim2ab97922012-09-27 19:25:21 +090092 actual_w = exynos_plane_get_size(crtc_x, crtc_w, crtc->mode.hdisplay);
93 actual_h = exynos_plane_get_size(crtc_y, crtc_h, crtc->mode.vdisplay);
94
95 if (crtc_x < 0) {
96 if (actual_w)
97 src_x -= crtc_x;
Joonyoung Shim2ab97922012-09-27 19:25:21 +090098 crtc_x = 0;
99 }
100
101 if (crtc_y < 0) {
102 if (actual_h)
103 src_y -= crtc_y;
Joonyoung Shim2ab97922012-09-27 19:25:21 +0900104 crtc_y = 0;
105 }
Joonyoung Shim4070d212012-06-27 14:27:05 +0900106
107 /* set drm framebuffer data. */
Gustavo Padovan8837dee2014-11-03 18:13:27 -0200108 exynos_plane->fb_x = src_x;
109 exynos_plane->fb_y = src_y;
110 exynos_plane->fb_width = fb->width;
111 exynos_plane->fb_height = fb->height;
112 exynos_plane->src_width = src_w;
113 exynos_plane->src_height = src_h;
114 exynos_plane->bpp = fb->bits_per_pixel;
115 exynos_plane->pitch = fb->pitches[0];
116 exynos_plane->pixel_format = fb->pixel_format;
Joonyoung Shim4070d212012-06-27 14:27:05 +0900117
Gustavo Padovan8837dee2014-11-03 18:13:27 -0200118 /* set plane range to be displayed. */
119 exynos_plane->crtc_x = crtc_x;
120 exynos_plane->crtc_y = crtc_y;
121 exynos_plane->crtc_width = actual_w;
122 exynos_plane->crtc_height = actual_h;
Joonyoung Shim4070d212012-06-27 14:27:05 +0900123
124 /* set drm mode data. */
Gustavo Padovan8837dee2014-11-03 18:13:27 -0200125 exynos_plane->mode_width = crtc->mode.hdisplay;
126 exynos_plane->mode_height = crtc->mode.vdisplay;
127 exynos_plane->refresh = crtc->mode.vrefresh;
128 exynos_plane->scan_flag = crtc->mode.flags;
Joonyoung Shim4070d212012-06-27 14:27:05 +0900129
Gustavo Padovan8837dee2014-11-03 18:13:27 -0200130 DRM_DEBUG_KMS("plane : offset_x/y(%d,%d), width/height(%d,%d)",
131 exynos_plane->crtc_x, exynos_plane->crtc_y,
132 exynos_plane->crtc_width, exynos_plane->crtc_height);
Joonyoung Shim4070d212012-06-27 14:27:05 +0900133
Andrzej Hajda72ed6cc2014-09-19 14:58:53 +0200134 plane->crtc = crtc;
135
Gustavo Padovan1e3b4232014-10-29 19:25:53 +0000136 if (manager->ops->win_mode_set)
Gustavo Padovan8837dee2014-11-03 18:13:27 -0200137 manager->ops->win_mode_set(manager, exynos_plane);
Joonyoung Shim4070d212012-06-27 14:27:05 +0900138
139 return 0;
140}
141
142void exynos_plane_commit(struct drm_plane *plane)
143{
Gustavo Padovan8837dee2014-11-03 18:13:27 -0200144 struct exynos_drm_plane *exynos_plane = to_exynos_plane(plane);
Gustavo Padovan1e3b4232014-10-29 19:25:53 +0000145 struct exynos_drm_manager *manager = to_exynos_crtc(plane->crtc)->manager;
Joonyoung Shim4070d212012-06-27 14:27:05 +0900146
Gustavo Padovan1e3b4232014-10-29 19:25:53 +0000147 if (manager->ops->win_commit)
Gustavo Padovan8837dee2014-11-03 18:13:27 -0200148 manager->ops->win_commit(manager, exynos_plane->zpos);
Joonyoung Shimcf5188a2012-06-27 14:27:09 +0900149}
Joonyoung Shim4070d212012-06-27 14:27:05 +0900150
Joonyoung Shimcf5188a2012-06-27 14:27:09 +0900151void exynos_plane_dpms(struct drm_plane *plane, int mode)
152{
Gustavo Padovan8837dee2014-11-03 18:13:27 -0200153 struct exynos_drm_plane *exynos_plane = to_exynos_plane(plane);
Gustavo Padovan1e3b4232014-10-29 19:25:53 +0000154 struct exynos_drm_manager *manager;
Joonyoung Shimcf5188a2012-06-27 14:27:09 +0900155
Joonyoung Shimcf5188a2012-06-27 14:27:09 +0900156 if (mode == DRM_MODE_DPMS_ON) {
157 if (exynos_plane->enabled)
158 return;
159
Gustavo Padovan1e3b4232014-10-29 19:25:53 +0000160 manager = to_exynos_crtc(plane->crtc)->manager;
161 if (manager->ops->win_enable)
Gustavo Padovan8837dee2014-11-03 18:13:27 -0200162 manager->ops->win_enable(manager, exynos_plane->zpos);
Gustavo Padovan1e3b4232014-10-29 19:25:53 +0000163
Joonyoung Shimcf5188a2012-06-27 14:27:09 +0900164 exynos_plane->enabled = true;
165 } else {
166 if (!exynos_plane->enabled)
167 return;
168
Gustavo Padovan1e3b4232014-10-29 19:25:53 +0000169 manager = to_exynos_crtc(plane->crtc)->manager;
170 if (manager->ops->win_disable)
Gustavo Padovan8837dee2014-11-03 18:13:27 -0200171 manager->ops->win_disable(manager, exynos_plane->zpos);
Gustavo Padovan1e3b4232014-10-29 19:25:53 +0000172
Joonyoung Shimcf5188a2012-06-27 14:27:09 +0900173 exynos_plane->enabled = false;
174 }
Joonyoung Shim4070d212012-06-27 14:27:05 +0900175}
176
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900177static int
178exynos_update_plane(struct drm_plane *plane, struct drm_crtc *crtc,
179 struct drm_framebuffer *fb, int crtc_x, int crtc_y,
180 unsigned int crtc_w, unsigned int crtc_h,
181 uint32_t src_x, uint32_t src_y,
182 uint32_t src_w, uint32_t src_h)
183{
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900184 int ret;
185
Joonyoung Shim4070d212012-06-27 14:27:05 +0900186 ret = exynos_plane_mode_set(plane, crtc, fb, crtc_x, crtc_y,
187 crtc_w, crtc_h, src_x >> 16, src_y >> 16,
188 src_w >> 16, src_h >> 16);
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900189 if (ret < 0)
190 return ret;
191
Joonyoung Shim4070d212012-06-27 14:27:05 +0900192 exynos_plane_commit(plane);
Joonyoung Shimcf5188a2012-06-27 14:27:09 +0900193 exynos_plane_dpms(plane, DRM_MODE_DPMS_ON);
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900194
195 return 0;
196}
197
198static int exynos_disable_plane(struct drm_plane *plane)
199{
Joonyoung Shimcf5188a2012-06-27 14:27:09 +0900200 exynos_plane_dpms(plane, DRM_MODE_DPMS_OFF);
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900201
202 return 0;
203}
204
205static void exynos_plane_destroy(struct drm_plane *plane)
206{
Gustavo Padovan8837dee2014-11-03 18:13:27 -0200207 struct exynos_drm_plane *exynos_plane = to_exynos_plane(plane);
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900208
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900209 exynos_disable_plane(plane);
210 drm_plane_cleanup(plane);
211 kfree(exynos_plane);
212}
213
Joonyoung Shim00ae67c2012-06-27 14:27:06 +0900214static int exynos_plane_set_property(struct drm_plane *plane,
215 struct drm_property *property,
216 uint64_t val)
217{
218 struct drm_device *dev = plane->dev;
Gustavo Padovan8837dee2014-11-03 18:13:27 -0200219 struct exynos_drm_plane *exynos_plane = to_exynos_plane(plane);
Joonyoung Shim00ae67c2012-06-27 14:27:06 +0900220 struct exynos_drm_private *dev_priv = dev->dev_private;
221
Joonyoung Shim00ae67c2012-06-27 14:27:06 +0900222 if (property == dev_priv->plane_zpos_property) {
Gustavo Padovan8837dee2014-11-03 18:13:27 -0200223 exynos_plane->zpos = val;
Joonyoung Shim00ae67c2012-06-27 14:27:06 +0900224 return 0;
225 }
226
227 return -EINVAL;
228}
229
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900230static struct drm_plane_funcs exynos_plane_funcs = {
231 .update_plane = exynos_update_plane,
232 .disable_plane = exynos_disable_plane,
233 .destroy = exynos_plane_destroy,
Joonyoung Shim00ae67c2012-06-27 14:27:06 +0900234 .set_property = exynos_plane_set_property,
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900235};
236
Joonyoung Shim00ae67c2012-06-27 14:27:06 +0900237static void exynos_plane_attach_zpos_property(struct drm_plane *plane)
238{
239 struct drm_device *dev = plane->dev;
240 struct exynos_drm_private *dev_priv = dev->dev_private;
241 struct drm_property *prop;
242
Joonyoung Shim00ae67c2012-06-27 14:27:06 +0900243 prop = dev_priv->plane_zpos_property;
244 if (!prop) {
245 prop = drm_property_create_range(dev, 0, "zpos", 0,
246 MAX_PLANE - 1);
247 if (!prop)
248 return;
249
250 dev_priv->plane_zpos_property = prop;
251 }
252
253 drm_object_attach_property(&plane->base, prop, 0);
254}
255
Joonyoung Shimb5d2eb32012-06-27 14:27:04 +0900256struct drm_plane *exynos_plane_init(struct drm_device *dev,
Andrzej Hajda72ed6cc2014-09-19 14:58:53 +0200257 unsigned long possible_crtcs,
258 enum drm_plane_type type)
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900259{
Gustavo Padovan8837dee2014-11-03 18:13:27 -0200260 struct exynos_drm_plane *exynos_plane;
Joonyoung Shimb5d2eb32012-06-27 14:27:04 +0900261 int err;
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900262
Gustavo Padovan8837dee2014-11-03 18:13:27 -0200263 exynos_plane = kzalloc(sizeof(struct exynos_drm_plane), GFP_KERNEL);
Sachin Kamat38bb5252013-08-19 19:04:55 +0900264 if (!exynos_plane)
Andrzej Hajda72ed6cc2014-09-19 14:58:53 +0200265 return ERR_PTR(-ENOMEM);
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900266
Andrzej Hajda72ed6cc2014-09-19 14:58:53 +0200267 err = drm_universal_plane_init(dev, &exynos_plane->base, possible_crtcs,
268 &exynos_plane_funcs, formats,
269 ARRAY_SIZE(formats), type);
Joonyoung Shimb5d2eb32012-06-27 14:27:04 +0900270 if (err) {
271 DRM_ERROR("failed to initialize plane\n");
272 kfree(exynos_plane);
Andrzej Hajda72ed6cc2014-09-19 14:58:53 +0200273 return ERR_PTR(err);
Joonyoung Shimb5d2eb32012-06-27 14:27:04 +0900274 }
275
Andrzej Hajda72ed6cc2014-09-19 14:58:53 +0200276 if (type == DRM_PLANE_TYPE_PRIMARY)
Gustavo Padovan8837dee2014-11-03 18:13:27 -0200277 exynos_plane->zpos = DEFAULT_ZPOS;
Joonyoung Shim00ae67c2012-06-27 14:27:06 +0900278 else
279 exynos_plane_attach_zpos_property(&exynos_plane->base);
280
Joonyoung Shimb5d2eb32012-06-27 14:27:04 +0900281 return &exynos_plane->base;
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900282}