blob: 9a08445a7a7ac61bd2d6d5cca9cea70fa7359773 [file] [log] [blame]
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001/*
2 * Copyright (C) 2014 Red Hat
3 * Copyright (C) 2014 Intel Corp.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the 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 COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
19 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
20 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
21 * OTHER DEALINGS IN THE SOFTWARE.
22 *
23 * Authors:
24 * Rob Clark <robdclark@gmail.com>
25 * Daniel Vetter <daniel.vetter@ffwll.ch>
26 */
27
28#include <drm/drmP.h>
29#include <drm/drm_atomic.h>
30#include <drm/drm_plane_helper.h>
31#include <drm/drm_crtc_helper.h>
Daniel Vetter623369e2014-09-16 17:50:47 +020032#include <drm/drm_atomic_helper.h>
Chris Wilsonf54d1862016-10-25 13:00:45 +010033#include <linux/dma-fence.h>
Daniel Vetterc2fcd272014-11-05 00:14:14 +010034
Marek Szyprowski44d1240d2016-06-13 11:11:26 +020035#include "drm_crtc_internal.h"
36
Daniel Vetter3150c7d2014-11-06 20:53:29 +010037/**
38 * DOC: overview
39 *
40 * This helper library provides implementations of check and commit functions on
41 * top of the CRTC modeset helper callbacks and the plane helper callbacks. It
42 * also provides convenience implementations for the atomic state handling
43 * callbacks for drivers which don't need to subclass the drm core structures to
44 * add their own additional internal state.
45 *
46 * This library also provides default implementations for the check callback in
Daniel Vetter26196f72015-08-25 16:26:03 +020047 * drm_atomic_helper_check() and for the commit callback with
48 * drm_atomic_helper_commit(). But the individual stages and callbacks are
49 * exposed to allow drivers to mix and match and e.g. use the plane helpers only
Daniel Vetter3150c7d2014-11-06 20:53:29 +010050 * together with a driver private modeset implementation.
51 *
52 * This library also provides implementations for all the legacy driver
Daniel Vetter26196f72015-08-25 16:26:03 +020053 * interfaces on top of the atomic interface. See drm_atomic_helper_set_config(),
54 * drm_atomic_helper_disable_plane(), drm_atomic_helper_disable_plane() and the
Daniel Vetter3150c7d2014-11-06 20:53:29 +010055 * various functions to implement set_property callbacks. New drivers must not
56 * implement these functions themselves but must use the provided helpers.
Daniel Vetter092d01d2015-12-04 09:45:44 +010057 *
58 * The atomic helper uses the same function table structures as all other
Daniel Vetterea0dd852016-12-29 21:48:26 +010059 * modesetting helpers. See the documentation for &struct drm_crtc_helper_funcs,
60 * struct &drm_encoder_helper_funcs and &struct drm_connector_helper_funcs. It
61 * also shares the &struct drm_plane_helper_funcs function table with the plane
Daniel Vetter092d01d2015-12-04 09:45:44 +010062 * helpers.
Daniel Vetter3150c7d2014-11-06 20:53:29 +010063 */
Daniel Vetterc2fcd272014-11-05 00:14:14 +010064static void
65drm_atomic_helper_plane_changed(struct drm_atomic_state *state,
66 struct drm_plane_state *plane_state,
67 struct drm_plane *plane)
68{
69 struct drm_crtc_state *crtc_state;
70
71 if (plane->state->crtc) {
Andrzej Hajda2943ef32016-03-15 13:46:00 +010072 crtc_state = drm_atomic_get_existing_crtc_state(state,
73 plane->state->crtc);
Daniel Vetterc2fcd272014-11-05 00:14:14 +010074
75 if (WARN_ON(!crtc_state))
76 return;
77
78 crtc_state->planes_changed = true;
79 }
80
81 if (plane_state->crtc) {
Andrzej Hajda2943ef32016-03-15 13:46:00 +010082 crtc_state = drm_atomic_get_existing_crtc_state(state,
83 plane_state->crtc);
Daniel Vetterc2fcd272014-11-05 00:14:14 +010084
85 if (WARN_ON(!crtc_state))
86 return;
87
88 crtc_state->planes_changed = true;
89 }
90}
91
Maarten Lankhorst8248b652016-03-03 10:17:40 +010092static int handle_conflicting_encoders(struct drm_atomic_state *state,
93 bool disable_conflicting_encoders)
Daniel Vetter97ac3202015-12-03 10:49:14 +010094{
Daniel Vetter97ac3202015-12-03 10:49:14 +010095 struct drm_connector_state *conn_state;
Daniel Vetter623369e2014-09-16 17:50:47 +020096 struct drm_connector *connector;
Daniel Vetterc36a3252016-12-15 16:58:43 +010097 struct drm_connector_list_iter conn_iter;
Maarten Lankhorst40616a22016-03-03 10:17:39 +010098 struct drm_encoder *encoder;
99 unsigned encoder_mask = 0;
Daniel Vetterc36a3252016-12-15 16:58:43 +0100100 int i, ret = 0;
Daniel Vetter623369e2014-09-16 17:50:47 +0200101
Maarten Lankhorst8248b652016-03-03 10:17:40 +0100102 /*
103 * First loop, find all newly assigned encoders from the connectors
104 * part of the state. If the same encoder is assigned to multiple
105 * connectors bail out.
106 */
Maarten Lankhorst40616a22016-03-03 10:17:39 +0100107 for_each_connector_in_state(state, connector, conn_state, i) {
108 const struct drm_connector_helper_funcs *funcs = connector->helper_private;
109 struct drm_encoder *new_encoder;
Daniel Vetter623369e2014-09-16 17:50:47 +0200110
Maarten Lankhorst40616a22016-03-03 10:17:39 +0100111 if (!conn_state->crtc)
Daniel Vetter623369e2014-09-16 17:50:47 +0200112 continue;
113
Maarten Lankhorst40616a22016-03-03 10:17:39 +0100114 if (funcs->atomic_best_encoder)
115 new_encoder = funcs->atomic_best_encoder(connector, conn_state);
Boris Brezillona0909cc2016-06-01 18:03:37 +0200116 else if (funcs->best_encoder)
Maarten Lankhorst40616a22016-03-03 10:17:39 +0100117 new_encoder = funcs->best_encoder(connector);
Boris Brezillona0909cc2016-06-01 18:03:37 +0200118 else
119 new_encoder = drm_atomic_helper_best_encoder(connector);
Maarten Lankhorst40616a22016-03-03 10:17:39 +0100120
Maarten Lankhorst8248b652016-03-03 10:17:40 +0100121 if (new_encoder) {
122 if (encoder_mask & (1 << drm_encoder_index(new_encoder))) {
123 DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] on [CONNECTOR:%d:%s] already assigned\n",
124 new_encoder->base.id, new_encoder->name,
125 connector->base.id, connector->name);
126
127 return -EINVAL;
128 }
129
Maarten Lankhorst40616a22016-03-03 10:17:39 +0100130 encoder_mask |= 1 << drm_encoder_index(new_encoder);
Maarten Lankhorst8248b652016-03-03 10:17:40 +0100131 }
Daniel Vetter623369e2014-09-16 17:50:47 +0200132 }
133
Maarten Lankhorst8248b652016-03-03 10:17:40 +0100134 if (!encoder_mask)
135 return 0;
136
137 /*
138 * Second loop, iterate over all connectors not part of the state.
139 *
140 * If a conflicting encoder is found and disable_conflicting_encoders
141 * is not set, an error is returned. Userspace can provide a solution
142 * through the atomic ioctl.
143 *
144 * If the flag is set conflicting connectors are removed from the crtc
145 * and the crtc is disabled if no encoder is left. This preserves
146 * compatibility with the legacy set_config behavior.
147 */
Daniel Vetterc36a3252016-12-15 16:58:43 +0100148 drm_connector_list_iter_get(state->dev, &conn_iter);
149 drm_for_each_connector_iter(connector, &conn_iter) {
Maarten Lankhorst40616a22016-03-03 10:17:39 +0100150 struct drm_crtc_state *crtc_state;
151
152 if (drm_atomic_get_existing_connector_state(state, connector))
153 continue;
154
155 encoder = connector->state->best_encoder;
156 if (!encoder || !(encoder_mask & (1 << drm_encoder_index(encoder))))
157 continue;
158
Maarten Lankhorst8248b652016-03-03 10:17:40 +0100159 if (!disable_conflicting_encoders) {
160 DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] in use on [CRTC:%d:%s] by [CONNECTOR:%d:%s]\n",
161 encoder->base.id, encoder->name,
162 connector->state->crtc->base.id,
163 connector->state->crtc->name,
164 connector->base.id, connector->name);
Daniel Vetterc36a3252016-12-15 16:58:43 +0100165 ret = -EINVAL;
166 goto out;
Maarten Lankhorst8248b652016-03-03 10:17:40 +0100167 }
168
Maarten Lankhorst40616a22016-03-03 10:17:39 +0100169 conn_state = drm_atomic_get_connector_state(state, connector);
Daniel Vetterc36a3252016-12-15 16:58:43 +0100170 if (IS_ERR(conn_state)) {
171 ret = PTR_ERR(conn_state);
172 goto out;
173 }
Maarten Lankhorst40616a22016-03-03 10:17:39 +0100174
175 DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] in use on [CRTC:%d:%s], disabling [CONNECTOR:%d:%s]\n",
176 encoder->base.id, encoder->name,
177 conn_state->crtc->base.id, conn_state->crtc->name,
178 connector->base.id, connector->name);
179
180 crtc_state = drm_atomic_get_existing_crtc_state(state, conn_state->crtc);
181
182 ret = drm_atomic_set_crtc_for_connector(conn_state, NULL);
183 if (ret)
Daniel Vetterc36a3252016-12-15 16:58:43 +0100184 goto out;
Maarten Lankhorst40616a22016-03-03 10:17:39 +0100185
186 if (!crtc_state->connector_mask) {
187 ret = drm_atomic_set_mode_prop_for_crtc(crtc_state,
188 NULL);
189 if (ret < 0)
Daniel Vetterc36a3252016-12-15 16:58:43 +0100190 goto out;
Maarten Lankhorst40616a22016-03-03 10:17:39 +0100191
192 crtc_state->active = false;
193 }
194 }
Daniel Vetterc36a3252016-12-15 16:58:43 +0100195out:
196 drm_connector_list_iter_put(&conn_iter);
Maarten Lankhorst40616a22016-03-03 10:17:39 +0100197
Daniel Vetterc36a3252016-12-15 16:58:43 +0100198 return ret;
Daniel Vetter623369e2014-09-16 17:50:47 +0200199}
200
Maarten Lankhorste87a52b2016-01-28 15:04:58 +0100201static void
202set_best_encoder(struct drm_atomic_state *state,
203 struct drm_connector_state *conn_state,
204 struct drm_encoder *encoder)
205{
206 struct drm_crtc_state *crtc_state;
207 struct drm_crtc *crtc;
208
209 if (conn_state->best_encoder) {
210 /* Unset the encoder_mask in the old crtc state. */
211 crtc = conn_state->connector->state->crtc;
212
213 /* A NULL crtc is an error here because we should have
214 * duplicated a NULL best_encoder when crtc was NULL.
215 * As an exception restoring duplicated atomic state
216 * during resume is allowed, so don't warn when
217 * best_encoder is equal to encoder we intend to set.
218 */
219 WARN_ON(!crtc && encoder != conn_state->best_encoder);
220 if (crtc) {
221 crtc_state = drm_atomic_get_existing_crtc_state(state, crtc);
222
223 crtc_state->encoder_mask &=
224 ~(1 << drm_encoder_index(conn_state->best_encoder));
225 }
226 }
227
228 if (encoder) {
229 crtc = conn_state->crtc;
230 WARN_ON(!crtc);
231 if (crtc) {
232 crtc_state = drm_atomic_get_existing_crtc_state(state, crtc);
233
234 crtc_state->encoder_mask |=
235 1 << drm_encoder_index(encoder);
236 }
237 }
238
239 conn_state->best_encoder = encoder;
240}
241
Maarten Lankhorstec5aaa52016-03-03 10:17:41 +0100242static void
Daniel Vetter623369e2014-09-16 17:50:47 +0200243steal_encoder(struct drm_atomic_state *state,
Maarten Lankhorstff19b782016-03-03 10:17:38 +0100244 struct drm_encoder *encoder)
Daniel Vetter623369e2014-09-16 17:50:47 +0200245{
Daniel Vetter623369e2014-09-16 17:50:47 +0200246 struct drm_crtc_state *crtc_state;
247 struct drm_connector *connector;
248 struct drm_connector_state *connector_state;
Maarten Lankhorstec5aaa52016-03-03 10:17:41 +0100249 int i;
Daniel Vetter623369e2014-09-16 17:50:47 +0200250
Maarten Lankhorstec5aaa52016-03-03 10:17:41 +0100251 for_each_connector_in_state(state, connector, connector_state, i) {
Maarten Lankhorstff19b782016-03-03 10:17:38 +0100252 struct drm_crtc *encoder_crtc;
Daniel Vetter623369e2014-09-16 17:50:47 +0200253
Maarten Lankhorste87a52b2016-01-28 15:04:58 +0100254 if (connector_state->best_encoder != encoder)
255 continue;
256
Maarten Lankhorstff19b782016-03-03 10:17:38 +0100257 encoder_crtc = connector->state->crtc;
Daniel Vetter623369e2014-09-16 17:50:47 +0200258
Maarten Lankhorstff19b782016-03-03 10:17:38 +0100259 DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] in use on [CRTC:%d:%s], stealing it\n",
260 encoder->base.id, encoder->name,
261 encoder_crtc->base.id, encoder_crtc->name);
262
Daniel Vetter623369e2014-09-16 17:50:47 +0200263 set_best_encoder(state, connector_state, NULL);
Maarten Lankhorstff19b782016-03-03 10:17:38 +0100264
265 crtc_state = drm_atomic_get_existing_crtc_state(state, encoder_crtc);
266 crtc_state->connectors_changed = true;
267
Maarten Lankhorstec5aaa52016-03-03 10:17:41 +0100268 return;
Daniel Vetter623369e2014-09-16 17:50:47 +0200269 }
Daniel Vetter623369e2014-09-16 17:50:47 +0200270}
271
272static int
Maarten Lankhorst94595452016-02-24 09:37:29 +0100273update_connector_routing(struct drm_atomic_state *state,
274 struct drm_connector *connector,
275 struct drm_connector_state *connector_state)
Daniel Vetter623369e2014-09-16 17:50:47 +0200276{
Ville Syrjäläb5ceff202015-03-10 14:35:20 +0200277 const struct drm_connector_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200278 struct drm_encoder *new_encoder;
Daniel Vetter623369e2014-09-16 17:50:47 +0200279 struct drm_crtc_state *crtc_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200280
Daniel Vetter17a38d92015-02-22 12:24:16 +0100281 DRM_DEBUG_ATOMIC("Updating routing for [CONNECTOR:%d:%s]\n",
282 connector->base.id,
283 connector->name);
Daniel Vetter623369e2014-09-16 17:50:47 +0200284
285 if (connector->state->crtc != connector_state->crtc) {
286 if (connector->state->crtc) {
Maarten Lankhorst9b8d1e52016-03-03 10:17:42 +0100287 crtc_state = drm_atomic_get_existing_crtc_state(state, connector->state->crtc);
Maarten Lankhorstfc596662015-07-21 13:28:57 +0200288 crtc_state->connectors_changed = true;
Daniel Vetter623369e2014-09-16 17:50:47 +0200289 }
290
291 if (connector_state->crtc) {
Maarten Lankhorst9b8d1e52016-03-03 10:17:42 +0100292 crtc_state = drm_atomic_get_existing_crtc_state(state, connector_state->crtc);
Maarten Lankhorstfc596662015-07-21 13:28:57 +0200293 crtc_state->connectors_changed = true;
Daniel Vetter623369e2014-09-16 17:50:47 +0200294 }
295 }
296
297 if (!connector_state->crtc) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100298 DRM_DEBUG_ATOMIC("Disabling [CONNECTOR:%d:%s]\n",
Daniel Vetter623369e2014-09-16 17:50:47 +0200299 connector->base.id,
300 connector->name);
301
Maarten Lankhorste87a52b2016-01-28 15:04:58 +0100302 set_best_encoder(state, connector_state, NULL);
Daniel Vetter623369e2014-09-16 17:50:47 +0200303
304 return 0;
305 }
306
307 funcs = connector->helper_private;
Daniel Vetter3b8a6842015-08-03 17:24:08 +0200308
309 if (funcs->atomic_best_encoder)
310 new_encoder = funcs->atomic_best_encoder(connector,
311 connector_state);
Boris Brezillonc61b93fe2016-06-07 13:47:56 +0200312 else if (funcs->best_encoder)
Daniel Vetter3b8a6842015-08-03 17:24:08 +0200313 new_encoder = funcs->best_encoder(connector);
Boris Brezillonc61b93fe2016-06-07 13:47:56 +0200314 else
315 new_encoder = drm_atomic_helper_best_encoder(connector);
Daniel Vetter623369e2014-09-16 17:50:47 +0200316
317 if (!new_encoder) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100318 DRM_DEBUG_ATOMIC("No suitable encoder found for [CONNECTOR:%d:%s]\n",
319 connector->base.id,
320 connector->name);
Daniel Vetter623369e2014-09-16 17:50:47 +0200321 return -EINVAL;
322 }
323
Daniel Vetter5481c8f2015-11-18 18:46:48 +0100324 if (!drm_encoder_crtc_ok(new_encoder, connector_state->crtc)) {
325 DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] incompatible with [CRTC:%d]\n",
326 new_encoder->base.id,
327 new_encoder->name,
328 connector_state->crtc->base.id);
329 return -EINVAL;
330 }
331
Daniel Vetter623369e2014-09-16 17:50:47 +0200332 if (new_encoder == connector_state->best_encoder) {
Maarten Lankhorste87a52b2016-01-28 15:04:58 +0100333 set_best_encoder(state, connector_state, new_encoder);
334
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200335 DRM_DEBUG_ATOMIC("[CONNECTOR:%d:%s] keeps [ENCODER:%d:%s], now on [CRTC:%d:%s]\n",
Daniel Vetter17a38d92015-02-22 12:24:16 +0100336 connector->base.id,
337 connector->name,
338 new_encoder->base.id,
339 new_encoder->name,
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200340 connector_state->crtc->base.id,
341 connector_state->crtc->name);
Daniel Vetter623369e2014-09-16 17:50:47 +0200342
343 return 0;
344 }
345
Maarten Lankhorstec5aaa52016-03-03 10:17:41 +0100346 steal_encoder(state, new_encoder);
Daniel Vetter623369e2014-09-16 17:50:47 +0200347
Maarten Lankhorste87a52b2016-01-28 15:04:58 +0100348 set_best_encoder(state, connector_state, new_encoder);
349
Maarten Lankhorst9b8d1e52016-03-03 10:17:42 +0100350 crtc_state = drm_atomic_get_existing_crtc_state(state, connector_state->crtc);
Maarten Lankhorstfc596662015-07-21 13:28:57 +0200351 crtc_state->connectors_changed = true;
Daniel Vetter623369e2014-09-16 17:50:47 +0200352
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200353 DRM_DEBUG_ATOMIC("[CONNECTOR:%d:%s] using [ENCODER:%d:%s] on [CRTC:%d:%s]\n",
Daniel Vetter17a38d92015-02-22 12:24:16 +0100354 connector->base.id,
355 connector->name,
356 new_encoder->base.id,
357 new_encoder->name,
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200358 connector_state->crtc->base.id,
359 connector_state->crtc->name);
Daniel Vetter623369e2014-09-16 17:50:47 +0200360
361 return 0;
362}
363
364static int
365mode_fixup(struct drm_atomic_state *state)
366{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300367 struct drm_crtc *crtc;
Daniel Vetter623369e2014-09-16 17:50:47 +0200368 struct drm_crtc_state *crtc_state;
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300369 struct drm_connector *connector;
Daniel Vetter623369e2014-09-16 17:50:47 +0200370 struct drm_connector_state *conn_state;
371 int i;
372 bool ret;
373
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300374 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Maarten Lankhorstfc596662015-07-21 13:28:57 +0200375 if (!crtc_state->mode_changed &&
376 !crtc_state->connectors_changed)
Daniel Vetter623369e2014-09-16 17:50:47 +0200377 continue;
378
379 drm_mode_copy(&crtc_state->adjusted_mode, &crtc_state->mode);
380 }
381
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300382 for_each_connector_in_state(state, connector, conn_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +0200383 const struct drm_encoder_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200384 struct drm_encoder *encoder;
385
Daniel Vetter623369e2014-09-16 17:50:47 +0200386 WARN_ON(!!conn_state->best_encoder != !!conn_state->crtc);
387
388 if (!conn_state->crtc || !conn_state->best_encoder)
389 continue;
390
Andrzej Hajda2943ef32016-03-15 13:46:00 +0100391 crtc_state = drm_atomic_get_existing_crtc_state(state,
392 conn_state->crtc);
Daniel Vetter623369e2014-09-16 17:50:47 +0200393
394 /*
395 * Each encoder has at most one connector (since we always steal
396 * it away), so we won't call ->mode_fixup twice.
397 */
398 encoder = conn_state->best_encoder;
399 funcs = encoder->helper_private;
400
Archit Taneja862e6862015-05-21 11:03:16 +0530401 ret = drm_bridge_mode_fixup(encoder->bridge, &crtc_state->mode,
402 &crtc_state->adjusted_mode);
403 if (!ret) {
404 DRM_DEBUG_ATOMIC("Bridge fixup failed\n");
405 return -EINVAL;
Daniel Vetter623369e2014-09-16 17:50:47 +0200406 }
407
Noralf Trønnes28276352016-05-11 18:09:20 +0200408 if (funcs && funcs->atomic_check) {
Thierry Reding4cd4df82014-12-03 16:44:34 +0100409 ret = funcs->atomic_check(encoder, crtc_state,
410 conn_state);
411 if (ret) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100412 DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] check failed\n",
413 encoder->base.id, encoder->name);
Thierry Reding4cd4df82014-12-03 16:44:34 +0100414 return ret;
415 }
Noralf Trønnes28276352016-05-11 18:09:20 +0200416 } else if (funcs && funcs->mode_fixup) {
Thierry Reding4cd4df82014-12-03 16:44:34 +0100417 ret = funcs->mode_fixup(encoder, &crtc_state->mode,
418 &crtc_state->adjusted_mode);
419 if (!ret) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100420 DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] fixup failed\n",
421 encoder->base.id, encoder->name);
Thierry Reding4cd4df82014-12-03 16:44:34 +0100422 return -EINVAL;
423 }
Daniel Vetter623369e2014-09-16 17:50:47 +0200424 }
425 }
426
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300427 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +0200428 const struct drm_crtc_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200429
Liu Yingf55f1702016-05-27 17:35:54 +0800430 if (!crtc_state->enable)
431 continue;
432
Maarten Lankhorstfc596662015-07-21 13:28:57 +0200433 if (!crtc_state->mode_changed &&
434 !crtc_state->connectors_changed)
Daniel Vetter623369e2014-09-16 17:50:47 +0200435 continue;
436
437 funcs = crtc->helper_private;
Ander Conselvan de Oliveira840bfe92015-04-21 17:13:18 +0300438 if (!funcs->mode_fixup)
439 continue;
440
Daniel Vetter623369e2014-09-16 17:50:47 +0200441 ret = funcs->mode_fixup(crtc, &crtc_state->mode,
442 &crtc_state->adjusted_mode);
443 if (!ret) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200444 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] fixup failed\n",
445 crtc->base.id, crtc->name);
Daniel Vetter623369e2014-09-16 17:50:47 +0200446 return -EINVAL;
447 }
448 }
449
450 return 0;
451}
452
Daniel Vetterd9b13622014-11-26 16:57:41 +0100453/**
John Hunterf98bd3e2015-03-17 15:30:26 +0800454 * drm_atomic_helper_check_modeset - validate state object for modeset changes
Daniel Vetterd9b13622014-11-26 16:57:41 +0100455 * @dev: DRM device
456 * @state: the driver state object
457 *
458 * Check the state object to see if the requested state is physically possible.
459 * This does all the crtc and connector related computations for an atomic
Maarten Lankhorstfc596662015-07-21 13:28:57 +0200460 * update and adds any additional connectors needed for full modesets and calls
Daniel Vetter6806cdf2017-01-25 07:26:43 +0100461 * down into &drm_crtc_helper_funcs.mode_fixup and
462 * &drm_encoder_helper_funcs.mode_fixup or
463 * &drm_encoder_helper_funcs.atomic_check functions of the driver backend.
Maarten Lankhorstfc596662015-07-21 13:28:57 +0200464 *
Daniel Vetter6806cdf2017-01-25 07:26:43 +0100465 * &drm_crtc_state.mode_changed is set when the input mode is changed.
466 * &drm_crtc_state.connectors_changed is set when a connector is added or
467 * removed from the crtc. &drm_crtc_state.active_changed is set when
468 * &drm_crtc_state.active changes, which is used for DPMS.
Brian Starkeyd807ed12016-10-13 10:47:08 +0100469 * See also: drm_atomic_crtc_needs_modeset()
Daniel Vetterd9b13622014-11-26 16:57:41 +0100470 *
471 * IMPORTANT:
472 *
Daniel Vetter6806cdf2017-01-25 07:26:43 +0100473 * Drivers which set &drm_crtc_state.mode_changed (e.g. in their
474 * &drm_plane_helper_funcs.atomic_check hooks if a plane update can't be done
475 * without a full modeset) _must_ call this function afterwards after that
476 * change. It is permitted to call this function multiple times for the same
477 * update, e.g. when the &drm_crtc_helper_funcs.atomic_check functions depend
478 * upon the adjusted dotclock for fifo space allocation and watermark
479 * computation.
Daniel Vetterd9b13622014-11-26 16:57:41 +0100480 *
Daniel Vetterc39032a2016-06-08 14:19:19 +0200481 * RETURNS:
Daniel Vetterd9b13622014-11-26 16:57:41 +0100482 * Zero for success or -errno
483 */
484int
Rob Clark934ce1c2014-11-19 16:41:33 -0500485drm_atomic_helper_check_modeset(struct drm_device *dev,
Daniel Vetter623369e2014-09-16 17:50:47 +0200486 struct drm_atomic_state *state)
487{
Daniel Vetter623369e2014-09-16 17:50:47 +0200488 struct drm_crtc *crtc;
489 struct drm_crtc_state *crtc_state;
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300490 struct drm_connector *connector;
491 struct drm_connector_state *connector_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200492 int i, ret;
493
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300494 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Daniel Vetter623369e2014-09-16 17:50:47 +0200495 if (!drm_mode_equal(&crtc->state->mode, &crtc_state->mode)) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200496 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] mode changed\n",
497 crtc->base.id, crtc->name);
Daniel Vetter623369e2014-09-16 17:50:47 +0200498 crtc_state->mode_changed = true;
499 }
500
501 if (crtc->state->enable != crtc_state->enable) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200502 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] enable changed\n",
503 crtc->base.id, crtc->name);
Maarten Lankhorstfc596662015-07-21 13:28:57 +0200504
505 /*
506 * For clarity this assignment is done here, but
507 * enable == 0 is only true when there are no
508 * connectors and a NULL mode.
509 *
510 * The other way around is true as well. enable != 0
511 * iff connectors are attached and a mode is set.
512 */
Daniel Vetter623369e2014-09-16 17:50:47 +0200513 crtc_state->mode_changed = true;
Maarten Lankhorstfc596662015-07-21 13:28:57 +0200514 crtc_state->connectors_changed = true;
Daniel Vetter623369e2014-09-16 17:50:47 +0200515 }
516 }
517
Maarten Lankhorst8248b652016-03-03 10:17:40 +0100518 ret = handle_conflicting_encoders(state, state->legacy_set_config);
519 if (ret)
520 return ret;
Maarten Lankhorst40616a22016-03-03 10:17:39 +0100521
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300522 for_each_connector_in_state(state, connector, connector_state, i) {
Daniel Vetter623369e2014-09-16 17:50:47 +0200523 /*
Brian Starkeyd807ed12016-10-13 10:47:08 +0100524 * This only sets crtc->connectors_changed for routing changes,
525 * drivers must set crtc->connectors_changed themselves when
526 * connector properties need to be updated.
Daniel Vetter623369e2014-09-16 17:50:47 +0200527 */
Maarten Lankhorst94595452016-02-24 09:37:29 +0100528 ret = update_connector_routing(state, connector,
529 connector_state);
Daniel Vetter623369e2014-09-16 17:50:47 +0200530 if (ret)
531 return ret;
532 }
533
534 /*
535 * After all the routing has been prepared we need to add in any
536 * connector which is itself unchanged, but who's crtc changes it's
537 * configuration. This must be done before calling mode_fixup in case a
538 * crtc only changed its mode but has the same set of connectors.
539 */
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300540 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Maarten Lankhorst14de6c42016-01-04 12:53:20 +0100541 bool has_connectors =
542 !!crtc_state->connector_mask;
Daniel Vetter623369e2014-09-16 17:50:47 +0200543
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100544 /*
545 * We must set ->active_changed after walking connectors for
546 * otherwise an update that only changes active would result in
547 * a full modeset because update_connector_routing force that.
548 */
549 if (crtc->state->active != crtc_state->active) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200550 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] active changed\n",
551 crtc->base.id, crtc->name);
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100552 crtc_state->active_changed = true;
553 }
554
Daniel Vetter2465ff62015-06-18 09:58:55 +0200555 if (!drm_atomic_crtc_needs_modeset(crtc_state))
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100556 continue;
557
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200558 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] needs all connectors, enable: %c, active: %c\n",
559 crtc->base.id, crtc->name,
Daniel Vetter17a38d92015-02-22 12:24:16 +0100560 crtc_state->enable ? 'y' : 'n',
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200561 crtc_state->active ? 'y' : 'n');
Daniel Vetter623369e2014-09-16 17:50:47 +0200562
563 ret = drm_atomic_add_affected_connectors(state, crtc);
564 if (ret != 0)
565 return ret;
566
Maarten Lankhorst57744aa2015-05-19 16:41:03 +0200567 ret = drm_atomic_add_affected_planes(state, crtc);
568 if (ret != 0)
569 return ret;
570
Maarten Lankhorst14de6c42016-01-04 12:53:20 +0100571 if (crtc_state->enable != has_connectors) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200572 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] enabled/connectors mismatch\n",
573 crtc->base.id, crtc->name);
Daniel Vetter623369e2014-09-16 17:50:47 +0200574
575 return -EINVAL;
576 }
577 }
578
579 return mode_fixup(state);
580}
Daniel Vetterd9b13622014-11-26 16:57:41 +0100581EXPORT_SYMBOL(drm_atomic_helper_check_modeset);
Daniel Vetter623369e2014-09-16 17:50:47 +0200582
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100583/**
John Hunterf98bd3e2015-03-17 15:30:26 +0800584 * drm_atomic_helper_check_planes - validate state object for planes changes
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100585 * @dev: DRM device
586 * @state: the driver state object
587 *
588 * Check the state object to see if the requested state is physically possible.
Daniel Vetterd9b13622014-11-26 16:57:41 +0100589 * This does all the plane update related checks using by calling into the
Daniel Vetter6806cdf2017-01-25 07:26:43 +0100590 * &drm_crtc_helper_funcs.atomic_check and &drm_plane_helper_funcs.atomic_check
591 * hooks provided by the driver.
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100592 *
Daniel Vetter6806cdf2017-01-25 07:26:43 +0100593 * It also sets &drm_crtc_state.planes_changed to indicate that a crtc has
Maarten Lankhorstfc596662015-07-21 13:28:57 +0200594 * updated planes.
595 *
Daniel Vetterc39032a2016-06-08 14:19:19 +0200596 * RETURNS:
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100597 * Zero for success or -errno
598 */
Daniel Vetterd9b13622014-11-26 16:57:41 +0100599int
600drm_atomic_helper_check_planes(struct drm_device *dev,
601 struct drm_atomic_state *state)
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100602{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300603 struct drm_crtc *crtc;
604 struct drm_crtc_state *crtc_state;
605 struct drm_plane *plane;
606 struct drm_plane_state *plane_state;
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100607 int i, ret = 0;
608
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300609 for_each_plane_in_state(state, plane, plane_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +0200610 const struct drm_plane_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100611
612 funcs = plane->helper_private;
613
614 drm_atomic_helper_plane_changed(state, plane_state, plane);
615
616 if (!funcs || !funcs->atomic_check)
617 continue;
618
619 ret = funcs->atomic_check(plane, plane_state);
620 if (ret) {
Ville Syrjälä9f4c97a2015-12-08 18:41:54 +0200621 DRM_DEBUG_ATOMIC("[PLANE:%d:%s] atomic driver check failed\n",
622 plane->base.id, plane->name);
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100623 return ret;
624 }
625 }
626
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300627 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +0200628 const struct drm_crtc_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100629
630 funcs = crtc->helper_private;
631
632 if (!funcs || !funcs->atomic_check)
633 continue;
634
Daniel Vetterbe9174a2016-06-02 00:06:24 +0200635 ret = funcs->atomic_check(crtc, crtc_state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100636 if (ret) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200637 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] atomic driver check failed\n",
638 crtc->base.id, crtc->name);
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100639 return ret;
640 }
641 }
642
Daniel Vetterd9b13622014-11-26 16:57:41 +0100643 return ret;
644}
645EXPORT_SYMBOL(drm_atomic_helper_check_planes);
646
647/**
648 * drm_atomic_helper_check - validate state object
649 * @dev: DRM device
650 * @state: the driver state object
651 *
652 * Check the state object to see if the requested state is physically possible.
653 * Only crtcs and planes have check callbacks, so for any additional (global)
654 * checking that a driver needs it can simply wrap that around this function.
Daniel Vetter6806cdf2017-01-25 07:26:43 +0100655 * Drivers without such needs can directly use this as their
656 * &drm_mode_config_funcs.atomic_check callback.
Daniel Vetterd9b13622014-11-26 16:57:41 +0100657 *
Daniel Vetterb4274fb2014-11-26 17:02:18 +0100658 * This just wraps the two parts of the state checking for planes and modeset
659 * state in the default order: First it calls drm_atomic_helper_check_modeset()
660 * and then drm_atomic_helper_check_planes(). The assumption is that the
Daniel Vetter6806cdf2017-01-25 07:26:43 +0100661 * @drm_plane_helper_funcs.atomic_check and @drm_crtc_helper_funcs.atomic_check
662 * functions depend upon an updated adjusted_mode.clock to e.g. properly compute
663 * watermarks.
Daniel Vetterb4274fb2014-11-26 17:02:18 +0100664 *
Daniel Vetterc39032a2016-06-08 14:19:19 +0200665 * RETURNS:
Daniel Vetterd9b13622014-11-26 16:57:41 +0100666 * Zero for success or -errno
667 */
668int drm_atomic_helper_check(struct drm_device *dev,
669 struct drm_atomic_state *state)
670{
671 int ret;
672
Daniel Vetterb4274fb2014-11-26 17:02:18 +0100673 ret = drm_atomic_helper_check_modeset(dev, state);
Daniel Vetterd9b13622014-11-26 16:57:41 +0100674 if (ret)
675 return ret;
676
Daniel Vetterb4274fb2014-11-26 17:02:18 +0100677 ret = drm_atomic_helper_check_planes(dev, state);
Rob Clark934ce1c2014-11-19 16:41:33 -0500678 if (ret)
679 return ret;
680
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100681 return ret;
682}
683EXPORT_SYMBOL(drm_atomic_helper_check);
684
Daniel Vetter623369e2014-09-16 17:50:47 +0200685static void
686disable_outputs(struct drm_device *dev, struct drm_atomic_state *old_state)
687{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300688 struct drm_connector *connector;
689 struct drm_connector_state *old_conn_state;
690 struct drm_crtc *crtc;
691 struct drm_crtc_state *old_crtc_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200692 int i;
693
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300694 for_each_connector_in_state(old_state, connector, old_conn_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +0200695 const struct drm_encoder_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200696 struct drm_encoder *encoder;
697
Daniel Vetter623369e2014-09-16 17:50:47 +0200698 /* Shut down everything that's in the changeset and currently
699 * still on. So need to check the old, saved state. */
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300700 if (!old_conn_state->crtc)
Daniel Vetter623369e2014-09-16 17:50:47 +0200701 continue;
702
Andrzej Hajda2943ef32016-03-15 13:46:00 +0100703 old_crtc_state = drm_atomic_get_existing_crtc_state(old_state,
704 old_conn_state->crtc);
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100705
Daniel Vetter4218a322015-03-26 22:18:40 +0100706 if (!old_crtc_state->active ||
Daniel Vetter2465ff62015-06-18 09:58:55 +0200707 !drm_atomic_crtc_needs_modeset(old_conn_state->crtc->state))
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100708 continue;
709
Rob Clark46df9ad2014-11-20 15:40:36 -0500710 encoder = old_conn_state->best_encoder;
Daniel Vetter623369e2014-09-16 17:50:47 +0200711
Rob Clark46df9ad2014-11-20 15:40:36 -0500712 /* We shouldn't get this far if we didn't previously have
713 * an encoder.. but WARN_ON() rather than explode.
714 */
715 if (WARN_ON(!encoder))
Daniel Vetter623369e2014-09-16 17:50:47 +0200716 continue;
717
718 funcs = encoder->helper_private;
719
Daniel Vetter17a38d92015-02-22 12:24:16 +0100720 DRM_DEBUG_ATOMIC("disabling [ENCODER:%d:%s]\n",
721 encoder->base.id, encoder->name);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100722
Daniel Vetter623369e2014-09-16 17:50:47 +0200723 /*
724 * Each encoder has at most one connector (since we always steal
John Hunterf98bd3e2015-03-17 15:30:26 +0800725 * it away), so we won't call disable hooks twice.
Daniel Vetter623369e2014-09-16 17:50:47 +0200726 */
Archit Taneja862e6862015-05-21 11:03:16 +0530727 drm_bridge_disable(encoder->bridge);
Daniel Vetter623369e2014-09-16 17:50:47 +0200728
729 /* Right function depends upon target state. */
Noralf Trønnes28276352016-05-11 18:09:20 +0200730 if (funcs) {
731 if (connector->state->crtc && funcs->prepare)
732 funcs->prepare(encoder);
733 else if (funcs->disable)
734 funcs->disable(encoder);
735 else if (funcs->dpms)
736 funcs->dpms(encoder, DRM_MODE_DPMS_OFF);
737 }
Daniel Vetter623369e2014-09-16 17:50:47 +0200738
Archit Taneja862e6862015-05-21 11:03:16 +0530739 drm_bridge_post_disable(encoder->bridge);
Daniel Vetter623369e2014-09-16 17:50:47 +0200740 }
741
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300742 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +0200743 const struct drm_crtc_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200744
745 /* Shut down everything that needs a full modeset. */
Daniel Vetter2465ff62015-06-18 09:58:55 +0200746 if (!drm_atomic_crtc_needs_modeset(crtc->state))
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100747 continue;
748
749 if (!old_crtc_state->active)
Daniel Vetter623369e2014-09-16 17:50:47 +0200750 continue;
751
752 funcs = crtc->helper_private;
753
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200754 DRM_DEBUG_ATOMIC("disabling [CRTC:%d:%s]\n",
755 crtc->base.id, crtc->name);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100756
757
Daniel Vetter623369e2014-09-16 17:50:47 +0200758 /* Right function depends upon target state. */
Daniel Vetteree0a89c2015-01-22 16:36:24 +0100759 if (crtc->state->enable && funcs->prepare)
Daniel Vetter623369e2014-09-16 17:50:47 +0200760 funcs->prepare(crtc);
Liu Yingc9ac8b42016-08-26 15:30:38 +0800761 else if (funcs->atomic_disable)
762 funcs->atomic_disable(crtc, old_crtc_state);
Daniel Vetter623369e2014-09-16 17:50:47 +0200763 else if (funcs->disable)
764 funcs->disable(crtc);
765 else
766 funcs->dpms(crtc, DRM_MODE_DPMS_OFF);
767 }
768}
769
Daniel Vetter4c18d302015-05-12 15:27:37 +0200770/**
771 * drm_atomic_helper_update_legacy_modeset_state - update legacy modeset state
772 * @dev: DRM device
773 * @old_state: atomic state object with old state structures
774 *
775 * This function updates all the various legacy modeset state pointers in
776 * connectors, encoders and crtcs. It also updates the timestamping constants
777 * used for precise vblank timestamps by calling
778 * drm_calc_timestamping_constants().
779 *
780 * Drivers can use this for building their own atomic commit if they don't have
781 * a pure helper-based modeset implementation.
782 */
783void
784drm_atomic_helper_update_legacy_modeset_state(struct drm_device *dev,
785 struct drm_atomic_state *old_state)
Daniel Vetter623369e2014-09-16 17:50:47 +0200786{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300787 struct drm_connector *connector;
788 struct drm_connector_state *old_conn_state;
789 struct drm_crtc *crtc;
790 struct drm_crtc_state *old_crtc_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200791 int i;
792
Maarten Lankhorst8c103422015-07-27 13:24:29 +0200793 /* clear out existing links and update dpms */
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300794 for_each_connector_in_state(old_state, connector, old_conn_state, i) {
Maarten Lankhorst8c103422015-07-27 13:24:29 +0200795 if (connector->encoder) {
796 WARN_ON(!connector->encoder->crtc);
Daniel Vetter623369e2014-09-16 17:50:47 +0200797
Maarten Lankhorst8c103422015-07-27 13:24:29 +0200798 connector->encoder->crtc = NULL;
799 connector->encoder = NULL;
800 }
Daniel Vetter623369e2014-09-16 17:50:47 +0200801
Maarten Lankhorst8c103422015-07-27 13:24:29 +0200802 crtc = connector->state->crtc;
803 if ((!crtc && old_conn_state->crtc) ||
804 (crtc && drm_atomic_crtc_needs_modeset(crtc->state))) {
805 struct drm_property *dpms_prop =
806 dev->mode_config.dpms_property;
807 int mode = DRM_MODE_DPMS_OFF;
808
809 if (crtc && crtc->state->active)
810 mode = DRM_MODE_DPMS_ON;
811
812 connector->dpms = mode;
813 drm_object_property_set_value(&connector->base,
814 dpms_prop, mode);
815 }
Daniel Vetter623369e2014-09-16 17:50:47 +0200816 }
817
818 /* set new links */
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300819 for_each_connector_in_state(old_state, connector, old_conn_state, i) {
820 if (!connector->state->crtc)
Daniel Vetter623369e2014-09-16 17:50:47 +0200821 continue;
822
823 if (WARN_ON(!connector->state->best_encoder))
824 continue;
825
826 connector->encoder = connector->state->best_encoder;
827 connector->encoder->crtc = connector->state->crtc;
828 }
829
830 /* set legacy state in the crtc structure */
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300831 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Maarten Lankhorst26608012015-07-16 15:51:01 +0200832 struct drm_plane *primary = crtc->primary;
833
Daniel Vetter623369e2014-09-16 17:50:47 +0200834 crtc->mode = crtc->state->mode;
835 crtc->enabled = crtc->state->enable;
Maarten Lankhorst26608012015-07-16 15:51:01 +0200836
837 if (drm_atomic_get_existing_plane_state(old_state, primary) &&
838 primary->state->crtc == crtc) {
839 crtc->x = primary->state->src_x >> 16;
840 crtc->y = primary->state->src_y >> 16;
841 }
Daniel Vetter3d51d2d2015-05-12 15:21:06 +0200842
843 if (crtc->state->enable)
844 drm_calc_timestamping_constants(crtc,
845 &crtc->state->adjusted_mode);
Daniel Vetter623369e2014-09-16 17:50:47 +0200846 }
847}
Daniel Vetter4c18d302015-05-12 15:27:37 +0200848EXPORT_SYMBOL(drm_atomic_helper_update_legacy_modeset_state);
Daniel Vetter623369e2014-09-16 17:50:47 +0200849
850static void
851crtc_set_mode(struct drm_device *dev, struct drm_atomic_state *old_state)
852{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300853 struct drm_crtc *crtc;
854 struct drm_crtc_state *old_crtc_state;
855 struct drm_connector *connector;
856 struct drm_connector_state *old_conn_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200857 int i;
858
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300859 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +0200860 const struct drm_crtc_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200861
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300862 if (!crtc->state->mode_changed)
Daniel Vetter623369e2014-09-16 17:50:47 +0200863 continue;
864
865 funcs = crtc->helper_private;
866
Daniel Vetterc982bd92015-02-22 12:24:20 +0100867 if (crtc->state->enable && funcs->mode_set_nofb) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200868 DRM_DEBUG_ATOMIC("modeset on [CRTC:%d:%s]\n",
869 crtc->base.id, crtc->name);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100870
Daniel Vetter623369e2014-09-16 17:50:47 +0200871 funcs->mode_set_nofb(crtc);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100872 }
Daniel Vetter623369e2014-09-16 17:50:47 +0200873 }
874
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300875 for_each_connector_in_state(old_state, connector, old_conn_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +0200876 const struct drm_encoder_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200877 struct drm_crtc_state *new_crtc_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200878 struct drm_encoder *encoder;
879 struct drm_display_mode *mode, *adjusted_mode;
880
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300881 if (!connector->state->best_encoder)
Daniel Vetter623369e2014-09-16 17:50:47 +0200882 continue;
883
884 encoder = connector->state->best_encoder;
885 funcs = encoder->helper_private;
886 new_crtc_state = connector->state->crtc->state;
887 mode = &new_crtc_state->mode;
888 adjusted_mode = &new_crtc_state->adjusted_mode;
889
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100890 if (!new_crtc_state->mode_changed)
891 continue;
892
Daniel Vetter17a38d92015-02-22 12:24:16 +0100893 DRM_DEBUG_ATOMIC("modeset on [ENCODER:%d:%s]\n",
894 encoder->base.id, encoder->name);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100895
Daniel Vetter623369e2014-09-16 17:50:47 +0200896 /*
897 * Each encoder has at most one connector (since we always steal
John Hunterf98bd3e2015-03-17 15:30:26 +0800898 * it away), so we won't call mode_set hooks twice.
Daniel Vetter623369e2014-09-16 17:50:47 +0200899 */
Philipp Zabelfe4a11c2016-07-22 12:20:47 +0200900 if (funcs && funcs->atomic_mode_set) {
901 funcs->atomic_mode_set(encoder, new_crtc_state,
902 connector->state);
903 } else if (funcs && funcs->mode_set) {
Daniel Vetterc982bd92015-02-22 12:24:20 +0100904 funcs->mode_set(encoder, mode, adjusted_mode);
Philipp Zabelfe4a11c2016-07-22 12:20:47 +0200905 }
Daniel Vetter623369e2014-09-16 17:50:47 +0200906
Archit Taneja862e6862015-05-21 11:03:16 +0530907 drm_bridge_mode_set(encoder->bridge, mode, adjusted_mode);
Daniel Vetter623369e2014-09-16 17:50:47 +0200908 }
909}
910
911/**
Daniel Vetter1af434a2015-02-22 12:24:19 +0100912 * drm_atomic_helper_commit_modeset_disables - modeset commit to disable outputs
Daniel Vetter623369e2014-09-16 17:50:47 +0200913 * @dev: DRM device
Laurent Pincharta072f802015-02-22 12:24:18 +0100914 * @old_state: atomic state object with old state structures
Daniel Vetter623369e2014-09-16 17:50:47 +0200915 *
Daniel Vetter1af434a2015-02-22 12:24:19 +0100916 * This function shuts down all the outputs that need to be shut down and
Daniel Vetter623369e2014-09-16 17:50:47 +0200917 * prepares them (if required) with the new mode.
Daniel Vetter1af434a2015-02-22 12:24:19 +0100918 *
Laurent Pinchart60acc4e2015-05-27 15:05:42 +0300919 * For compatibility with legacy crtc helpers this should be called before
Daniel Vetter1af434a2015-02-22 12:24:19 +0100920 * drm_atomic_helper_commit_planes(), which is what the default commit function
921 * does. But drivers with different needs can group the modeset commits together
922 * and do the plane commits at the end. This is useful for drivers doing runtime
923 * PM since planes updates then only happen when the CRTC is actually enabled.
Daniel Vetter623369e2014-09-16 17:50:47 +0200924 */
Daniel Vetter1af434a2015-02-22 12:24:19 +0100925void drm_atomic_helper_commit_modeset_disables(struct drm_device *dev,
926 struct drm_atomic_state *old_state)
Daniel Vetter623369e2014-09-16 17:50:47 +0200927{
Laurent Pincharta072f802015-02-22 12:24:18 +0100928 disable_outputs(dev, old_state);
Daniel Vetter4c18d302015-05-12 15:27:37 +0200929
930 drm_atomic_helper_update_legacy_modeset_state(dev, old_state);
931
Laurent Pincharta072f802015-02-22 12:24:18 +0100932 crtc_set_mode(dev, old_state);
Daniel Vetter623369e2014-09-16 17:50:47 +0200933}
Daniel Vetter1af434a2015-02-22 12:24:19 +0100934EXPORT_SYMBOL(drm_atomic_helper_commit_modeset_disables);
Daniel Vetter623369e2014-09-16 17:50:47 +0200935
936/**
Daniel Vetter1af434a2015-02-22 12:24:19 +0100937 * drm_atomic_helper_commit_modeset_enables - modeset commit to enable outputs
Daniel Vetter623369e2014-09-16 17:50:47 +0200938 * @dev: DRM device
939 * @old_state: atomic state object with old state structures
940 *
Daniel Vetter1af434a2015-02-22 12:24:19 +0100941 * This function enables all the outputs with the new configuration which had to
942 * be turned off for the update.
943 *
Laurent Pinchart60acc4e2015-05-27 15:05:42 +0300944 * For compatibility with legacy crtc helpers this should be called after
Daniel Vetter1af434a2015-02-22 12:24:19 +0100945 * drm_atomic_helper_commit_planes(), which is what the default commit function
946 * does. But drivers with different needs can group the modeset commits together
947 * and do the plane commits at the end. This is useful for drivers doing runtime
948 * PM since planes updates then only happen when the CRTC is actually enabled.
Daniel Vetter623369e2014-09-16 17:50:47 +0200949 */
Daniel Vetter1af434a2015-02-22 12:24:19 +0100950void drm_atomic_helper_commit_modeset_enables(struct drm_device *dev,
951 struct drm_atomic_state *old_state)
Daniel Vetter623369e2014-09-16 17:50:47 +0200952{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300953 struct drm_crtc *crtc;
954 struct drm_crtc_state *old_crtc_state;
955 struct drm_connector *connector;
956 struct drm_connector_state *old_conn_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200957 int i;
958
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300959 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +0200960 const struct drm_crtc_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200961
962 /* Need to filter out CRTCs where only planes change. */
Daniel Vetter2465ff62015-06-18 09:58:55 +0200963 if (!drm_atomic_crtc_needs_modeset(crtc->state))
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100964 continue;
965
966 if (!crtc->state->active)
Daniel Vetter623369e2014-09-16 17:50:47 +0200967 continue;
968
969 funcs = crtc->helper_private;
970
Daniel Vetteree0a89c2015-01-22 16:36:24 +0100971 if (crtc->state->enable) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200972 DRM_DEBUG_ATOMIC("enabling [CRTC:%d:%s]\n",
973 crtc->base.id, crtc->name);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100974
Daniel Vetteree0a89c2015-01-22 16:36:24 +0100975 if (funcs->enable)
976 funcs->enable(crtc);
977 else
978 funcs->commit(crtc);
979 }
Daniel Vetter623369e2014-09-16 17:50:47 +0200980 }
981
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300982 for_each_connector_in_state(old_state, connector, old_conn_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +0200983 const struct drm_encoder_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200984 struct drm_encoder *encoder;
985
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300986 if (!connector->state->best_encoder)
Daniel Vetter623369e2014-09-16 17:50:47 +0200987 continue;
988
Daniel Vetter4218a322015-03-26 22:18:40 +0100989 if (!connector->state->crtc->state->active ||
Daniel Vetter2465ff62015-06-18 09:58:55 +0200990 !drm_atomic_crtc_needs_modeset(connector->state->crtc->state))
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100991 continue;
992
Daniel Vetter623369e2014-09-16 17:50:47 +0200993 encoder = connector->state->best_encoder;
994 funcs = encoder->helper_private;
995
Daniel Vetter17a38d92015-02-22 12:24:16 +0100996 DRM_DEBUG_ATOMIC("enabling [ENCODER:%d:%s]\n",
997 encoder->base.id, encoder->name);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100998
Daniel Vetter623369e2014-09-16 17:50:47 +0200999 /*
1000 * Each encoder has at most one connector (since we always steal
John Hunterf98bd3e2015-03-17 15:30:26 +08001001 * it away), so we won't call enable hooks twice.
Daniel Vetter623369e2014-09-16 17:50:47 +02001002 */
Archit Taneja862e6862015-05-21 11:03:16 +05301003 drm_bridge_pre_enable(encoder->bridge);
Daniel Vetter623369e2014-09-16 17:50:47 +02001004
Noralf Trønnes28276352016-05-11 18:09:20 +02001005 if (funcs) {
1006 if (funcs->enable)
1007 funcs->enable(encoder);
1008 else if (funcs->commit)
1009 funcs->commit(encoder);
1010 }
Daniel Vetter623369e2014-09-16 17:50:47 +02001011
Archit Taneja862e6862015-05-21 11:03:16 +05301012 drm_bridge_enable(encoder->bridge);
Daniel Vetter623369e2014-09-16 17:50:47 +02001013 }
1014}
Daniel Vetter1af434a2015-02-22 12:24:19 +01001015EXPORT_SYMBOL(drm_atomic_helper_commit_modeset_enables);
Daniel Vetter623369e2014-09-16 17:50:47 +02001016
Rob Clark4c5b7f32016-03-18 19:14:55 -04001017/**
1018 * drm_atomic_helper_wait_for_fences - wait for fences stashed in plane state
1019 * @dev: DRM device
1020 * @state: atomic state object with old state structures
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001021 * @pre_swap: If true, do an interruptible wait, and @state is the new state.
1022 * Otherwise @state is the old state.
Rob Clark4c5b7f32016-03-18 19:14:55 -04001023 *
1024 * For implicit sync, driver should fish the exclusive fence out from the
1025 * incoming fb's and stash it in the drm_plane_state. This is called after
1026 * drm_atomic_helper_swap_state() so it uses the current plane state (and
1027 * just uses the atomic state to find the changed planes)
Gustavo Padovanf6ce4102016-09-12 16:08:11 -03001028 *
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001029 * Note that @pre_swap is needed since the point where we block for fences moves
1030 * around depending upon whether an atomic commit is blocking or
1031 * non-blocking. For async commit all waiting needs to happen after
1032 * drm_atomic_helper_swap_state() is called, but for synchronous commits we want
1033 * to wait **before** we do anything that can't be easily rolled back. That is
1034 * before we call drm_atomic_helper_swap_state().
1035 *
Chris Wilsonf54d1862016-10-25 13:00:45 +01001036 * Returns zero if success or < 0 if dma_fence_wait() fails.
Rob Clark4c5b7f32016-03-18 19:14:55 -04001037 */
Gustavo Padovanf6ce4102016-09-12 16:08:11 -03001038int drm_atomic_helper_wait_for_fences(struct drm_device *dev,
1039 struct drm_atomic_state *state,
1040 bool pre_swap)
Daniel Vettere2330f02014-10-29 11:34:56 +01001041{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001042 struct drm_plane *plane;
1043 struct drm_plane_state *plane_state;
Gustavo Padovanf6ce4102016-09-12 16:08:11 -03001044 int i, ret;
Daniel Vettere2330f02014-10-29 11:34:56 +01001045
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001046 for_each_plane_in_state(state, plane, plane_state, i) {
Gustavo Padovanf6ce4102016-09-12 16:08:11 -03001047 if (!pre_swap)
1048 plane_state = plane->state;
1049
1050 if (!plane_state->fence)
Daniel Vettere2330f02014-10-29 11:34:56 +01001051 continue;
1052
Gustavo Padovanf6ce4102016-09-12 16:08:11 -03001053 WARN_ON(!plane_state->fb);
Daniel Vettere2330f02014-10-29 11:34:56 +01001054
Gustavo Padovanf6ce4102016-09-12 16:08:11 -03001055 /*
1056 * If waiting for fences pre-swap (ie: nonblock), userspace can
1057 * still interrupt the operation. Instead of blocking until the
1058 * timer expires, make the wait interruptible.
1059 */
Chris Wilsonf54d1862016-10-25 13:00:45 +01001060 ret = dma_fence_wait(plane_state->fence, pre_swap);
Gustavo Padovanf6ce4102016-09-12 16:08:11 -03001061 if (ret)
1062 return ret;
1063
Chris Wilsonf54d1862016-10-25 13:00:45 +01001064 dma_fence_put(plane_state->fence);
Gustavo Padovanf6ce4102016-09-12 16:08:11 -03001065 plane_state->fence = NULL;
Daniel Vettere2330f02014-10-29 11:34:56 +01001066 }
Gustavo Padovanf6ce4102016-09-12 16:08:11 -03001067
1068 return 0;
Daniel Vettere2330f02014-10-29 11:34:56 +01001069}
Rob Clark4c5b7f32016-03-18 19:14:55 -04001070EXPORT_SYMBOL(drm_atomic_helper_wait_for_fences);
Daniel Vettere2330f02014-10-29 11:34:56 +01001071
John Keepingc2409062016-01-19 10:46:58 +00001072/**
Rob Clark5ee32292014-11-11 19:38:59 -05001073 * drm_atomic_helper_wait_for_vblanks - wait for vblank on crtcs
1074 * @dev: DRM device
1075 * @old_state: atomic state object with old state structures
1076 *
1077 * Helper to, after atomic commit, wait for vblanks on all effected
1078 * crtcs (ie. before cleaning up old framebuffers using
Daniel Vetterab58e332014-11-24 20:42:42 +01001079 * drm_atomic_helper_cleanup_planes()). It will only wait on crtcs where the
1080 * framebuffers have actually changed to optimize for the legacy cursor and
1081 * plane update use-case.
Rob Clark5ee32292014-11-11 19:38:59 -05001082 */
1083void
1084drm_atomic_helper_wait_for_vblanks(struct drm_device *dev,
1085 struct drm_atomic_state *old_state)
Daniel Vetter623369e2014-09-16 17:50:47 +02001086{
1087 struct drm_crtc *crtc;
1088 struct drm_crtc_state *old_crtc_state;
Daniel Vetter623369e2014-09-16 17:50:47 +02001089 int i, ret;
Maarten Lankhorstbdc57142016-12-15 12:51:42 +01001090 unsigned crtc_mask = 0;
1091
1092 /*
1093 * Legacy cursor ioctls are completely unsynced, and userspace
1094 * relies on that (by doing tons of cursor updates).
1095 */
1096 if (old_state->legacy_cursor_update)
1097 return;
Daniel Vetter623369e2014-09-16 17:50:47 +02001098
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001099 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Maarten Lankhorstbdc57142016-12-15 12:51:42 +01001100 struct drm_crtc_state *new_crtc_state = crtc->state;
Daniel Vetter623369e2014-09-16 17:50:47 +02001101
Maarten Lankhorsta3fbb532016-12-08 14:45:27 +01001102 if (!new_crtc_state->active || !new_crtc_state->planes_changed)
Daniel Vetterab58e332014-11-24 20:42:42 +01001103 continue;
1104
Daniel Vetter623369e2014-09-16 17:50:47 +02001105 ret = drm_crtc_vblank_get(crtc);
1106 if (ret != 0)
1107 continue;
1108
Maarten Lankhorstbdc57142016-12-15 12:51:42 +01001109 crtc_mask |= drm_crtc_mask(crtc);
1110 old_state->crtcs[i].last_vblank_count = drm_crtc_vblank_count(crtc);
Daniel Vetter623369e2014-09-16 17:50:47 +02001111 }
1112
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001113 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Maarten Lankhorstbdc57142016-12-15 12:51:42 +01001114 if (!(crtc_mask & drm_crtc_mask(crtc)))
Daniel Vetter623369e2014-09-16 17:50:47 +02001115 continue;
1116
1117 ret = wait_event_timeout(dev->vblank[i].queue,
Maarten Lankhorstbdc57142016-12-15 12:51:42 +01001118 old_state->crtcs[i].last_vblank_count !=
Thierry Redingd4853632015-08-12 17:00:35 +02001119 drm_crtc_vblank_count(crtc),
Daniel Vetter623369e2014-09-16 17:50:47 +02001120 msecs_to_jiffies(50));
1121
Ville Syrjälä8d4d0d72016-04-18 14:29:33 +03001122 WARN(!ret, "[CRTC:%d] vblank wait timed out\n", crtc->base.id);
1123
Daniel Vetter623369e2014-09-16 17:50:47 +02001124 drm_crtc_vblank_put(crtc);
1125 }
1126}
Rob Clark5ee32292014-11-11 19:38:59 -05001127EXPORT_SYMBOL(drm_atomic_helper_wait_for_vblanks);
Daniel Vetter623369e2014-09-16 17:50:47 +02001128
1129/**
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001130 * drm_atomic_helper_commit_tail - commit atomic update to hardware
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001131 * @old_state: atomic state object with old state structures
Daniel Vetter623369e2014-09-16 17:50:47 +02001132 *
Daniel Vetter6806cdf2017-01-25 07:26:43 +01001133 * This is the default implementation for the
1134 * &drm_mode_config_helper_funcs.atomic_commit_tail hook.
Daniel Vetter623369e2014-09-16 17:50:47 +02001135 *
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001136 * Note that the default ordering of how the various stages are called is to
1137 * match the legacy modeset helper library closest. One peculiarity of that is
1138 * that it doesn't mesh well with runtime PM at all.
Daniel Vetter6e48ae32015-09-08 13:52:45 +02001139 *
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001140 * For drivers supporting runtime PM the recommended sequence is instead ::
Daniel Vetter6e48ae32015-09-08 13:52:45 +02001141 *
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001142 * drm_atomic_helper_commit_modeset_disables(dev, old_state);
Daniel Vetter6e48ae32015-09-08 13:52:45 +02001143 *
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001144 * drm_atomic_helper_commit_modeset_enables(dev, old_state);
Daniel Vetter6e48ae32015-09-08 13:52:45 +02001145 *
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001146 * drm_atomic_helper_commit_planes(dev, old_state,
Liu Ying2b58e982016-08-29 17:12:03 +08001147 * DRM_PLANE_COMMIT_ACTIVE_ONLY);
Daniel Vetter6e48ae32015-09-08 13:52:45 +02001148 *
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001149 * for committing the atomic update to hardware. See the kerneldoc entries for
1150 * these three functions for more details.
1151 */
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001152void drm_atomic_helper_commit_tail(struct drm_atomic_state *old_state)
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001153{
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001154 struct drm_device *dev = old_state->dev;
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001155
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001156 drm_atomic_helper_commit_modeset_disables(dev, old_state);
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001157
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001158 drm_atomic_helper_commit_planes(dev, old_state, 0);
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001159
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001160 drm_atomic_helper_commit_modeset_enables(dev, old_state);
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001161
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001162 drm_atomic_helper_commit_hw_done(old_state);
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001163
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001164 drm_atomic_helper_wait_for_vblanks(dev, old_state);
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001165
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001166 drm_atomic_helper_cleanup_planes(dev, old_state);
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001167}
1168EXPORT_SYMBOL(drm_atomic_helper_commit_tail);
1169
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001170static void commit_tail(struct drm_atomic_state *old_state)
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001171{
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001172 struct drm_device *dev = old_state->dev;
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001173 struct drm_mode_config_helper_funcs *funcs;
1174
1175 funcs = dev->mode_config.helper_private;
1176
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001177 drm_atomic_helper_wait_for_fences(dev, old_state, false);
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001178
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001179 drm_atomic_helper_wait_for_dependencies(old_state);
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001180
1181 if (funcs && funcs->atomic_commit_tail)
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001182 funcs->atomic_commit_tail(old_state);
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001183 else
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001184 drm_atomic_helper_commit_tail(old_state);
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001185
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001186 drm_atomic_helper_commit_cleanup_done(old_state);
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001187
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001188 drm_atomic_state_put(old_state);
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001189}
1190
1191static void commit_work(struct work_struct *work)
1192{
1193 struct drm_atomic_state *state = container_of(work,
1194 struct drm_atomic_state,
1195 commit_work);
1196 commit_tail(state);
1197}
1198
1199/**
1200 * drm_atomic_helper_commit - commit validated state object
1201 * @dev: DRM device
1202 * @state: the driver state object
1203 * @nonblock: whether nonblocking behavior is requested.
1204 *
1205 * This function commits a with drm_atomic_helper_check() pre-validated state
1206 * object. This can still fail when e.g. the framebuffer reservation fails. This
1207 * function implements nonblocking commits, using
1208 * drm_atomic_helper_setup_commit() and related functions.
1209 *
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001210 * Committing the actual hardware state is done through the
Daniel Vetter6806cdf2017-01-25 07:26:43 +01001211 * &drm_mode_config_helper_funcs.atomic_commit_tail callback, or it's default
1212 * implementation drm_atomic_helper_commit_tail().
Daniel Vetter6e48ae32015-09-08 13:52:45 +02001213 *
Daniel Vetterc39032a2016-06-08 14:19:19 +02001214 * RETURNS:
Daniel Vetter623369e2014-09-16 17:50:47 +02001215 * Zero for success or -errno.
1216 */
1217int drm_atomic_helper_commit(struct drm_device *dev,
1218 struct drm_atomic_state *state,
Maarten Lankhorst286dbb82016-04-26 16:11:34 +02001219 bool nonblock)
Daniel Vetter623369e2014-09-16 17:50:47 +02001220{
1221 int ret;
1222
Daniel Vettera095caa2016-06-08 17:15:36 +02001223 ret = drm_atomic_helper_setup_commit(state, nonblock);
1224 if (ret)
1225 return ret;
1226
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001227 INIT_WORK(&state->commit_work, commit_work);
1228
Daniel Vetter623369e2014-09-16 17:50:47 +02001229 ret = drm_atomic_helper_prepare_planes(dev, state);
1230 if (ret)
1231 return ret;
1232
Gustavo Padovanf6ce4102016-09-12 16:08:11 -03001233 if (!nonblock) {
1234 ret = drm_atomic_helper_wait_for_fences(dev, state, true);
Laurent Pinchartaebe55c2017-01-03 01:14:27 +02001235 if (ret) {
1236 drm_atomic_helper_cleanup_planes(dev, state);
Gustavo Padovanf6ce4102016-09-12 16:08:11 -03001237 return ret;
Laurent Pinchartaebe55c2017-01-03 01:14:27 +02001238 }
Gustavo Padovanf6ce4102016-09-12 16:08:11 -03001239 }
1240
Daniel Vetter623369e2014-09-16 17:50:47 +02001241 /*
1242 * This is the point of no return - everything below never fails except
1243 * when the hw goes bonghits. Which means we can commit the new state on
1244 * the software side now.
1245 */
1246
Daniel Vetter5e84c262016-06-10 00:06:32 +02001247 drm_atomic_helper_swap_state(state, true);
Daniel Vetter623369e2014-09-16 17:50:47 +02001248
1249 /*
1250 * Everything below can be run asynchronously without the need to grab
John Hunterf98bd3e2015-03-17 15:30:26 +08001251 * any modeset locks at all under one condition: It must be guaranteed
Daniel Vetter623369e2014-09-16 17:50:47 +02001252 * that the asynchronous work has either been cancelled (if the driver
1253 * supports it, which at least requires that the framebuffers get
1254 * cleaned up with drm_atomic_helper_cleanup_planes()) or completed
1255 * before the new state gets committed on the software side with
1256 * drm_atomic_helper_swap_state().
1257 *
1258 * This scheme allows new atomic state updates to be prepared and
1259 * checked in parallel to the asynchronous completion of the previous
1260 * update. Which is important since compositors need to figure out the
1261 * composition of the next frame right after having submitted the
1262 * current layout.
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001263 *
1264 * NOTE: Commit work has multiple phases, first hardware commit, then
1265 * cleanup. We want them to overlap, hence need system_unbound_wq to
1266 * make sure work items don't artifically stall on each another.
Daniel Vetter623369e2014-09-16 17:50:47 +02001267 */
1268
Chris Wilson08536952016-10-14 13:18:18 +01001269 drm_atomic_state_get(state);
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001270 if (nonblock)
1271 queue_work(system_unbound_wq, &state->commit_work);
1272 else
1273 commit_tail(state);
Daniel Vetter623369e2014-09-16 17:50:47 +02001274
1275 return 0;
1276}
1277EXPORT_SYMBOL(drm_atomic_helper_commit);
1278
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001279/**
Maarten Lankhorst286dbb82016-04-26 16:11:34 +02001280 * DOC: implementing nonblocking commit
Daniel Vettere8c833a2014-07-27 18:30:19 +02001281 *
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001282 * Nonblocking atomic commits have to be implemented in the following sequence:
Daniel Vettere8c833a2014-07-27 18:30:19 +02001283 *
1284 * 1. Run drm_atomic_helper_prepare_planes() first. This is the only function
1285 * which commit needs to call which can fail, so we want to run it first and
1286 * synchronously.
1287 *
Maarten Lankhorst286dbb82016-04-26 16:11:34 +02001288 * 2. Synchronize with any outstanding nonblocking commit worker threads which
Daniel Vettere8c833a2014-07-27 18:30:19 +02001289 * might be affected the new state update. This can be done by either cancelling
1290 * or flushing the work items, depending upon whether the driver can deal with
1291 * cancelled updates. Note that it is important to ensure that the framebuffer
1292 * cleanup is still done when cancelling.
1293 *
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001294 * Asynchronous workers need to have sufficient parallelism to be able to run
1295 * different atomic commits on different CRTCs in parallel. The simplest way to
1296 * achive this is by running them on the &system_unbound_wq work queue. Note
1297 * that drivers are not required to split up atomic commits and run an
1298 * individual commit in parallel - userspace is supposed to do that if it cares.
1299 * But it might be beneficial to do that for modesets, since those necessarily
1300 * must be done as one global operation, and enabling or disabling a CRTC can
1301 * take a long time. But even that is not required.
Daniel Vettere8c833a2014-07-27 18:30:19 +02001302 *
1303 * 3. The software state is updated synchronously with
Daniel Vetter26196f72015-08-25 16:26:03 +02001304 * drm_atomic_helper_swap_state(). Doing this under the protection of all modeset
Daniel Vettere8c833a2014-07-27 18:30:19 +02001305 * locks means concurrent callers never see inconsistent state. And doing this
Maarten Lankhorst286dbb82016-04-26 16:11:34 +02001306 * while it's guaranteed that no relevant nonblocking worker runs means that
1307 * nonblocking workers do not need grab any locks. Actually they must not grab
1308 * locks, for otherwise the work flushing will deadlock.
Daniel Vettere8c833a2014-07-27 18:30:19 +02001309 *
1310 * 4. Schedule a work item to do all subsequent steps, using the split-out
1311 * commit helpers: a) pre-plane commit b) plane commit c) post-plane commit and
1312 * then cleaning up the framebuffers after the old framebuffer is no longer
1313 * being displayed.
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001314 *
1315 * The above scheme is implemented in the atomic helper libraries in
1316 * drm_atomic_helper_commit() using a bunch of helper functions. See
1317 * drm_atomic_helper_setup_commit() for a starting point.
Daniel Vettere8c833a2014-07-27 18:30:19 +02001318 */
1319
Daniel Vettera095caa2016-06-08 17:15:36 +02001320static int stall_checks(struct drm_crtc *crtc, bool nonblock)
1321{
1322 struct drm_crtc_commit *commit, *stall_commit = NULL;
1323 bool completed = true;
1324 int i;
1325 long ret = 0;
1326
1327 spin_lock(&crtc->commit_lock);
1328 i = 0;
1329 list_for_each_entry(commit, &crtc->commit_list, commit_entry) {
1330 if (i == 0) {
1331 completed = try_wait_for_completion(&commit->flip_done);
1332 /* Userspace is not allowed to get ahead of the previous
1333 * commit with nonblocking ones. */
1334 if (!completed && nonblock) {
1335 spin_unlock(&crtc->commit_lock);
1336 return -EBUSY;
1337 }
1338 } else if (i == 1) {
1339 stall_commit = commit;
1340 drm_crtc_commit_get(stall_commit);
Daniel Vettera095caa2016-06-08 17:15:36 +02001341 break;
Daniel Vetter723c3e52016-06-14 19:50:58 +02001342 }
Daniel Vettera095caa2016-06-08 17:15:36 +02001343
1344 i++;
1345 }
1346 spin_unlock(&crtc->commit_lock);
1347
1348 if (!stall_commit)
1349 return 0;
1350
1351 /* We don't want to let commits get ahead of cleanup work too much,
1352 * stalling on 2nd previous commit means triple-buffer won't ever stall.
1353 */
Daniel Vetter723c3e52016-06-14 19:50:58 +02001354 ret = wait_for_completion_interruptible_timeout(&stall_commit->cleanup_done,
Daniel Vettera095caa2016-06-08 17:15:36 +02001355 10*HZ);
1356 if (ret == 0)
1357 DRM_ERROR("[CRTC:%d:%s] cleanup_done timed out\n",
1358 crtc->base.id, crtc->name);
1359
1360 drm_crtc_commit_put(stall_commit);
1361
1362 return ret < 0 ? ret : 0;
1363}
1364
Wei Yongjun899cc5f2017-01-12 14:21:57 +00001365static void release_crtc_commit(struct completion *completion)
Daniel Vetter24835e42016-12-21 11:23:30 +01001366{
1367 struct drm_crtc_commit *commit = container_of(completion,
1368 typeof(*commit),
1369 flip_done);
1370
1371 drm_crtc_commit_put(commit);
1372}
1373
Daniel Vettera095caa2016-06-08 17:15:36 +02001374/**
1375 * drm_atomic_helper_setup_commit - setup possibly nonblocking commit
1376 * @state: new modeset state to be committed
1377 * @nonblock: whether nonblocking behavior is requested.
1378 *
1379 * This function prepares @state to be used by the atomic helper's support for
1380 * nonblocking commits. Drivers using the nonblocking commit infrastructure
Daniel Vetter6806cdf2017-01-25 07:26:43 +01001381 * should always call this function from their
1382 * &drm_mode_config_funcs.atomic_commit hook.
Daniel Vettera095caa2016-06-08 17:15:36 +02001383 *
1384 * To be able to use this support drivers need to use a few more helper
1385 * functions. drm_atomic_helper_wait_for_dependencies() must be called before
1386 * actually committing the hardware state, and for nonblocking commits this call
1387 * must be placed in the async worker. See also drm_atomic_helper_swap_state()
1388 * and it's stall parameter, for when a driver's commit hooks look at the
Daniel Vetter6806cdf2017-01-25 07:26:43 +01001389 * &drm_crtc.state, &drm_plane.state or &drm_connector.state pointer directly.
Daniel Vettera095caa2016-06-08 17:15:36 +02001390 *
1391 * Completion of the hardware commit step must be signalled using
1392 * drm_atomic_helper_commit_hw_done(). After this step the driver is not allowed
1393 * to read or change any permanent software or hardware modeset state. The only
1394 * exception is state protected by other means than &drm_modeset_lock locks.
1395 * Only the free standing @state with pointers to the old state structures can
1396 * be inspected, e.g. to clean up old buffers using
1397 * drm_atomic_helper_cleanup_planes().
1398 *
1399 * At the very end, before cleaning up @state drivers must call
1400 * drm_atomic_helper_commit_cleanup_done().
1401 *
1402 * This is all implemented by in drm_atomic_helper_commit(), giving drivers a
1403 * complete and esay-to-use default implementation of the atomic_commit() hook.
1404 *
1405 * The tracking of asynchronously executed and still pending commits is done
1406 * using the core structure &drm_crtc_commit.
1407 *
1408 * By default there's no need to clean up resources allocated by this function
1409 * explicitly: drm_atomic_state_default_clear() will take care of that
1410 * automatically.
1411 *
1412 * Returns:
1413 *
1414 * 0 on success. -EBUSY when userspace schedules nonblocking commits too fast,
1415 * -ENOMEM on allocation failures and -EINTR when a signal is pending.
1416 */
1417int drm_atomic_helper_setup_commit(struct drm_atomic_state *state,
1418 bool nonblock)
1419{
1420 struct drm_crtc *crtc;
1421 struct drm_crtc_state *crtc_state;
1422 struct drm_crtc_commit *commit;
1423 int i, ret;
1424
1425 for_each_crtc_in_state(state, crtc, crtc_state, i) {
1426 commit = kzalloc(sizeof(*commit), GFP_KERNEL);
1427 if (!commit)
1428 return -ENOMEM;
1429
1430 init_completion(&commit->flip_done);
1431 init_completion(&commit->hw_done);
1432 init_completion(&commit->cleanup_done);
1433 INIT_LIST_HEAD(&commit->commit_entry);
1434 kref_init(&commit->ref);
1435 commit->crtc = crtc;
1436
1437 state->crtcs[i].commit = commit;
1438
1439 ret = stall_checks(crtc, nonblock);
1440 if (ret)
1441 return ret;
1442
1443 /* Drivers only send out events when at least either current or
1444 * new CRTC state is active. Complete right away if everything
1445 * stays off. */
1446 if (!crtc->state->active && !crtc_state->active) {
1447 complete_all(&commit->flip_done);
1448 continue;
1449 }
1450
1451 /* Legacy cursor updates are fully unsynced. */
1452 if (state->legacy_cursor_update) {
1453 complete_all(&commit->flip_done);
1454 continue;
1455 }
1456
1457 if (!crtc_state->event) {
1458 commit->event = kzalloc(sizeof(*commit->event),
1459 GFP_KERNEL);
1460 if (!commit->event)
1461 return -ENOMEM;
1462
1463 crtc_state->event = commit->event;
1464 }
1465
1466 crtc_state->event->base.completion = &commit->flip_done;
Daniel Vetter24835e42016-12-21 11:23:30 +01001467 crtc_state->event->base.completion_release = release_crtc_commit;
1468 drm_crtc_commit_get(commit);
Daniel Vettera095caa2016-06-08 17:15:36 +02001469 }
1470
1471 return 0;
1472}
1473EXPORT_SYMBOL(drm_atomic_helper_setup_commit);
1474
1475
1476static struct drm_crtc_commit *preceeding_commit(struct drm_crtc *crtc)
1477{
1478 struct drm_crtc_commit *commit;
1479 int i = 0;
1480
1481 list_for_each_entry(commit, &crtc->commit_list, commit_entry) {
1482 /* skip the first entry, that's the current commit */
1483 if (i == 1)
1484 return commit;
1485 i++;
1486 }
1487
1488 return NULL;
1489}
1490
1491/**
1492 * drm_atomic_helper_wait_for_dependencies - wait for required preceeding commits
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001493 * @old_state: atomic state object with old state structures
Daniel Vettera095caa2016-06-08 17:15:36 +02001494 *
1495 * This function waits for all preceeding commits that touch the same CRTC as
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001496 * @old_state to both be committed to the hardware (as signalled by
Daniel Vettera095caa2016-06-08 17:15:36 +02001497 * drm_atomic_helper_commit_hw_done) and executed by the hardware (as signalled
Daniel Vetter6806cdf2017-01-25 07:26:43 +01001498 * by calling drm_crtc_vblank_send_event() on the &drm_crtc_state.event).
Daniel Vettera095caa2016-06-08 17:15:36 +02001499 *
1500 * This is part of the atomic helper support for nonblocking commits, see
1501 * drm_atomic_helper_setup_commit() for an overview.
1502 */
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001503void drm_atomic_helper_wait_for_dependencies(struct drm_atomic_state *old_state)
Daniel Vettera095caa2016-06-08 17:15:36 +02001504{
1505 struct drm_crtc *crtc;
1506 struct drm_crtc_state *crtc_state;
1507 struct drm_crtc_commit *commit;
1508 int i;
1509 long ret;
1510
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001511 for_each_crtc_in_state(old_state, crtc, crtc_state, i) {
Daniel Vettera095caa2016-06-08 17:15:36 +02001512 spin_lock(&crtc->commit_lock);
1513 commit = preceeding_commit(crtc);
1514 if (commit)
1515 drm_crtc_commit_get(commit);
1516 spin_unlock(&crtc->commit_lock);
1517
1518 if (!commit)
1519 continue;
1520
1521 ret = wait_for_completion_timeout(&commit->hw_done,
1522 10*HZ);
1523 if (ret == 0)
1524 DRM_ERROR("[CRTC:%d:%s] hw_done timed out\n",
1525 crtc->base.id, crtc->name);
1526
1527 /* Currently no support for overwriting flips, hence
1528 * stall for previous one to execute completely. */
1529 ret = wait_for_completion_timeout(&commit->flip_done,
1530 10*HZ);
1531 if (ret == 0)
1532 DRM_ERROR("[CRTC:%d:%s] flip_done timed out\n",
1533 crtc->base.id, crtc->name);
1534
1535 drm_crtc_commit_put(commit);
1536 }
1537}
1538EXPORT_SYMBOL(drm_atomic_helper_wait_for_dependencies);
1539
1540/**
1541 * drm_atomic_helper_commit_hw_done - setup possible nonblocking commit
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001542 * @old_state: atomic state object with old state structures
Daniel Vettera095caa2016-06-08 17:15:36 +02001543 *
1544 * This function is used to signal completion of the hardware commit step. After
1545 * this step the driver is not allowed to read or change any permanent software
1546 * or hardware modeset state. The only exception is state protected by other
1547 * means than &drm_modeset_lock locks.
1548 *
1549 * Drivers should try to postpone any expensive or delayed cleanup work after
1550 * this function is called.
1551 *
1552 * This is part of the atomic helper support for nonblocking commits, see
1553 * drm_atomic_helper_setup_commit() for an overview.
1554 */
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001555void drm_atomic_helper_commit_hw_done(struct drm_atomic_state *old_state)
Daniel Vettera095caa2016-06-08 17:15:36 +02001556{
1557 struct drm_crtc *crtc;
1558 struct drm_crtc_state *crtc_state;
1559 struct drm_crtc_commit *commit;
1560 int i;
1561
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001562 for_each_crtc_in_state(old_state, crtc, crtc_state, i) {
1563 commit = old_state->crtcs[i].commit;
Daniel Vettera095caa2016-06-08 17:15:36 +02001564 if (!commit)
1565 continue;
1566
1567 /* backend must have consumed any event by now */
1568 WARN_ON(crtc->state->event);
1569 spin_lock(&crtc->commit_lock);
1570 complete_all(&commit->hw_done);
1571 spin_unlock(&crtc->commit_lock);
1572 }
1573}
1574EXPORT_SYMBOL(drm_atomic_helper_commit_hw_done);
1575
1576/**
1577 * drm_atomic_helper_commit_cleanup_done - signal completion of commit
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001578 * @old_state: atomic state object with old state structures
Daniel Vettera095caa2016-06-08 17:15:36 +02001579 *
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001580 * This signals completion of the atomic update @old_state, including any
1581 * cleanup work. If used, it must be called right before calling
Chris Wilson08536952016-10-14 13:18:18 +01001582 * drm_atomic_state_put().
Daniel Vettera095caa2016-06-08 17:15:36 +02001583 *
1584 * This is part of the atomic helper support for nonblocking commits, see
1585 * drm_atomic_helper_setup_commit() for an overview.
1586 */
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001587void drm_atomic_helper_commit_cleanup_done(struct drm_atomic_state *old_state)
Daniel Vettera095caa2016-06-08 17:15:36 +02001588{
1589 struct drm_crtc *crtc;
1590 struct drm_crtc_state *crtc_state;
1591 struct drm_crtc_commit *commit;
1592 int i;
1593 long ret;
1594
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001595 for_each_crtc_in_state(old_state, crtc, crtc_state, i) {
1596 commit = old_state->crtcs[i].commit;
Daniel Vettera095caa2016-06-08 17:15:36 +02001597 if (WARN_ON(!commit))
1598 continue;
1599
1600 spin_lock(&crtc->commit_lock);
1601 complete_all(&commit->cleanup_done);
1602 WARN_ON(!try_wait_for_completion(&commit->hw_done));
1603
1604 /* commit_list borrows our reference, need to remove before we
1605 * clean up our drm_atomic_state. But only after it actually
1606 * completed, otherwise subsequent commits won't stall properly. */
Daniel Vetter7deef7f12016-06-15 12:24:26 +02001607 if (try_wait_for_completion(&commit->flip_done))
1608 goto del_commit;
Daniel Vettera095caa2016-06-08 17:15:36 +02001609
1610 spin_unlock(&crtc->commit_lock);
1611
1612 /* We must wait for the vblank event to signal our completion
1613 * before releasing our reference, since the vblank work does
1614 * not hold a reference of its own. */
1615 ret = wait_for_completion_timeout(&commit->flip_done,
1616 10*HZ);
1617 if (ret == 0)
1618 DRM_ERROR("[CRTC:%d:%s] flip_done timed out\n",
1619 crtc->base.id, crtc->name);
1620
1621 spin_lock(&crtc->commit_lock);
Daniel Vetter7deef7f12016-06-15 12:24:26 +02001622del_commit:
Daniel Vettera095caa2016-06-08 17:15:36 +02001623 list_del(&commit->commit_entry);
1624 spin_unlock(&crtc->commit_lock);
1625 }
1626}
1627EXPORT_SYMBOL(drm_atomic_helper_commit_cleanup_done);
1628
Daniel Vettere8c833a2014-07-27 18:30:19 +02001629/**
Daniel Vetter2e3afd42015-02-26 14:17:38 +01001630 * drm_atomic_helper_prepare_planes - prepare plane resources before commit
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001631 * @dev: DRM device
Daniel Vetter2e3afd42015-02-26 14:17:38 +01001632 * @state: atomic state object with new state structures
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001633 *
1634 * This function prepares plane state, specifically framebuffers, for the new
Daniel Vetter6806cdf2017-01-25 07:26:43 +01001635 * configuration, by calling &drm_plane_helper_funcs.prepare_fb. If any failure
1636 * is encountered this function will call &drm_plane_helper_funcs.cleanup_fb on
1637 * any already successfully prepared framebuffer.
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001638 *
1639 * Returns:
1640 * 0 on success, negative error code on failure.
1641 */
1642int drm_atomic_helper_prepare_planes(struct drm_device *dev,
1643 struct drm_atomic_state *state)
1644{
Daniel Vetterbe9174a2016-06-02 00:06:24 +02001645 struct drm_plane *plane;
1646 struct drm_plane_state *plane_state;
1647 int ret, i, j;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001648
Daniel Vetterbe9174a2016-06-02 00:06:24 +02001649 for_each_plane_in_state(state, plane, plane_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +02001650 const struct drm_plane_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001651
1652 funcs = plane->helper_private;
1653
Maarten Lankhorst844f9112015-09-02 10:42:40 +02001654 if (funcs->prepare_fb) {
1655 ret = funcs->prepare_fb(plane, plane_state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001656 if (ret)
1657 goto fail;
1658 }
1659 }
1660
1661 return 0;
1662
1663fail:
Daniel Vetterbe9174a2016-06-02 00:06:24 +02001664 for_each_plane_in_state(state, plane, plane_state, j) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +02001665 const struct drm_plane_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001666
Daniel Vetterbe9174a2016-06-02 00:06:24 +02001667 if (j >= i)
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001668 continue;
1669
1670 funcs = plane->helper_private;
1671
Maarten Lankhorst844f9112015-09-02 10:42:40 +02001672 if (funcs->cleanup_fb)
1673 funcs->cleanup_fb(plane, plane_state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001674 }
1675
1676 return ret;
1677}
1678EXPORT_SYMBOL(drm_atomic_helper_prepare_planes);
1679
Ville Syrjälä7135ac52016-09-19 16:33:42 +03001680static bool plane_crtc_active(const struct drm_plane_state *state)
Daniel Vetteraef9dbb2015-09-08 12:02:07 +02001681{
1682 return state->crtc && state->crtc->state->active;
1683}
1684
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001685/**
1686 * drm_atomic_helper_commit_planes - commit plane state
1687 * @dev: DRM device
Daniel Vetterb0fcfc82014-11-19 18:38:11 +01001688 * @old_state: atomic state object with old state structures
Liu Ying2b58e982016-08-29 17:12:03 +08001689 * @flags: flags for committing plane state
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001690 *
1691 * This function commits the new plane state using the plane and atomic helper
1692 * functions for planes and crtcs. It assumes that the atomic state has already
1693 * been pushed into the relevant object state pointers, since this step can no
1694 * longer fail.
1695 *
Daniel Vetterb0fcfc82014-11-19 18:38:11 +01001696 * It still requires the global state object @old_state to know which planes and
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001697 * crtcs need to be updated though.
Maarten Lankhorstde28d022015-05-19 16:41:01 +02001698 *
1699 * Note that this function does all plane updates across all CRTCs in one step.
1700 * If the hardware can't support this approach look at
1701 * drm_atomic_helper_commit_planes_on_crtc() instead.
Daniel Vetter6e48ae32015-09-08 13:52:45 +02001702 *
1703 * Plane parameters can be updated by applications while the associated CRTC is
1704 * disabled. The DRM/KMS core will store the parameters in the plane state,
1705 * which will be available to the driver when the CRTC is turned on. As a result
1706 * most drivers don't need to be immediately notified of plane updates for a
1707 * disabled CRTC.
1708 *
Liu Ying2b58e982016-08-29 17:12:03 +08001709 * Unless otherwise needed, drivers are advised to set the ACTIVE_ONLY flag in
1710 * @flags in order not to receive plane update notifications related to a
1711 * disabled CRTC. This avoids the need to manually ignore plane updates in
Daniel Vetter6e48ae32015-09-08 13:52:45 +02001712 * driver code when the driver and/or hardware can't or just don't need to deal
1713 * with updates on disabled CRTCs, for example when supporting runtime PM.
1714 *
Liu Ying2b58e982016-08-29 17:12:03 +08001715 * Drivers may set the NO_DISABLE_AFTER_MODESET flag in @flags if the relevant
1716 * display controllers require to disable a CRTC's planes when the CRTC is
Daniel Vetter6806cdf2017-01-25 07:26:43 +01001717 * disabled. This function would skip the &drm_plane_helper_funcs.atomic_disable
1718 * call for a plane if the CRTC of the old plane state needs a modesetting
1719 * operation. Of course, the drivers need to disable the planes in their CRTC
1720 * disable callbacks since no one else would do that.
Liu Ying2b58e982016-08-29 17:12:03 +08001721 *
1722 * The drm_atomic_helper_commit() default implementation doesn't set the
1723 * ACTIVE_ONLY flag to most closely match the behaviour of the legacy helpers.
1724 * This should not be copied blindly by drivers.
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001725 */
1726void drm_atomic_helper_commit_planes(struct drm_device *dev,
Daniel Vetteraef9dbb2015-09-08 12:02:07 +02001727 struct drm_atomic_state *old_state,
Liu Ying2b58e982016-08-29 17:12:03 +08001728 uint32_t flags)
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001729{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001730 struct drm_crtc *crtc;
1731 struct drm_crtc_state *old_crtc_state;
1732 struct drm_plane *plane;
1733 struct drm_plane_state *old_plane_state;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001734 int i;
Liu Ying2b58e982016-08-29 17:12:03 +08001735 bool active_only = flags & DRM_PLANE_COMMIT_ACTIVE_ONLY;
1736 bool no_disable = flags & DRM_PLANE_COMMIT_NO_DISABLE_AFTER_MODESET;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001737
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001738 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +02001739 const struct drm_crtc_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001740
1741 funcs = crtc->helper_private;
1742
1743 if (!funcs || !funcs->atomic_begin)
1744 continue;
1745
Daniel Vetteraef9dbb2015-09-08 12:02:07 +02001746 if (active_only && !crtc->state->active)
1747 continue;
1748
Maarten Lankhorst613d2b22015-07-21 13:28:58 +02001749 funcs->atomic_begin(crtc, old_crtc_state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001750 }
1751
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001752 for_each_plane_in_state(old_state, plane, old_plane_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +02001753 const struct drm_plane_helper_funcs *funcs;
Laurent Pinchart216c59d2015-09-11 00:07:19 +03001754 bool disabling;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001755
1756 funcs = plane->helper_private;
1757
Thierry Reding3cad4b62014-11-25 13:05:12 +01001758 if (!funcs)
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001759 continue;
1760
Laurent Pinchart216c59d2015-09-11 00:07:19 +03001761 disabling = drm_atomic_plane_disabling(plane, old_plane_state);
1762
1763 if (active_only) {
1764 /*
1765 * Skip planes related to inactive CRTCs. If the plane
1766 * is enabled use the state of the current CRTC. If the
1767 * plane is being disabled use the state of the old
1768 * CRTC to avoid skipping planes being disabled on an
1769 * active CRTC.
1770 */
1771 if (!disabling && !plane_crtc_active(plane->state))
1772 continue;
1773 if (disabling && !plane_crtc_active(old_plane_state))
1774 continue;
1775 }
Daniel Vetteraef9dbb2015-09-08 12:02:07 +02001776
Thierry Reding407b8bd2014-11-20 12:05:50 +01001777 /*
1778 * Special-case disabling the plane if drivers support it.
1779 */
Liu Ying2b58e982016-08-29 17:12:03 +08001780 if (disabling && funcs->atomic_disable) {
1781 struct drm_crtc_state *crtc_state;
1782
1783 crtc_state = old_plane_state->crtc->state;
1784
1785 if (drm_atomic_crtc_needs_modeset(crtc_state) &&
1786 no_disable)
1787 continue;
1788
Thierry Reding407b8bd2014-11-20 12:05:50 +01001789 funcs->atomic_disable(plane, old_plane_state);
Liu Ying2b58e982016-08-29 17:12:03 +08001790 } else if (plane->state->crtc || disabling) {
Thierry Reding407b8bd2014-11-20 12:05:50 +01001791 funcs->atomic_update(plane, old_plane_state);
Liu Ying2b58e982016-08-29 17:12:03 +08001792 }
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001793 }
1794
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001795 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +02001796 const struct drm_crtc_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001797
1798 funcs = crtc->helper_private;
1799
1800 if (!funcs || !funcs->atomic_flush)
1801 continue;
1802
Daniel Vetteraef9dbb2015-09-08 12:02:07 +02001803 if (active_only && !crtc->state->active)
1804 continue;
1805
Maarten Lankhorst613d2b22015-07-21 13:28:58 +02001806 funcs->atomic_flush(crtc, old_crtc_state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001807 }
1808}
1809EXPORT_SYMBOL(drm_atomic_helper_commit_planes);
1810
1811/**
Maarten Lankhorstde28d022015-05-19 16:41:01 +02001812 * drm_atomic_helper_commit_planes_on_crtc - commit plane state for a crtc
1813 * @old_crtc_state: atomic state object with the old crtc state
1814 *
1815 * This function commits the new plane state using the plane and atomic helper
1816 * functions for planes on the specific crtc. It assumes that the atomic state
1817 * has already been pushed into the relevant object state pointers, since this
1818 * step can no longer fail.
1819 *
1820 * This function is useful when plane updates should be done crtc-by-crtc
1821 * instead of one global step like drm_atomic_helper_commit_planes() does.
1822 *
1823 * This function can only be savely used when planes are not allowed to move
1824 * between different CRTCs because this function doesn't handle inter-CRTC
1825 * depencies. Callers need to ensure that either no such depencies exist,
1826 * resolve them through ordering of commit calls or through some other means.
1827 */
1828void
1829drm_atomic_helper_commit_planes_on_crtc(struct drm_crtc_state *old_crtc_state)
1830{
1831 const struct drm_crtc_helper_funcs *crtc_funcs;
1832 struct drm_crtc *crtc = old_crtc_state->crtc;
1833 struct drm_atomic_state *old_state = old_crtc_state->state;
1834 struct drm_plane *plane;
1835 unsigned plane_mask;
1836
1837 plane_mask = old_crtc_state->plane_mask;
1838 plane_mask |= crtc->state->plane_mask;
1839
1840 crtc_funcs = crtc->helper_private;
1841 if (crtc_funcs && crtc_funcs->atomic_begin)
Maarten Lankhorst613d2b22015-07-21 13:28:58 +02001842 crtc_funcs->atomic_begin(crtc, old_crtc_state);
Maarten Lankhorstde28d022015-05-19 16:41:01 +02001843
1844 drm_for_each_plane_mask(plane, crtc->dev, plane_mask) {
1845 struct drm_plane_state *old_plane_state =
1846 drm_atomic_get_existing_plane_state(old_state, plane);
1847 const struct drm_plane_helper_funcs *plane_funcs;
1848
1849 plane_funcs = plane->helper_private;
1850
1851 if (!old_plane_state || !plane_funcs)
1852 continue;
1853
1854 WARN_ON(plane->state->crtc && plane->state->crtc != crtc);
1855
1856 if (drm_atomic_plane_disabling(plane, old_plane_state) &&
1857 plane_funcs->atomic_disable)
1858 plane_funcs->atomic_disable(plane, old_plane_state);
1859 else if (plane->state->crtc ||
1860 drm_atomic_plane_disabling(plane, old_plane_state))
1861 plane_funcs->atomic_update(plane, old_plane_state);
1862 }
1863
1864 if (crtc_funcs && crtc_funcs->atomic_flush)
Maarten Lankhorst613d2b22015-07-21 13:28:58 +02001865 crtc_funcs->atomic_flush(crtc, old_crtc_state);
Maarten Lankhorstde28d022015-05-19 16:41:01 +02001866}
1867EXPORT_SYMBOL(drm_atomic_helper_commit_planes_on_crtc);
1868
1869/**
Jyri Sarha6753ba92015-11-27 16:14:01 +02001870 * drm_atomic_helper_disable_planes_on_crtc - helper to disable CRTC's planes
Liu Ying28500292016-08-26 15:30:39 +08001871 * @old_crtc_state: atomic state object with the old CRTC state
Jyri Sarha6753ba92015-11-27 16:14:01 +02001872 * @atomic: if set, synchronize with CRTC's atomic_begin/flush hooks
1873 *
1874 * Disables all planes associated with the given CRTC. This can be
Liu Ying28500292016-08-26 15:30:39 +08001875 * used for instance in the CRTC helper atomic_disable callback to disable
1876 * all planes.
Jyri Sarha6753ba92015-11-27 16:14:01 +02001877 *
1878 * If the atomic-parameter is set the function calls the CRTC's
1879 * atomic_begin hook before and atomic_flush hook after disabling the
1880 * planes.
1881 *
1882 * It is a bug to call this function without having implemented the
Daniel Vetter6806cdf2017-01-25 07:26:43 +01001883 * &drm_plane_helper_funcs.atomic_disable plane hook.
Jyri Sarha6753ba92015-11-27 16:14:01 +02001884 */
Liu Ying28500292016-08-26 15:30:39 +08001885void
1886drm_atomic_helper_disable_planes_on_crtc(struct drm_crtc_state *old_crtc_state,
1887 bool atomic)
Jyri Sarha6753ba92015-11-27 16:14:01 +02001888{
Liu Ying28500292016-08-26 15:30:39 +08001889 struct drm_crtc *crtc = old_crtc_state->crtc;
Jyri Sarha6753ba92015-11-27 16:14:01 +02001890 const struct drm_crtc_helper_funcs *crtc_funcs =
1891 crtc->helper_private;
1892 struct drm_plane *plane;
1893
1894 if (atomic && crtc_funcs && crtc_funcs->atomic_begin)
1895 crtc_funcs->atomic_begin(crtc, NULL);
1896
Liu Ying28500292016-08-26 15:30:39 +08001897 drm_atomic_crtc_state_for_each_plane(plane, old_crtc_state) {
Jyri Sarha6753ba92015-11-27 16:14:01 +02001898 const struct drm_plane_helper_funcs *plane_funcs =
1899 plane->helper_private;
1900
Liu Ying28500292016-08-26 15:30:39 +08001901 if (!plane_funcs)
Jyri Sarha6753ba92015-11-27 16:14:01 +02001902 continue;
1903
1904 WARN_ON(!plane_funcs->atomic_disable);
1905 if (plane_funcs->atomic_disable)
1906 plane_funcs->atomic_disable(plane, NULL);
1907 }
1908
1909 if (atomic && crtc_funcs && crtc_funcs->atomic_flush)
1910 crtc_funcs->atomic_flush(crtc, NULL);
1911}
1912EXPORT_SYMBOL(drm_atomic_helper_disable_planes_on_crtc);
1913
1914/**
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001915 * drm_atomic_helper_cleanup_planes - cleanup plane resources after commit
1916 * @dev: DRM device
1917 * @old_state: atomic state object with old state structures
1918 *
1919 * This function cleans up plane state, specifically framebuffers, from the old
1920 * configuration. Hence the old configuration must be perserved in @old_state to
1921 * be able to call this function.
1922 *
1923 * This function must also be called on the new state when the atomic update
1924 * fails at any point after calling drm_atomic_helper_prepare_planes().
1925 */
1926void drm_atomic_helper_cleanup_planes(struct drm_device *dev,
1927 struct drm_atomic_state *old_state)
1928{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001929 struct drm_plane *plane;
1930 struct drm_plane_state *plane_state;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001931 int i;
1932
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001933 for_each_plane_in_state(old_state, plane, plane_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +02001934 const struct drm_plane_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001935
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001936 funcs = plane->helper_private;
1937
Maarten Lankhorst844f9112015-09-02 10:42:40 +02001938 if (funcs->cleanup_fb)
1939 funcs->cleanup_fb(plane, plane_state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001940 }
1941}
1942EXPORT_SYMBOL(drm_atomic_helper_cleanup_planes);
1943
1944/**
1945 * drm_atomic_helper_swap_state - store atomic state into current sw state
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001946 * @state: atomic state
Daniel Vetter5e84c262016-06-10 00:06:32 +02001947 * @stall: stall for proceeding commits
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001948 *
1949 * This function stores the atomic state into the current state pointers in all
1950 * driver objects. It should be called after all failing steps have been done
1951 * and succeeded, but before the actual hardware state is committed.
1952 *
1953 * For cleanup and error recovery the current state for all changed objects will
1954 * be swaped into @state.
1955 *
1956 * With that sequence it fits perfectly into the plane prepare/cleanup sequence:
1957 *
1958 * 1. Call drm_atomic_helper_prepare_planes() with the staged atomic state.
1959 *
1960 * 2. Do any other steps that might fail.
1961 *
1962 * 3. Put the staged state into the current state pointers with this function.
1963 *
1964 * 4. Actually commit the hardware state.
1965 *
Daniel Vetter26196f72015-08-25 16:26:03 +02001966 * 5. Call drm_atomic_helper_cleanup_planes() with @state, which since step 3
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001967 * contains the old state. Also do any other cleanup required with that state.
Daniel Vettera095caa2016-06-08 17:15:36 +02001968 *
1969 * @stall must be set when nonblocking commits for this driver directly access
Daniel Vetter6806cdf2017-01-25 07:26:43 +01001970 * the &drm_plane.state, &drm_crtc.state or &drm_connector.state pointer. With
1971 * the current atomic helpers this is almost always the case, since the helpers
Daniel Vettera095caa2016-06-08 17:15:36 +02001972 * don't pass the right state structures to the callbacks.
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001973 */
Daniel Vetter5e84c262016-06-10 00:06:32 +02001974void drm_atomic_helper_swap_state(struct drm_atomic_state *state,
1975 bool stall)
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001976{
1977 int i;
Daniel Vettera095caa2016-06-08 17:15:36 +02001978 long ret;
Daniel Vetterbe9174a2016-06-02 00:06:24 +02001979 struct drm_connector *connector;
1980 struct drm_connector_state *conn_state;
1981 struct drm_crtc *crtc;
1982 struct drm_crtc_state *crtc_state;
1983 struct drm_plane *plane;
1984 struct drm_plane_state *plane_state;
Daniel Vettera095caa2016-06-08 17:15:36 +02001985 struct drm_crtc_commit *commit;
1986
1987 if (stall) {
1988 for_each_crtc_in_state(state, crtc, crtc_state, i) {
1989 spin_lock(&crtc->commit_lock);
1990 commit = list_first_entry_or_null(&crtc->commit_list,
1991 struct drm_crtc_commit, commit_entry);
1992 if (commit)
1993 drm_crtc_commit_get(commit);
1994 spin_unlock(&crtc->commit_lock);
1995
1996 if (!commit)
1997 continue;
1998
1999 ret = wait_for_completion_timeout(&commit->hw_done,
2000 10*HZ);
2001 if (ret == 0)
2002 DRM_ERROR("[CRTC:%d:%s] hw_done timed out\n",
2003 crtc->base.id, crtc->name);
2004 drm_crtc_commit_put(commit);
2005 }
2006 }
Daniel Vetterc2fcd272014-11-05 00:14:14 +01002007
Daniel Vetterbe9174a2016-06-02 00:06:24 +02002008 for_each_connector_in_state(state, connector, conn_state, i) {
Daniel Vetterc2fcd272014-11-05 00:14:14 +01002009 connector->state->state = state;
Daniel Vetter63e83c12016-06-02 00:06:32 +02002010 swap(state->connectors[i].state, connector->state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +01002011 connector->state->state = NULL;
2012 }
2013
Daniel Vetterbe9174a2016-06-02 00:06:24 +02002014 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Daniel Vetterc2fcd272014-11-05 00:14:14 +01002015 crtc->state->state = state;
Daniel Vetter5d943aa62016-06-02 00:06:34 +02002016 swap(state->crtcs[i].state, crtc->state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +01002017 crtc->state->state = NULL;
Daniel Vettera095caa2016-06-08 17:15:36 +02002018
2019 if (state->crtcs[i].commit) {
2020 spin_lock(&crtc->commit_lock);
2021 list_add(&state->crtcs[i].commit->commit_entry,
2022 &crtc->commit_list);
2023 spin_unlock(&crtc->commit_lock);
2024
2025 state->crtcs[i].commit->event = NULL;
2026 }
Daniel Vetterc2fcd272014-11-05 00:14:14 +01002027 }
2028
Daniel Vetterbe9174a2016-06-02 00:06:24 +02002029 for_each_plane_in_state(state, plane, plane_state, i) {
Daniel Vetterc2fcd272014-11-05 00:14:14 +01002030 plane->state->state = state;
Daniel Vetterb8b53422016-06-02 00:06:33 +02002031 swap(state->planes[i].state, plane->state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +01002032 plane->state->state = NULL;
2033 }
2034}
2035EXPORT_SYMBOL(drm_atomic_helper_swap_state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002036
2037/**
2038 * drm_atomic_helper_update_plane - Helper for primary plane update using atomic
2039 * @plane: plane object to update
2040 * @crtc: owning CRTC of owning plane
2041 * @fb: framebuffer to flip onto plane
2042 * @crtc_x: x offset of primary plane on crtc
2043 * @crtc_y: y offset of primary plane on crtc
2044 * @crtc_w: width of primary plane rectangle on crtc
2045 * @crtc_h: height of primary plane rectangle on crtc
2046 * @src_x: x offset of @fb for panning
2047 * @src_y: y offset of @fb for panning
2048 * @src_w: width of source rectangle in @fb
2049 * @src_h: height of source rectangle in @fb
2050 *
2051 * Provides a default plane update handler using the atomic driver interface.
2052 *
2053 * RETURNS:
2054 * Zero on success, error code on failure
2055 */
2056int drm_atomic_helper_update_plane(struct drm_plane *plane,
2057 struct drm_crtc *crtc,
2058 struct drm_framebuffer *fb,
2059 int crtc_x, int crtc_y,
2060 unsigned int crtc_w, unsigned int crtc_h,
2061 uint32_t src_x, uint32_t src_y,
2062 uint32_t src_w, uint32_t src_h)
2063{
2064 struct drm_atomic_state *state;
2065 struct drm_plane_state *plane_state;
2066 int ret = 0;
2067
2068 state = drm_atomic_state_alloc(plane->dev);
2069 if (!state)
2070 return -ENOMEM;
2071
2072 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
2073retry:
2074 plane_state = drm_atomic_get_plane_state(state, plane);
2075 if (IS_ERR(plane_state)) {
2076 ret = PTR_ERR(plane_state);
2077 goto fail;
2078 }
2079
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01002080 ret = drm_atomic_set_crtc_for_plane(plane_state, crtc);
Daniel Vetter042652e2014-07-27 13:46:52 +02002081 if (ret != 0)
2082 goto fail;
Daniel Vetter321ebf02014-11-04 22:57:27 +01002083 drm_atomic_set_fb_for_plane(plane_state, fb);
Daniel Vetter042652e2014-07-27 13:46:52 +02002084 plane_state->crtc_x = crtc_x;
2085 plane_state->crtc_y = crtc_y;
Daniel Vetter042652e2014-07-27 13:46:52 +02002086 plane_state->crtc_w = crtc_w;
Ville Syrjälä02e6f372015-11-16 17:02:35 +02002087 plane_state->crtc_h = crtc_h;
Daniel Vetter042652e2014-07-27 13:46:52 +02002088 plane_state->src_x = src_x;
2089 plane_state->src_y = src_y;
Daniel Vetter042652e2014-07-27 13:46:52 +02002090 plane_state->src_w = src_w;
Ville Syrjälä02e6f372015-11-16 17:02:35 +02002091 plane_state->src_h = src_h;
Daniel Vetter042652e2014-07-27 13:46:52 +02002092
Daniel Vetter3671c582015-05-04 15:40:52 +02002093 if (plane == crtc->cursor)
2094 state->legacy_cursor_update = true;
2095
Daniel Vetter042652e2014-07-27 13:46:52 +02002096 ret = drm_atomic_commit(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002097fail:
2098 if (ret == -EDEADLK)
2099 goto backoff;
2100
Chris Wilson08536952016-10-14 13:18:18 +01002101 drm_atomic_state_put(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002102 return ret;
Chris Wilson08536952016-10-14 13:18:18 +01002103
Daniel Vetter042652e2014-07-27 13:46:52 +02002104backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02002105 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01002106 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002107
2108 /*
2109 * Someone might have exchanged the framebuffer while we dropped locks
2110 * in the backoff code. We need to fix up the fb refcount tracking the
2111 * core does for us.
2112 */
2113 plane->old_fb = plane->fb;
2114
2115 goto retry;
2116}
2117EXPORT_SYMBOL(drm_atomic_helper_update_plane);
2118
2119/**
2120 * drm_atomic_helper_disable_plane - Helper for primary plane disable using * atomic
2121 * @plane: plane to disable
2122 *
2123 * Provides a default plane disable handler using the atomic driver interface.
2124 *
2125 * RETURNS:
2126 * Zero on success, error code on failure
2127 */
2128int drm_atomic_helper_disable_plane(struct drm_plane *plane)
2129{
2130 struct drm_atomic_state *state;
2131 struct drm_plane_state *plane_state;
2132 int ret = 0;
2133
Jasper St. Pierreaa54e2e2014-11-20 19:59:15 -08002134 /*
2135 * FIXME: Without plane->crtc set we can't get at the implicit legacy
2136 * acquire context. The real fix will be to wire the acquire ctx through
2137 * everywhere we need it, but meanwhile prevent chaos by just skipping
2138 * this noop. The critical case is the cursor ioctls which a) only grab
2139 * crtc/cursor-plane locks (so we need the crtc to get at the right
2140 * acquire context) and b) can try to disable the plane multiple times.
2141 */
2142 if (!plane->crtc)
2143 return 0;
2144
Daniel Vetter042652e2014-07-27 13:46:52 +02002145 state = drm_atomic_state_alloc(plane->dev);
2146 if (!state)
2147 return -ENOMEM;
2148
2149 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(plane->crtc);
2150retry:
2151 plane_state = drm_atomic_get_plane_state(state, plane);
2152 if (IS_ERR(plane_state)) {
2153 ret = PTR_ERR(plane_state);
2154 goto fail;
2155 }
2156
Maarten Lankhorst24e79d02015-11-11 11:29:07 +01002157 if (plane_state->crtc && (plane == plane->crtc->cursor))
2158 plane_state->state->legacy_cursor_update = true;
2159
Rob Clarkbbb1e522015-08-25 15:35:58 -04002160 ret = __drm_atomic_helper_disable_plane(plane, plane_state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002161 if (ret != 0)
2162 goto fail;
Daniel Vetterf02ad902015-01-22 16:36:23 +01002163
Daniel Vetter042652e2014-07-27 13:46:52 +02002164 ret = drm_atomic_commit(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002165fail:
2166 if (ret == -EDEADLK)
2167 goto backoff;
2168
Chris Wilson08536952016-10-14 13:18:18 +01002169 drm_atomic_state_put(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002170 return ret;
Chris Wilson08536952016-10-14 13:18:18 +01002171
Daniel Vetter042652e2014-07-27 13:46:52 +02002172backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02002173 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01002174 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002175
2176 /*
2177 * Someone might have exchanged the framebuffer while we dropped locks
2178 * in the backoff code. We need to fix up the fb refcount tracking the
2179 * core does for us.
2180 */
2181 plane->old_fb = plane->fb;
2182
2183 goto retry;
2184}
2185EXPORT_SYMBOL(drm_atomic_helper_disable_plane);
2186
Rob Clarkbbb1e522015-08-25 15:35:58 -04002187/* just used from fb-helper and atomic-helper: */
2188int __drm_atomic_helper_disable_plane(struct drm_plane *plane,
2189 struct drm_plane_state *plane_state)
2190{
2191 int ret;
2192
2193 ret = drm_atomic_set_crtc_for_plane(plane_state, NULL);
2194 if (ret != 0)
2195 return ret;
2196
2197 drm_atomic_set_fb_for_plane(plane_state, NULL);
2198 plane_state->crtc_x = 0;
2199 plane_state->crtc_y = 0;
Rob Clarkbbb1e522015-08-25 15:35:58 -04002200 plane_state->crtc_w = 0;
Ville Syrjälä02e6f372015-11-16 17:02:35 +02002201 plane_state->crtc_h = 0;
Rob Clarkbbb1e522015-08-25 15:35:58 -04002202 plane_state->src_x = 0;
2203 plane_state->src_y = 0;
Rob Clarkbbb1e522015-08-25 15:35:58 -04002204 plane_state->src_w = 0;
Ville Syrjälä02e6f372015-11-16 17:02:35 +02002205 plane_state->src_h = 0;
Rob Clarkbbb1e522015-08-25 15:35:58 -04002206
Rob Clarkbbb1e522015-08-25 15:35:58 -04002207 return 0;
2208}
2209
Daniel Vetter042652e2014-07-27 13:46:52 +02002210static int update_output_state(struct drm_atomic_state *state,
2211 struct drm_mode_set *set)
2212{
2213 struct drm_device *dev = set->crtc->dev;
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03002214 struct drm_crtc *crtc;
2215 struct drm_crtc_state *crtc_state;
2216 struct drm_connector *connector;
Daniel Vetter042652e2014-07-27 13:46:52 +02002217 struct drm_connector_state *conn_state;
Maarten Lankhorst6ab520a2016-02-24 09:37:28 +01002218 int ret, i;
Daniel Vetter042652e2014-07-27 13:46:52 +02002219
2220 ret = drm_modeset_lock(&dev->mode_config.connection_mutex,
2221 state->acquire_ctx);
2222 if (ret)
2223 return ret;
2224
Maarten Lankhorst6ab520a2016-02-24 09:37:28 +01002225 /* First disable all connectors on the target crtc. */
2226 ret = drm_atomic_add_affected_connectors(state, set->crtc);
2227 if (ret)
2228 return ret;
Daniel Vetter042652e2014-07-27 13:46:52 +02002229
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03002230 for_each_connector_in_state(state, connector, conn_state, i) {
Daniel Vetter042652e2014-07-27 13:46:52 +02002231 if (conn_state->crtc == set->crtc) {
2232 ret = drm_atomic_set_crtc_for_connector(conn_state,
2233 NULL);
2234 if (ret)
2235 return ret;
2236 }
Maarten Lankhorst6ab520a2016-02-24 09:37:28 +01002237 }
Daniel Vetter042652e2014-07-27 13:46:52 +02002238
Maarten Lankhorst6ab520a2016-02-24 09:37:28 +01002239 /* Then set all connectors from set->connectors on the target crtc */
2240 for (i = 0; i < set->num_connectors; i++) {
2241 conn_state = drm_atomic_get_connector_state(state,
2242 set->connectors[i]);
2243 if (IS_ERR(conn_state))
2244 return PTR_ERR(conn_state);
2245
2246 ret = drm_atomic_set_crtc_for_connector(conn_state,
2247 set->crtc);
2248 if (ret)
2249 return ret;
Daniel Vetter042652e2014-07-27 13:46:52 +02002250 }
2251
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03002252 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Daniel Vetter042652e2014-07-27 13:46:52 +02002253 /* Don't update ->enable for the CRTC in the set_config request,
2254 * since a mismatch would indicate a bug in the upper layers.
2255 * The actual modeset code later on will catch any
2256 * inconsistencies here. */
2257 if (crtc == set->crtc)
2258 continue;
2259
Maarten Lankhorst14de6c42016-01-04 12:53:20 +01002260 if (!crtc_state->connector_mask) {
Laurent Pinchartc30f55a2015-06-22 13:37:46 +03002261 ret = drm_atomic_set_mode_prop_for_crtc(crtc_state,
2262 NULL);
2263 if (ret < 0)
2264 return ret;
2265
Maarten Lankhorst9b5edbf2015-06-01 08:59:53 +02002266 crtc_state->active = false;
Laurent Pinchartc30f55a2015-06-22 13:37:46 +03002267 }
Daniel Vetter042652e2014-07-27 13:46:52 +02002268 }
2269
2270 return 0;
2271}
2272
2273/**
2274 * drm_atomic_helper_set_config - set a new config from userspace
2275 * @set: mode set configuration
2276 *
2277 * Provides a default crtc set_config handler using the atomic driver interface.
2278 *
2279 * Returns:
2280 * Returns 0 on success, negative errno numbers on failure.
2281 */
2282int drm_atomic_helper_set_config(struct drm_mode_set *set)
2283{
2284 struct drm_atomic_state *state;
2285 struct drm_crtc *crtc = set->crtc;
Daniel Vetter042652e2014-07-27 13:46:52 +02002286 int ret = 0;
2287
2288 state = drm_atomic_state_alloc(crtc->dev);
2289 if (!state)
2290 return -ENOMEM;
2291
Maarten Lankhorst40616a22016-03-03 10:17:39 +01002292 state->legacy_set_config = true;
Daniel Vetter042652e2014-07-27 13:46:52 +02002293 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
2294retry:
Rob Clarkbbb1e522015-08-25 15:35:58 -04002295 ret = __drm_atomic_helper_set_config(set, state);
Daniel Stone819364d2015-05-26 14:36:48 +01002296 if (ret != 0)
2297 goto fail;
2298
Daniel Vetter042652e2014-07-27 13:46:52 +02002299 ret = drm_atomic_commit(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002300fail:
2301 if (ret == -EDEADLK)
2302 goto backoff;
2303
Chris Wilson08536952016-10-14 13:18:18 +01002304 drm_atomic_state_put(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002305 return ret;
Chris Wilson08536952016-10-14 13:18:18 +01002306
Daniel Vetter042652e2014-07-27 13:46:52 +02002307backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02002308 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01002309 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002310
2311 /*
2312 * Someone might have exchanged the framebuffer while we dropped locks
2313 * in the backoff code. We need to fix up the fb refcount tracking the
2314 * core does for us.
2315 */
2316 crtc->primary->old_fb = crtc->primary->fb;
2317
2318 goto retry;
2319}
2320EXPORT_SYMBOL(drm_atomic_helper_set_config);
2321
Rob Clarkbbb1e522015-08-25 15:35:58 -04002322/* just used from fb-helper and atomic-helper: */
2323int __drm_atomic_helper_set_config(struct drm_mode_set *set,
2324 struct drm_atomic_state *state)
2325{
2326 struct drm_crtc_state *crtc_state;
2327 struct drm_plane_state *primary_state;
2328 struct drm_crtc *crtc = set->crtc;
Ville Syrjälä83926112015-11-16 17:02:34 +02002329 int hdisplay, vdisplay;
Rob Clarkbbb1e522015-08-25 15:35:58 -04002330 int ret;
2331
2332 crtc_state = drm_atomic_get_crtc_state(state, crtc);
2333 if (IS_ERR(crtc_state))
2334 return PTR_ERR(crtc_state);
2335
2336 primary_state = drm_atomic_get_plane_state(state, crtc->primary);
2337 if (IS_ERR(primary_state))
2338 return PTR_ERR(primary_state);
2339
2340 if (!set->mode) {
2341 WARN_ON(set->fb);
2342 WARN_ON(set->num_connectors);
2343
2344 ret = drm_atomic_set_mode_for_crtc(crtc_state, NULL);
2345 if (ret != 0)
2346 return ret;
2347
2348 crtc_state->active = false;
2349
2350 ret = drm_atomic_set_crtc_for_plane(primary_state, NULL);
2351 if (ret != 0)
2352 return ret;
2353
2354 drm_atomic_set_fb_for_plane(primary_state, NULL);
2355
2356 goto commit;
2357 }
2358
2359 WARN_ON(!set->fb);
2360 WARN_ON(!set->num_connectors);
2361
2362 ret = drm_atomic_set_mode_for_crtc(crtc_state, set->mode);
2363 if (ret != 0)
2364 return ret;
2365
2366 crtc_state->active = true;
2367
2368 ret = drm_atomic_set_crtc_for_plane(primary_state, crtc);
2369 if (ret != 0)
2370 return ret;
2371
Daniel Vetter196cd5d2017-01-25 07:26:56 +01002372 drm_mode_get_hv_timing(set->mode, &hdisplay, &vdisplay);
Ville Syrjälä83926112015-11-16 17:02:34 +02002373
Rob Clarkbbb1e522015-08-25 15:35:58 -04002374 drm_atomic_set_fb_for_plane(primary_state, set->fb);
2375 primary_state->crtc_x = 0;
2376 primary_state->crtc_y = 0;
Ville Syrjälä83926112015-11-16 17:02:34 +02002377 primary_state->crtc_w = hdisplay;
Ville Syrjälä02e6f372015-11-16 17:02:35 +02002378 primary_state->crtc_h = vdisplay;
Rob Clarkbbb1e522015-08-25 15:35:58 -04002379 primary_state->src_x = set->x << 16;
2380 primary_state->src_y = set->y << 16;
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03002381 if (drm_rotation_90_or_270(primary_state->rotation)) {
Ville Syrjälä83926112015-11-16 17:02:34 +02002382 primary_state->src_w = vdisplay << 16;
Ville Syrjälä02e6f372015-11-16 17:02:35 +02002383 primary_state->src_h = hdisplay << 16;
Ville Syrjälä41121242015-10-15 20:39:59 +03002384 } else {
Ville Syrjälä83926112015-11-16 17:02:34 +02002385 primary_state->src_w = hdisplay << 16;
Ville Syrjälä02e6f372015-11-16 17:02:35 +02002386 primary_state->src_h = vdisplay << 16;
Ville Syrjälä41121242015-10-15 20:39:59 +03002387 }
Rob Clarkbbb1e522015-08-25 15:35:58 -04002388
2389commit:
2390 ret = update_output_state(state, set);
2391 if (ret)
2392 return ret;
2393
2394 return 0;
2395}
2396
Daniel Vetter042652e2014-07-27 13:46:52 +02002397/**
Thierry Reding14942762015-12-02 17:50:04 +01002398 * drm_atomic_helper_disable_all - disable all currently active outputs
2399 * @dev: DRM device
2400 * @ctx: lock acquisition context
2401 *
2402 * Loops through all connectors, finding those that aren't turned off and then
2403 * turns them off by setting their DPMS mode to OFF and deactivating the CRTC
2404 * that they are connected to.
2405 *
2406 * This is used for example in suspend/resume to disable all currently active
2407 * functions when suspending.
2408 *
2409 * Note that if callers haven't already acquired all modeset locks this might
2410 * return -EDEADLK, which must be handled by calling drm_modeset_backoff().
2411 *
2412 * Returns:
2413 * 0 on success or a negative error code on failure.
2414 *
2415 * See also:
2416 * drm_atomic_helper_suspend(), drm_atomic_helper_resume()
2417 */
2418int drm_atomic_helper_disable_all(struct drm_device *dev,
2419 struct drm_modeset_acquire_ctx *ctx)
2420{
2421 struct drm_atomic_state *state;
2422 struct drm_connector *conn;
Daniel Vetterc36a3252016-12-15 16:58:43 +01002423 struct drm_connector_list_iter conn_iter;
Thierry Reding14942762015-12-02 17:50:04 +01002424 int err;
2425
2426 state = drm_atomic_state_alloc(dev);
2427 if (!state)
2428 return -ENOMEM;
2429
2430 state->acquire_ctx = ctx;
2431
Daniel Vetterc36a3252016-12-15 16:58:43 +01002432 drm_connector_list_iter_get(dev, &conn_iter);
2433 drm_for_each_connector_iter(conn, &conn_iter) {
Thierry Reding14942762015-12-02 17:50:04 +01002434 struct drm_crtc *crtc = conn->state->crtc;
2435 struct drm_crtc_state *crtc_state;
2436
2437 if (!crtc || conn->dpms != DRM_MODE_DPMS_ON)
2438 continue;
2439
2440 crtc_state = drm_atomic_get_crtc_state(state, crtc);
2441 if (IS_ERR(crtc_state)) {
2442 err = PTR_ERR(crtc_state);
2443 goto free;
2444 }
2445
2446 crtc_state->active = false;
2447 }
2448
2449 err = drm_atomic_commit(state);
Thierry Reding14942762015-12-02 17:50:04 +01002450free:
Daniel Vetterc36a3252016-12-15 16:58:43 +01002451 drm_connector_list_iter_put(&conn_iter);
Chris Wilson08536952016-10-14 13:18:18 +01002452 drm_atomic_state_put(state);
Thierry Reding14942762015-12-02 17:50:04 +01002453 return err;
2454}
2455EXPORT_SYMBOL(drm_atomic_helper_disable_all);
2456
2457/**
2458 * drm_atomic_helper_suspend - subsystem-level suspend helper
2459 * @dev: DRM device
2460 *
2461 * Duplicates the current atomic state, disables all active outputs and then
2462 * returns a pointer to the original atomic state to the caller. Drivers can
2463 * pass this pointer to the drm_atomic_helper_resume() helper upon resume to
2464 * restore the output configuration that was active at the time the system
2465 * entered suspend.
2466 *
2467 * Note that it is potentially unsafe to use this. The atomic state object
2468 * returned by this function is assumed to be persistent. Drivers must ensure
2469 * that this holds true. Before calling this function, drivers must make sure
2470 * to suspend fbdev emulation so that nothing can be using the device.
2471 *
2472 * Returns:
2473 * A pointer to a copy of the state before suspend on success or an ERR_PTR()-
2474 * encoded error code on failure. Drivers should store the returned atomic
2475 * state object and pass it to the drm_atomic_helper_resume() helper upon
2476 * resume.
2477 *
2478 * See also:
2479 * drm_atomic_helper_duplicate_state(), drm_atomic_helper_disable_all(),
2480 * drm_atomic_helper_resume()
2481 */
2482struct drm_atomic_state *drm_atomic_helper_suspend(struct drm_device *dev)
2483{
2484 struct drm_modeset_acquire_ctx ctx;
2485 struct drm_atomic_state *state;
2486 int err;
2487
2488 drm_modeset_acquire_init(&ctx, 0);
2489
2490retry:
2491 err = drm_modeset_lock_all_ctx(dev, &ctx);
2492 if (err < 0) {
2493 state = ERR_PTR(err);
2494 goto unlock;
2495 }
2496
2497 state = drm_atomic_helper_duplicate_state(dev, &ctx);
2498 if (IS_ERR(state))
2499 goto unlock;
2500
2501 err = drm_atomic_helper_disable_all(dev, &ctx);
2502 if (err < 0) {
Chris Wilson08536952016-10-14 13:18:18 +01002503 drm_atomic_state_put(state);
Thierry Reding14942762015-12-02 17:50:04 +01002504 state = ERR_PTR(err);
2505 goto unlock;
2506 }
2507
2508unlock:
2509 if (PTR_ERR(state) == -EDEADLK) {
2510 drm_modeset_backoff(&ctx);
2511 goto retry;
2512 }
2513
2514 drm_modeset_drop_locks(&ctx);
2515 drm_modeset_acquire_fini(&ctx);
2516 return state;
2517}
2518EXPORT_SYMBOL(drm_atomic_helper_suspend);
2519
2520/**
2521 * drm_atomic_helper_resume - subsystem-level resume helper
2522 * @dev: DRM device
2523 * @state: atomic state to resume to
2524 *
2525 * Calls drm_mode_config_reset() to synchronize hardware and software states,
2526 * grabs all modeset locks and commits the atomic state object. This can be
2527 * used in conjunction with the drm_atomic_helper_suspend() helper to
2528 * implement suspend/resume for drivers that support atomic mode-setting.
2529 *
2530 * Returns:
2531 * 0 on success or a negative error code on failure.
2532 *
2533 * See also:
2534 * drm_atomic_helper_suspend()
2535 */
2536int drm_atomic_helper_resume(struct drm_device *dev,
2537 struct drm_atomic_state *state)
2538{
2539 struct drm_mode_config *config = &dev->mode_config;
2540 int err;
2541
2542 drm_mode_config_reset(dev);
2543 drm_modeset_lock_all(dev);
2544 state->acquire_ctx = config->acquire_ctx;
2545 err = drm_atomic_commit(state);
2546 drm_modeset_unlock_all(dev);
2547
2548 return err;
2549}
2550EXPORT_SYMBOL(drm_atomic_helper_resume);
2551
2552/**
Laurent Pinchart7f500022015-02-23 02:50:23 +02002553 * drm_atomic_helper_crtc_set_property - helper for crtc properties
Daniel Vetter042652e2014-07-27 13:46:52 +02002554 * @crtc: DRM crtc
2555 * @property: DRM property
2556 * @val: value of property
2557 *
Laurent Pinchart7f500022015-02-23 02:50:23 +02002558 * Provides a default crtc set_property handler using the atomic driver
2559 * interface.
Daniel Vetter042652e2014-07-27 13:46:52 +02002560 *
2561 * RETURNS:
2562 * Zero on success, error code on failure
2563 */
2564int
2565drm_atomic_helper_crtc_set_property(struct drm_crtc *crtc,
2566 struct drm_property *property,
2567 uint64_t val)
2568{
2569 struct drm_atomic_state *state;
2570 struct drm_crtc_state *crtc_state;
2571 int ret = 0;
2572
2573 state = drm_atomic_state_alloc(crtc->dev);
2574 if (!state)
2575 return -ENOMEM;
2576
2577 /* ->set_property is always called with all locks held. */
2578 state->acquire_ctx = crtc->dev->mode_config.acquire_ctx;
2579retry:
2580 crtc_state = drm_atomic_get_crtc_state(state, crtc);
2581 if (IS_ERR(crtc_state)) {
2582 ret = PTR_ERR(crtc_state);
2583 goto fail;
2584 }
2585
Rob Clark40ecc692014-12-18 16:01:46 -05002586 ret = drm_atomic_crtc_set_property(crtc, crtc_state,
2587 property, val);
Daniel Vetter042652e2014-07-27 13:46:52 +02002588 if (ret)
2589 goto fail;
2590
2591 ret = drm_atomic_commit(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002592fail:
2593 if (ret == -EDEADLK)
2594 goto backoff;
2595
Chris Wilson08536952016-10-14 13:18:18 +01002596 drm_atomic_state_put(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002597 return ret;
Chris Wilson08536952016-10-14 13:18:18 +01002598
Daniel Vetter042652e2014-07-27 13:46:52 +02002599backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02002600 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01002601 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002602
2603 goto retry;
2604}
2605EXPORT_SYMBOL(drm_atomic_helper_crtc_set_property);
2606
2607/**
Laurent Pinchart7f500022015-02-23 02:50:23 +02002608 * drm_atomic_helper_plane_set_property - helper for plane properties
Daniel Vetter042652e2014-07-27 13:46:52 +02002609 * @plane: DRM plane
2610 * @property: DRM property
2611 * @val: value of property
2612 *
Laurent Pinchart7f500022015-02-23 02:50:23 +02002613 * Provides a default plane set_property handler using the atomic driver
2614 * interface.
Daniel Vetter042652e2014-07-27 13:46:52 +02002615 *
2616 * RETURNS:
2617 * Zero on success, error code on failure
2618 */
2619int
2620drm_atomic_helper_plane_set_property(struct drm_plane *plane,
2621 struct drm_property *property,
2622 uint64_t val)
2623{
2624 struct drm_atomic_state *state;
2625 struct drm_plane_state *plane_state;
2626 int ret = 0;
2627
2628 state = drm_atomic_state_alloc(plane->dev);
2629 if (!state)
2630 return -ENOMEM;
2631
2632 /* ->set_property is always called with all locks held. */
2633 state->acquire_ctx = plane->dev->mode_config.acquire_ctx;
2634retry:
2635 plane_state = drm_atomic_get_plane_state(state, plane);
2636 if (IS_ERR(plane_state)) {
2637 ret = PTR_ERR(plane_state);
2638 goto fail;
2639 }
2640
Rob Clark40ecc692014-12-18 16:01:46 -05002641 ret = drm_atomic_plane_set_property(plane, plane_state,
2642 property, val);
Daniel Vetter042652e2014-07-27 13:46:52 +02002643 if (ret)
2644 goto fail;
2645
2646 ret = drm_atomic_commit(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002647fail:
2648 if (ret == -EDEADLK)
2649 goto backoff;
2650
Chris Wilson08536952016-10-14 13:18:18 +01002651 drm_atomic_state_put(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002652 return ret;
Chris Wilson08536952016-10-14 13:18:18 +01002653
Daniel Vetter042652e2014-07-27 13:46:52 +02002654backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02002655 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01002656 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002657
2658 goto retry;
2659}
2660EXPORT_SYMBOL(drm_atomic_helper_plane_set_property);
2661
2662/**
Laurent Pinchart7f500022015-02-23 02:50:23 +02002663 * drm_atomic_helper_connector_set_property - helper for connector properties
Daniel Vetter042652e2014-07-27 13:46:52 +02002664 * @connector: DRM connector
2665 * @property: DRM property
2666 * @val: value of property
2667 *
Laurent Pinchart7f500022015-02-23 02:50:23 +02002668 * Provides a default connector set_property handler using the atomic driver
2669 * interface.
Daniel Vetter042652e2014-07-27 13:46:52 +02002670 *
2671 * RETURNS:
2672 * Zero on success, error code on failure
2673 */
2674int
2675drm_atomic_helper_connector_set_property(struct drm_connector *connector,
2676 struct drm_property *property,
2677 uint64_t val)
2678{
2679 struct drm_atomic_state *state;
2680 struct drm_connector_state *connector_state;
2681 int ret = 0;
2682
2683 state = drm_atomic_state_alloc(connector->dev);
2684 if (!state)
2685 return -ENOMEM;
2686
2687 /* ->set_property is always called with all locks held. */
2688 state->acquire_ctx = connector->dev->mode_config.acquire_ctx;
2689retry:
2690 connector_state = drm_atomic_get_connector_state(state, connector);
2691 if (IS_ERR(connector_state)) {
2692 ret = PTR_ERR(connector_state);
2693 goto fail;
2694 }
2695
Rob Clark40ecc692014-12-18 16:01:46 -05002696 ret = drm_atomic_connector_set_property(connector, connector_state,
2697 property, val);
Daniel Vetter042652e2014-07-27 13:46:52 +02002698 if (ret)
2699 goto fail;
2700
2701 ret = drm_atomic_commit(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002702fail:
2703 if (ret == -EDEADLK)
2704 goto backoff;
2705
Chris Wilson08536952016-10-14 13:18:18 +01002706 drm_atomic_state_put(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002707 return ret;
Chris Wilson08536952016-10-14 13:18:18 +01002708
Daniel Vetter042652e2014-07-27 13:46:52 +02002709backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02002710 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01002711 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002712
2713 goto retry;
2714}
2715EXPORT_SYMBOL(drm_atomic_helper_connector_set_property);
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002716
Andrey Grodzovskyf869a6e2017-01-06 15:39:40 -05002717static int page_flip_common(
2718 struct drm_atomic_state *state,
2719 struct drm_crtc *crtc,
2720 struct drm_framebuffer *fb,
2721 struct drm_pending_vblank_event *event)
2722{
2723 struct drm_plane *plane = crtc->primary;
2724 struct drm_plane_state *plane_state;
2725 struct drm_crtc_state *crtc_state;
2726 int ret = 0;
2727
2728 crtc_state = drm_atomic_get_crtc_state(state, crtc);
2729 if (IS_ERR(crtc_state))
2730 return PTR_ERR(crtc_state);
2731
2732 crtc_state->event = event;
2733
2734 plane_state = drm_atomic_get_plane_state(state, plane);
2735 if (IS_ERR(plane_state))
2736 return PTR_ERR(plane_state);
2737
2738
2739 ret = drm_atomic_set_crtc_for_plane(plane_state, crtc);
2740 if (ret != 0)
2741 return ret;
2742 drm_atomic_set_fb_for_plane(plane_state, fb);
2743
2744 /* Make sure we don't accidentally do a full modeset. */
2745 state->allow_modeset = false;
2746 if (!crtc_state->active) {
2747 DRM_DEBUG_ATOMIC("[CRTC:%d] disabled, rejecting legacy flip\n",
2748 crtc->base.id);
2749 return -EINVAL;
2750 }
2751
2752 return ret;
2753}
2754
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002755/**
2756 * drm_atomic_helper_page_flip - execute a legacy page flip
2757 * @crtc: DRM crtc
2758 * @fb: DRM framebuffer
2759 * @event: optional DRM event to signal upon completion
2760 * @flags: flip flags for non-vblank sync'ed updates
2761 *
Andrey Grodzovskyf869a6e2017-01-06 15:39:40 -05002762 * Provides a default &drm_crtc_funcs.page_flip implementation
2763 * using the atomic driver interface.
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002764 *
2765 * Note that for now so called async page flips (i.e. updates which are not
2766 * synchronized to vblank) are not supported, since the atomic interfaces have
2767 * no provisions for this yet.
2768 *
2769 * Returns:
2770 * Returns 0 on success, negative errno numbers on failure.
Andrey Grodzovskyf869a6e2017-01-06 15:39:40 -05002771 *
2772 * See also:
2773 * drm_atomic_helper_page_flip_target()
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002774 */
2775int drm_atomic_helper_page_flip(struct drm_crtc *crtc,
2776 struct drm_framebuffer *fb,
2777 struct drm_pending_vblank_event *event,
2778 uint32_t flags)
2779{
2780 struct drm_plane *plane = crtc->primary;
2781 struct drm_atomic_state *state;
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002782 int ret = 0;
2783
2784 if (flags & DRM_MODE_PAGE_FLIP_ASYNC)
2785 return -EINVAL;
2786
2787 state = drm_atomic_state_alloc(plane->dev);
2788 if (!state)
2789 return -ENOMEM;
2790
2791 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
Andrey Grodzovskyf869a6e2017-01-06 15:39:40 -05002792
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002793retry:
Andrey Grodzovskyf869a6e2017-01-06 15:39:40 -05002794 ret = page_flip_common(state, crtc, fb, event);
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002795 if (ret != 0)
2796 goto fail;
Daniel Vetter4cba6852015-12-08 09:49:20 +01002797
Maarten Lankhorstb837ba02016-04-26 16:11:35 +02002798 ret = drm_atomic_nonblocking_commit(state);
Andrey Grodzovskyf869a6e2017-01-06 15:39:40 -05002799
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002800fail:
2801 if (ret == -EDEADLK)
2802 goto backoff;
2803
Chris Wilson08536952016-10-14 13:18:18 +01002804 drm_atomic_state_put(state);
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002805 return ret;
Chris Wilson08536952016-10-14 13:18:18 +01002806
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002807backoff:
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002808 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01002809 drm_atomic_legacy_backoff(state);
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002810
2811 /*
2812 * Someone might have exchanged the framebuffer while we dropped locks
2813 * in the backoff code. We need to fix up the fb refcount tracking the
2814 * core does for us.
2815 */
2816 plane->old_fb = plane->fb;
2817
2818 goto retry;
2819}
2820EXPORT_SYMBOL(drm_atomic_helper_page_flip);
Daniel Vetterd4617012014-11-03 15:56:43 +01002821
2822/**
Andrey Grodzovskyf869a6e2017-01-06 15:39:40 -05002823 * drm_atomic_helper_page_flip_target - do page flip on target vblank period.
2824 * @crtc: DRM crtc
2825 * @fb: DRM framebuffer
2826 * @event: optional DRM event to signal upon completion
2827 * @flags: flip flags for non-vblank sync'ed updates
2828 * @target: specifying the target vblank period when the flip to take effect
2829 *
2830 * Provides a default &drm_crtc_funcs.page_flip_target implementation.
2831 * Similar to drm_atomic_helper_page_flip() with extra parameter to specify
2832 * target vblank period to flip.
2833 *
2834 * Returns:
2835 * Returns 0 on success, negative errno numbers on failure.
2836 */
2837int drm_atomic_helper_page_flip_target(
2838 struct drm_crtc *crtc,
2839 struct drm_framebuffer *fb,
2840 struct drm_pending_vblank_event *event,
2841 uint32_t flags,
2842 uint32_t target)
2843{
2844 struct drm_plane *plane = crtc->primary;
2845 struct drm_atomic_state *state;
2846 struct drm_crtc_state *crtc_state;
2847 int ret = 0;
2848
2849 if (flags & DRM_MODE_PAGE_FLIP_ASYNC)
2850 return -EINVAL;
2851
2852 state = drm_atomic_state_alloc(plane->dev);
2853 if (!state)
2854 return -ENOMEM;
2855
2856 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
2857
2858retry:
2859 ret = page_flip_common(state, crtc, fb, event);
2860 if (ret != 0)
2861 goto fail;
2862
2863 crtc_state = drm_atomic_get_existing_crtc_state(state, crtc);
2864 if (WARN_ON(!crtc_state)) {
2865 ret = -EINVAL;
2866 goto fail;
2867 }
2868 crtc_state->target_vblank = target;
2869
2870 ret = drm_atomic_nonblocking_commit(state);
2871
2872fail:
2873 if (ret == -EDEADLK)
2874 goto backoff;
2875
2876 drm_atomic_state_put(state);
2877 return ret;
2878
2879backoff:
2880 drm_atomic_state_clear(state);
2881 drm_atomic_legacy_backoff(state);
2882
2883 /*
2884 * Someone might have exchanged the framebuffer while we dropped locks
2885 * in the backoff code. We need to fix up the fb refcount tracking the
2886 * core does for us.
2887 */
2888 plane->old_fb = plane->fb;
2889
2890 goto retry;
2891}
2892EXPORT_SYMBOL(drm_atomic_helper_page_flip_target);
2893
2894/**
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002895 * drm_atomic_helper_connector_dpms() - connector dpms helper implementation
2896 * @connector: affected connector
2897 * @mode: DPMS mode
2898 *
2899 * This is the main helper function provided by the atomic helper framework for
2900 * implementing the legacy DPMS connector interface. It computes the new desired
Daniel Vetter6806cdf2017-01-25 07:26:43 +01002901 * &drm_crtc_state.active state for the corresponding CRTC (if the connector is
2902 * enabled) and updates it.
Maarten Lankhorst9a69a9a2015-07-21 11:34:55 +02002903 *
2904 * Returns:
2905 * Returns 0 on success, negative errno numbers on failure.
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002906 */
Maarten Lankhorst9a69a9a2015-07-21 11:34:55 +02002907int drm_atomic_helper_connector_dpms(struct drm_connector *connector,
2908 int mode)
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002909{
2910 struct drm_mode_config *config = &connector->dev->mode_config;
2911 struct drm_atomic_state *state;
2912 struct drm_crtc_state *crtc_state;
2913 struct drm_crtc *crtc;
2914 struct drm_connector *tmp_connector;
Daniel Vetterc36a3252016-12-15 16:58:43 +01002915 struct drm_connector_list_iter conn_iter;
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002916 int ret;
2917 bool active = false;
Maarten Lankhorst9a69a9a2015-07-21 11:34:55 +02002918 int old_mode = connector->dpms;
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002919
2920 if (mode != DRM_MODE_DPMS_ON)
2921 mode = DRM_MODE_DPMS_OFF;
2922
2923 connector->dpms = mode;
2924 crtc = connector->state->crtc;
2925
2926 if (!crtc)
Maarten Lankhorst9a69a9a2015-07-21 11:34:55 +02002927 return 0;
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002928
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002929 state = drm_atomic_state_alloc(connector->dev);
2930 if (!state)
Maarten Lankhorst9a69a9a2015-07-21 11:34:55 +02002931 return -ENOMEM;
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002932
2933 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
2934retry:
2935 crtc_state = drm_atomic_get_crtc_state(state, crtc);
Maarten Lankhorst9a69a9a2015-07-21 11:34:55 +02002936 if (IS_ERR(crtc_state)) {
2937 ret = PTR_ERR(crtc_state);
2938 goto fail;
2939 }
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002940
2941 WARN_ON(!drm_modeset_is_locked(&config->connection_mutex));
2942
Daniel Vetterc36a3252016-12-15 16:58:43 +01002943 drm_connector_list_iter_get(connector->dev, &conn_iter);
2944 drm_for_each_connector_iter(tmp_connector, &conn_iter) {
John Hunter0388df02015-03-17 15:30:28 +08002945 if (tmp_connector->state->crtc != crtc)
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002946 continue;
2947
John Hunter0388df02015-03-17 15:30:28 +08002948 if (tmp_connector->dpms == DRM_MODE_DPMS_ON) {
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002949 active = true;
2950 break;
2951 }
2952 }
Daniel Vetterc36a3252016-12-15 16:58:43 +01002953 drm_connector_list_iter_put(&conn_iter);
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002954 crtc_state->active = active;
2955
2956 ret = drm_atomic_commit(state);
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002957fail:
2958 if (ret == -EDEADLK)
2959 goto backoff;
Marta Lofstedt8f5040e2016-12-05 14:04:08 +02002960 if (ret != 0)
2961 connector->dpms = old_mode;
Chris Wilson08536952016-10-14 13:18:18 +01002962 drm_atomic_state_put(state);
Maarten Lankhorst9a69a9a2015-07-21 11:34:55 +02002963 return ret;
Chris Wilson08536952016-10-14 13:18:18 +01002964
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002965backoff:
2966 drm_atomic_state_clear(state);
2967 drm_atomic_legacy_backoff(state);
2968
2969 goto retry;
2970}
2971EXPORT_SYMBOL(drm_atomic_helper_connector_dpms);
2972
2973/**
Daniel Vetter6806cdf2017-01-25 07:26:43 +01002974 * drm_atomic_helper_best_encoder - Helper for
2975 * &drm_connector_helper_funcs.best_encoder callback
Noralf Trønnes9ecb5492016-05-11 18:09:21 +02002976 * @connector: Connector control structure
2977 *
Daniel Vetter6806cdf2017-01-25 07:26:43 +01002978 * This is a &drm_connector_helper_funcs.best_encoder callback helper for
Noralf Trønnes9ecb5492016-05-11 18:09:21 +02002979 * connectors that support exactly 1 encoder, statically determined at driver
2980 * init time.
2981 */
2982struct drm_encoder *
2983drm_atomic_helper_best_encoder(struct drm_connector *connector)
2984{
2985 WARN_ON(connector->encoder_ids[1]);
2986 return drm_encoder_find(connector->dev, connector->encoder_ids[0]);
2987}
2988EXPORT_SYMBOL(drm_atomic_helper_best_encoder);
2989
2990/**
Daniel Vetter3150c7d2014-11-06 20:53:29 +01002991 * DOC: atomic state reset and initialization
2992 *
2993 * Both the drm core and the atomic helpers assume that there is always the full
2994 * and correct atomic software state for all connectors, CRTCs and planes
2995 * available. Which is a bit a problem on driver load and also after system
2996 * suspend. One way to solve this is to have a hardware state read-out
2997 * infrastructure which reconstructs the full software state (e.g. the i915
2998 * driver).
2999 *
3000 * The simpler solution is to just reset the software state to everything off,
3001 * which is easiest to do by calling drm_mode_config_reset(). To facilitate this
3002 * the atomic helpers provide default reset implementations for all hooks.
Daniel Vetter7f8ee3e2015-12-04 09:46:06 +01003003 *
3004 * On the upside the precise state tracking of atomic simplifies system suspend
3005 * and resume a lot. For drivers using drm_mode_config_reset() a complete recipe
3006 * is implemented in drm_atomic_helper_suspend() and drm_atomic_helper_resume().
3007 * For other drivers the building blocks are split out, see the documentation
3008 * for these functions.
Daniel Vetter3150c7d2014-11-06 20:53:29 +01003009 */
3010
3011/**
Daniel Vetter6806cdf2017-01-25 07:26:43 +01003012 * drm_atomic_helper_crtc_reset - default &drm_crtc_funcs.reset hook for CRTCs
Daniel Vetterd4617012014-11-03 15:56:43 +01003013 * @crtc: drm CRTC
3014 *
3015 * Resets the atomic state for @crtc by freeing the state pointer (which might
3016 * be NULL, e.g. at driver load time) and allocating a new empty state object.
3017 */
3018void drm_atomic_helper_crtc_reset(struct drm_crtc *crtc)
3019{
Daniel Vetterb0b55112016-04-22 22:10:29 +02003020 if (crtc->state)
Daniel Vetterec2dc6a2016-05-09 16:34:09 +02003021 __drm_atomic_helper_crtc_destroy_state(crtc->state);
Daniel Vetterb0b55112016-04-22 22:10:29 +02003022
Daniel Vetterd4617012014-11-03 15:56:43 +01003023 kfree(crtc->state);
3024 crtc->state = kzalloc(sizeof(*crtc->state), GFP_KERNEL);
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01003025
3026 if (crtc->state)
3027 crtc->state->crtc = crtc;
Daniel Vetterd4617012014-11-03 15:56:43 +01003028}
3029EXPORT_SYMBOL(drm_atomic_helper_crtc_reset);
3030
3031/**
Thierry Redingf5e78402015-01-28 14:54:32 +01003032 * __drm_atomic_helper_crtc_duplicate_state - copy atomic CRTC state
3033 * @crtc: CRTC object
3034 * @state: atomic CRTC state
3035 *
3036 * Copies atomic state from a CRTC's current state and resets inferred values.
3037 * This is useful for drivers that subclass the CRTC state.
3038 */
3039void __drm_atomic_helper_crtc_duplicate_state(struct drm_crtc *crtc,
3040 struct drm_crtc_state *state)
3041{
3042 memcpy(state, crtc->state, sizeof(*state));
3043
Daniel Stone99cf4a22015-05-25 19:11:51 +01003044 if (state->mode_blob)
3045 drm_property_reference_blob(state->mode_blob);
Lionel Landwerlin5488dc12016-02-26 17:05:00 +00003046 if (state->degamma_lut)
3047 drm_property_reference_blob(state->degamma_lut);
3048 if (state->ctm)
3049 drm_property_reference_blob(state->ctm);
3050 if (state->gamma_lut)
3051 drm_property_reference_blob(state->gamma_lut);
Thierry Redingf5e78402015-01-28 14:54:32 +01003052 state->mode_changed = false;
3053 state->active_changed = false;
3054 state->planes_changed = false;
Maarten Lankhorstfc596662015-07-21 13:28:57 +02003055 state->connectors_changed = false;
Lionel Landwerlin5488dc12016-02-26 17:05:00 +00003056 state->color_mgmt_changed = false;
Marek Szyprowski44d1240d2016-06-13 11:11:26 +02003057 state->zpos_changed = false;
Thierry Redingf5e78402015-01-28 14:54:32 +01003058 state->event = NULL;
3059}
3060EXPORT_SYMBOL(__drm_atomic_helper_crtc_duplicate_state);
3061
3062/**
Daniel Vetterd4617012014-11-03 15:56:43 +01003063 * drm_atomic_helper_crtc_duplicate_state - default state duplicate hook
3064 * @crtc: drm CRTC
3065 *
3066 * Default CRTC state duplicate hook for drivers which don't have their own
3067 * subclassed CRTC state structure.
3068 */
3069struct drm_crtc_state *
3070drm_atomic_helper_crtc_duplicate_state(struct drm_crtc *crtc)
3071{
3072 struct drm_crtc_state *state;
3073
3074 if (WARN_ON(!crtc->state))
3075 return NULL;
3076
Thierry Redingf5e78402015-01-28 14:54:32 +01003077 state = kmalloc(sizeof(*state), GFP_KERNEL);
3078 if (state)
3079 __drm_atomic_helper_crtc_duplicate_state(crtc, state);
Daniel Vetterd4617012014-11-03 15:56:43 +01003080
3081 return state;
3082}
3083EXPORT_SYMBOL(drm_atomic_helper_crtc_duplicate_state);
3084
3085/**
Thierry Redingf5e78402015-01-28 14:54:32 +01003086 * __drm_atomic_helper_crtc_destroy_state - release CRTC state
Thierry Redingf5e78402015-01-28 14:54:32 +01003087 * @state: CRTC state object to release
3088 *
3089 * Releases all resources stored in the CRTC state without actually freeing
3090 * the memory of the CRTC state. This is useful for drivers that subclass the
3091 * CRTC state.
3092 */
Daniel Vetterec2dc6a2016-05-09 16:34:09 +02003093void __drm_atomic_helper_crtc_destroy_state(struct drm_crtc_state *state)
Thierry Redingf5e78402015-01-28 14:54:32 +01003094{
Markus Elfring5f911902015-11-06 12:03:46 +01003095 drm_property_unreference_blob(state->mode_blob);
Lionel Landwerlin5488dc12016-02-26 17:05:00 +00003096 drm_property_unreference_blob(state->degamma_lut);
3097 drm_property_unreference_blob(state->ctm);
3098 drm_property_unreference_blob(state->gamma_lut);
Thierry Redingf5e78402015-01-28 14:54:32 +01003099}
3100EXPORT_SYMBOL(__drm_atomic_helper_crtc_destroy_state);
3101
3102/**
Daniel Vetterd4617012014-11-03 15:56:43 +01003103 * drm_atomic_helper_crtc_destroy_state - default state destroy hook
3104 * @crtc: drm CRTC
3105 * @state: CRTC state object to release
3106 *
3107 * Default CRTC state destroy hook for drivers which don't have their own
3108 * subclassed CRTC state structure.
3109 */
3110void drm_atomic_helper_crtc_destroy_state(struct drm_crtc *crtc,
3111 struct drm_crtc_state *state)
3112{
Daniel Vetterec2dc6a2016-05-09 16:34:09 +02003113 __drm_atomic_helper_crtc_destroy_state(state);
Daniel Vetterd4617012014-11-03 15:56:43 +01003114 kfree(state);
3115}
3116EXPORT_SYMBOL(drm_atomic_helper_crtc_destroy_state);
3117
3118/**
Daniel Vetter6806cdf2017-01-25 07:26:43 +01003119 * drm_atomic_helper_plane_reset - default &drm_plane_funcs.reset hook for planes
Daniel Vetterd4617012014-11-03 15:56:43 +01003120 * @plane: drm plane
3121 *
3122 * Resets the atomic state for @plane by freeing the state pointer (which might
3123 * be NULL, e.g. at driver load time) and allocating a new empty state object.
3124 */
3125void drm_atomic_helper_plane_reset(struct drm_plane *plane)
3126{
Daniel Vetterb0b55112016-04-22 22:10:29 +02003127 if (plane->state)
Daniel Vetter2f701692016-05-09 16:34:10 +02003128 __drm_atomic_helper_plane_destroy_state(plane->state);
Daniel Vetter321ebf02014-11-04 22:57:27 +01003129
Daniel Vetterd4617012014-11-03 15:56:43 +01003130 kfree(plane->state);
3131 plane->state = kzalloc(sizeof(*plane->state), GFP_KERNEL);
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01003132
Marek Szyprowski25aaa3a2016-01-19 09:26:48 +01003133 if (plane->state) {
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01003134 plane->state->plane = plane;
Joonas Lahtinen31ad61e2016-07-29 08:50:05 +03003135 plane->state->rotation = DRM_ROTATE_0;
Marek Szyprowski25aaa3a2016-01-19 09:26:48 +01003136 }
Daniel Vetterd4617012014-11-03 15:56:43 +01003137}
3138EXPORT_SYMBOL(drm_atomic_helper_plane_reset);
3139
3140/**
Thierry Redingf5e78402015-01-28 14:54:32 +01003141 * __drm_atomic_helper_plane_duplicate_state - copy atomic plane state
3142 * @plane: plane object
3143 * @state: atomic plane state
3144 *
3145 * Copies atomic state from a plane's current state. This is useful for
3146 * drivers that subclass the plane state.
3147 */
3148void __drm_atomic_helper_plane_duplicate_state(struct drm_plane *plane,
3149 struct drm_plane_state *state)
3150{
3151 memcpy(state, plane->state, sizeof(*state));
3152
3153 if (state->fb)
3154 drm_framebuffer_reference(state->fb);
Gustavo Padovan96260142016-11-15 22:06:39 +09003155
3156 state->fence = NULL;
Thierry Redingf5e78402015-01-28 14:54:32 +01003157}
3158EXPORT_SYMBOL(__drm_atomic_helper_plane_duplicate_state);
3159
3160/**
Daniel Vetterd4617012014-11-03 15:56:43 +01003161 * drm_atomic_helper_plane_duplicate_state - default state duplicate hook
3162 * @plane: drm plane
3163 *
3164 * Default plane state duplicate hook for drivers which don't have their own
3165 * subclassed plane state structure.
3166 */
3167struct drm_plane_state *
3168drm_atomic_helper_plane_duplicate_state(struct drm_plane *plane)
3169{
Daniel Vetter321ebf02014-11-04 22:57:27 +01003170 struct drm_plane_state *state;
3171
Daniel Vetterd4617012014-11-03 15:56:43 +01003172 if (WARN_ON(!plane->state))
3173 return NULL;
3174
Thierry Redingf5e78402015-01-28 14:54:32 +01003175 state = kmalloc(sizeof(*state), GFP_KERNEL);
3176 if (state)
3177 __drm_atomic_helper_plane_duplicate_state(plane, state);
Daniel Vetter321ebf02014-11-04 22:57:27 +01003178
3179 return state;
Daniel Vetterd4617012014-11-03 15:56:43 +01003180}
3181EXPORT_SYMBOL(drm_atomic_helper_plane_duplicate_state);
3182
3183/**
Thierry Redingf5e78402015-01-28 14:54:32 +01003184 * __drm_atomic_helper_plane_destroy_state - release plane state
Thierry Redingf5e78402015-01-28 14:54:32 +01003185 * @state: plane state object to release
3186 *
3187 * Releases all resources stored in the plane state without actually freeing
3188 * the memory of the plane state. This is useful for drivers that subclass the
3189 * plane state.
3190 */
Daniel Vetter2f701692016-05-09 16:34:10 +02003191void __drm_atomic_helper_plane_destroy_state(struct drm_plane_state *state)
Thierry Redingf5e78402015-01-28 14:54:32 +01003192{
3193 if (state->fb)
3194 drm_framebuffer_unreference(state->fb);
Gustavo Padovan96260142016-11-15 22:06:39 +09003195
3196 if (state->fence)
3197 dma_fence_put(state->fence);
Thierry Redingf5e78402015-01-28 14:54:32 +01003198}
3199EXPORT_SYMBOL(__drm_atomic_helper_plane_destroy_state);
3200
3201/**
Daniel Vetterd4617012014-11-03 15:56:43 +01003202 * drm_atomic_helper_plane_destroy_state - default state destroy hook
3203 * @plane: drm plane
3204 * @state: plane state object to release
3205 *
3206 * Default plane state destroy hook for drivers which don't have their own
3207 * subclassed plane state structure.
3208 */
3209void drm_atomic_helper_plane_destroy_state(struct drm_plane *plane,
Daniel Vetter321ebf02014-11-04 22:57:27 +01003210 struct drm_plane_state *state)
Daniel Vetterd4617012014-11-03 15:56:43 +01003211{
Daniel Vetter2f701692016-05-09 16:34:10 +02003212 __drm_atomic_helper_plane_destroy_state(state);
Daniel Vetterd4617012014-11-03 15:56:43 +01003213 kfree(state);
3214}
3215EXPORT_SYMBOL(drm_atomic_helper_plane_destroy_state);
3216
3217/**
Maarten Lankhorst4cd39912016-01-04 12:53:16 +01003218 * __drm_atomic_helper_connector_reset - reset state on connector
3219 * @connector: drm connector
3220 * @conn_state: connector state to assign
3221 *
3222 * Initializes the newly allocated @conn_state and assigns it to
Daniel Vetter6806cdf2017-01-25 07:26:43 +01003223 * the &drm_conector->state pointer of @connector, usually required when
3224 * initializing the drivers or when called from the &drm_connector_funcs.reset
3225 * hook.
Maarten Lankhorst4cd39912016-01-04 12:53:16 +01003226 *
3227 * This is useful for drivers that subclass the connector state.
3228 */
3229void
3230__drm_atomic_helper_connector_reset(struct drm_connector *connector,
3231 struct drm_connector_state *conn_state)
3232{
3233 if (conn_state)
3234 conn_state->connector = connector;
3235
3236 connector->state = conn_state;
3237}
3238EXPORT_SYMBOL(__drm_atomic_helper_connector_reset);
3239
3240/**
Daniel Vetter6806cdf2017-01-25 07:26:43 +01003241 * drm_atomic_helper_connector_reset - default &drm_connector_funcs.reset hook for connectors
Daniel Vetterd4617012014-11-03 15:56:43 +01003242 * @connector: drm connector
3243 *
3244 * Resets the atomic state for @connector by freeing the state pointer (which
3245 * might be NULL, e.g. at driver load time) and allocating a new empty state
3246 * object.
3247 */
3248void drm_atomic_helper_connector_reset(struct drm_connector *connector)
3249{
Maarten Lankhorst4cd39912016-01-04 12:53:16 +01003250 struct drm_connector_state *conn_state =
3251 kzalloc(sizeof(*conn_state), GFP_KERNEL);
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01003252
Daniel Vetterb0b55112016-04-22 22:10:29 +02003253 if (connector->state)
Daniel Vetterfabd9102016-05-09 16:34:11 +02003254 __drm_atomic_helper_connector_destroy_state(connector->state);
Daniel Vetterb0b55112016-04-22 22:10:29 +02003255
Maarten Lankhorst4cd39912016-01-04 12:53:16 +01003256 kfree(connector->state);
3257 __drm_atomic_helper_connector_reset(connector, conn_state);
Daniel Vetterd4617012014-11-03 15:56:43 +01003258}
3259EXPORT_SYMBOL(drm_atomic_helper_connector_reset);
3260
3261/**
Thierry Redingf5e78402015-01-28 14:54:32 +01003262 * __drm_atomic_helper_connector_duplicate_state - copy atomic connector state
3263 * @connector: connector object
3264 * @state: atomic connector state
3265 *
3266 * Copies atomic state from a connector's current state. This is useful for
3267 * drivers that subclass the connector state.
3268 */
3269void
3270__drm_atomic_helper_connector_duplicate_state(struct drm_connector *connector,
3271 struct drm_connector_state *state)
3272{
3273 memcpy(state, connector->state, sizeof(*state));
Dave Airlied2307de2016-04-27 11:27:39 +10003274 if (state->crtc)
3275 drm_connector_reference(connector);
Thierry Redingf5e78402015-01-28 14:54:32 +01003276}
3277EXPORT_SYMBOL(__drm_atomic_helper_connector_duplicate_state);
3278
3279/**
Daniel Vetterd4617012014-11-03 15:56:43 +01003280 * drm_atomic_helper_connector_duplicate_state - default state duplicate hook
3281 * @connector: drm connector
3282 *
3283 * Default connector state duplicate hook for drivers which don't have their own
3284 * subclassed connector state structure.
3285 */
3286struct drm_connector_state *
3287drm_atomic_helper_connector_duplicate_state(struct drm_connector *connector)
3288{
Thierry Redingf5e78402015-01-28 14:54:32 +01003289 struct drm_connector_state *state;
3290
Daniel Vetterd4617012014-11-03 15:56:43 +01003291 if (WARN_ON(!connector->state))
3292 return NULL;
3293
Thierry Redingf5e78402015-01-28 14:54:32 +01003294 state = kmalloc(sizeof(*state), GFP_KERNEL);
3295 if (state)
3296 __drm_atomic_helper_connector_duplicate_state(connector, state);
3297
3298 return state;
Daniel Vetterd4617012014-11-03 15:56:43 +01003299}
3300EXPORT_SYMBOL(drm_atomic_helper_connector_duplicate_state);
3301
3302/**
Thierry Reding397fd772015-09-08 15:00:45 +02003303 * drm_atomic_helper_duplicate_state - duplicate an atomic state object
3304 * @dev: DRM device
3305 * @ctx: lock acquisition context
3306 *
3307 * Makes a copy of the current atomic state by looping over all objects and
Thierry Reding14942762015-12-02 17:50:04 +01003308 * duplicating their respective states. This is used for example by suspend/
3309 * resume support code to save the state prior to suspend such that it can
3310 * be restored upon resume.
Thierry Reding397fd772015-09-08 15:00:45 +02003311 *
3312 * Note that this treats atomic state as persistent between save and restore.
3313 * Drivers must make sure that this is possible and won't result in confusion
3314 * or erroneous behaviour.
3315 *
3316 * Note that if callers haven't already acquired all modeset locks this might
3317 * return -EDEADLK, which must be handled by calling drm_modeset_backoff().
3318 *
3319 * Returns:
3320 * A pointer to the copy of the atomic state object on success or an
3321 * ERR_PTR()-encoded error code on failure.
Thierry Reding14942762015-12-02 17:50:04 +01003322 *
3323 * See also:
3324 * drm_atomic_helper_suspend(), drm_atomic_helper_resume()
Thierry Reding397fd772015-09-08 15:00:45 +02003325 */
3326struct drm_atomic_state *
3327drm_atomic_helper_duplicate_state(struct drm_device *dev,
3328 struct drm_modeset_acquire_ctx *ctx)
3329{
3330 struct drm_atomic_state *state;
3331 struct drm_connector *conn;
Daniel Vetterc36a3252016-12-15 16:58:43 +01003332 struct drm_connector_list_iter conn_iter;
Thierry Reding397fd772015-09-08 15:00:45 +02003333 struct drm_plane *plane;
3334 struct drm_crtc *crtc;
3335 int err = 0;
3336
3337 state = drm_atomic_state_alloc(dev);
3338 if (!state)
3339 return ERR_PTR(-ENOMEM);
3340
3341 state->acquire_ctx = ctx;
3342
3343 drm_for_each_crtc(crtc, dev) {
3344 struct drm_crtc_state *crtc_state;
3345
3346 crtc_state = drm_atomic_get_crtc_state(state, crtc);
3347 if (IS_ERR(crtc_state)) {
3348 err = PTR_ERR(crtc_state);
3349 goto free;
3350 }
3351 }
3352
3353 drm_for_each_plane(plane, dev) {
3354 struct drm_plane_state *plane_state;
3355
3356 plane_state = drm_atomic_get_plane_state(state, plane);
3357 if (IS_ERR(plane_state)) {
3358 err = PTR_ERR(plane_state);
3359 goto free;
3360 }
3361 }
3362
Daniel Vetterc36a3252016-12-15 16:58:43 +01003363 drm_connector_list_iter_get(dev, &conn_iter);
3364 drm_for_each_connector_iter(conn, &conn_iter) {
Thierry Reding397fd772015-09-08 15:00:45 +02003365 struct drm_connector_state *conn_state;
3366
3367 conn_state = drm_atomic_get_connector_state(state, conn);
3368 if (IS_ERR(conn_state)) {
3369 err = PTR_ERR(conn_state);
Daniel Vetterc36a3252016-12-15 16:58:43 +01003370 drm_connector_list_iter_put(&conn_iter);
Thierry Reding397fd772015-09-08 15:00:45 +02003371 goto free;
3372 }
3373 }
Daniel Vetterc36a3252016-12-15 16:58:43 +01003374 drm_connector_list_iter_put(&conn_iter);
Thierry Reding397fd772015-09-08 15:00:45 +02003375
3376 /* clear the acquire context so that it isn't accidentally reused */
3377 state->acquire_ctx = NULL;
3378
3379free:
3380 if (err < 0) {
Chris Wilson08536952016-10-14 13:18:18 +01003381 drm_atomic_state_put(state);
Thierry Reding397fd772015-09-08 15:00:45 +02003382 state = ERR_PTR(err);
3383 }
3384
3385 return state;
3386}
3387EXPORT_SYMBOL(drm_atomic_helper_duplicate_state);
3388
3389/**
Thierry Redingf5e78402015-01-28 14:54:32 +01003390 * __drm_atomic_helper_connector_destroy_state - release connector state
Thierry Redingf5e78402015-01-28 14:54:32 +01003391 * @state: connector state object to release
3392 *
3393 * Releases all resources stored in the connector state without actually
3394 * freeing the memory of the connector state. This is useful for drivers that
3395 * subclass the connector state.
3396 */
3397void
Daniel Vetterfabd9102016-05-09 16:34:11 +02003398__drm_atomic_helper_connector_destroy_state(struct drm_connector_state *state)
Thierry Redingf5e78402015-01-28 14:54:32 +01003399{
Dave Airlied2307de2016-04-27 11:27:39 +10003400 if (state->crtc)
3401 drm_connector_unreference(state->connector);
Thierry Redingf5e78402015-01-28 14:54:32 +01003402}
3403EXPORT_SYMBOL(__drm_atomic_helper_connector_destroy_state);
3404
3405/**
Daniel Vetterd4617012014-11-03 15:56:43 +01003406 * drm_atomic_helper_connector_destroy_state - default state destroy hook
3407 * @connector: drm connector
3408 * @state: connector state object to release
3409 *
3410 * Default connector state destroy hook for drivers which don't have their own
3411 * subclassed connector state structure.
3412 */
3413void drm_atomic_helper_connector_destroy_state(struct drm_connector *connector,
3414 struct drm_connector_state *state)
3415{
Daniel Vetterfabd9102016-05-09 16:34:11 +02003416 __drm_atomic_helper_connector_destroy_state(state);
Daniel Vetterd4617012014-11-03 15:56:43 +01003417 kfree(state);
3418}
3419EXPORT_SYMBOL(drm_atomic_helper_connector_destroy_state);
Lionel Landwerlin5488dc12016-02-26 17:05:00 +00003420
3421/**
3422 * drm_atomic_helper_legacy_gamma_set - set the legacy gamma correction table
3423 * @crtc: CRTC object
3424 * @red: red correction table
3425 * @green: green correction table
3426 * @blue: green correction table
Lionel Landwerlin5488dc12016-02-26 17:05:00 +00003427 * @size: size of the tables
3428 *
3429 * Implements support for legacy gamma correction table for drivers
3430 * that support color management through the DEGAMMA_LUT/GAMMA_LUT
3431 * properties.
3432 */
Maarten Lankhorst7ea77282016-06-07 12:49:30 +02003433int drm_atomic_helper_legacy_gamma_set(struct drm_crtc *crtc,
3434 u16 *red, u16 *green, u16 *blue,
3435 uint32_t size)
Lionel Landwerlin5488dc12016-02-26 17:05:00 +00003436{
3437 struct drm_device *dev = crtc->dev;
3438 struct drm_mode_config *config = &dev->mode_config;
3439 struct drm_atomic_state *state;
3440 struct drm_crtc_state *crtc_state;
3441 struct drm_property_blob *blob = NULL;
3442 struct drm_color_lut *blob_data;
3443 int i, ret = 0;
3444
3445 state = drm_atomic_state_alloc(crtc->dev);
3446 if (!state)
Maarten Lankhorst7ea77282016-06-07 12:49:30 +02003447 return -ENOMEM;
Lionel Landwerlin5488dc12016-02-26 17:05:00 +00003448
3449 blob = drm_property_create_blob(dev,
3450 sizeof(struct drm_color_lut) * size,
3451 NULL);
Lionel Landwerlin562c5b42016-03-10 12:04:21 +00003452 if (IS_ERR(blob)) {
3453 ret = PTR_ERR(blob);
Lionel Landwerlinc1f415c2016-03-11 12:17:26 +00003454 blob = NULL;
Lionel Landwerlin5488dc12016-02-26 17:05:00 +00003455 goto fail;
3456 }
3457
3458 /* Prepare GAMMA_LUT with the legacy values. */
3459 blob_data = (struct drm_color_lut *) blob->data;
3460 for (i = 0; i < size; i++) {
3461 blob_data[i].red = red[i];
3462 blob_data[i].green = green[i];
3463 blob_data[i].blue = blue[i];
3464 }
3465
3466 state->acquire_ctx = crtc->dev->mode_config.acquire_ctx;
3467retry:
3468 crtc_state = drm_atomic_get_crtc_state(state, crtc);
3469 if (IS_ERR(crtc_state)) {
3470 ret = PTR_ERR(crtc_state);
3471 goto fail;
3472 }
3473
3474 /* Reset DEGAMMA_LUT and CTM properties. */
3475 ret = drm_atomic_crtc_set_property(crtc, crtc_state,
3476 config->degamma_lut_property, 0);
3477 if (ret)
3478 goto fail;
3479
3480 ret = drm_atomic_crtc_set_property(crtc, crtc_state,
3481 config->ctm_property, 0);
3482 if (ret)
3483 goto fail;
3484
3485 ret = drm_atomic_crtc_set_property(crtc, crtc_state,
3486 config->gamma_lut_property, blob->base.id);
3487 if (ret)
3488 goto fail;
3489
3490 ret = drm_atomic_commit(state);
Lionel Landwerlin5488dc12016-02-26 17:05:00 +00003491fail:
3492 if (ret == -EDEADLK)
3493 goto backoff;
3494
Chris Wilson08536952016-10-14 13:18:18 +01003495 drm_atomic_state_put(state);
Lionel Landwerlin5488dc12016-02-26 17:05:00 +00003496 drm_property_unreference_blob(blob);
Maarten Lankhorst7ea77282016-06-07 12:49:30 +02003497 return ret;
Chris Wilson08536952016-10-14 13:18:18 +01003498
Lionel Landwerlin5488dc12016-02-26 17:05:00 +00003499backoff:
3500 drm_atomic_state_clear(state);
3501 drm_atomic_legacy_backoff(state);
3502
3503 goto retry;
3504}
3505EXPORT_SYMBOL(drm_atomic_helper_legacy_gamma_set);