xref: /openbmc/linux/drivers/gpu/drm/i915/display/intel_atomic_plane.c (revision 15a1fbdcfb519c2bd291ed01c6c94e0b89537a77)
1 /*
2  * Copyright © 2014 Intel Corporation
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the "Software"),
6  * to deal in the Software without restriction, including without limitation
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8  * and/or sell copies of the Software, and to permit persons to whom the
9  * Software is furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice (including the next
12  * paragraph) shall be included in all copies or substantial portions of the
13  * Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
18  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21  * DEALINGS IN THE SOFTWARE.
22  */
23 
24 /**
25  * DOC: atomic plane helpers
26  *
27  * The functions here are used by the atomic plane helper functions to
28  * implement legacy plane updates (i.e., drm_plane->update_plane() and
29  * drm_plane->disable_plane()).  This allows plane updates to use the
30  * atomic state infrastructure and perform plane updates as separate
31  * prepare/check/commit/cleanup steps.
32  */
33 
34 #include <drm/drm_atomic_helper.h>
35 #include <drm/drm_fourcc.h>
36 #include <drm/drm_plane_helper.h>
37 
38 #include "i915_trace.h"
39 #include "intel_atomic_plane.h"
40 #include "intel_cdclk.h"
41 #include "intel_display_types.h"
42 #include "intel_pm.h"
43 #include "intel_sprite.h"
44 
45 static void intel_plane_state_reset(struct intel_plane_state *plane_state,
46 				    struct intel_plane *plane)
47 {
48 	memset(plane_state, 0, sizeof(*plane_state));
49 
50 	__drm_atomic_helper_plane_state_reset(&plane_state->uapi, &plane->base);
51 
52 	plane_state->scaler_id = -1;
53 }
54 
55 struct intel_plane *intel_plane_alloc(void)
56 {
57 	struct intel_plane_state *plane_state;
58 	struct intel_plane *plane;
59 
60 	plane = kzalloc(sizeof(*plane), GFP_KERNEL);
61 	if (!plane)
62 		return ERR_PTR(-ENOMEM);
63 
64 	plane_state = kzalloc(sizeof(*plane_state), GFP_KERNEL);
65 	if (!plane_state) {
66 		kfree(plane);
67 		return ERR_PTR(-ENOMEM);
68 	}
69 
70 	intel_plane_state_reset(plane_state, plane);
71 
72 	plane->base.state = &plane_state->uapi;
73 
74 	return plane;
75 }
76 
77 void intel_plane_free(struct intel_plane *plane)
78 {
79 	intel_plane_destroy_state(&plane->base, plane->base.state);
80 	kfree(plane);
81 }
82 
83 /**
84  * intel_plane_duplicate_state - duplicate plane state
85  * @plane: drm plane
86  *
87  * Allocates and returns a copy of the plane state (both common and
88  * Intel-specific) for the specified plane.
89  *
90  * Returns: The newly allocated plane state, or NULL on failure.
91  */
92 struct drm_plane_state *
93 intel_plane_duplicate_state(struct drm_plane *plane)
94 {
95 	struct intel_plane_state *intel_state;
96 
97 	intel_state = to_intel_plane_state(plane->state);
98 	intel_state = kmemdup(intel_state, sizeof(*intel_state), GFP_KERNEL);
99 
100 	if (!intel_state)
101 		return NULL;
102 
103 	__drm_atomic_helper_plane_duplicate_state(plane, &intel_state->uapi);
104 
105 	intel_state->vma = NULL;
106 	intel_state->flags = 0;
107 
108 	/* add reference to fb */
109 	if (intel_state->hw.fb)
110 		drm_framebuffer_get(intel_state->hw.fb);
111 
112 	return &intel_state->uapi;
113 }
114 
115 /**
116  * intel_plane_destroy_state - destroy plane state
117  * @plane: drm plane
118  * @state: state object to destroy
119  *
120  * Destroys the plane state (both common and Intel-specific) for the
121  * specified plane.
122  */
123 void
124 intel_plane_destroy_state(struct drm_plane *plane,
125 			  struct drm_plane_state *state)
126 {
127 	struct intel_plane_state *plane_state = to_intel_plane_state(state);
128 	WARN_ON(plane_state->vma);
129 
130 	__drm_atomic_helper_plane_destroy_state(&plane_state->uapi);
131 	if (plane_state->hw.fb)
132 		drm_framebuffer_put(plane_state->hw.fb);
133 	kfree(plane_state);
134 }
135 
136 unsigned int intel_plane_data_rate(const struct intel_crtc_state *crtc_state,
137 				   const struct intel_plane_state *plane_state)
138 {
139 	const struct drm_framebuffer *fb = plane_state->hw.fb;
140 	unsigned int cpp;
141 
142 	if (!plane_state->uapi.visible)
143 		return 0;
144 
145 	cpp = fb->format->cpp[0];
146 
147 	/*
148 	 * Based on HSD#:1408715493
149 	 * NV12 cpp == 4, P010 cpp == 8
150 	 *
151 	 * FIXME what is the logic behind this?
152 	 */
153 	if (fb->format->is_yuv && fb->format->num_planes > 1)
154 		cpp *= 4;
155 
156 	return cpp * crtc_state->pixel_rate;
157 }
158 
159 int intel_plane_calc_min_cdclk(struct intel_atomic_state *state,
160 			       struct intel_plane *plane,
161 			       bool *need_cdclk_calc)
162 {
163 	struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
164 	const struct intel_plane_state *plane_state =
165 		intel_atomic_get_new_plane_state(state, plane);
166 	struct intel_crtc *crtc = to_intel_crtc(plane_state->hw.crtc);
167 	const struct intel_cdclk_state *cdclk_state;
168 	const struct intel_crtc_state *old_crtc_state;
169 	struct intel_crtc_state *new_crtc_state;
170 
171 	if (!plane_state->uapi.visible || !plane->min_cdclk)
172 		return 0;
173 
174 	old_crtc_state = intel_atomic_get_old_crtc_state(state, crtc);
175 	new_crtc_state = intel_atomic_get_new_crtc_state(state, crtc);
176 
177 	new_crtc_state->min_cdclk[plane->id] =
178 		plane->min_cdclk(new_crtc_state, plane_state);
179 
180 	/*
181 	 * No need to check against the cdclk state if
182 	 * the min cdclk for the plane doesn't increase.
183 	 *
184 	 * Ie. we only ever increase the cdclk due to plane
185 	 * requirements. This can reduce back and forth
186 	 * display blinking due to constant cdclk changes.
187 	 */
188 	if (new_crtc_state->min_cdclk[plane->id] <=
189 	    old_crtc_state->min_cdclk[plane->id])
190 		return 0;
191 
192 	cdclk_state = intel_atomic_get_cdclk_state(state);
193 	if (IS_ERR(cdclk_state))
194 		return PTR_ERR(cdclk_state);
195 
196 	/*
197 	 * No need to recalculate the cdclk state if
198 	 * the min cdclk for the pipe doesn't increase.
199 	 *
200 	 * Ie. we only ever increase the cdclk due to plane
201 	 * requirements. This can reduce back and forth
202 	 * display blinking due to constant cdclk changes.
203 	 */
204 	if (new_crtc_state->min_cdclk[plane->id] <=
205 	    cdclk_state->min_cdclk[crtc->pipe])
206 		return 0;
207 
208 	drm_dbg_kms(&dev_priv->drm,
209 		    "[PLANE:%d:%s] min cdclk (%d kHz) > [CRTC:%d:%s] min cdclk (%d kHz)\n",
210 		    plane->base.base.id, plane->base.name,
211 		    new_crtc_state->min_cdclk[plane->id],
212 		    crtc->base.base.id, crtc->base.name,
213 		    cdclk_state->min_cdclk[crtc->pipe]);
214 	*need_cdclk_calc = true;
215 
216 	return 0;
217 }
218 
219 static void intel_plane_clear_hw_state(struct intel_plane_state *plane_state)
220 {
221 	if (plane_state->hw.fb)
222 		drm_framebuffer_put(plane_state->hw.fb);
223 
224 	memset(&plane_state->hw, 0, sizeof(plane_state->hw));
225 }
226 
227 void intel_plane_copy_uapi_to_hw_state(struct intel_plane_state *plane_state,
228 				       const struct intel_plane_state *from_plane_state)
229 {
230 	intel_plane_clear_hw_state(plane_state);
231 
232 	plane_state->hw.crtc = from_plane_state->uapi.crtc;
233 	plane_state->hw.fb = from_plane_state->uapi.fb;
234 	if (plane_state->hw.fb)
235 		drm_framebuffer_get(plane_state->hw.fb);
236 
237 	plane_state->hw.alpha = from_plane_state->uapi.alpha;
238 	plane_state->hw.pixel_blend_mode =
239 		from_plane_state->uapi.pixel_blend_mode;
240 	plane_state->hw.rotation = from_plane_state->uapi.rotation;
241 	plane_state->hw.color_encoding = from_plane_state->uapi.color_encoding;
242 	plane_state->hw.color_range = from_plane_state->uapi.color_range;
243 }
244 
245 int intel_plane_atomic_check_with_state(const struct intel_crtc_state *old_crtc_state,
246 					struct intel_crtc_state *new_crtc_state,
247 					const struct intel_plane_state *old_plane_state,
248 					struct intel_plane_state *new_plane_state)
249 {
250 	struct intel_plane *plane = to_intel_plane(new_plane_state->uapi.plane);
251 	const struct drm_framebuffer *fb = new_plane_state->hw.fb;
252 	int ret;
253 
254 	new_crtc_state->active_planes &= ~BIT(plane->id);
255 	new_crtc_state->nv12_planes &= ~BIT(plane->id);
256 	new_crtc_state->c8_planes &= ~BIT(plane->id);
257 	new_crtc_state->data_rate[plane->id] = 0;
258 	new_crtc_state->min_cdclk[plane->id] = 0;
259 	new_plane_state->uapi.visible = false;
260 
261 	if (!new_plane_state->hw.crtc && !old_plane_state->hw.crtc)
262 		return 0;
263 
264 	ret = plane->check_plane(new_crtc_state, new_plane_state);
265 	if (ret)
266 		return ret;
267 
268 	/* FIXME pre-g4x don't work like this */
269 	if (new_plane_state->uapi.visible)
270 		new_crtc_state->active_planes |= BIT(plane->id);
271 
272 	if (new_plane_state->uapi.visible &&
273 	    intel_format_info_is_yuv_semiplanar(fb->format, fb->modifier))
274 		new_crtc_state->nv12_planes |= BIT(plane->id);
275 
276 	if (new_plane_state->uapi.visible &&
277 	    fb->format->format == DRM_FORMAT_C8)
278 		new_crtc_state->c8_planes |= BIT(plane->id);
279 
280 	if (new_plane_state->uapi.visible || old_plane_state->uapi.visible)
281 		new_crtc_state->update_planes |= BIT(plane->id);
282 
283 	new_crtc_state->data_rate[plane->id] =
284 		intel_plane_data_rate(new_crtc_state, new_plane_state);
285 
286 	return intel_plane_atomic_calc_changes(old_crtc_state, new_crtc_state,
287 					       old_plane_state, new_plane_state);
288 }
289 
290 static struct intel_crtc *
291 get_crtc_from_states(const struct intel_plane_state *old_plane_state,
292 		     const struct intel_plane_state *new_plane_state)
293 {
294 	if (new_plane_state->uapi.crtc)
295 		return to_intel_crtc(new_plane_state->uapi.crtc);
296 
297 	if (old_plane_state->uapi.crtc)
298 		return to_intel_crtc(old_plane_state->uapi.crtc);
299 
300 	return NULL;
301 }
302 
303 int intel_plane_atomic_check(struct intel_atomic_state *state,
304 			     struct intel_plane *plane)
305 {
306 	struct intel_plane_state *new_plane_state =
307 		intel_atomic_get_new_plane_state(state, plane);
308 	const struct intel_plane_state *old_plane_state =
309 		intel_atomic_get_old_plane_state(state, plane);
310 	struct intel_crtc *crtc =
311 		get_crtc_from_states(old_plane_state, new_plane_state);
312 	const struct intel_crtc_state *old_crtc_state;
313 	struct intel_crtc_state *new_crtc_state;
314 
315 	intel_plane_copy_uapi_to_hw_state(new_plane_state, new_plane_state);
316 	new_plane_state->uapi.visible = false;
317 	if (!crtc)
318 		return 0;
319 
320 	old_crtc_state = intel_atomic_get_old_crtc_state(state, crtc);
321 	new_crtc_state = intel_atomic_get_new_crtc_state(state, crtc);
322 
323 	return intel_plane_atomic_check_with_state(old_crtc_state,
324 						   new_crtc_state,
325 						   old_plane_state,
326 						   new_plane_state);
327 }
328 
329 static struct intel_plane *
330 skl_next_plane_to_commit(struct intel_atomic_state *state,
331 			 struct intel_crtc *crtc,
332 			 struct skl_ddb_entry entries_y[I915_MAX_PLANES],
333 			 struct skl_ddb_entry entries_uv[I915_MAX_PLANES],
334 			 unsigned int *update_mask)
335 {
336 	struct intel_crtc_state *crtc_state =
337 		intel_atomic_get_new_crtc_state(state, crtc);
338 	struct intel_plane_state *plane_state;
339 	struct intel_plane *plane;
340 	int i;
341 
342 	if (*update_mask == 0)
343 		return NULL;
344 
345 	for_each_new_intel_plane_in_state(state, plane, plane_state, i) {
346 		enum plane_id plane_id = plane->id;
347 
348 		if (crtc->pipe != plane->pipe ||
349 		    !(*update_mask & BIT(plane_id)))
350 			continue;
351 
352 		if (skl_ddb_allocation_overlaps(&crtc_state->wm.skl.plane_ddb_y[plane_id],
353 						entries_y,
354 						I915_MAX_PLANES, plane_id) ||
355 		    skl_ddb_allocation_overlaps(&crtc_state->wm.skl.plane_ddb_uv[plane_id],
356 						entries_uv,
357 						I915_MAX_PLANES, plane_id))
358 			continue;
359 
360 		*update_mask &= ~BIT(plane_id);
361 		entries_y[plane_id] = crtc_state->wm.skl.plane_ddb_y[plane_id];
362 		entries_uv[plane_id] = crtc_state->wm.skl.plane_ddb_uv[plane_id];
363 
364 		return plane;
365 	}
366 
367 	/* should never happen */
368 	WARN_ON(1);
369 
370 	return NULL;
371 }
372 
373 void intel_update_plane(struct intel_plane *plane,
374 			const struct intel_crtc_state *crtc_state,
375 			const struct intel_plane_state *plane_state)
376 {
377 	struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
378 
379 	trace_intel_update_plane(&plane->base, crtc);
380 	plane->update_plane(plane, crtc_state, plane_state);
381 }
382 
383 void intel_disable_plane(struct intel_plane *plane,
384 			 const struct intel_crtc_state *crtc_state)
385 {
386 	struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
387 
388 	trace_intel_disable_plane(&plane->base, crtc);
389 	plane->disable_plane(plane, crtc_state);
390 }
391 
392 void skl_update_planes_on_crtc(struct intel_atomic_state *state,
393 			       struct intel_crtc *crtc)
394 {
395 	struct intel_crtc_state *old_crtc_state =
396 		intel_atomic_get_old_crtc_state(state, crtc);
397 	struct intel_crtc_state *new_crtc_state =
398 		intel_atomic_get_new_crtc_state(state, crtc);
399 	struct skl_ddb_entry entries_y[I915_MAX_PLANES];
400 	struct skl_ddb_entry entries_uv[I915_MAX_PLANES];
401 	u32 update_mask = new_crtc_state->update_planes;
402 	struct intel_plane *plane;
403 
404 	memcpy(entries_y, old_crtc_state->wm.skl.plane_ddb_y,
405 	       sizeof(old_crtc_state->wm.skl.plane_ddb_y));
406 	memcpy(entries_uv, old_crtc_state->wm.skl.plane_ddb_uv,
407 	       sizeof(old_crtc_state->wm.skl.plane_ddb_uv));
408 
409 	while ((plane = skl_next_plane_to_commit(state, crtc,
410 						 entries_y, entries_uv,
411 						 &update_mask))) {
412 		struct intel_plane_state *new_plane_state =
413 			intel_atomic_get_new_plane_state(state, plane);
414 
415 		if (new_plane_state->uapi.visible ||
416 		    new_plane_state->planar_slave) {
417 			intel_update_plane(plane, new_crtc_state, new_plane_state);
418 		} else {
419 			intel_disable_plane(plane, new_crtc_state);
420 		}
421 	}
422 }
423 
424 void i9xx_update_planes_on_crtc(struct intel_atomic_state *state,
425 				struct intel_crtc *crtc)
426 {
427 	struct intel_crtc_state *new_crtc_state =
428 		intel_atomic_get_new_crtc_state(state, crtc);
429 	u32 update_mask = new_crtc_state->update_planes;
430 	struct intel_plane_state *new_plane_state;
431 	struct intel_plane *plane;
432 	int i;
433 
434 	for_each_new_intel_plane_in_state(state, plane, new_plane_state, i) {
435 		if (crtc->pipe != plane->pipe ||
436 		    !(update_mask & BIT(plane->id)))
437 			continue;
438 
439 		if (new_plane_state->uapi.visible)
440 			intel_update_plane(plane, new_crtc_state, new_plane_state);
441 		else
442 			intel_disable_plane(plane, new_crtc_state);
443 	}
444 }
445 
446 const struct drm_plane_helper_funcs intel_plane_helper_funcs = {
447 	.prepare_fb = intel_prepare_plane_fb,
448 	.cleanup_fb = intel_cleanup_plane_fb,
449 };
450