blob: 621f17643bb07c69dae274c7c477f934a9c7e7fc [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.
Daniel Vetter6806cdf2017-01-25 07:26:43 +010042 * Since the legacy &drm_mode_config_funcs.set_config interface ties the primary
43 * plane together with the CRTC state this does not allow userspace to disable
44 * the primary plane itself. To avoid too much duplicated code use
Daniel Vetter3150c7d2014-11-06 20:53:29 +010045 * 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,
Daniel Vetterea0dd852016-12-29 21:48:26 +010063 * specifically also the atomic helpers. See &struct drm_plane_helper_funcs for
Daniel Vetter092d01d2015-12-04 09:45:44 +010064 * 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;
Daniel Vetterc36a3252016-12-15 16:58:43 +010078 struct drm_connector_list_iter conn_iter;
Matt Roperc103d1c2014-04-01 15:22:35 -070079 int count = 0;
80
Daniel Vetter6e9f7982014-05-29 23:54:47 +020081 /*
82 * Note: Once we change the plane hooks to more fine-grained locking we
83 * need to grab the connection_mutex here to be able to make these
84 * checks.
85 */
Rob Clark51fd3712013-11-19 12:10:12 -050086 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
Daniel Vetter6e9f7982014-05-29 23:54:47 +020087
Thierry Redingb982dab2017-02-28 15:46:43 +010088 drm_connector_list_iter_begin(dev, &conn_iter);
Daniel Vetterc36a3252016-12-15 16:58:43 +010089 drm_for_each_connector_iter(connector, &conn_iter) {
Matt Roperc103d1c2014-04-01 15:22:35 -070090 if (connector->encoder && connector->encoder->crtc == crtc) {
91 if (connector_list != NULL && count < num_connectors)
92 *(connector_list++) = connector;
93
94 count++;
95 }
Daniel Vetter9a9f5ce2015-07-09 23:44:34 +020096 }
Thierry Redingb982dab2017-02-28 15:46:43 +010097 drm_connector_list_iter_end(&conn_iter);
Matt Roperc103d1c2014-04-01 15:22:35 -070098
99 return count;
100}
101
102/**
Matt Roper7daf8d52014-05-29 08:06:52 -0700103 * drm_plane_helper_check_update() - Check plane update for validity
104 * @plane: plane object to update
105 * @crtc: owning CRTC of owning plane
106 * @fb: framebuffer to flip onto plane
107 * @src: source coordinates in 16.16 fixed point
Daniel Vetter5ee4c8f2016-08-12 22:48:57 +0200108 * @dst: integer destination coordinates
Ville Syrjälä9b8b0132016-06-17 17:13:10 +0300109 * @rotation: plane rotation
Matt Roper7daf8d52014-05-29 08:06:52 -0700110 * @min_scale: minimum @src:@dest scaling factor in 16.16 fixed point
111 * @max_scale: maximum @src:@dest scaling factor in 16.16 fixed point
112 * @can_position: is it legal to position the plane such that it
113 * doesn't cover the entire crtc? This will generally
114 * only be false for primary planes.
115 * @can_update_disabled: can the plane be updated while the crtc
116 * is disabled?
117 * @visible: output parameter indicating whether plane is still visible after
118 * clipping
119 *
120 * Checks that a desired plane update is valid. Drivers that provide
121 * their own plane handling rather than helper-provided implementations may
122 * still wish to call this function to avoid duplication of error checking
123 * code.
124 *
125 * RETURNS:
126 * Zero if update appears valid, error code on failure
127 */
128int drm_plane_helper_check_update(struct drm_plane *plane,
Ville Syrjälä9b8b0132016-06-17 17:13:10 +0300129 struct drm_crtc *crtc,
130 struct drm_framebuffer *fb,
131 struct drm_rect *src,
Ville Syrjälädf86af92016-08-08 10:55:10 +0300132 struct drm_rect *dst,
Ville Syrjälä9b8b0132016-06-17 17:13:10 +0300133 unsigned int rotation,
134 int min_scale,
135 int max_scale,
136 bool can_position,
137 bool can_update_disabled,
138 bool *visible)
Matt Roper7daf8d52014-05-29 08:06:52 -0700139{
Ville Syrjälä10b47ee2017-11-01 22:15:58 +0200140 struct drm_plane_state plane_state = {
Ville Syrjälädf86af92016-08-08 10:55:10 +0300141 .plane = plane,
142 .crtc = crtc,
143 .fb = fb,
144 .src_x = src->x1,
145 .src_y = src->y1,
146 .src_w = drm_rect_width(src),
147 .src_h = drm_rect_height(src),
148 .crtc_x = dst->x1,
149 .crtc_y = dst->y1,
150 .crtc_w = drm_rect_width(dst),
151 .crtc_h = drm_rect_height(dst),
152 .rotation = rotation,
153 .visible = *visible,
154 };
Ville Syrjälä10b47ee2017-11-01 22:15:58 +0200155 struct drm_crtc_state crtc_state = {
156 .crtc = crtc,
157 .enable = crtc->enabled,
Ville Syrjälä81af63a2018-01-23 19:08:57 +0200158 .mode = crtc->mode,
Ville Syrjälä10b47ee2017-11-01 22:15:58 +0200159 };
Ville Syrjälädf86af92016-08-08 10:55:10 +0300160 int ret;
Matt Roper7daf8d52014-05-29 08:06:52 -0700161
Ville Syrjäläa01cb8b2017-11-01 22:16:19 +0200162 ret = drm_atomic_helper_check_plane_state(&plane_state, &crtc_state,
Ville Syrjälä81af63a2018-01-23 19:08:57 +0200163 min_scale, max_scale,
Ville Syrjäläa01cb8b2017-11-01 22:16:19 +0200164 can_position,
165 can_update_disabled);
Ville Syrjälädf86af92016-08-08 10:55:10 +0300166 if (ret)
167 return ret;
Matt Roper7432ca52014-12-11 07:20:57 -0800168
Ville Syrjälä10b47ee2017-11-01 22:15:58 +0200169 *src = plane_state.src;
170 *dst = plane_state.dst;
171 *visible = plane_state.visible;
Matt Roper7daf8d52014-05-29 08:06:52 -0700172
173 return 0;
174}
175EXPORT_SYMBOL(drm_plane_helper_check_update);
176
177/**
Matt Roperc103d1c2014-04-01 15:22:35 -0700178 * drm_primary_helper_update() - Helper for primary plane update
179 * @plane: plane object to update
180 * @crtc: owning CRTC of owning plane
181 * @fb: framebuffer to flip onto plane
182 * @crtc_x: x offset of primary plane on crtc
183 * @crtc_y: y offset of primary plane on crtc
184 * @crtc_w: width of primary plane rectangle on crtc
185 * @crtc_h: height of primary plane rectangle on crtc
186 * @src_x: x offset of @fb for panning
187 * @src_y: y offset of @fb for panning
188 * @src_w: width of source rectangle in @fb
189 * @src_h: height of source rectangle in @fb
Daniel Vetter34a2ab52017-03-22 22:50:41 +0100190 * @ctx: lock acquire context, not used here
Matt Roperc103d1c2014-04-01 15:22:35 -0700191 *
192 * Provides a default plane update handler for primary planes. This is handler
193 * is called in response to a userspace SetPlane operation on the plane with a
194 * non-NULL framebuffer. We call the driver's modeset handler to update the
195 * framebuffer.
196 *
197 * SetPlane() on a primary plane of a disabled CRTC is not supported, and will
198 * return an error.
199 *
200 * Note that we make some assumptions about hardware limitations that may not be
201 * true for all hardware --
Daniel Vetter2e7a5702016-06-01 23:40:36 +0200202 *
203 * 1. Primary plane cannot be repositioned.
204 * 2. Primary plane cannot be scaled.
205 * 3. Primary plane must cover the entire CRTC.
206 * 4. Subpixel positioning is not supported.
207 *
Matt Roperc103d1c2014-04-01 15:22:35 -0700208 * Drivers for hardware that don't have these restrictions can provide their
209 * own implementation rather than using this helper.
210 *
211 * RETURNS:
212 * Zero on success, error code on failure
213 */
214int drm_primary_helper_update(struct drm_plane *plane, struct drm_crtc *crtc,
215 struct drm_framebuffer *fb,
216 int crtc_x, int crtc_y,
217 unsigned int crtc_w, unsigned int crtc_h,
218 uint32_t src_x, uint32_t src_y,
Daniel Vetter34a2ab52017-03-22 22:50:41 +0100219 uint32_t src_w, uint32_t src_h,
220 struct drm_modeset_acquire_ctx *ctx)
Matt Roperc103d1c2014-04-01 15:22:35 -0700221{
222 struct drm_mode_set set = {
223 .crtc = crtc,
224 .fb = fb,
225 .mode = &crtc->mode,
226 .x = src_x >> 16,
227 .y = src_y >> 16,
228 };
Matt Roper7daf8d52014-05-29 08:06:52 -0700229 struct drm_rect src = {
230 .x1 = src_x,
231 .y1 = src_y,
232 .x2 = src_x + src_w,
233 .y2 = src_y + src_h,
234 };
Matt Roperc103d1c2014-04-01 15:22:35 -0700235 struct drm_rect dest = {
236 .x1 = crtc_x,
237 .y1 = crtc_y,
238 .x2 = crtc_x + crtc_w,
239 .y2 = crtc_y + crtc_h,
240 };
Matt Roperc103d1c2014-04-01 15:22:35 -0700241 struct drm_connector **connector_list;
Matt Roperc103d1c2014-04-01 15:22:35 -0700242 int num_connectors, ret;
Matt Roper7daf8d52014-05-29 08:06:52 -0700243 bool visible;
Matt Roperc103d1c2014-04-01 15:22:35 -0700244
Matt Roper7daf8d52014-05-29 08:06:52 -0700245 ret = drm_plane_helper_check_update(plane, crtc, fb,
Ville Syrjälä81af63a2018-01-23 19:08:57 +0200246 &src, &dest,
Robert Fossc2c446a2017-05-19 16:50:17 -0400247 DRM_MODE_ROTATE_0,
Matt Roper7daf8d52014-05-29 08:06:52 -0700248 DRM_PLANE_HELPER_NO_SCALING,
249 DRM_PLANE_HELPER_NO_SCALING,
250 false, false, &visible);
Matt Roperc103d1c2014-04-01 15:22:35 -0700251 if (ret)
252 return ret;
253
Matt Roper7daf8d52014-05-29 08:06:52 -0700254 if (!visible)
255 /*
256 * Primary plane isn't visible. Note that unless a driver
257 * provides their own disable function, this will just
258 * wind up returning -EINVAL to userspace.
259 */
Daniel Vetter19315292017-03-22 22:50:43 +0100260 return plane->funcs->disable_plane(plane, ctx);
Matt Roper7daf8d52014-05-29 08:06:52 -0700261
Matt Roperc103d1c2014-04-01 15:22:35 -0700262 /* Find current connectors for CRTC */
263 num_connectors = get_connectors_for_crtc(crtc, NULL, 0);
264 BUG_ON(num_connectors == 0);
Harsha Sharma4b947b1c2017-10-13 13:07:47 +0530265 connector_list = kcalloc(num_connectors, sizeof(*connector_list),
Matt Roperc103d1c2014-04-01 15:22:35 -0700266 GFP_KERNEL);
267 if (!connector_list)
268 return -ENOMEM;
269 get_connectors_for_crtc(crtc, connector_list, num_connectors);
270
271 set.connectors = connector_list;
272 set.num_connectors = num_connectors;
273
274 /*
Daniel Vetter0fe27f02014-04-23 17:34:06 +0200275 * We call set_config() directly here rather than using
Matt Roperc103d1c2014-04-01 15:22:35 -0700276 * drm_mode_set_config_internal. We're reprogramming the same
277 * connectors that were already in use, so we shouldn't need the extra
278 * cross-CRTC fb refcounting to accomodate stealing connectors.
279 * drm_mode_setplane() already handles the basic refcounting for the
280 * framebuffers involved in this operation.
281 */
Daniel Vettera4eff9a2017-03-22 22:50:57 +0100282 ret = crtc->funcs->set_config(&set, ctx);
Matt Roperc103d1c2014-04-01 15:22:35 -0700283
284 kfree(connector_list);
285 return ret;
286}
287EXPORT_SYMBOL(drm_primary_helper_update);
288
289/**
290 * drm_primary_helper_disable() - Helper for primary plane disable
291 * @plane: plane to disable
Daniel Vetter3a753b92017-04-13 09:40:07 +0200292 * @ctx: lock acquire context, not used here
Matt Roperc103d1c2014-04-01 15:22:35 -0700293 *
294 * Provides a default plane disable handler for primary planes. This is handler
295 * is called in response to a userspace SetPlane operation on the plane with a
Daniel Vetterb6ccd7b2014-04-15 10:02:43 +0200296 * NULL framebuffer parameter. It unconditionally fails the disable call with
297 * -EINVAL the only way to disable the primary plane without driver support is
Daniel Vetter6806cdf2017-01-25 07:26:43 +0100298 * to disable the entire CRTC. Which does not match the plane
299 * &drm_plane_funcs.disable_plane hook.
Matt Roperc103d1c2014-04-01 15:22:35 -0700300 *
301 * Note that some hardware may be able to disable the primary plane without
302 * disabling the whole CRTC. Drivers for such hardware should provide their
303 * own disable handler that disables just the primary plane (and they'll likely
304 * need to provide their own update handler as well to properly re-enable a
305 * disabled primary plane).
306 *
307 * RETURNS:
Daniel Vetterb6ccd7b2014-04-15 10:02:43 +0200308 * Unconditionally returns -EINVAL.
Matt Roperc103d1c2014-04-01 15:22:35 -0700309 */
Daniel Vetter19315292017-03-22 22:50:43 +0100310int drm_primary_helper_disable(struct drm_plane *plane,
311 struct drm_modeset_acquire_ctx *ctx)
Matt Roperc103d1c2014-04-01 15:22:35 -0700312{
Daniel Vetterb6ccd7b2014-04-15 10:02:43 +0200313 return -EINVAL;
Matt Roperc103d1c2014-04-01 15:22:35 -0700314}
315EXPORT_SYMBOL(drm_primary_helper_disable);
316
317/**
318 * drm_primary_helper_destroy() - Helper for primary plane destruction
319 * @plane: plane to destroy
320 *
321 * Provides a default plane destroy handler for primary planes. This handler
322 * is called during CRTC destruction. We disable the primary plane, remove
323 * it from the DRM plane list, and deallocate the plane structure.
324 */
325void drm_primary_helper_destroy(struct drm_plane *plane)
326{
Matt Roperc103d1c2014-04-01 15:22:35 -0700327 drm_plane_cleanup(plane);
328 kfree(plane);
329}
330EXPORT_SYMBOL(drm_primary_helper_destroy);
331
332const struct drm_plane_funcs drm_primary_helper_funcs = {
333 .update_plane = drm_primary_helper_update,
334 .disable_plane = drm_primary_helper_disable,
335 .destroy = drm_primary_helper_destroy,
336};
337EXPORT_SYMBOL(drm_primary_helper_funcs);
338
Daniel Vetter2f324b42014-10-29 11:13:47 +0100339int drm_plane_helper_commit(struct drm_plane *plane,
340 struct drm_plane_state *plane_state,
341 struct drm_framebuffer *old_fb)
Daniel Vetteracf24a32014-07-29 15:33:05 +0200342{
Jani Nikulabe26a662015-03-11 11:51:06 +0200343 const struct drm_plane_helper_funcs *plane_funcs;
Daniel Vetteracf24a32014-07-29 15:33:05 +0200344 struct drm_crtc *crtc[2];
Jani Nikulabe26a662015-03-11 11:51:06 +0200345 const struct drm_crtc_helper_funcs *crtc_funcs[2];
Daniel Vetteracf24a32014-07-29 15:33:05 +0200346 int i, ret = 0;
347
348 plane_funcs = plane->helper_private;
349
350 /* Since this is a transitional helper we can't assume that plane->state
351 * is always valid. Hence we need to use plane->crtc instead of
352 * plane->state->crtc as the old crtc. */
353 crtc[0] = plane->crtc;
354 crtc[1] = crtc[0] != plane_state->crtc ? plane_state->crtc : NULL;
355
356 for (i = 0; i < 2; i++)
357 crtc_funcs[i] = crtc[i] ? crtc[i]->helper_private : NULL;
358
359 if (plane_funcs->atomic_check) {
360 ret = plane_funcs->atomic_check(plane, plane_state);
361 if (ret)
362 goto out;
363 }
364
Gabriel Krisman Bertazicd252352017-02-16 14:44:42 -0200365 if (plane_funcs->prepare_fb && plane_state->fb != old_fb) {
Maarten Lankhorst844f9112015-09-02 10:42:40 +0200366 ret = plane_funcs->prepare_fb(plane,
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +0000367 plane_state);
Daniel Vetteracf24a32014-07-29 15:33:05 +0200368 if (ret)
369 goto out;
370 }
371
372 /* Point of no return, commit sw state. */
373 swap(plane->state, plane_state);
374
375 for (i = 0; i < 2; i++) {
376 if (crtc_funcs[i] && crtc_funcs[i]->atomic_begin)
Maarten Lankhorst613d2b22015-07-21 13:28:58 +0200377 crtc_funcs[i]->atomic_begin(crtc[i], crtc[i]->state);
Daniel Vetteracf24a32014-07-29 15:33:05 +0200378 }
379
Thierry Reding407b8bd2014-11-20 12:05:50 +0100380 /*
381 * Drivers may optionally implement the ->atomic_disable callback, so
382 * special-case that here.
383 */
Maarten Lankhorst51ffa122017-02-16 15:47:07 +0100384 if (drm_atomic_plane_disabling(plane_state, plane->state) &&
Thierry Reding407b8bd2014-11-20 12:05:50 +0100385 plane_funcs->atomic_disable)
386 plane_funcs->atomic_disable(plane, plane_state);
387 else
388 plane_funcs->atomic_update(plane, plane_state);
Daniel Vetteracf24a32014-07-29 15:33:05 +0200389
390 for (i = 0; i < 2; i++) {
391 if (crtc_funcs[i] && crtc_funcs[i]->atomic_flush)
Maarten Lankhorst613d2b22015-07-21 13:28:58 +0200392 crtc_funcs[i]->atomic_flush(crtc[i], crtc[i]->state);
Daniel Vetteracf24a32014-07-29 15:33:05 +0200393 }
394
Matt Roper92890582015-01-19 08:31:49 -0800395 /*
396 * If we only moved the plane and didn't change fb's, there's no need to
397 * wait for vblank.
398 */
399 if (plane->state->fb == old_fb)
400 goto out;
401
Daniel Vetteracf24a32014-07-29 15:33:05 +0200402 for (i = 0; i < 2; i++) {
403 if (!crtc[i])
404 continue;
405
Daniel Vetter2e7f43c2015-05-20 10:36:32 +0200406 if (crtc[i]->cursor == plane)
407 continue;
408
Daniel Vetteracf24a32014-07-29 15:33:05 +0200409 /* There's no other way to figure out whether the crtc is running. */
410 ret = drm_crtc_vblank_get(crtc[i]);
411 if (ret == 0) {
412 drm_crtc_wait_one_vblank(crtc[i]);
413 drm_crtc_vblank_put(crtc[i]);
414 }
415
416 ret = 0;
417 }
418
Maarten Lankhorst844f9112015-09-02 10:42:40 +0200419 if (plane_funcs->cleanup_fb)
420 plane_funcs->cleanup_fb(plane, plane_state);
Daniel Vetteracf24a32014-07-29 15:33:05 +0200421out:
Imre Deak52b18e32017-04-26 16:40:13 +0300422 if (plane->funcs->atomic_destroy_state)
423 plane->funcs->atomic_destroy_state(plane, plane_state);
424 else
425 drm_atomic_helper_plane_destroy_state(plane, plane_state);
Daniel Vetteracf24a32014-07-29 15:33:05 +0200426
427 return ret;
428}
429
430/**
Matt Roper6a425c22015-01-15 18:34:22 -0800431 * drm_plane_helper_update() - Transitional helper for plane update
Daniel Vetteracf24a32014-07-29 15:33:05 +0200432 * @plane: plane object to update
433 * @crtc: owning CRTC of owning plane
434 * @fb: framebuffer to flip onto plane
435 * @crtc_x: x offset of primary plane on crtc
436 * @crtc_y: y offset of primary plane on crtc
437 * @crtc_w: width of primary plane rectangle on crtc
438 * @crtc_h: height of primary plane rectangle on crtc
439 * @src_x: x offset of @fb for panning
440 * @src_y: y offset of @fb for panning
441 * @src_w: width of source rectangle in @fb
442 * @src_h: height of source rectangle in @fb
Russell King070473b2018-07-02 17:21:23 +0100443 * @ctx: lock acquire context, not used here
Daniel Vetteracf24a32014-07-29 15:33:05 +0200444 *
445 * Provides a default plane update handler using the atomic plane update
446 * functions. It is fully left to the driver to check plane constraints and
447 * handle corner-cases like a fully occluded or otherwise invisible plane.
448 *
449 * This is useful for piecewise transitioning of a driver to the atomic helpers.
450 *
451 * RETURNS:
452 * Zero on success, error code on failure
453 */
454int drm_plane_helper_update(struct drm_plane *plane, struct drm_crtc *crtc,
455 struct drm_framebuffer *fb,
456 int crtc_x, int crtc_y,
457 unsigned int crtc_w, unsigned int crtc_h,
458 uint32_t src_x, uint32_t src_y,
Russell King070473b2018-07-02 17:21:23 +0100459 uint32_t src_w, uint32_t src_h,
460 struct drm_modeset_acquire_ctx *ctx)
Daniel Vetteracf24a32014-07-29 15:33:05 +0200461{
462 struct drm_plane_state *plane_state;
463
464 if (plane->funcs->atomic_duplicate_state)
465 plane_state = plane->funcs->atomic_duplicate_state(plane);
Daniel Vettere4f31ad2015-07-02 16:33:53 +0200466 else {
467 if (!plane->state)
468 drm_atomic_helper_plane_reset(plane);
469
Daniel Vetter321ebf02014-11-04 22:57:27 +0100470 plane_state = drm_atomic_helper_plane_duplicate_state(plane);
Daniel Vettere4f31ad2015-07-02 16:33:53 +0200471 }
Daniel Vetteracf24a32014-07-29 15:33:05 +0200472 if (!plane_state)
473 return -ENOMEM;
Daniel Vetter07cc0ef2014-11-27 15:49:39 +0100474 plane_state->plane = plane;
Daniel Vetteracf24a32014-07-29 15:33:05 +0200475
476 plane_state->crtc = crtc;
Daniel Vetter321ebf02014-11-04 22:57:27 +0100477 drm_atomic_set_fb_for_plane(plane_state, fb);
Daniel Vetteracf24a32014-07-29 15:33:05 +0200478 plane_state->crtc_x = crtc_x;
479 plane_state->crtc_y = crtc_y;
480 plane_state->crtc_h = crtc_h;
481 plane_state->crtc_w = crtc_w;
482 plane_state->src_x = src_x;
483 plane_state->src_y = src_y;
484 plane_state->src_h = src_h;
485 plane_state->src_w = src_w;
486
Daniel Vetter2f324b42014-10-29 11:13:47 +0100487 return drm_plane_helper_commit(plane, plane_state, plane->fb);
Daniel Vetteracf24a32014-07-29 15:33:05 +0200488}
489EXPORT_SYMBOL(drm_plane_helper_update);
490
491/**
Matt Roper6a425c22015-01-15 18:34:22 -0800492 * drm_plane_helper_disable() - Transitional helper for plane disable
Daniel Vetteracf24a32014-07-29 15:33:05 +0200493 * @plane: plane to disable
Russell King070473b2018-07-02 17:21:23 +0100494 * @ctx: lock acquire context, not used here
Daniel Vetteracf24a32014-07-29 15:33:05 +0200495 *
496 * Provides a default plane disable handler using the atomic plane update
497 * functions. It is fully left to the driver to check plane constraints and
498 * handle corner-cases like a fully occluded or otherwise invisible plane.
499 *
500 * This is useful for piecewise transitioning of a driver to the atomic helpers.
501 *
502 * RETURNS:
503 * Zero on success, error code on failure
504 */
Russell King070473b2018-07-02 17:21:23 +0100505int drm_plane_helper_disable(struct drm_plane *plane,
506 struct drm_modeset_acquire_ctx *ctx)
Daniel Vetteracf24a32014-07-29 15:33:05 +0200507{
508 struct drm_plane_state *plane_state;
Ville Syrjäläe00fb852018-05-25 21:50:45 +0300509 struct drm_framebuffer *old_fb;
Daniel Vetteracf24a32014-07-29 15:33:05 +0200510
511 /* crtc helpers love to call disable functions for already disabled hw
512 * functions. So cope with that. */
513 if (!plane->crtc)
514 return 0;
515
516 if (plane->funcs->atomic_duplicate_state)
517 plane_state = plane->funcs->atomic_duplicate_state(plane);
Daniel Vettere4f31ad2015-07-02 16:33:53 +0200518 else {
519 if (!plane->state)
520 drm_atomic_helper_plane_reset(plane);
521
Daniel Vetter321ebf02014-11-04 22:57:27 +0100522 plane_state = drm_atomic_helper_plane_duplicate_state(plane);
Daniel Vettere4f31ad2015-07-02 16:33:53 +0200523 }
Daniel Vetteracf24a32014-07-29 15:33:05 +0200524 if (!plane_state)
525 return -ENOMEM;
Daniel Vetter07cc0ef2014-11-27 15:49:39 +0100526 plane_state->plane = plane;
Daniel Vetteracf24a32014-07-29 15:33:05 +0200527
528 plane_state->crtc = NULL;
Ville Syrjäläe00fb852018-05-25 21:50:45 +0300529 old_fb = plane_state->fb;
Daniel Vetter321ebf02014-11-04 22:57:27 +0100530 drm_atomic_set_fb_for_plane(plane_state, NULL);
Daniel Vetteracf24a32014-07-29 15:33:05 +0200531
Ville Syrjäläe00fb852018-05-25 21:50:45 +0300532 return drm_plane_helper_commit(plane, plane_state, old_fb);
Daniel Vetteracf24a32014-07-29 15:33:05 +0200533}
534EXPORT_SYMBOL(drm_plane_helper_disable);