1 /*
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 
12 #include <drm/drmP.h>
13 
14 #include <drm/exynos_drm.h>
15 #include <drm/drm_plane_helper.h>
16 #include <drm/drm_atomic_helper.h>
17 #include "exynos_drm_drv.h"
18 #include "exynos_drm_crtc.h"
19 #include "exynos_drm_fb.h"
20 #include "exynos_drm_gem.h"
21 #include "exynos_drm_plane.h"
22 
23 static const uint32_t formats[] = {
24 	DRM_FORMAT_XRGB8888,
25 	DRM_FORMAT_ARGB8888,
26 	DRM_FORMAT_NV12,
27 };
28 
29 /*
30  * This function is to get X or Y size shown via screen. This needs length and
31  * start position of CRTC.
32  *
33  *      <--- length --->
34  * CRTC ----------------
35  *      ^ start        ^ end
36  *
37  * There are six cases from a to f.
38  *
39  *             <----- SCREEN ----->
40  *             0                 last
41  *   ----------|------------------|----------
42  * CRTCs
43  * a -------
44  *        b -------
45  *        c --------------------------
46  *                 d --------
47  *                           e -------
48  *                                  f -------
49  */
50 static int exynos_plane_get_size(int start, unsigned length, unsigned last)
51 {
52 	int end = start + length;
53 	int size = 0;
54 
55 	if (start <= 0) {
56 		if (end > 0)
57 			size = min_t(unsigned, end, last);
58 	} else if (start <= last) {
59 		size = min_t(unsigned, last - start, length);
60 	}
61 
62 	return size;
63 }
64 
65 static void exynos_plane_mode_set(struct drm_plane *plane,
66 				  struct drm_crtc *crtc,
67 				  struct drm_framebuffer *fb,
68 				  int crtc_x, int crtc_y,
69 				  unsigned int crtc_w, unsigned int crtc_h,
70 				  uint32_t src_x, uint32_t src_y,
71 				  uint32_t src_w, uint32_t src_h)
72 {
73 	struct exynos_drm_plane *exynos_plane = to_exynos_plane(plane);
74 	struct drm_display_mode *mode = &crtc->state->adjusted_mode;
75 	unsigned int actual_w;
76 	unsigned int actual_h;
77 
78 	actual_w = exynos_plane_get_size(crtc_x, crtc_w, mode->hdisplay);
79 	actual_h = exynos_plane_get_size(crtc_y, crtc_h, mode->vdisplay);
80 
81 	if (crtc_x < 0) {
82 		if (actual_w)
83 			src_x -= crtc_x;
84 		crtc_x = 0;
85 	}
86 
87 	if (crtc_y < 0) {
88 		if (actual_h)
89 			src_y -= crtc_y;
90 		crtc_y = 0;
91 	}
92 
93 	/* set ratio */
94 	exynos_plane->h_ratio = (src_w << 16) / crtc_w;
95 	exynos_plane->v_ratio = (src_h << 16) / crtc_h;
96 
97 	/* set drm framebuffer data. */
98 	exynos_plane->src_x = src_x;
99 	exynos_plane->src_y = src_y;
100 	exynos_plane->src_w = (actual_w * exynos_plane->h_ratio) >> 16;
101 	exynos_plane->src_h = (actual_h * exynos_plane->v_ratio) >> 16;
102 
103 	/* set plane range to be displayed. */
104 	exynos_plane->crtc_x = crtc_x;
105 	exynos_plane->crtc_y = crtc_y;
106 	exynos_plane->crtc_w = actual_w;
107 	exynos_plane->crtc_h = actual_h;
108 
109 	DRM_DEBUG_KMS("plane : offset_x/y(%d,%d), width/height(%d,%d)",
110 			exynos_plane->crtc_x, exynos_plane->crtc_y,
111 			exynos_plane->crtc_w, exynos_plane->crtc_h);
112 
113 	plane->crtc = crtc;
114 }
115 
116 static struct drm_plane_funcs exynos_plane_funcs = {
117 	.update_plane	= drm_atomic_helper_update_plane,
118 	.disable_plane	= drm_atomic_helper_disable_plane,
119 	.destroy	= drm_plane_cleanup,
120 	.reset = drm_atomic_helper_plane_reset,
121 	.atomic_duplicate_state = drm_atomic_helper_plane_duplicate_state,
122 	.atomic_destroy_state = drm_atomic_helper_plane_destroy_state,
123 };
124 
125 static int exynos_plane_atomic_check(struct drm_plane *plane,
126 				     struct drm_plane_state *state)
127 {
128 	struct exynos_drm_plane *exynos_plane = to_exynos_plane(plane);
129 	int nr;
130 	int i;
131 
132 	if (!state->fb)
133 		return 0;
134 
135 	nr = exynos_drm_fb_get_buf_cnt(state->fb);
136 	for (i = 0; i < nr; i++) {
137 		struct exynos_drm_gem_obj *obj =
138 					exynos_drm_fb_gem_obj(state->fb, i);
139 
140 		if (!obj) {
141 			DRM_DEBUG_KMS("gem object is null\n");
142 			return -EFAULT;
143 		}
144 
145 		exynos_plane->dma_addr[i] = obj->dma_addr +
146 					    state->fb->offsets[i];
147 
148 		DRM_DEBUG_KMS("buffer: %d, dma_addr = 0x%lx\n",
149 				i, (unsigned long)exynos_plane->dma_addr[i]);
150 	}
151 
152 	return 0;
153 }
154 
155 static void exynos_plane_atomic_update(struct drm_plane *plane,
156 				       struct drm_plane_state *old_state)
157 {
158 	struct drm_plane_state *state = plane->state;
159 	struct exynos_drm_crtc *exynos_crtc = to_exynos_crtc(state->crtc);
160 	struct exynos_drm_plane *exynos_plane = to_exynos_plane(plane);
161 
162 	if (!state->crtc)
163 		return;
164 
165 	exynos_plane_mode_set(plane, state->crtc, state->fb,
166 			      state->crtc_x, state->crtc_y,
167 			      state->crtc_w, state->crtc_h,
168 			      state->src_x >> 16, state->src_y >> 16,
169 			      state->src_w >> 16, state->src_h >> 16);
170 
171 	if (exynos_crtc->ops->update_plane)
172 		exynos_crtc->ops->update_plane(exynos_crtc, exynos_plane);
173 }
174 
175 static void exynos_plane_atomic_disable(struct drm_plane *plane,
176 					struct drm_plane_state *old_state)
177 {
178 	struct exynos_drm_plane *exynos_plane = to_exynos_plane(plane);
179 	struct exynos_drm_crtc *exynos_crtc = to_exynos_crtc(old_state->crtc);
180 
181 	if (!old_state->crtc)
182 		return;
183 
184 	if (exynos_crtc->ops->disable_plane)
185 		exynos_crtc->ops->disable_plane(exynos_crtc,
186 						exynos_plane);
187 }
188 
189 static const struct drm_plane_helper_funcs plane_helper_funcs = {
190 	.atomic_check = exynos_plane_atomic_check,
191 	.atomic_update = exynos_plane_atomic_update,
192 	.atomic_disable = exynos_plane_atomic_disable,
193 };
194 
195 static void exynos_plane_attach_zpos_property(struct drm_plane *plane,
196 					      unsigned int zpos)
197 {
198 	struct drm_device *dev = plane->dev;
199 	struct exynos_drm_private *dev_priv = dev->dev_private;
200 	struct drm_property *prop;
201 
202 	prop = dev_priv->plane_zpos_property;
203 	if (!prop) {
204 		prop = drm_property_create_range(dev, DRM_MODE_PROP_IMMUTABLE,
205 						 "zpos", 0, MAX_PLANE - 1);
206 		if (!prop)
207 			return;
208 
209 		dev_priv->plane_zpos_property = prop;
210 	}
211 
212 	drm_object_attach_property(&plane->base, prop, zpos);
213 }
214 
215 int exynos_plane_init(struct drm_device *dev,
216 		      struct exynos_drm_plane *exynos_plane,
217 		      unsigned long possible_crtcs, enum drm_plane_type type,
218 		      unsigned int zpos)
219 {
220 	int err;
221 
222 	err = drm_universal_plane_init(dev, &exynos_plane->base, possible_crtcs,
223 				       &exynos_plane_funcs, formats,
224 				       ARRAY_SIZE(formats), type);
225 	if (err) {
226 		DRM_ERROR("failed to initialize plane\n");
227 		return err;
228 	}
229 
230 	drm_plane_helper_add(&exynos_plane->base, &plane_helper_funcs);
231 
232 	exynos_plane->zpos = zpos;
233 
234 	if (type == DRM_PLANE_TYPE_OVERLAY)
235 		exynos_plane_attach_zpos_property(&exynos_plane->base, zpos);
236 
237 	return 0;
238 }
239