blob: e45730ad67f2b2c03bb4b03c18cbe7c84f2adf64 [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>
Gustavo Padovan4ea95262015-06-01 12:04:44 -030016#include <drm/drm_atomic_helper.h>
Joonyoung Shim864ee9e2011-12-08 17:54:07 +090017#include "exynos_drm_drv.h"
Sean Paul080be03d2014-02-19 21:02:55 +090018#include "exynos_drm_crtc.h"
Joonyoung Shim4070d212012-06-27 14:27:05 +090019#include "exynos_drm_fb.h"
20#include "exynos_drm_gem.h"
Mark Browne30655d2013-08-13 00:46:40 +010021#include "exynos_drm_plane.h"
Joonyoung Shim864ee9e2011-12-08 17:54:07 +090022
Joonyoung Shim2ab97922012-09-27 19:25:21 +090023/*
24 * This function is to get X or Y size shown via screen. This needs length and
25 * start position of CRTC.
26 *
27 * <--- length --->
28 * CRTC ----------------
29 * ^ start ^ end
30 *
Joonyoung Shim60a705a2012-12-14 15:48:22 +090031 * There are six cases from a to f.
Joonyoung Shim2ab97922012-09-27 19:25:21 +090032 *
33 * <----- SCREEN ----->
34 * 0 last
35 * ----------|------------------|----------
36 * CRTCs
37 * a -------
38 * b -------
39 * c --------------------------
40 * d --------
41 * e -------
42 * f -------
43 */
44static int exynos_plane_get_size(int start, unsigned length, unsigned last)
45{
46 int end = start + length;
47 int size = 0;
48
49 if (start <= 0) {
50 if (end > 0)
51 size = min_t(unsigned, end, last);
52 } else if (start <= last) {
53 size = min_t(unsigned, last - start, length);
54 }
55
56 return size;
57}
58
Marek Szyprowski0114f402015-11-30 14:53:22 +010059static void exynos_plane_mode_set(struct exynos_drm_plane_state *exynos_state)
60
Gustavo Padovanadf56912014-11-27 14:56:09 -020061{
Marek Szyprowski0114f402015-11-30 14:53:22 +010062 struct drm_plane_state *state = &exynos_state->base;
63 struct drm_crtc *crtc = exynos_state->base.crtc;
Joonyoung Shim020e79d2015-06-02 21:04:42 +090064 struct drm_display_mode *mode = &crtc->state->adjusted_mode;
Marek Szyprowski0114f402015-11-30 14:53:22 +010065 int crtc_x, crtc_y;
66 unsigned int crtc_w, crtc_h;
67 unsigned int src_x, src_y;
68 unsigned int src_w, src_h;
Gustavo Padovanadf56912014-11-27 14:56:09 -020069 unsigned int actual_w;
70 unsigned int actual_h;
71
Marek Szyprowski0114f402015-11-30 14:53:22 +010072 /*
73 * The original src/dest coordinates are stored in exynos_state->base,
74 * but we want to keep another copy internal to our driver that we can
75 * clip/modify ourselves.
76 */
77
78 crtc_x = state->crtc_x;
79 crtc_y = state->crtc_y;
80 crtc_w = state->crtc_w;
81 crtc_h = state->crtc_h;
82
83 src_x = state->src_x >> 16;
84 src_y = state->src_y >> 16;
85 src_w = state->src_w >> 16;
86 src_h = state->src_h >> 16;
87
Marek Szyprowskid16a11a2015-11-30 14:53:28 +010088 /* set ratio */
89 exynos_state->h_ratio = (src_w << 16) / crtc_w;
90 exynos_state->v_ratio = (src_h << 16) / crtc_h;
91
92 /* clip to visible area */
Joonyoung Shim020e79d2015-06-02 21:04:42 +090093 actual_w = exynos_plane_get_size(crtc_x, crtc_w, mode->hdisplay);
94 actual_h = exynos_plane_get_size(crtc_y, crtc_h, mode->vdisplay);
Joonyoung Shim2ab97922012-09-27 19:25:21 +090095
96 if (crtc_x < 0) {
97 if (actual_w)
Marek Szyprowskid16a11a2015-11-30 14:53:28 +010098 src_x += ((-crtc_x) * exynos_state->h_ratio) >> 16;
Joonyoung Shim2ab97922012-09-27 19:25:21 +090099 crtc_x = 0;
100 }
101
102 if (crtc_y < 0) {
103 if (actual_h)
Marek Szyprowskid16a11a2015-11-30 14:53:28 +0100104 src_y += ((-crtc_y) * exynos_state->v_ratio) >> 16;
Joonyoung Shim2ab97922012-09-27 19:25:21 +0900105 crtc_y = 0;
106 }
Joonyoung Shim4070d212012-06-27 14:27:05 +0900107
108 /* set drm framebuffer data. */
Marek Szyprowski0114f402015-11-30 14:53:22 +0100109 exynos_state->src.x = src_x;
110 exynos_state->src.y = src_y;
111 exynos_state->src.w = (actual_w * exynos_state->h_ratio) >> 16;
112 exynos_state->src.h = (actual_h * exynos_state->v_ratio) >> 16;
Joonyoung Shim4070d212012-06-27 14:27:05 +0900113
Gustavo Padovan8837dee2014-11-03 18:13:27 -0200114 /* set plane range to be displayed. */
Marek Szyprowski0114f402015-11-30 14:53:22 +0100115 exynos_state->crtc.x = crtc_x;
116 exynos_state->crtc.y = crtc_y;
117 exynos_state->crtc.w = actual_w;
118 exynos_state->crtc.h = actual_h;
Gustavo Padovand88d2462015-07-16 12:23:38 -0300119
Gustavo Padovan8837dee2014-11-03 18:13:27 -0200120 DRM_DEBUG_KMS("plane : offset_x/y(%d,%d), width/height(%d,%d)",
Marek Szyprowski0114f402015-11-30 14:53:22 +0100121 exynos_state->crtc.x, exynos_state->crtc.y,
122 exynos_state->crtc.w, exynos_state->crtc.h);
123}
Joonyoung Shim4070d212012-06-27 14:27:05 +0900124
Marek Szyprowski0114f402015-11-30 14:53:22 +0100125static void exynos_drm_plane_reset(struct drm_plane *plane)
126{
127 struct exynos_drm_plane_state *exynos_state;
128
129 if (plane->state) {
130 exynos_state = to_exynos_plane_state(plane->state);
131 if (exynos_state->base.fb)
132 drm_framebuffer_unreference(exynos_state->base.fb);
133 kfree(exynos_state);
134 plane->state = NULL;
135 }
136
137 exynos_state = kzalloc(sizeof(*exynos_state), GFP_KERNEL);
138 if (exynos_state) {
139 plane->state = &exynos_state->base;
140 plane->state->plane = plane;
141 }
142}
143
144static struct drm_plane_state *
145exynos_drm_plane_duplicate_state(struct drm_plane *plane)
146{
147 struct exynos_drm_plane_state *exynos_state;
148 struct exynos_drm_plane_state *copy;
149
150 exynos_state = to_exynos_plane_state(plane->state);
151 copy = kzalloc(sizeof(*exynos_state), GFP_KERNEL);
152 if (!copy)
153 return NULL;
154
155 __drm_atomic_helper_plane_duplicate_state(plane, &copy->base);
156 return &copy->base;
157}
158
159static void exynos_drm_plane_destroy_state(struct drm_plane *plane,
160 struct drm_plane_state *old_state)
161{
162 struct exynos_drm_plane_state *old_exynos_state =
163 to_exynos_plane_state(old_state);
164 __drm_atomic_helper_plane_destroy_state(plane, old_state);
165 kfree(old_exynos_state);
Joonyoung Shim4070d212012-06-27 14:27:05 +0900166}
167
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900168static struct drm_plane_funcs exynos_plane_funcs = {
Gustavo Padovan910874a2015-06-01 12:04:46 -0300169 .update_plane = drm_atomic_helper_update_plane,
170 .disable_plane = drm_atomic_helper_disable_plane,
Gustavo Padovan97464d72015-04-01 13:02:10 -0300171 .destroy = drm_plane_cleanup,
Marek Szyprowski0114f402015-11-30 14:53:22 +0100172 .reset = exynos_drm_plane_reset,
173 .atomic_duplicate_state = exynos_drm_plane_duplicate_state,
174 .atomic_destroy_state = exynos_drm_plane_destroy_state,
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900175};
176
Marek Szyprowski6178d3d2015-11-30 14:53:26 +0100177static int
178exynos_drm_plane_check_size(const struct exynos_drm_plane_config *config,
179 struct exynos_drm_plane_state *state)
180{
181 bool width_ok = false, height_ok = false;
182
183 if (config->capabilities & EXYNOS_DRM_PLANE_CAP_SCALE)
184 return 0;
185
186 if (state->src.w == state->crtc.w)
187 width_ok = true;
188
189 if (state->src.h == state->crtc.h)
190 height_ok = true;
191
192 if ((config->capabilities & EXYNOS_DRM_PLANE_CAP_DOUBLE) &&
193 state->h_ratio == (1 << 15))
194 width_ok = true;
195
196 if ((config->capabilities & EXYNOS_DRM_PLANE_CAP_DOUBLE) &&
197 state->v_ratio == (1 << 15))
198 height_ok = true;
199
200 if (width_ok & height_ok)
201 return 0;
202
203 DRM_DEBUG_KMS("scaling mode is not supported");
204 return -ENOTSUPP;
205}
206
Gustavo Padovan43dbdad2015-06-01 12:04:41 -0300207static int exynos_plane_atomic_check(struct drm_plane *plane,
208 struct drm_plane_state *state)
209{
Gustavo Padovand5f52232015-06-01 12:04:49 -0300210 struct exynos_drm_plane *exynos_plane = to_exynos_plane(plane);
Marek Szyprowski0114f402015-11-30 14:53:22 +0100211 struct exynos_drm_plane_state *exynos_state =
212 to_exynos_plane_state(state);
213 int ret = 0;
Gustavo Padovand5f52232015-06-01 12:04:49 -0300214
Marek Szyprowski0114f402015-11-30 14:53:22 +0100215 if (!state->crtc || !state->fb)
Gustavo Padovand5f52232015-06-01 12:04:49 -0300216 return 0;
217
Marek Szyprowski0114f402015-11-30 14:53:22 +0100218 /* translate state into exynos_state */
219 exynos_plane_mode_set(exynos_state);
Gustavo Padovand5f52232015-06-01 12:04:49 -0300220
Marek Szyprowski6178d3d2015-11-30 14:53:26 +0100221 ret = exynos_drm_plane_check_size(exynos_plane->config, exynos_state);
Marek Szyprowski0114f402015-11-30 14:53:22 +0100222 return ret;
Gustavo Padovan43dbdad2015-06-01 12:04:41 -0300223}
224
225static void exynos_plane_atomic_update(struct drm_plane *plane,
226 struct drm_plane_state *old_state)
227{
228 struct drm_plane_state *state = plane->state;
Gustavo Padovand5f52232015-06-01 12:04:49 -0300229 struct exynos_drm_crtc *exynos_crtc = to_exynos_crtc(state->crtc);
230 struct exynos_drm_plane *exynos_plane = to_exynos_plane(plane);
Gustavo Padovan43dbdad2015-06-01 12:04:41 -0300231
232 if (!state->crtc)
233 return;
234
Marek Szyprowski0114f402015-11-30 14:53:22 +0100235 plane->crtc = state->crtc;
Gustavo Padovan822f6df2015-08-15 13:26:14 -0300236 exynos_plane->pending_fb = state->fb;
237
Gustavo Padovan9cc76102015-08-03 14:38:05 +0900238 if (exynos_crtc->ops->update_plane)
Gustavo Padovan1e1d1392015-08-03 14:39:36 +0900239 exynos_crtc->ops->update_plane(exynos_crtc, exynos_plane);
Gustavo Padovan43dbdad2015-06-01 12:04:41 -0300240}
241
Gustavo Padovanb7448682015-06-01 12:04:42 -0300242static void exynos_plane_atomic_disable(struct drm_plane *plane,
243 struct drm_plane_state *old_state)
244{
245 struct exynos_drm_plane *exynos_plane = to_exynos_plane(plane);
246 struct exynos_drm_crtc *exynos_crtc = to_exynos_crtc(old_state->crtc);
247
248 if (!old_state->crtc)
249 return;
250
Gustavo Padovan9cc76102015-08-03 14:38:05 +0900251 if (exynos_crtc->ops->disable_plane)
Marek Szyprowski0114f402015-11-30 14:53:22 +0100252 exynos_crtc->ops->disable_plane(exynos_crtc, exynos_plane);
Gustavo Padovanb7448682015-06-01 12:04:42 -0300253}
254
Gustavo Padovan43dbdad2015-06-01 12:04:41 -0300255static const struct drm_plane_helper_funcs plane_helper_funcs = {
256 .atomic_check = exynos_plane_atomic_check,
257 .atomic_update = exynos_plane_atomic_update,
Gustavo Padovanb7448682015-06-01 12:04:42 -0300258 .atomic_disable = exynos_plane_atomic_disable,
Gustavo Padovan43dbdad2015-06-01 12:04:41 -0300259};
260
Gustavo Padovan6e2a3b62015-04-03 21:05:52 +0900261static void exynos_plane_attach_zpos_property(struct drm_plane *plane,
262 unsigned int zpos)
Joonyoung Shim00ae67c2012-06-27 14:27:06 +0900263{
264 struct drm_device *dev = plane->dev;
265 struct exynos_drm_private *dev_priv = dev->dev_private;
266 struct drm_property *prop;
267
Joonyoung Shim00ae67c2012-06-27 14:27:06 +0900268 prop = dev_priv->plane_zpos_property;
269 if (!prop) {
Gustavo Padovan92104882015-04-01 13:02:09 -0300270 prop = drm_property_create_range(dev, DRM_MODE_PROP_IMMUTABLE,
271 "zpos", 0, MAX_PLANE - 1);
Joonyoung Shim00ae67c2012-06-27 14:27:06 +0900272 if (!prop)
273 return;
274
275 dev_priv->plane_zpos_property = prop;
276 }
277
Gustavo Padovan6e2a3b62015-04-03 21:05:52 +0900278 drm_object_attach_property(&plane->base, prop, zpos);
Joonyoung Shim00ae67c2012-06-27 14:27:06 +0900279}
280
Gustavo Padovan7ee14cd2015-04-03 21:03:40 +0900281int exynos_plane_init(struct drm_device *dev,
282 struct exynos_drm_plane *exynos_plane,
Marek Szyprowski40bdfb02015-12-16 13:21:42 +0100283 unsigned int index, unsigned long possible_crtcs,
Marek Szyprowskifd2d2fc2015-11-30 14:53:25 +0100284 const struct exynos_drm_plane_config *config)
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900285{
Joonyoung Shimb5d2eb32012-06-27 14:27:04 +0900286 int err;
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900287
Marek Szyprowskifd2d2fc2015-11-30 14:53:25 +0100288 err = drm_universal_plane_init(dev, &exynos_plane->base,
289 possible_crtcs,
290 &exynos_plane_funcs,
291 config->pixel_formats,
292 config->num_pixel_formats,
Dave Airlie870a1712015-12-15 10:42:07 +1000293 config->type, NULL);
Joonyoung Shimb5d2eb32012-06-27 14:27:04 +0900294 if (err) {
295 DRM_ERROR("failed to initialize plane\n");
Gustavo Padovan7ee14cd2015-04-03 21:03:40 +0900296 return err;
Joonyoung Shimb5d2eb32012-06-27 14:27:04 +0900297 }
298
Gustavo Padovan43dbdad2015-06-01 12:04:41 -0300299 drm_plane_helper_add(&exynos_plane->base, &plane_helper_funcs);
300
Marek Szyprowski40bdfb02015-12-16 13:21:42 +0100301 exynos_plane->index = index;
Marek Szyprowskifd2d2fc2015-11-30 14:53:25 +0100302 exynos_plane->config = config;
Gustavo Padovan6e2a3b62015-04-03 21:05:52 +0900303
Marek Szyprowskifd2d2fc2015-11-30 14:53:25 +0100304 if (config->type == DRM_PLANE_TYPE_OVERLAY)
305 exynos_plane_attach_zpos_property(&exynos_plane->base,
306 config->zpos);
Joonyoung Shim00ae67c2012-06-27 14:27:06 +0900307
Gustavo Padovan7ee14cd2015-04-03 21:03:40 +0900308 return 0;
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900309}