blob: f0067f785c6e0645be5278f206c3ddf07ef3c759 [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
Gustavo Padovanb7448682015-06-01 12:04:42 -030070 if (!fb)
71 return 0;
72
Inki Dae01ed8122012-08-20 20:05:56 +090073 nr = exynos_drm_fb_get_buf_cnt(fb);
Joonyoung Shim4070d212012-06-27 14:27:05 +090074 for (i = 0; i < nr; i++) {
75 struct exynos_drm_gem_buf *buffer = exynos_drm_fb_buffer(fb, i);
76
77 if (!buffer) {
Lespiau, Damien133dcde2014-03-24 15:53:10 +000078 DRM_DEBUG_KMS("buffer is null\n");
Joonyoung Shim4070d212012-06-27 14:27:05 +090079 return -EFAULT;
80 }
81
Tobias Jakobi5d878bd2015-04-27 23:10:14 +020082 exynos_plane->dma_addr[i] = buffer->dma_addr + fb->offsets[i];
Joonyoung Shim4070d212012-06-27 14:27:05 +090083
YoungJun Choddd8e952012-12-10 15:44:58 +090084 DRM_DEBUG_KMS("buffer: %d, dma_addr = 0x%lx\n",
Gustavo Padovan8837dee2014-11-03 18:13:27 -020085 i, (unsigned long)exynos_plane->dma_addr[i]);
Joonyoung Shim4070d212012-06-27 14:27:05 +090086 }
87
Gustavo Padovanadf56912014-11-27 14:56:09 -020088 return 0;
89}
90
91void exynos_plane_mode_set(struct drm_plane *plane, struct drm_crtc *crtc,
92 struct drm_framebuffer *fb, int crtc_x, int crtc_y,
93 unsigned int crtc_w, unsigned int crtc_h,
94 uint32_t src_x, uint32_t src_y,
95 uint32_t src_w, uint32_t src_h)
96{
97 struct exynos_drm_plane *exynos_plane = to_exynos_plane(plane);
Joonyoung Shim020e79d2015-06-02 21:04:42 +090098 struct drm_display_mode *mode = &crtc->state->adjusted_mode;
Gustavo Padovanadf56912014-11-27 14:56:09 -020099 unsigned int actual_w;
100 unsigned int actual_h;
101
Joonyoung Shim020e79d2015-06-02 21:04:42 +0900102 actual_w = exynos_plane_get_size(crtc_x, crtc_w, mode->hdisplay);
103 actual_h = exynos_plane_get_size(crtc_y, crtc_h, mode->vdisplay);
Joonyoung Shim2ab97922012-09-27 19:25:21 +0900104
105 if (crtc_x < 0) {
106 if (actual_w)
107 src_x -= crtc_x;
Joonyoung Shim2ab97922012-09-27 19:25:21 +0900108 crtc_x = 0;
109 }
110
111 if (crtc_y < 0) {
112 if (actual_h)
113 src_y -= crtc_y;
Joonyoung Shim2ab97922012-09-27 19:25:21 +0900114 crtc_y = 0;
115 }
Joonyoung Shim4070d212012-06-27 14:27:05 +0900116
Joonyoung Shim3cabaf72015-04-07 15:59:39 +0900117 /* set ratio */
118 exynos_plane->h_ratio = (src_w << 16) / crtc_w;
119 exynos_plane->v_ratio = (src_h << 16) / crtc_h;
120
Joonyoung Shim4070d212012-06-27 14:27:05 +0900121 /* set drm framebuffer data. */
Joonyoung Shimcb8a3db2015-04-07 15:59:38 +0900122 exynos_plane->src_x = src_x;
123 exynos_plane->src_y = src_y;
Joonyoung Shim3cabaf72015-04-07 15:59:39 +0900124 exynos_plane->src_width = (actual_w * exynos_plane->h_ratio) >> 16;
125 exynos_plane->src_height = (actual_h * exynos_plane->v_ratio) >> 16;
Joonyoung Shimcb8a3db2015-04-07 15:59:38 +0900126 exynos_plane->fb_width = fb->width;
127 exynos_plane->fb_height = fb->height;
Gustavo Padovan8837dee2014-11-03 18:13:27 -0200128 exynos_plane->bpp = fb->bits_per_pixel;
129 exynos_plane->pitch = fb->pitches[0];
130 exynos_plane->pixel_format = fb->pixel_format;
Joonyoung Shim4070d212012-06-27 14:27:05 +0900131
Gustavo Padovan8837dee2014-11-03 18:13:27 -0200132 /* set plane range to be displayed. */
133 exynos_plane->crtc_x = crtc_x;
134 exynos_plane->crtc_y = crtc_y;
135 exynos_plane->crtc_width = actual_w;
136 exynos_plane->crtc_height = actual_h;
Joonyoung Shim4070d212012-06-27 14:27:05 +0900137
138 /* set drm mode data. */
Joonyoung Shim020e79d2015-06-02 21:04:42 +0900139 exynos_plane->mode_width = mode->hdisplay;
140 exynos_plane->mode_height = mode->vdisplay;
141 exynos_plane->refresh = mode->vrefresh;
142 exynos_plane->scan_flag = mode->flags;
Joonyoung Shim4070d212012-06-27 14:27:05 +0900143
Gustavo Padovan8837dee2014-11-03 18:13:27 -0200144 DRM_DEBUG_KMS("plane : offset_x/y(%d,%d), width/height(%d,%d)",
145 exynos_plane->crtc_x, exynos_plane->crtc_y,
146 exynos_plane->crtc_width, exynos_plane->crtc_height);
Joonyoung Shim4070d212012-06-27 14:27:05 +0900147
Andrzej Hajda72ed6cc2014-09-19 14:58:53 +0200148 plane->crtc = crtc;
Joonyoung Shim4070d212012-06-27 14:27:05 +0900149}
150
Gustavo Padovan43dbdad2015-06-01 12:04:41 -0300151void
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900152exynos_update_plane(struct drm_plane *plane, struct drm_crtc *crtc,
153 struct drm_framebuffer *fb, int crtc_x, int crtc_y,
154 unsigned int crtc_w, unsigned int crtc_h,
155 uint32_t src_x, uint32_t src_y,
156 uint32_t src_w, uint32_t src_h)
157{
Gustavo Padovan93bca242015-01-18 18:16:23 +0900158 struct exynos_drm_crtc *exynos_crtc = to_exynos_crtc(crtc);
Gustavo Padovan9d5310c2014-11-13 22:17:46 -0200159 struct exynos_drm_plane *exynos_plane = to_exynos_plane(plane);
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900160
Gustavo Padovanadf56912014-11-27 14:56:09 -0200161 exynos_plane_mode_set(plane, crtc, fb, crtc_x, crtc_y,
162 crtc_w, crtc_h, src_x >> 16, src_y >> 16,
163 src_w >> 16, src_h >> 16);
164
Gustavo Padovan93bca242015-01-18 18:16:23 +0900165 if (exynos_crtc->ops->win_commit)
166 exynos_crtc->ops->win_commit(exynos_crtc, exynos_plane->zpos);
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900167}
168
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900169static struct drm_plane_funcs exynos_plane_funcs = {
Gustavo Padovan43dbdad2015-06-01 12:04:41 -0300170 .update_plane = drm_plane_helper_update,
Gustavo Padovanb7448682015-06-01 12:04:42 -0300171 .disable_plane = drm_plane_helper_disable,
Gustavo Padovan97464d72015-04-01 13:02:10 -0300172 .destroy = drm_plane_cleanup,
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900173};
174
Gustavo Padovan43dbdad2015-06-01 12:04:41 -0300175static int exynos_plane_atomic_check(struct drm_plane *plane,
176 struct drm_plane_state *state)
177{
178 return exynos_check_plane(plane, state->fb);
179}
180
181static void exynos_plane_atomic_update(struct drm_plane *plane,
182 struct drm_plane_state *old_state)
183{
184 struct drm_plane_state *state = plane->state;
185
186 if (!state->crtc)
187 return;
188
189 exynos_update_plane(plane, state->crtc, state->fb,
190 state->crtc_x, state->crtc_y,
191 state->crtc_w, state->crtc_h,
192 state->src_x, state->src_y,
193 state->src_w, state->src_h);
194}
195
Gustavo Padovanb7448682015-06-01 12:04:42 -0300196static void exynos_plane_atomic_disable(struct drm_plane *plane,
197 struct drm_plane_state *old_state)
198{
199 struct exynos_drm_plane *exynos_plane = to_exynos_plane(plane);
200 struct exynos_drm_crtc *exynos_crtc = to_exynos_crtc(old_state->crtc);
201
202 if (!old_state->crtc)
203 return;
204
205 if (exynos_crtc->ops->win_disable)
206 exynos_crtc->ops->win_disable(exynos_crtc,
207 exynos_plane->zpos);
208}
209
Gustavo Padovan43dbdad2015-06-01 12:04:41 -0300210static const struct drm_plane_helper_funcs plane_helper_funcs = {
211 .atomic_check = exynos_plane_atomic_check,
212 .atomic_update = exynos_plane_atomic_update,
Gustavo Padovanb7448682015-06-01 12:04:42 -0300213 .atomic_disable = exynos_plane_atomic_disable,
Gustavo Padovan43dbdad2015-06-01 12:04:41 -0300214};
215
Gustavo Padovan6e2a3b62015-04-03 21:05:52 +0900216static void exynos_plane_attach_zpos_property(struct drm_plane *plane,
217 unsigned int zpos)
Joonyoung Shim00ae67c2012-06-27 14:27:06 +0900218{
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) {
Gustavo Padovan92104882015-04-01 13:02:09 -0300225 prop = drm_property_create_range(dev, DRM_MODE_PROP_IMMUTABLE,
226 "zpos", 0, MAX_PLANE - 1);
Joonyoung Shim00ae67c2012-06-27 14:27:06 +0900227 if (!prop)
228 return;
229
230 dev_priv->plane_zpos_property = prop;
231 }
232
Gustavo Padovan6e2a3b62015-04-03 21:05:52 +0900233 drm_object_attach_property(&plane->base, prop, zpos);
Joonyoung Shim00ae67c2012-06-27 14:27:06 +0900234}
235
Gustavo Padovan7ee14cd2015-04-03 21:03:40 +0900236int exynos_plane_init(struct drm_device *dev,
237 struct exynos_drm_plane *exynos_plane,
Gustavo Padovan6e2a3b62015-04-03 21:05:52 +0900238 unsigned long possible_crtcs, enum drm_plane_type type,
239 unsigned int zpos)
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900240{
Joonyoung Shimb5d2eb32012-06-27 14:27:04 +0900241 int err;
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900242
Andrzej Hajda72ed6cc2014-09-19 14:58:53 +0200243 err = drm_universal_plane_init(dev, &exynos_plane->base, possible_crtcs,
244 &exynos_plane_funcs, formats,
245 ARRAY_SIZE(formats), type);
Joonyoung Shimb5d2eb32012-06-27 14:27:04 +0900246 if (err) {
247 DRM_ERROR("failed to initialize plane\n");
Gustavo Padovan7ee14cd2015-04-03 21:03:40 +0900248 return err;
Joonyoung Shimb5d2eb32012-06-27 14:27:04 +0900249 }
250
Gustavo Padovan43dbdad2015-06-01 12:04:41 -0300251 drm_plane_helper_add(&exynos_plane->base, &plane_helper_funcs);
252
Gustavo Padovan6e2a3b62015-04-03 21:05:52 +0900253 exynos_plane->zpos = zpos;
254
255 if (type == DRM_PLANE_TYPE_OVERLAY)
256 exynos_plane_attach_zpos_property(&exynos_plane->base, zpos);
Joonyoung Shim00ae67c2012-06-27 14:27:06 +0900257
Gustavo Padovan7ee14cd2015-04-03 21:03:40 +0900258 return 0;
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900259}