blob: 191a5f095cf9b2603cae34e4539a05f4eb3f085f [file] [log] [blame]
Matt Roperc103d1c2014-04-01 15:22:35 -07001/*
2 * Copyright (C) 2014 Intel Corporation
3 *
4 * DRM universal plane helper functions
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice (including the next
14 * paragraph) shall be included in all copies or substantial portions of the
15 * Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 * SOFTWARE.
24 */
25
26#include <linux/list.h>
27#include <drm/drmP.h>
Matt Roper7daf8d52014-05-29 08:06:52 -070028#include <drm/drm_plane_helper.h>
Matt Roperc103d1c2014-04-01 15:22:35 -070029#include <drm/drm_rect.h>
Daniel Vetter321ebf02014-11-04 22:57:27 +010030#include <drm/drm_atomic.h>
Daniel Vetteracf24a32014-07-29 15:33:05 +020031#include <drm/drm_crtc_helper.h>
Laurent Pinchart93382032016-11-28 20:51:09 +020032#include <drm/drm_encoder.h>
Daniel Vetter321ebf02014-11-04 22:57:27 +010033#include <drm/drm_atomic_helper.h>
Matt Roperc103d1c2014-04-01 15:22:35 -070034
35#define SUBPIXEL_MASK 0xffff
36
Daniel Vetter3150c7d2014-11-06 20:53:29 +010037/**
38 * DOC: overview
39 *
40 * This helper library has two parts. The first part has support to implement
41 * primary plane support on top of the normal CRTC configuration interface.
42 * Since the legacy ->set_config interface ties the primary plane together with
43 * the CRTC state this does not allow userspace to disable the primary plane
44 * itself. To avoid too much duplicated code use
45 * drm_plane_helper_check_update() which can be used to enforce the same
46 * restrictions as primary planes had thus. The default primary plane only
47 * expose XRBG8888 and ARGB8888 as valid pixel formats for the attached
48 * framebuffer.
49 *
50 * Drivers are highly recommended to implement proper support for primary
51 * planes, and newly merged drivers must not rely upon these transitional
52 * helpers.
53 *
54 * The second part also implements transitional helpers which allow drivers to
55 * gradually switch to the atomic helper infrastructure for plane updates. Once
56 * that switch is complete drivers shouldn't use these any longer, instead using
57 * the proper legacy implementations for update and disable plane hooks provided
58 * by the atomic helpers.
59 *
60 * Again drivers are strongly urged to switch to the new interfaces.
Daniel Vetter092d01d2015-12-04 09:45:44 +010061 *
62 * The plane helpers share the function table structures with other helpers,
63 * specifically also the atomic helpers. See struct &drm_plane_helper_funcs for
64 * the details.
Daniel Vetter3150c7d2014-11-06 20:53:29 +010065 */
66
Matt Roperc103d1c2014-04-01 15:22:35 -070067/*
Matt Roperc103d1c2014-04-01 15:22:35 -070068 * Returns the connectors currently associated with a CRTC. This function
69 * should be called twice: once with a NULL connector list to retrieve
70 * the list size, and once with the properly allocated list to be filled in.
71 */
72static int get_connectors_for_crtc(struct drm_crtc *crtc,
73 struct drm_connector **connector_list,
74 int num_connectors)
75{
76 struct drm_device *dev = crtc->dev;
77 struct drm_connector *connector;
78 int count = 0;
79
Daniel Vetter6e9f7982014-05-29 23:54:47 +020080 /*
81 * Note: Once we change the plane hooks to more fine-grained locking we
82 * need to grab the connection_mutex here to be able to make these
83 * checks.
84 */
Rob Clark51fd3712013-11-19 12:10:12 -050085 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
Daniel Vetter6e9f7982014-05-29 23:54:47 +020086
Daniel Vetter9a9f5ce2015-07-09 23:44:34 +020087 drm_for_each_connector(connector, dev) {
Matt Roperc103d1c2014-04-01 15:22:35 -070088 if (connector->encoder && connector->encoder->crtc == crtc) {
89 if (connector_list != NULL && count < num_connectors)
90 *(connector_list++) = connector;
91
92 count++;
93 }
Daniel Vetter9a9f5ce2015-07-09 23:44:34 +020094 }
Matt Roperc103d1c2014-04-01 15:22:35 -070095
96 return count;
97}
98
99/**
Ville Syrjälädf86af92016-08-08 10:55:10 +0300100 * drm_plane_helper_check_state() - Check plane state for validity
101 * @state: plane state to check
102 * @clip: integer clipping coordinates
103 * @min_scale: minimum @src:@dest scaling factor in 16.16 fixed point
104 * @max_scale: maximum @src:@dest scaling factor in 16.16 fixed point
105 * @can_position: is it legal to position the plane such that it
106 * doesn't cover the entire crtc? This will generally
107 * only be false for primary planes.
108 * @can_update_disabled: can the plane be updated while the crtc
109 * is disabled?
110 *
111 * Checks that a desired plane update is valid, and updates various
112 * bits of derived state (clipped coordinates etc.). Drivers that provide
113 * their own plane handling rather than helper-provided implementations may
114 * still wish to call this function to avoid duplication of error checking
115 * code.
116 *
117 * RETURNS:
118 * Zero if update appears valid, error code on failure
119 */
120int drm_plane_helper_check_state(struct drm_plane_state *state,
121 const struct drm_rect *clip,
122 int min_scale,
123 int max_scale,
124 bool can_position,
125 bool can_update_disabled)
126{
127 struct drm_crtc *crtc = state->crtc;
128 struct drm_framebuffer *fb = state->fb;
129 struct drm_rect *src = &state->src;
130 struct drm_rect *dst = &state->dst;
131 unsigned int rotation = state->rotation;
132 int hscale, vscale;
133
Rob Clark1638d302016-11-05 11:08:08 -0400134 *src = drm_plane_state_src(state);
135 *dst = drm_plane_state_dest(state);
Ville Syrjälädf86af92016-08-08 10:55:10 +0300136
137 if (!fb) {
138 state->visible = false;
139 return 0;
140 }
141
142 /* crtc should only be NULL when disabling (i.e., !fb) */
143 if (WARN_ON(!crtc)) {
144 state->visible = false;
145 return 0;
146 }
147
148 if (!crtc->enabled && !can_update_disabled) {
149 DRM_DEBUG_KMS("Cannot update plane of a disabled CRTC.\n");
150 return -EINVAL;
151 }
152
153 drm_rect_rotate(src, fb->width << 16, fb->height << 16, rotation);
154
155 /* Check scaling */
156 hscale = drm_rect_calc_hscale(src, dst, min_scale, max_scale);
157 vscale = drm_rect_calc_vscale(src, dst, min_scale, max_scale);
158 if (hscale < 0 || vscale < 0) {
159 DRM_DEBUG_KMS("Invalid scaling of plane\n");
160 drm_rect_debug_print("src: ", &state->src, true);
161 drm_rect_debug_print("dst: ", &state->dst, false);
162 return -ERANGE;
163 }
164
165 state->visible = drm_rect_clip_scaled(src, dst, clip, hscale, vscale);
166
167 drm_rect_rotate_inv(src, fb->width << 16, fb->height << 16, rotation);
168
169 if (!state->visible)
170 /*
171 * Plane isn't visible; some drivers can handle this
172 * so we just return success here. Drivers that can't
173 * (including those that use the primary plane helper's
174 * update function) will return an error from their
175 * update_plane handler.
176 */
177 return 0;
178
179 if (!can_position && !drm_rect_equals(dst, clip)) {
180 DRM_DEBUG_KMS("Plane must cover entire CRTC\n");
181 drm_rect_debug_print("dst: ", dst, false);
182 drm_rect_debug_print("clip: ", clip, false);
183 return -EINVAL;
184 }
185
186 return 0;
187}
188EXPORT_SYMBOL(drm_plane_helper_check_state);
189
190/**
Matt Roper7daf8d52014-05-29 08:06:52 -0700191 * drm_plane_helper_check_update() - Check plane update for validity
192 * @plane: plane object to update
193 * @crtc: owning CRTC of owning plane
194 * @fb: framebuffer to flip onto plane
195 * @src: source coordinates in 16.16 fixed point
Daniel Vetter5ee4c8f2016-08-12 22:48:57 +0200196 * @dst: integer destination coordinates
Matt Roper7daf8d52014-05-29 08:06:52 -0700197 * @clip: integer clipping coordinates
Ville Syrjälä9b8b0132016-06-17 17:13:10 +0300198 * @rotation: plane rotation
Matt Roper7daf8d52014-05-29 08:06:52 -0700199 * @min_scale: minimum @src:@dest scaling factor in 16.16 fixed point
200 * @max_scale: maximum @src:@dest scaling factor in 16.16 fixed point
201 * @can_position: is it legal to position the plane such that it
202 * doesn't cover the entire crtc? This will generally
203 * only be false for primary planes.
204 * @can_update_disabled: can the plane be updated while the crtc
205 * is disabled?
206 * @visible: output parameter indicating whether plane is still visible after
207 * clipping
208 *
209 * Checks that a desired plane update is valid. Drivers that provide
210 * their own plane handling rather than helper-provided implementations may
211 * still wish to call this function to avoid duplication of error checking
212 * code.
213 *
214 * RETURNS:
215 * Zero if update appears valid, error code on failure
216 */
217int drm_plane_helper_check_update(struct drm_plane *plane,
Ville Syrjälä9b8b0132016-06-17 17:13:10 +0300218 struct drm_crtc *crtc,
219 struct drm_framebuffer *fb,
220 struct drm_rect *src,
Ville Syrjälädf86af92016-08-08 10:55:10 +0300221 struct drm_rect *dst,
Ville Syrjälä9b8b0132016-06-17 17:13:10 +0300222 const struct drm_rect *clip,
223 unsigned int rotation,
224 int min_scale,
225 int max_scale,
226 bool can_position,
227 bool can_update_disabled,
228 bool *visible)
Matt Roper7daf8d52014-05-29 08:06:52 -0700229{
Ville Syrjälädf86af92016-08-08 10:55:10 +0300230 struct drm_plane_state state = {
231 .plane = plane,
232 .crtc = crtc,
233 .fb = fb,
234 .src_x = src->x1,
235 .src_y = src->y1,
236 .src_w = drm_rect_width(src),
237 .src_h = drm_rect_height(src),
238 .crtc_x = dst->x1,
239 .crtc_y = dst->y1,
240 .crtc_w = drm_rect_width(dst),
241 .crtc_h = drm_rect_height(dst),
242 .rotation = rotation,
243 .visible = *visible,
244 };
245 int ret;
Matt Roper7daf8d52014-05-29 08:06:52 -0700246
Ville Syrjälädf86af92016-08-08 10:55:10 +0300247 ret = drm_plane_helper_check_state(&state, clip,
248 min_scale, max_scale,
249 can_position,
250 can_update_disabled);
251 if (ret)
252 return ret;
Matt Roper7432ca52014-12-11 07:20:57 -0800253
Ville Syrjälädf86af92016-08-08 10:55:10 +0300254 *src = state.src;
255 *dst = state.dst;
256 *visible = state.visible;
Matt Roper7daf8d52014-05-29 08:06:52 -0700257
258 return 0;
259}
260EXPORT_SYMBOL(drm_plane_helper_check_update);
261
262/**
Matt Roperc103d1c2014-04-01 15:22:35 -0700263 * drm_primary_helper_update() - Helper for primary plane update
264 * @plane: plane object to update
265 * @crtc: owning CRTC of owning plane
266 * @fb: framebuffer to flip onto plane
267 * @crtc_x: x offset of primary plane on crtc
268 * @crtc_y: y offset of primary plane on crtc
269 * @crtc_w: width of primary plane rectangle on crtc
270 * @crtc_h: height of primary plane rectangle on crtc
271 * @src_x: x offset of @fb for panning
272 * @src_y: y offset of @fb for panning
273 * @src_w: width of source rectangle in @fb
274 * @src_h: height of source rectangle in @fb
275 *
276 * Provides a default plane update handler for primary planes. This is handler
277 * is called in response to a userspace SetPlane operation on the plane with a
278 * non-NULL framebuffer. We call the driver's modeset handler to update the
279 * framebuffer.
280 *
281 * SetPlane() on a primary plane of a disabled CRTC is not supported, and will
282 * return an error.
283 *
284 * Note that we make some assumptions about hardware limitations that may not be
285 * true for all hardware --
Daniel Vetter2e7a5702016-06-01 23:40:36 +0200286 *
287 * 1. Primary plane cannot be repositioned.
288 * 2. Primary plane cannot be scaled.
289 * 3. Primary plane must cover the entire CRTC.
290 * 4. Subpixel positioning is not supported.
291 *
Matt Roperc103d1c2014-04-01 15:22:35 -0700292 * Drivers for hardware that don't have these restrictions can provide their
293 * own implementation rather than using this helper.
294 *
295 * RETURNS:
296 * Zero on success, error code on failure
297 */
298int drm_primary_helper_update(struct drm_plane *plane, struct drm_crtc *crtc,
299 struct drm_framebuffer *fb,
300 int crtc_x, int crtc_y,
301 unsigned int crtc_w, unsigned int crtc_h,
302 uint32_t src_x, uint32_t src_y,
303 uint32_t src_w, uint32_t src_h)
304{
305 struct drm_mode_set set = {
306 .crtc = crtc,
307 .fb = fb,
308 .mode = &crtc->mode,
309 .x = src_x >> 16,
310 .y = src_y >> 16,
311 };
Matt Roper7daf8d52014-05-29 08:06:52 -0700312 struct drm_rect src = {
313 .x1 = src_x,
314 .y1 = src_y,
315 .x2 = src_x + src_w,
316 .y2 = src_y + src_h,
317 };
Matt Roperc103d1c2014-04-01 15:22:35 -0700318 struct drm_rect dest = {
319 .x1 = crtc_x,
320 .y1 = crtc_y,
321 .x2 = crtc_x + crtc_w,
322 .y2 = crtc_y + crtc_h,
323 };
Matt Roper7daf8d52014-05-29 08:06:52 -0700324 const struct drm_rect clip = {
Matt Roperc103d1c2014-04-01 15:22:35 -0700325 .x2 = crtc->mode.hdisplay,
326 .y2 = crtc->mode.vdisplay,
327 };
328 struct drm_connector **connector_list;
Matt Roperc103d1c2014-04-01 15:22:35 -0700329 int num_connectors, ret;
Matt Roper7daf8d52014-05-29 08:06:52 -0700330 bool visible;
Matt Roperc103d1c2014-04-01 15:22:35 -0700331
Matt Roper7daf8d52014-05-29 08:06:52 -0700332 ret = drm_plane_helper_check_update(plane, crtc, fb,
333 &src, &dest, &clip,
Joonas Lahtinen31ad61e2016-07-29 08:50:05 +0300334 DRM_ROTATE_0,
Matt Roper7daf8d52014-05-29 08:06:52 -0700335 DRM_PLANE_HELPER_NO_SCALING,
336 DRM_PLANE_HELPER_NO_SCALING,
337 false, false, &visible);
Matt Roperc103d1c2014-04-01 15:22:35 -0700338 if (ret)
339 return ret;
340
Matt Roper7daf8d52014-05-29 08:06:52 -0700341 if (!visible)
342 /*
343 * Primary plane isn't visible. Note that unless a driver
344 * provides their own disable function, this will just
345 * wind up returning -EINVAL to userspace.
346 */
347 return plane->funcs->disable_plane(plane);
348
Matt Roperc103d1c2014-04-01 15:22:35 -0700349 /* Find current connectors for CRTC */
350 num_connectors = get_connectors_for_crtc(crtc, NULL, 0);
351 BUG_ON(num_connectors == 0);
352 connector_list = kzalloc(num_connectors * sizeof(*connector_list),
353 GFP_KERNEL);
354 if (!connector_list)
355 return -ENOMEM;
356 get_connectors_for_crtc(crtc, connector_list, num_connectors);
357
358 set.connectors = connector_list;
359 set.num_connectors = num_connectors;
360
361 /*
Daniel Vetter0fe27f02014-04-23 17:34:06 +0200362 * We call set_config() directly here rather than using
Matt Roperc103d1c2014-04-01 15:22:35 -0700363 * drm_mode_set_config_internal. We're reprogramming the same
364 * connectors that were already in use, so we shouldn't need the extra
365 * cross-CRTC fb refcounting to accomodate stealing connectors.
366 * drm_mode_setplane() already handles the basic refcounting for the
367 * framebuffers involved in this operation.
368 */
Matt Roperc103d1c2014-04-01 15:22:35 -0700369 ret = crtc->funcs->set_config(&set);
Matt Roperc103d1c2014-04-01 15:22:35 -0700370
371 kfree(connector_list);
372 return ret;
373}
374EXPORT_SYMBOL(drm_primary_helper_update);
375
376/**
377 * drm_primary_helper_disable() - Helper for primary plane disable
378 * @plane: plane to disable
379 *
380 * Provides a default plane disable handler for primary planes. This is handler
381 * is called in response to a userspace SetPlane operation on the plane with a
Daniel Vetterb6ccd7b2014-04-15 10:02:43 +0200382 * NULL framebuffer parameter. It unconditionally fails the disable call with
383 * -EINVAL the only way to disable the primary plane without driver support is
384 * to disable the entier CRTC. Which does not match the plane ->disable hook.
Matt Roperc103d1c2014-04-01 15:22:35 -0700385 *
386 * Note that some hardware may be able to disable the primary plane without
387 * disabling the whole CRTC. Drivers for such hardware should provide their
388 * own disable handler that disables just the primary plane (and they'll likely
389 * need to provide their own update handler as well to properly re-enable a
390 * disabled primary plane).
391 *
392 * RETURNS:
Daniel Vetterb6ccd7b2014-04-15 10:02:43 +0200393 * Unconditionally returns -EINVAL.
Matt Roperc103d1c2014-04-01 15:22:35 -0700394 */
395int drm_primary_helper_disable(struct drm_plane *plane)
396{
Daniel Vetterb6ccd7b2014-04-15 10:02:43 +0200397 return -EINVAL;
Matt Roperc103d1c2014-04-01 15:22:35 -0700398}
399EXPORT_SYMBOL(drm_primary_helper_disable);
400
401/**
402 * drm_primary_helper_destroy() - Helper for primary plane destruction
403 * @plane: plane to destroy
404 *
405 * Provides a default plane destroy handler for primary planes. This handler
406 * is called during CRTC destruction. We disable the primary plane, remove
407 * it from the DRM plane list, and deallocate the plane structure.
408 */
409void drm_primary_helper_destroy(struct drm_plane *plane)
410{
Matt Roperc103d1c2014-04-01 15:22:35 -0700411 drm_plane_cleanup(plane);
412 kfree(plane);
413}
414EXPORT_SYMBOL(drm_primary_helper_destroy);
415
416const struct drm_plane_funcs drm_primary_helper_funcs = {
417 .update_plane = drm_primary_helper_update,
418 .disable_plane = drm_primary_helper_disable,
419 .destroy = drm_primary_helper_destroy,
420};
421EXPORT_SYMBOL(drm_primary_helper_funcs);
422
Daniel Vetter2f324b42014-10-29 11:13:47 +0100423int drm_plane_helper_commit(struct drm_plane *plane,
424 struct drm_plane_state *plane_state,
425 struct drm_framebuffer *old_fb)
Daniel Vetteracf24a32014-07-29 15:33:05 +0200426{
Jani Nikulabe26a662015-03-11 11:51:06 +0200427 const struct drm_plane_helper_funcs *plane_funcs;
Daniel Vetteracf24a32014-07-29 15:33:05 +0200428 struct drm_crtc *crtc[2];
Jani Nikulabe26a662015-03-11 11:51:06 +0200429 const struct drm_crtc_helper_funcs *crtc_funcs[2];
Daniel Vetteracf24a32014-07-29 15:33:05 +0200430 int i, ret = 0;
431
432 plane_funcs = plane->helper_private;
433
434 /* Since this is a transitional helper we can't assume that plane->state
435 * is always valid. Hence we need to use plane->crtc instead of
436 * plane->state->crtc as the old crtc. */
437 crtc[0] = plane->crtc;
438 crtc[1] = crtc[0] != plane_state->crtc ? plane_state->crtc : NULL;
439
440 for (i = 0; i < 2; i++)
441 crtc_funcs[i] = crtc[i] ? crtc[i]->helper_private : NULL;
442
443 if (plane_funcs->atomic_check) {
444 ret = plane_funcs->atomic_check(plane, plane_state);
445 if (ret)
446 goto out;
447 }
448
Matt Roper92890582015-01-19 08:31:49 -0800449 if (plane_funcs->prepare_fb && plane_state->fb &&
450 plane_state->fb != old_fb) {
Maarten Lankhorst844f9112015-09-02 10:42:40 +0200451 ret = plane_funcs->prepare_fb(plane,
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +0000452 plane_state);
Daniel Vetteracf24a32014-07-29 15:33:05 +0200453 if (ret)
454 goto out;
455 }
456
457 /* Point of no return, commit sw state. */
458 swap(plane->state, plane_state);
459
460 for (i = 0; i < 2; i++) {
461 if (crtc_funcs[i] && crtc_funcs[i]->atomic_begin)
Maarten Lankhorst613d2b22015-07-21 13:28:58 +0200462 crtc_funcs[i]->atomic_begin(crtc[i], crtc[i]->state);
Daniel Vetteracf24a32014-07-29 15:33:05 +0200463 }
464
Thierry Reding407b8bd2014-11-20 12:05:50 +0100465 /*
466 * Drivers may optionally implement the ->atomic_disable callback, so
467 * special-case that here.
468 */
469 if (drm_atomic_plane_disabling(plane, plane_state) &&
470 plane_funcs->atomic_disable)
471 plane_funcs->atomic_disable(plane, plane_state);
472 else
473 plane_funcs->atomic_update(plane, plane_state);
Daniel Vetteracf24a32014-07-29 15:33:05 +0200474
475 for (i = 0; i < 2; i++) {
476 if (crtc_funcs[i] && crtc_funcs[i]->atomic_flush)
Maarten Lankhorst613d2b22015-07-21 13:28:58 +0200477 crtc_funcs[i]->atomic_flush(crtc[i], crtc[i]->state);
Daniel Vetteracf24a32014-07-29 15:33:05 +0200478 }
479
Matt Roper92890582015-01-19 08:31:49 -0800480 /*
481 * If we only moved the plane and didn't change fb's, there's no need to
482 * wait for vblank.
483 */
484 if (plane->state->fb == old_fb)
485 goto out;
486
Daniel Vetteracf24a32014-07-29 15:33:05 +0200487 for (i = 0; i < 2; i++) {
488 if (!crtc[i])
489 continue;
490
Daniel Vetter2e7f43c2015-05-20 10:36:32 +0200491 if (crtc[i]->cursor == plane)
492 continue;
493
Daniel Vetteracf24a32014-07-29 15:33:05 +0200494 /* There's no other way to figure out whether the crtc is running. */
495 ret = drm_crtc_vblank_get(crtc[i]);
496 if (ret == 0) {
497 drm_crtc_wait_one_vblank(crtc[i]);
498 drm_crtc_vblank_put(crtc[i]);
499 }
500
501 ret = 0;
502 }
503
Maarten Lankhorst844f9112015-09-02 10:42:40 +0200504 if (plane_funcs->cleanup_fb)
505 plane_funcs->cleanup_fb(plane, plane_state);
Daniel Vetteracf24a32014-07-29 15:33:05 +0200506out:
507 if (plane_state) {
508 if (plane->funcs->atomic_destroy_state)
509 plane->funcs->atomic_destroy_state(plane, plane_state);
510 else
Daniel Vetter321ebf02014-11-04 22:57:27 +0100511 drm_atomic_helper_plane_destroy_state(plane, plane_state);
Daniel Vetteracf24a32014-07-29 15:33:05 +0200512 }
513
514 return ret;
515}
516
517/**
Matt Roper6a425c22015-01-15 18:34:22 -0800518 * drm_plane_helper_update() - Transitional helper for plane update
Daniel Vetteracf24a32014-07-29 15:33:05 +0200519 * @plane: plane object to update
520 * @crtc: owning CRTC of owning plane
521 * @fb: framebuffer to flip onto plane
522 * @crtc_x: x offset of primary plane on crtc
523 * @crtc_y: y offset of primary plane on crtc
524 * @crtc_w: width of primary plane rectangle on crtc
525 * @crtc_h: height of primary plane rectangle on crtc
526 * @src_x: x offset of @fb for panning
527 * @src_y: y offset of @fb for panning
528 * @src_w: width of source rectangle in @fb
529 * @src_h: height of source rectangle in @fb
530 *
531 * Provides a default plane update handler using the atomic plane update
532 * functions. It is fully left to the driver to check plane constraints and
533 * handle corner-cases like a fully occluded or otherwise invisible plane.
534 *
535 * This is useful for piecewise transitioning of a driver to the atomic helpers.
536 *
537 * RETURNS:
538 * Zero on success, error code on failure
539 */
540int drm_plane_helper_update(struct drm_plane *plane, struct drm_crtc *crtc,
541 struct drm_framebuffer *fb,
542 int crtc_x, int crtc_y,
543 unsigned int crtc_w, unsigned int crtc_h,
544 uint32_t src_x, uint32_t src_y,
545 uint32_t src_w, uint32_t src_h)
546{
547 struct drm_plane_state *plane_state;
548
549 if (plane->funcs->atomic_duplicate_state)
550 plane_state = plane->funcs->atomic_duplicate_state(plane);
Daniel Vettere4f31ad2015-07-02 16:33:53 +0200551 else {
552 if (!plane->state)
553 drm_atomic_helper_plane_reset(plane);
554
Daniel Vetter321ebf02014-11-04 22:57:27 +0100555 plane_state = drm_atomic_helper_plane_duplicate_state(plane);
Daniel Vettere4f31ad2015-07-02 16:33:53 +0200556 }
Daniel Vetteracf24a32014-07-29 15:33:05 +0200557 if (!plane_state)
558 return -ENOMEM;
Daniel Vetter07cc0ef2014-11-27 15:49:39 +0100559 plane_state->plane = plane;
Daniel Vetteracf24a32014-07-29 15:33:05 +0200560
561 plane_state->crtc = crtc;
Daniel Vetter321ebf02014-11-04 22:57:27 +0100562 drm_atomic_set_fb_for_plane(plane_state, fb);
Daniel Vetteracf24a32014-07-29 15:33:05 +0200563 plane_state->crtc_x = crtc_x;
564 plane_state->crtc_y = crtc_y;
565 plane_state->crtc_h = crtc_h;
566 plane_state->crtc_w = crtc_w;
567 plane_state->src_x = src_x;
568 plane_state->src_y = src_y;
569 plane_state->src_h = src_h;
570 plane_state->src_w = src_w;
571
Daniel Vetter2f324b42014-10-29 11:13:47 +0100572 return drm_plane_helper_commit(plane, plane_state, plane->fb);
Daniel Vetteracf24a32014-07-29 15:33:05 +0200573}
574EXPORT_SYMBOL(drm_plane_helper_update);
575
576/**
Matt Roper6a425c22015-01-15 18:34:22 -0800577 * drm_plane_helper_disable() - Transitional helper for plane disable
Daniel Vetteracf24a32014-07-29 15:33:05 +0200578 * @plane: plane to disable
579 *
580 * Provides a default plane disable handler using the atomic plane update
581 * functions. It is fully left to the driver to check plane constraints and
582 * handle corner-cases like a fully occluded or otherwise invisible plane.
583 *
584 * This is useful for piecewise transitioning of a driver to the atomic helpers.
585 *
586 * RETURNS:
587 * Zero on success, error code on failure
588 */
589int drm_plane_helper_disable(struct drm_plane *plane)
590{
591 struct drm_plane_state *plane_state;
592
593 /* crtc helpers love to call disable functions for already disabled hw
594 * functions. So cope with that. */
595 if (!plane->crtc)
596 return 0;
597
598 if (plane->funcs->atomic_duplicate_state)
599 plane_state = plane->funcs->atomic_duplicate_state(plane);
Daniel Vettere4f31ad2015-07-02 16:33:53 +0200600 else {
601 if (!plane->state)
602 drm_atomic_helper_plane_reset(plane);
603
Daniel Vetter321ebf02014-11-04 22:57:27 +0100604 plane_state = drm_atomic_helper_plane_duplicate_state(plane);
Daniel Vettere4f31ad2015-07-02 16:33:53 +0200605 }
Daniel Vetteracf24a32014-07-29 15:33:05 +0200606 if (!plane_state)
607 return -ENOMEM;
Daniel Vetter07cc0ef2014-11-27 15:49:39 +0100608 plane_state->plane = plane;
Daniel Vetteracf24a32014-07-29 15:33:05 +0200609
610 plane_state->crtc = NULL;
Daniel Vetter321ebf02014-11-04 22:57:27 +0100611 drm_atomic_set_fb_for_plane(plane_state, NULL);
Daniel Vetteracf24a32014-07-29 15:33:05 +0200612
Daniel Vetter2f324b42014-10-29 11:13:47 +0100613 return drm_plane_helper_commit(plane, plane_state, plane->fb);
Daniel Vetteracf24a32014-07-29 15:33:05 +0200614}
615EXPORT_SYMBOL(drm_plane_helper_disable);