blob: 03ac27bafba79f4d4976095891cd80d9234e767b [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);
1235 if (ret)
1236 return ret;
1237 }
1238
Daniel Vetter623369e2014-09-16 17:50:47 +02001239 /*
1240 * This is the point of no return - everything below never fails except
1241 * when the hw goes bonghits. Which means we can commit the new state on
1242 * the software side now.
1243 */
1244
Daniel Vetter5e84c262016-06-10 00:06:32 +02001245 drm_atomic_helper_swap_state(state, true);
Daniel Vetter623369e2014-09-16 17:50:47 +02001246
1247 /*
1248 * Everything below can be run asynchronously without the need to grab
John Hunterf98bd3e2015-03-17 15:30:26 +08001249 * any modeset locks at all under one condition: It must be guaranteed
Daniel Vetter623369e2014-09-16 17:50:47 +02001250 * that the asynchronous work has either been cancelled (if the driver
1251 * supports it, which at least requires that the framebuffers get
1252 * cleaned up with drm_atomic_helper_cleanup_planes()) or completed
1253 * before the new state gets committed on the software side with
1254 * drm_atomic_helper_swap_state().
1255 *
1256 * This scheme allows new atomic state updates to be prepared and
1257 * checked in parallel to the asynchronous completion of the previous
1258 * update. Which is important since compositors need to figure out the
1259 * composition of the next frame right after having submitted the
1260 * current layout.
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001261 *
1262 * NOTE: Commit work has multiple phases, first hardware commit, then
1263 * cleanup. We want them to overlap, hence need system_unbound_wq to
1264 * make sure work items don't artifically stall on each another.
Daniel Vetter623369e2014-09-16 17:50:47 +02001265 */
1266
Chris Wilson08536952016-10-14 13:18:18 +01001267 drm_atomic_state_get(state);
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001268 if (nonblock)
1269 queue_work(system_unbound_wq, &state->commit_work);
1270 else
1271 commit_tail(state);
Daniel Vetter623369e2014-09-16 17:50:47 +02001272
1273 return 0;
1274}
1275EXPORT_SYMBOL(drm_atomic_helper_commit);
1276
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001277/**
Maarten Lankhorst286dbb82016-04-26 16:11:34 +02001278 * DOC: implementing nonblocking commit
Daniel Vettere8c833a2014-07-27 18:30:19 +02001279 *
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001280 * Nonblocking atomic commits have to be implemented in the following sequence:
Daniel Vettere8c833a2014-07-27 18:30:19 +02001281 *
1282 * 1. Run drm_atomic_helper_prepare_planes() first. This is the only function
1283 * which commit needs to call which can fail, so we want to run it first and
1284 * synchronously.
1285 *
Maarten Lankhorst286dbb82016-04-26 16:11:34 +02001286 * 2. Synchronize with any outstanding nonblocking commit worker threads which
Daniel Vettere8c833a2014-07-27 18:30:19 +02001287 * might be affected the new state update. This can be done by either cancelling
1288 * or flushing the work items, depending upon whether the driver can deal with
1289 * cancelled updates. Note that it is important to ensure that the framebuffer
1290 * cleanup is still done when cancelling.
1291 *
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001292 * Asynchronous workers need to have sufficient parallelism to be able to run
1293 * different atomic commits on different CRTCs in parallel. The simplest way to
1294 * achive this is by running them on the &system_unbound_wq work queue. Note
1295 * that drivers are not required to split up atomic commits and run an
1296 * individual commit in parallel - userspace is supposed to do that if it cares.
1297 * But it might be beneficial to do that for modesets, since those necessarily
1298 * must be done as one global operation, and enabling or disabling a CRTC can
1299 * take a long time. But even that is not required.
Daniel Vettere8c833a2014-07-27 18:30:19 +02001300 *
1301 * 3. The software state is updated synchronously with
Daniel Vetter26196f72015-08-25 16:26:03 +02001302 * drm_atomic_helper_swap_state(). Doing this under the protection of all modeset
Daniel Vettere8c833a2014-07-27 18:30:19 +02001303 * locks means concurrent callers never see inconsistent state. And doing this
Maarten Lankhorst286dbb82016-04-26 16:11:34 +02001304 * while it's guaranteed that no relevant nonblocking worker runs means that
1305 * nonblocking workers do not need grab any locks. Actually they must not grab
1306 * locks, for otherwise the work flushing will deadlock.
Daniel Vettere8c833a2014-07-27 18:30:19 +02001307 *
1308 * 4. Schedule a work item to do all subsequent steps, using the split-out
1309 * commit helpers: a) pre-plane commit b) plane commit c) post-plane commit and
1310 * then cleaning up the framebuffers after the old framebuffer is no longer
1311 * being displayed.
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001312 *
1313 * The above scheme is implemented in the atomic helper libraries in
1314 * drm_atomic_helper_commit() using a bunch of helper functions. See
1315 * drm_atomic_helper_setup_commit() for a starting point.
Daniel Vettere8c833a2014-07-27 18:30:19 +02001316 */
1317
Daniel Vettera095caa2016-06-08 17:15:36 +02001318static int stall_checks(struct drm_crtc *crtc, bool nonblock)
1319{
1320 struct drm_crtc_commit *commit, *stall_commit = NULL;
1321 bool completed = true;
1322 int i;
1323 long ret = 0;
1324
1325 spin_lock(&crtc->commit_lock);
1326 i = 0;
1327 list_for_each_entry(commit, &crtc->commit_list, commit_entry) {
1328 if (i == 0) {
1329 completed = try_wait_for_completion(&commit->flip_done);
1330 /* Userspace is not allowed to get ahead of the previous
1331 * commit with nonblocking ones. */
1332 if (!completed && nonblock) {
1333 spin_unlock(&crtc->commit_lock);
1334 return -EBUSY;
1335 }
1336 } else if (i == 1) {
1337 stall_commit = commit;
1338 drm_crtc_commit_get(stall_commit);
Daniel Vettera095caa2016-06-08 17:15:36 +02001339 break;
Daniel Vetter723c3e52016-06-14 19:50:58 +02001340 }
Daniel Vettera095caa2016-06-08 17:15:36 +02001341
1342 i++;
1343 }
1344 spin_unlock(&crtc->commit_lock);
1345
1346 if (!stall_commit)
1347 return 0;
1348
1349 /* We don't want to let commits get ahead of cleanup work too much,
1350 * stalling on 2nd previous commit means triple-buffer won't ever stall.
1351 */
Daniel Vetter723c3e52016-06-14 19:50:58 +02001352 ret = wait_for_completion_interruptible_timeout(&stall_commit->cleanup_done,
Daniel Vettera095caa2016-06-08 17:15:36 +02001353 10*HZ);
1354 if (ret == 0)
1355 DRM_ERROR("[CRTC:%d:%s] cleanup_done timed out\n",
1356 crtc->base.id, crtc->name);
1357
1358 drm_crtc_commit_put(stall_commit);
1359
1360 return ret < 0 ? ret : 0;
1361}
1362
Wei Yongjun899cc5f2017-01-12 14:21:57 +00001363static void release_crtc_commit(struct completion *completion)
Daniel Vetter24835e42016-12-21 11:23:30 +01001364{
1365 struct drm_crtc_commit *commit = container_of(completion,
1366 typeof(*commit),
1367 flip_done);
1368
1369 drm_crtc_commit_put(commit);
1370}
1371
Daniel Vettera095caa2016-06-08 17:15:36 +02001372/**
1373 * drm_atomic_helper_setup_commit - setup possibly nonblocking commit
1374 * @state: new modeset state to be committed
1375 * @nonblock: whether nonblocking behavior is requested.
1376 *
1377 * This function prepares @state to be used by the atomic helper's support for
1378 * nonblocking commits. Drivers using the nonblocking commit infrastructure
Daniel Vetter6806cdf2017-01-25 07:26:43 +01001379 * should always call this function from their
1380 * &drm_mode_config_funcs.atomic_commit hook.
Daniel Vettera095caa2016-06-08 17:15:36 +02001381 *
1382 * To be able to use this support drivers need to use a few more helper
1383 * functions. drm_atomic_helper_wait_for_dependencies() must be called before
1384 * actually committing the hardware state, and for nonblocking commits this call
1385 * must be placed in the async worker. See also drm_atomic_helper_swap_state()
1386 * and it's stall parameter, for when a driver's commit hooks look at the
Daniel Vetter6806cdf2017-01-25 07:26:43 +01001387 * &drm_crtc.state, &drm_plane.state or &drm_connector.state pointer directly.
Daniel Vettera095caa2016-06-08 17:15:36 +02001388 *
1389 * Completion of the hardware commit step must be signalled using
1390 * drm_atomic_helper_commit_hw_done(). After this step the driver is not allowed
1391 * to read or change any permanent software or hardware modeset state. The only
1392 * exception is state protected by other means than &drm_modeset_lock locks.
1393 * Only the free standing @state with pointers to the old state structures can
1394 * be inspected, e.g. to clean up old buffers using
1395 * drm_atomic_helper_cleanup_planes().
1396 *
1397 * At the very end, before cleaning up @state drivers must call
1398 * drm_atomic_helper_commit_cleanup_done().
1399 *
1400 * This is all implemented by in drm_atomic_helper_commit(), giving drivers a
1401 * complete and esay-to-use default implementation of the atomic_commit() hook.
1402 *
1403 * The tracking of asynchronously executed and still pending commits is done
1404 * using the core structure &drm_crtc_commit.
1405 *
1406 * By default there's no need to clean up resources allocated by this function
1407 * explicitly: drm_atomic_state_default_clear() will take care of that
1408 * automatically.
1409 *
1410 * Returns:
1411 *
1412 * 0 on success. -EBUSY when userspace schedules nonblocking commits too fast,
1413 * -ENOMEM on allocation failures and -EINTR when a signal is pending.
1414 */
1415int drm_atomic_helper_setup_commit(struct drm_atomic_state *state,
1416 bool nonblock)
1417{
1418 struct drm_crtc *crtc;
1419 struct drm_crtc_state *crtc_state;
1420 struct drm_crtc_commit *commit;
1421 int i, ret;
1422
1423 for_each_crtc_in_state(state, crtc, crtc_state, i) {
1424 commit = kzalloc(sizeof(*commit), GFP_KERNEL);
1425 if (!commit)
1426 return -ENOMEM;
1427
1428 init_completion(&commit->flip_done);
1429 init_completion(&commit->hw_done);
1430 init_completion(&commit->cleanup_done);
1431 INIT_LIST_HEAD(&commit->commit_entry);
1432 kref_init(&commit->ref);
1433 commit->crtc = crtc;
1434
1435 state->crtcs[i].commit = commit;
1436
1437 ret = stall_checks(crtc, nonblock);
1438 if (ret)
1439 return ret;
1440
1441 /* Drivers only send out events when at least either current or
1442 * new CRTC state is active. Complete right away if everything
1443 * stays off. */
1444 if (!crtc->state->active && !crtc_state->active) {
1445 complete_all(&commit->flip_done);
1446 continue;
1447 }
1448
1449 /* Legacy cursor updates are fully unsynced. */
1450 if (state->legacy_cursor_update) {
1451 complete_all(&commit->flip_done);
1452 continue;
1453 }
1454
1455 if (!crtc_state->event) {
1456 commit->event = kzalloc(sizeof(*commit->event),
1457 GFP_KERNEL);
1458 if (!commit->event)
1459 return -ENOMEM;
1460
1461 crtc_state->event = commit->event;
1462 }
1463
1464 crtc_state->event->base.completion = &commit->flip_done;
Daniel Vetter24835e42016-12-21 11:23:30 +01001465 crtc_state->event->base.completion_release = release_crtc_commit;
1466 drm_crtc_commit_get(commit);
Daniel Vettera095caa2016-06-08 17:15:36 +02001467 }
1468
1469 return 0;
1470}
1471EXPORT_SYMBOL(drm_atomic_helper_setup_commit);
1472
1473
1474static struct drm_crtc_commit *preceeding_commit(struct drm_crtc *crtc)
1475{
1476 struct drm_crtc_commit *commit;
1477 int i = 0;
1478
1479 list_for_each_entry(commit, &crtc->commit_list, commit_entry) {
1480 /* skip the first entry, that's the current commit */
1481 if (i == 1)
1482 return commit;
1483 i++;
1484 }
1485
1486 return NULL;
1487}
1488
1489/**
1490 * drm_atomic_helper_wait_for_dependencies - wait for required preceeding commits
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001491 * @old_state: atomic state object with old state structures
Daniel Vettera095caa2016-06-08 17:15:36 +02001492 *
1493 * This function waits for all preceeding commits that touch the same CRTC as
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001494 * @old_state to both be committed to the hardware (as signalled by
Daniel Vettera095caa2016-06-08 17:15:36 +02001495 * drm_atomic_helper_commit_hw_done) and executed by the hardware (as signalled
Daniel Vetter6806cdf2017-01-25 07:26:43 +01001496 * by calling drm_crtc_vblank_send_event() on the &drm_crtc_state.event).
Daniel Vettera095caa2016-06-08 17:15:36 +02001497 *
1498 * This is part of the atomic helper support for nonblocking commits, see
1499 * drm_atomic_helper_setup_commit() for an overview.
1500 */
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001501void drm_atomic_helper_wait_for_dependencies(struct drm_atomic_state *old_state)
Daniel Vettera095caa2016-06-08 17:15:36 +02001502{
1503 struct drm_crtc *crtc;
1504 struct drm_crtc_state *crtc_state;
1505 struct drm_crtc_commit *commit;
1506 int i;
1507 long ret;
1508
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001509 for_each_crtc_in_state(old_state, crtc, crtc_state, i) {
Daniel Vettera095caa2016-06-08 17:15:36 +02001510 spin_lock(&crtc->commit_lock);
1511 commit = preceeding_commit(crtc);
1512 if (commit)
1513 drm_crtc_commit_get(commit);
1514 spin_unlock(&crtc->commit_lock);
1515
1516 if (!commit)
1517 continue;
1518
1519 ret = wait_for_completion_timeout(&commit->hw_done,
1520 10*HZ);
1521 if (ret == 0)
1522 DRM_ERROR("[CRTC:%d:%s] hw_done timed out\n",
1523 crtc->base.id, crtc->name);
1524
1525 /* Currently no support for overwriting flips, hence
1526 * stall for previous one to execute completely. */
1527 ret = wait_for_completion_timeout(&commit->flip_done,
1528 10*HZ);
1529 if (ret == 0)
1530 DRM_ERROR("[CRTC:%d:%s] flip_done timed out\n",
1531 crtc->base.id, crtc->name);
1532
1533 drm_crtc_commit_put(commit);
1534 }
1535}
1536EXPORT_SYMBOL(drm_atomic_helper_wait_for_dependencies);
1537
1538/**
1539 * drm_atomic_helper_commit_hw_done - setup possible nonblocking commit
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001540 * @old_state: atomic state object with old state structures
Daniel Vettera095caa2016-06-08 17:15:36 +02001541 *
1542 * This function is used to signal completion of the hardware commit step. After
1543 * this step the driver is not allowed to read or change any permanent software
1544 * or hardware modeset state. The only exception is state protected by other
1545 * means than &drm_modeset_lock locks.
1546 *
1547 * Drivers should try to postpone any expensive or delayed cleanup work after
1548 * this function is called.
1549 *
1550 * This is part of the atomic helper support for nonblocking commits, see
1551 * drm_atomic_helper_setup_commit() for an overview.
1552 */
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001553void drm_atomic_helper_commit_hw_done(struct drm_atomic_state *old_state)
Daniel Vettera095caa2016-06-08 17:15:36 +02001554{
1555 struct drm_crtc *crtc;
1556 struct drm_crtc_state *crtc_state;
1557 struct drm_crtc_commit *commit;
1558 int i;
1559
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001560 for_each_crtc_in_state(old_state, crtc, crtc_state, i) {
1561 commit = old_state->crtcs[i].commit;
Daniel Vettera095caa2016-06-08 17:15:36 +02001562 if (!commit)
1563 continue;
1564
1565 /* backend must have consumed any event by now */
1566 WARN_ON(crtc->state->event);
1567 spin_lock(&crtc->commit_lock);
1568 complete_all(&commit->hw_done);
1569 spin_unlock(&crtc->commit_lock);
1570 }
1571}
1572EXPORT_SYMBOL(drm_atomic_helper_commit_hw_done);
1573
1574/**
1575 * drm_atomic_helper_commit_cleanup_done - signal completion of commit
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001576 * @old_state: atomic state object with old state structures
Daniel Vettera095caa2016-06-08 17:15:36 +02001577 *
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001578 * This signals completion of the atomic update @old_state, including any
1579 * cleanup work. If used, it must be called right before calling
Chris Wilson08536952016-10-14 13:18:18 +01001580 * drm_atomic_state_put().
Daniel Vettera095caa2016-06-08 17:15:36 +02001581 *
1582 * This is part of the atomic helper support for nonblocking commits, see
1583 * drm_atomic_helper_setup_commit() for an overview.
1584 */
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001585void drm_atomic_helper_commit_cleanup_done(struct drm_atomic_state *old_state)
Daniel Vettera095caa2016-06-08 17:15:36 +02001586{
1587 struct drm_crtc *crtc;
1588 struct drm_crtc_state *crtc_state;
1589 struct drm_crtc_commit *commit;
1590 int i;
1591 long ret;
1592
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001593 for_each_crtc_in_state(old_state, crtc, crtc_state, i) {
1594 commit = old_state->crtcs[i].commit;
Daniel Vettera095caa2016-06-08 17:15:36 +02001595 if (WARN_ON(!commit))
1596 continue;
1597
1598 spin_lock(&crtc->commit_lock);
1599 complete_all(&commit->cleanup_done);
1600 WARN_ON(!try_wait_for_completion(&commit->hw_done));
1601
1602 /* commit_list borrows our reference, need to remove before we
1603 * clean up our drm_atomic_state. But only after it actually
1604 * completed, otherwise subsequent commits won't stall properly. */
Daniel Vetter7deef7f12016-06-15 12:24:26 +02001605 if (try_wait_for_completion(&commit->flip_done))
1606 goto del_commit;
Daniel Vettera095caa2016-06-08 17:15:36 +02001607
1608 spin_unlock(&crtc->commit_lock);
1609
1610 /* We must wait for the vblank event to signal our completion
1611 * before releasing our reference, since the vblank work does
1612 * not hold a reference of its own. */
1613 ret = wait_for_completion_timeout(&commit->flip_done,
1614 10*HZ);
1615 if (ret == 0)
1616 DRM_ERROR("[CRTC:%d:%s] flip_done timed out\n",
1617 crtc->base.id, crtc->name);
1618
1619 spin_lock(&crtc->commit_lock);
Daniel Vetter7deef7f12016-06-15 12:24:26 +02001620del_commit:
Daniel Vettera095caa2016-06-08 17:15:36 +02001621 list_del(&commit->commit_entry);
1622 spin_unlock(&crtc->commit_lock);
1623 }
1624}
1625EXPORT_SYMBOL(drm_atomic_helper_commit_cleanup_done);
1626
Daniel Vettere8c833a2014-07-27 18:30:19 +02001627/**
Daniel Vetter2e3afd42015-02-26 14:17:38 +01001628 * drm_atomic_helper_prepare_planes - prepare plane resources before commit
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001629 * @dev: DRM device
Daniel Vetter2e3afd42015-02-26 14:17:38 +01001630 * @state: atomic state object with new state structures
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001631 *
1632 * This function prepares plane state, specifically framebuffers, for the new
Daniel Vetter6806cdf2017-01-25 07:26:43 +01001633 * configuration, by calling &drm_plane_helper_funcs.prepare_fb. If any failure
1634 * is encountered this function will call &drm_plane_helper_funcs.cleanup_fb on
1635 * any already successfully prepared framebuffer.
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001636 *
1637 * Returns:
1638 * 0 on success, negative error code on failure.
1639 */
1640int drm_atomic_helper_prepare_planes(struct drm_device *dev,
1641 struct drm_atomic_state *state)
1642{
Daniel Vetterbe9174a2016-06-02 00:06:24 +02001643 struct drm_plane *plane;
1644 struct drm_plane_state *plane_state;
1645 int ret, i, j;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001646
Daniel Vetterbe9174a2016-06-02 00:06:24 +02001647 for_each_plane_in_state(state, plane, plane_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +02001648 const struct drm_plane_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001649
1650 funcs = plane->helper_private;
1651
Maarten Lankhorst844f9112015-09-02 10:42:40 +02001652 if (funcs->prepare_fb) {
1653 ret = funcs->prepare_fb(plane, plane_state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001654 if (ret)
1655 goto fail;
1656 }
1657 }
1658
1659 return 0;
1660
1661fail:
Daniel Vetterbe9174a2016-06-02 00:06:24 +02001662 for_each_plane_in_state(state, plane, plane_state, j) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +02001663 const struct drm_plane_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001664
Daniel Vetterbe9174a2016-06-02 00:06:24 +02001665 if (j >= i)
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001666 continue;
1667
1668 funcs = plane->helper_private;
1669
Maarten Lankhorst844f9112015-09-02 10:42:40 +02001670 if (funcs->cleanup_fb)
1671 funcs->cleanup_fb(plane, plane_state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001672 }
1673
1674 return ret;
1675}
1676EXPORT_SYMBOL(drm_atomic_helper_prepare_planes);
1677
Ville Syrjälä7135ac52016-09-19 16:33:42 +03001678static bool plane_crtc_active(const struct drm_plane_state *state)
Daniel Vetteraef9dbb2015-09-08 12:02:07 +02001679{
1680 return state->crtc && state->crtc->state->active;
1681}
1682
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001683/**
1684 * drm_atomic_helper_commit_planes - commit plane state
1685 * @dev: DRM device
Daniel Vetterb0fcfc82014-11-19 18:38:11 +01001686 * @old_state: atomic state object with old state structures
Liu Ying2b58e982016-08-29 17:12:03 +08001687 * @flags: flags for committing plane state
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001688 *
1689 * This function commits the new plane state using the plane and atomic helper
1690 * functions for planes and crtcs. It assumes that the atomic state has already
1691 * been pushed into the relevant object state pointers, since this step can no
1692 * longer fail.
1693 *
Daniel Vetterb0fcfc82014-11-19 18:38:11 +01001694 * It still requires the global state object @old_state to know which planes and
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001695 * crtcs need to be updated though.
Maarten Lankhorstde28d022015-05-19 16:41:01 +02001696 *
1697 * Note that this function does all plane updates across all CRTCs in one step.
1698 * If the hardware can't support this approach look at
1699 * drm_atomic_helper_commit_planes_on_crtc() instead.
Daniel Vetter6e48ae32015-09-08 13:52:45 +02001700 *
1701 * Plane parameters can be updated by applications while the associated CRTC is
1702 * disabled. The DRM/KMS core will store the parameters in the plane state,
1703 * which will be available to the driver when the CRTC is turned on. As a result
1704 * most drivers don't need to be immediately notified of plane updates for a
1705 * disabled CRTC.
1706 *
Liu Ying2b58e982016-08-29 17:12:03 +08001707 * Unless otherwise needed, drivers are advised to set the ACTIVE_ONLY flag in
1708 * @flags in order not to receive plane update notifications related to a
1709 * disabled CRTC. This avoids the need to manually ignore plane updates in
Daniel Vetter6e48ae32015-09-08 13:52:45 +02001710 * driver code when the driver and/or hardware can't or just don't need to deal
1711 * with updates on disabled CRTCs, for example when supporting runtime PM.
1712 *
Liu Ying2b58e982016-08-29 17:12:03 +08001713 * Drivers may set the NO_DISABLE_AFTER_MODESET flag in @flags if the relevant
1714 * display controllers require to disable a CRTC's planes when the CRTC is
Daniel Vetter6806cdf2017-01-25 07:26:43 +01001715 * disabled. This function would skip the &drm_plane_helper_funcs.atomic_disable
1716 * call for a plane if the CRTC of the old plane state needs a modesetting
1717 * operation. Of course, the drivers need to disable the planes in their CRTC
1718 * disable callbacks since no one else would do that.
Liu Ying2b58e982016-08-29 17:12:03 +08001719 *
1720 * The drm_atomic_helper_commit() default implementation doesn't set the
1721 * ACTIVE_ONLY flag to most closely match the behaviour of the legacy helpers.
1722 * This should not be copied blindly by drivers.
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001723 */
1724void drm_atomic_helper_commit_planes(struct drm_device *dev,
Daniel Vetteraef9dbb2015-09-08 12:02:07 +02001725 struct drm_atomic_state *old_state,
Liu Ying2b58e982016-08-29 17:12:03 +08001726 uint32_t flags)
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001727{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001728 struct drm_crtc *crtc;
1729 struct drm_crtc_state *old_crtc_state;
1730 struct drm_plane *plane;
1731 struct drm_plane_state *old_plane_state;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001732 int i;
Liu Ying2b58e982016-08-29 17:12:03 +08001733 bool active_only = flags & DRM_PLANE_COMMIT_ACTIVE_ONLY;
1734 bool no_disable = flags & DRM_PLANE_COMMIT_NO_DISABLE_AFTER_MODESET;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001735
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001736 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +02001737 const struct drm_crtc_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001738
1739 funcs = crtc->helper_private;
1740
1741 if (!funcs || !funcs->atomic_begin)
1742 continue;
1743
Daniel Vetteraef9dbb2015-09-08 12:02:07 +02001744 if (active_only && !crtc->state->active)
1745 continue;
1746
Maarten Lankhorst613d2b22015-07-21 13:28:58 +02001747 funcs->atomic_begin(crtc, old_crtc_state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001748 }
1749
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001750 for_each_plane_in_state(old_state, plane, old_plane_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +02001751 const struct drm_plane_helper_funcs *funcs;
Laurent Pinchart216c59d2015-09-11 00:07:19 +03001752 bool disabling;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001753
1754 funcs = plane->helper_private;
1755
Thierry Reding3cad4b62014-11-25 13:05:12 +01001756 if (!funcs)
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001757 continue;
1758
Laurent Pinchart216c59d2015-09-11 00:07:19 +03001759 disabling = drm_atomic_plane_disabling(plane, old_plane_state);
1760
1761 if (active_only) {
1762 /*
1763 * Skip planes related to inactive CRTCs. If the plane
1764 * is enabled use the state of the current CRTC. If the
1765 * plane is being disabled use the state of the old
1766 * CRTC to avoid skipping planes being disabled on an
1767 * active CRTC.
1768 */
1769 if (!disabling && !plane_crtc_active(plane->state))
1770 continue;
1771 if (disabling && !plane_crtc_active(old_plane_state))
1772 continue;
1773 }
Daniel Vetteraef9dbb2015-09-08 12:02:07 +02001774
Thierry Reding407b8bd2014-11-20 12:05:50 +01001775 /*
1776 * Special-case disabling the plane if drivers support it.
1777 */
Liu Ying2b58e982016-08-29 17:12:03 +08001778 if (disabling && funcs->atomic_disable) {
1779 struct drm_crtc_state *crtc_state;
1780
1781 crtc_state = old_plane_state->crtc->state;
1782
1783 if (drm_atomic_crtc_needs_modeset(crtc_state) &&
1784 no_disable)
1785 continue;
1786
Thierry Reding407b8bd2014-11-20 12:05:50 +01001787 funcs->atomic_disable(plane, old_plane_state);
Liu Ying2b58e982016-08-29 17:12:03 +08001788 } else if (plane->state->crtc || disabling) {
Thierry Reding407b8bd2014-11-20 12:05:50 +01001789 funcs->atomic_update(plane, old_plane_state);
Liu Ying2b58e982016-08-29 17:12:03 +08001790 }
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001791 }
1792
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001793 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +02001794 const struct drm_crtc_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001795
1796 funcs = crtc->helper_private;
1797
1798 if (!funcs || !funcs->atomic_flush)
1799 continue;
1800
Daniel Vetteraef9dbb2015-09-08 12:02:07 +02001801 if (active_only && !crtc->state->active)
1802 continue;
1803
Maarten Lankhorst613d2b22015-07-21 13:28:58 +02001804 funcs->atomic_flush(crtc, old_crtc_state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001805 }
1806}
1807EXPORT_SYMBOL(drm_atomic_helper_commit_planes);
1808
1809/**
Maarten Lankhorstde28d022015-05-19 16:41:01 +02001810 * drm_atomic_helper_commit_planes_on_crtc - commit plane state for a crtc
1811 * @old_crtc_state: atomic state object with the old crtc state
1812 *
1813 * This function commits the new plane state using the plane and atomic helper
1814 * functions for planes on the specific crtc. It assumes that the atomic state
1815 * has already been pushed into the relevant object state pointers, since this
1816 * step can no longer fail.
1817 *
1818 * This function is useful when plane updates should be done crtc-by-crtc
1819 * instead of one global step like drm_atomic_helper_commit_planes() does.
1820 *
1821 * This function can only be savely used when planes are not allowed to move
1822 * between different CRTCs because this function doesn't handle inter-CRTC
1823 * depencies. Callers need to ensure that either no such depencies exist,
1824 * resolve them through ordering of commit calls or through some other means.
1825 */
1826void
1827drm_atomic_helper_commit_planes_on_crtc(struct drm_crtc_state *old_crtc_state)
1828{
1829 const struct drm_crtc_helper_funcs *crtc_funcs;
1830 struct drm_crtc *crtc = old_crtc_state->crtc;
1831 struct drm_atomic_state *old_state = old_crtc_state->state;
1832 struct drm_plane *plane;
1833 unsigned plane_mask;
1834
1835 plane_mask = old_crtc_state->plane_mask;
1836 plane_mask |= crtc->state->plane_mask;
1837
1838 crtc_funcs = crtc->helper_private;
1839 if (crtc_funcs && crtc_funcs->atomic_begin)
Maarten Lankhorst613d2b22015-07-21 13:28:58 +02001840 crtc_funcs->atomic_begin(crtc, old_crtc_state);
Maarten Lankhorstde28d022015-05-19 16:41:01 +02001841
1842 drm_for_each_plane_mask(plane, crtc->dev, plane_mask) {
1843 struct drm_plane_state *old_plane_state =
1844 drm_atomic_get_existing_plane_state(old_state, plane);
1845 const struct drm_plane_helper_funcs *plane_funcs;
1846
1847 plane_funcs = plane->helper_private;
1848
1849 if (!old_plane_state || !plane_funcs)
1850 continue;
1851
1852 WARN_ON(plane->state->crtc && plane->state->crtc != crtc);
1853
1854 if (drm_atomic_plane_disabling(plane, old_plane_state) &&
1855 plane_funcs->atomic_disable)
1856 plane_funcs->atomic_disable(plane, old_plane_state);
1857 else if (plane->state->crtc ||
1858 drm_atomic_plane_disabling(plane, old_plane_state))
1859 plane_funcs->atomic_update(plane, old_plane_state);
1860 }
1861
1862 if (crtc_funcs && crtc_funcs->atomic_flush)
Maarten Lankhorst613d2b22015-07-21 13:28:58 +02001863 crtc_funcs->atomic_flush(crtc, old_crtc_state);
Maarten Lankhorstde28d022015-05-19 16:41:01 +02001864}
1865EXPORT_SYMBOL(drm_atomic_helper_commit_planes_on_crtc);
1866
1867/**
Jyri Sarha6753ba92015-11-27 16:14:01 +02001868 * drm_atomic_helper_disable_planes_on_crtc - helper to disable CRTC's planes
Liu Ying28500292016-08-26 15:30:39 +08001869 * @old_crtc_state: atomic state object with the old CRTC state
Jyri Sarha6753ba92015-11-27 16:14:01 +02001870 * @atomic: if set, synchronize with CRTC's atomic_begin/flush hooks
1871 *
1872 * Disables all planes associated with the given CRTC. This can be
Liu Ying28500292016-08-26 15:30:39 +08001873 * used for instance in the CRTC helper atomic_disable callback to disable
1874 * all planes.
Jyri Sarha6753ba92015-11-27 16:14:01 +02001875 *
1876 * If the atomic-parameter is set the function calls the CRTC's
1877 * atomic_begin hook before and atomic_flush hook after disabling the
1878 * planes.
1879 *
1880 * It is a bug to call this function without having implemented the
Daniel Vetter6806cdf2017-01-25 07:26:43 +01001881 * &drm_plane_helper_funcs.atomic_disable plane hook.
Jyri Sarha6753ba92015-11-27 16:14:01 +02001882 */
Liu Ying28500292016-08-26 15:30:39 +08001883void
1884drm_atomic_helper_disable_planes_on_crtc(struct drm_crtc_state *old_crtc_state,
1885 bool atomic)
Jyri Sarha6753ba92015-11-27 16:14:01 +02001886{
Liu Ying28500292016-08-26 15:30:39 +08001887 struct drm_crtc *crtc = old_crtc_state->crtc;
Jyri Sarha6753ba92015-11-27 16:14:01 +02001888 const struct drm_crtc_helper_funcs *crtc_funcs =
1889 crtc->helper_private;
1890 struct drm_plane *plane;
1891
1892 if (atomic && crtc_funcs && crtc_funcs->atomic_begin)
1893 crtc_funcs->atomic_begin(crtc, NULL);
1894
Liu Ying28500292016-08-26 15:30:39 +08001895 drm_atomic_crtc_state_for_each_plane(plane, old_crtc_state) {
Jyri Sarha6753ba92015-11-27 16:14:01 +02001896 const struct drm_plane_helper_funcs *plane_funcs =
1897 plane->helper_private;
1898
Liu Ying28500292016-08-26 15:30:39 +08001899 if (!plane_funcs)
Jyri Sarha6753ba92015-11-27 16:14:01 +02001900 continue;
1901
1902 WARN_ON(!plane_funcs->atomic_disable);
1903 if (plane_funcs->atomic_disable)
1904 plane_funcs->atomic_disable(plane, NULL);
1905 }
1906
1907 if (atomic && crtc_funcs && crtc_funcs->atomic_flush)
1908 crtc_funcs->atomic_flush(crtc, NULL);
1909}
1910EXPORT_SYMBOL(drm_atomic_helper_disable_planes_on_crtc);
1911
1912/**
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001913 * drm_atomic_helper_cleanup_planes - cleanup plane resources after commit
1914 * @dev: DRM device
1915 * @old_state: atomic state object with old state structures
1916 *
1917 * This function cleans up plane state, specifically framebuffers, from the old
1918 * configuration. Hence the old configuration must be perserved in @old_state to
1919 * be able to call this function.
1920 *
1921 * This function must also be called on the new state when the atomic update
1922 * fails at any point after calling drm_atomic_helper_prepare_planes().
1923 */
1924void drm_atomic_helper_cleanup_planes(struct drm_device *dev,
1925 struct drm_atomic_state *old_state)
1926{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001927 struct drm_plane *plane;
1928 struct drm_plane_state *plane_state;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001929 int i;
1930
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001931 for_each_plane_in_state(old_state, plane, plane_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +02001932 const struct drm_plane_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001933
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001934 funcs = plane->helper_private;
1935
Maarten Lankhorst844f9112015-09-02 10:42:40 +02001936 if (funcs->cleanup_fb)
1937 funcs->cleanup_fb(plane, plane_state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001938 }
1939}
1940EXPORT_SYMBOL(drm_atomic_helper_cleanup_planes);
1941
1942/**
1943 * drm_atomic_helper_swap_state - store atomic state into current sw state
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001944 * @state: atomic state
Daniel Vetter5e84c262016-06-10 00:06:32 +02001945 * @stall: stall for proceeding commits
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001946 *
1947 * This function stores the atomic state into the current state pointers in all
1948 * driver objects. It should be called after all failing steps have been done
1949 * and succeeded, but before the actual hardware state is committed.
1950 *
1951 * For cleanup and error recovery the current state for all changed objects will
1952 * be swaped into @state.
1953 *
1954 * With that sequence it fits perfectly into the plane prepare/cleanup sequence:
1955 *
1956 * 1. Call drm_atomic_helper_prepare_planes() with the staged atomic state.
1957 *
1958 * 2. Do any other steps that might fail.
1959 *
1960 * 3. Put the staged state into the current state pointers with this function.
1961 *
1962 * 4. Actually commit the hardware state.
1963 *
Daniel Vetter26196f72015-08-25 16:26:03 +02001964 * 5. Call drm_atomic_helper_cleanup_planes() with @state, which since step 3
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001965 * contains the old state. Also do any other cleanup required with that state.
Daniel Vettera095caa2016-06-08 17:15:36 +02001966 *
1967 * @stall must be set when nonblocking commits for this driver directly access
Daniel Vetter6806cdf2017-01-25 07:26:43 +01001968 * the &drm_plane.state, &drm_crtc.state or &drm_connector.state pointer. With
1969 * the current atomic helpers this is almost always the case, since the helpers
Daniel Vettera095caa2016-06-08 17:15:36 +02001970 * don't pass the right state structures to the callbacks.
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001971 */
Daniel Vetter5e84c262016-06-10 00:06:32 +02001972void drm_atomic_helper_swap_state(struct drm_atomic_state *state,
1973 bool stall)
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001974{
1975 int i;
Daniel Vettera095caa2016-06-08 17:15:36 +02001976 long ret;
Daniel Vetterbe9174a2016-06-02 00:06:24 +02001977 struct drm_connector *connector;
1978 struct drm_connector_state *conn_state;
1979 struct drm_crtc *crtc;
1980 struct drm_crtc_state *crtc_state;
1981 struct drm_plane *plane;
1982 struct drm_plane_state *plane_state;
Daniel Vettera095caa2016-06-08 17:15:36 +02001983 struct drm_crtc_commit *commit;
1984
1985 if (stall) {
1986 for_each_crtc_in_state(state, crtc, crtc_state, i) {
1987 spin_lock(&crtc->commit_lock);
1988 commit = list_first_entry_or_null(&crtc->commit_list,
1989 struct drm_crtc_commit, commit_entry);
1990 if (commit)
1991 drm_crtc_commit_get(commit);
1992 spin_unlock(&crtc->commit_lock);
1993
1994 if (!commit)
1995 continue;
1996
1997 ret = wait_for_completion_timeout(&commit->hw_done,
1998 10*HZ);
1999 if (ret == 0)
2000 DRM_ERROR("[CRTC:%d:%s] hw_done timed out\n",
2001 crtc->base.id, crtc->name);
2002 drm_crtc_commit_put(commit);
2003 }
2004 }
Daniel Vetterc2fcd272014-11-05 00:14:14 +01002005
Daniel Vetterbe9174a2016-06-02 00:06:24 +02002006 for_each_connector_in_state(state, connector, conn_state, i) {
Daniel Vetterc2fcd272014-11-05 00:14:14 +01002007 connector->state->state = state;
Daniel Vetter63e83c12016-06-02 00:06:32 +02002008 swap(state->connectors[i].state, connector->state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +01002009 connector->state->state = NULL;
2010 }
2011
Daniel Vetterbe9174a2016-06-02 00:06:24 +02002012 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Daniel Vetterc2fcd272014-11-05 00:14:14 +01002013 crtc->state->state = state;
Daniel Vetter5d943aa62016-06-02 00:06:34 +02002014 swap(state->crtcs[i].state, crtc->state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +01002015 crtc->state->state = NULL;
Daniel Vettera095caa2016-06-08 17:15:36 +02002016
2017 if (state->crtcs[i].commit) {
2018 spin_lock(&crtc->commit_lock);
2019 list_add(&state->crtcs[i].commit->commit_entry,
2020 &crtc->commit_list);
2021 spin_unlock(&crtc->commit_lock);
2022
2023 state->crtcs[i].commit->event = NULL;
2024 }
Daniel Vetterc2fcd272014-11-05 00:14:14 +01002025 }
2026
Daniel Vetterbe9174a2016-06-02 00:06:24 +02002027 for_each_plane_in_state(state, plane, plane_state, i) {
Daniel Vetterc2fcd272014-11-05 00:14:14 +01002028 plane->state->state = state;
Daniel Vetterb8b53422016-06-02 00:06:33 +02002029 swap(state->planes[i].state, plane->state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +01002030 plane->state->state = NULL;
2031 }
2032}
2033EXPORT_SYMBOL(drm_atomic_helper_swap_state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002034
2035/**
2036 * drm_atomic_helper_update_plane - Helper for primary plane update using atomic
2037 * @plane: plane object to update
2038 * @crtc: owning CRTC of owning plane
2039 * @fb: framebuffer to flip onto plane
2040 * @crtc_x: x offset of primary plane on crtc
2041 * @crtc_y: y offset of primary plane on crtc
2042 * @crtc_w: width of primary plane rectangle on crtc
2043 * @crtc_h: height of primary plane rectangle on crtc
2044 * @src_x: x offset of @fb for panning
2045 * @src_y: y offset of @fb for panning
2046 * @src_w: width of source rectangle in @fb
2047 * @src_h: height of source rectangle in @fb
2048 *
2049 * Provides a default plane update handler using the atomic driver interface.
2050 *
2051 * RETURNS:
2052 * Zero on success, error code on failure
2053 */
2054int drm_atomic_helper_update_plane(struct drm_plane *plane,
2055 struct drm_crtc *crtc,
2056 struct drm_framebuffer *fb,
2057 int crtc_x, int crtc_y,
2058 unsigned int crtc_w, unsigned int crtc_h,
2059 uint32_t src_x, uint32_t src_y,
2060 uint32_t src_w, uint32_t src_h)
2061{
2062 struct drm_atomic_state *state;
2063 struct drm_plane_state *plane_state;
2064 int ret = 0;
2065
2066 state = drm_atomic_state_alloc(plane->dev);
2067 if (!state)
2068 return -ENOMEM;
2069
2070 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
2071retry:
2072 plane_state = drm_atomic_get_plane_state(state, plane);
2073 if (IS_ERR(plane_state)) {
2074 ret = PTR_ERR(plane_state);
2075 goto fail;
2076 }
2077
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01002078 ret = drm_atomic_set_crtc_for_plane(plane_state, crtc);
Daniel Vetter042652e2014-07-27 13:46:52 +02002079 if (ret != 0)
2080 goto fail;
Daniel Vetter321ebf02014-11-04 22:57:27 +01002081 drm_atomic_set_fb_for_plane(plane_state, fb);
Daniel Vetter042652e2014-07-27 13:46:52 +02002082 plane_state->crtc_x = crtc_x;
2083 plane_state->crtc_y = crtc_y;
Daniel Vetter042652e2014-07-27 13:46:52 +02002084 plane_state->crtc_w = crtc_w;
Ville Syrjälä02e6f372015-11-16 17:02:35 +02002085 plane_state->crtc_h = crtc_h;
Daniel Vetter042652e2014-07-27 13:46:52 +02002086 plane_state->src_x = src_x;
2087 plane_state->src_y = src_y;
Daniel Vetter042652e2014-07-27 13:46:52 +02002088 plane_state->src_w = src_w;
Ville Syrjälä02e6f372015-11-16 17:02:35 +02002089 plane_state->src_h = src_h;
Daniel Vetter042652e2014-07-27 13:46:52 +02002090
Daniel Vetter3671c582015-05-04 15:40:52 +02002091 if (plane == crtc->cursor)
2092 state->legacy_cursor_update = true;
2093
Daniel Vetter042652e2014-07-27 13:46:52 +02002094 ret = drm_atomic_commit(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002095fail:
2096 if (ret == -EDEADLK)
2097 goto backoff;
2098
Chris Wilson08536952016-10-14 13:18:18 +01002099 drm_atomic_state_put(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002100 return ret;
Chris Wilson08536952016-10-14 13:18:18 +01002101
Daniel Vetter042652e2014-07-27 13:46:52 +02002102backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02002103 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01002104 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002105
2106 /*
2107 * Someone might have exchanged the framebuffer while we dropped locks
2108 * in the backoff code. We need to fix up the fb refcount tracking the
2109 * core does for us.
2110 */
2111 plane->old_fb = plane->fb;
2112
2113 goto retry;
2114}
2115EXPORT_SYMBOL(drm_atomic_helper_update_plane);
2116
2117/**
2118 * drm_atomic_helper_disable_plane - Helper for primary plane disable using * atomic
2119 * @plane: plane to disable
2120 *
2121 * Provides a default plane disable handler using the atomic driver interface.
2122 *
2123 * RETURNS:
2124 * Zero on success, error code on failure
2125 */
2126int drm_atomic_helper_disable_plane(struct drm_plane *plane)
2127{
2128 struct drm_atomic_state *state;
2129 struct drm_plane_state *plane_state;
2130 int ret = 0;
2131
Jasper St. Pierreaa54e2e2014-11-20 19:59:15 -08002132 /*
2133 * FIXME: Without plane->crtc set we can't get at the implicit legacy
2134 * acquire context. The real fix will be to wire the acquire ctx through
2135 * everywhere we need it, but meanwhile prevent chaos by just skipping
2136 * this noop. The critical case is the cursor ioctls which a) only grab
2137 * crtc/cursor-plane locks (so we need the crtc to get at the right
2138 * acquire context) and b) can try to disable the plane multiple times.
2139 */
2140 if (!plane->crtc)
2141 return 0;
2142
Daniel Vetter042652e2014-07-27 13:46:52 +02002143 state = drm_atomic_state_alloc(plane->dev);
2144 if (!state)
2145 return -ENOMEM;
2146
2147 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(plane->crtc);
2148retry:
2149 plane_state = drm_atomic_get_plane_state(state, plane);
2150 if (IS_ERR(plane_state)) {
2151 ret = PTR_ERR(plane_state);
2152 goto fail;
2153 }
2154
Maarten Lankhorst24e79d02015-11-11 11:29:07 +01002155 if (plane_state->crtc && (plane == plane->crtc->cursor))
2156 plane_state->state->legacy_cursor_update = true;
2157
Rob Clarkbbb1e522015-08-25 15:35:58 -04002158 ret = __drm_atomic_helper_disable_plane(plane, plane_state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002159 if (ret != 0)
2160 goto fail;
Daniel Vetterf02ad902015-01-22 16:36:23 +01002161
Daniel Vetter042652e2014-07-27 13:46:52 +02002162 ret = drm_atomic_commit(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002163fail:
2164 if (ret == -EDEADLK)
2165 goto backoff;
2166
Chris Wilson08536952016-10-14 13:18:18 +01002167 drm_atomic_state_put(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002168 return ret;
Chris Wilson08536952016-10-14 13:18:18 +01002169
Daniel Vetter042652e2014-07-27 13:46:52 +02002170backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02002171 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01002172 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002173
2174 /*
2175 * Someone might have exchanged the framebuffer while we dropped locks
2176 * in the backoff code. We need to fix up the fb refcount tracking the
2177 * core does for us.
2178 */
2179 plane->old_fb = plane->fb;
2180
2181 goto retry;
2182}
2183EXPORT_SYMBOL(drm_atomic_helper_disable_plane);
2184
Rob Clarkbbb1e522015-08-25 15:35:58 -04002185/* just used from fb-helper and atomic-helper: */
2186int __drm_atomic_helper_disable_plane(struct drm_plane *plane,
2187 struct drm_plane_state *plane_state)
2188{
2189 int ret;
2190
2191 ret = drm_atomic_set_crtc_for_plane(plane_state, NULL);
2192 if (ret != 0)
2193 return ret;
2194
2195 drm_atomic_set_fb_for_plane(plane_state, NULL);
2196 plane_state->crtc_x = 0;
2197 plane_state->crtc_y = 0;
Rob Clarkbbb1e522015-08-25 15:35:58 -04002198 plane_state->crtc_w = 0;
Ville Syrjälä02e6f372015-11-16 17:02:35 +02002199 plane_state->crtc_h = 0;
Rob Clarkbbb1e522015-08-25 15:35:58 -04002200 plane_state->src_x = 0;
2201 plane_state->src_y = 0;
Rob Clarkbbb1e522015-08-25 15:35:58 -04002202 plane_state->src_w = 0;
Ville Syrjälä02e6f372015-11-16 17:02:35 +02002203 plane_state->src_h = 0;
Rob Clarkbbb1e522015-08-25 15:35:58 -04002204
Rob Clarkbbb1e522015-08-25 15:35:58 -04002205 return 0;
2206}
2207
Daniel Vetter042652e2014-07-27 13:46:52 +02002208static int update_output_state(struct drm_atomic_state *state,
2209 struct drm_mode_set *set)
2210{
2211 struct drm_device *dev = set->crtc->dev;
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03002212 struct drm_crtc *crtc;
2213 struct drm_crtc_state *crtc_state;
2214 struct drm_connector *connector;
Daniel Vetter042652e2014-07-27 13:46:52 +02002215 struct drm_connector_state *conn_state;
Maarten Lankhorst6ab520a2016-02-24 09:37:28 +01002216 int ret, i;
Daniel Vetter042652e2014-07-27 13:46:52 +02002217
2218 ret = drm_modeset_lock(&dev->mode_config.connection_mutex,
2219 state->acquire_ctx);
2220 if (ret)
2221 return ret;
2222
Maarten Lankhorst6ab520a2016-02-24 09:37:28 +01002223 /* First disable all connectors on the target crtc. */
2224 ret = drm_atomic_add_affected_connectors(state, set->crtc);
2225 if (ret)
2226 return ret;
Daniel Vetter042652e2014-07-27 13:46:52 +02002227
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03002228 for_each_connector_in_state(state, connector, conn_state, i) {
Daniel Vetter042652e2014-07-27 13:46:52 +02002229 if (conn_state->crtc == set->crtc) {
2230 ret = drm_atomic_set_crtc_for_connector(conn_state,
2231 NULL);
2232 if (ret)
2233 return ret;
2234 }
Maarten Lankhorst6ab520a2016-02-24 09:37:28 +01002235 }
Daniel Vetter042652e2014-07-27 13:46:52 +02002236
Maarten Lankhorst6ab520a2016-02-24 09:37:28 +01002237 /* Then set all connectors from set->connectors on the target crtc */
2238 for (i = 0; i < set->num_connectors; i++) {
2239 conn_state = drm_atomic_get_connector_state(state,
2240 set->connectors[i]);
2241 if (IS_ERR(conn_state))
2242 return PTR_ERR(conn_state);
2243
2244 ret = drm_atomic_set_crtc_for_connector(conn_state,
2245 set->crtc);
2246 if (ret)
2247 return ret;
Daniel Vetter042652e2014-07-27 13:46:52 +02002248 }
2249
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03002250 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Daniel Vetter042652e2014-07-27 13:46:52 +02002251 /* Don't update ->enable for the CRTC in the set_config request,
2252 * since a mismatch would indicate a bug in the upper layers.
2253 * The actual modeset code later on will catch any
2254 * inconsistencies here. */
2255 if (crtc == set->crtc)
2256 continue;
2257
Maarten Lankhorst14de6c42016-01-04 12:53:20 +01002258 if (!crtc_state->connector_mask) {
Laurent Pinchartc30f55a2015-06-22 13:37:46 +03002259 ret = drm_atomic_set_mode_prop_for_crtc(crtc_state,
2260 NULL);
2261 if (ret < 0)
2262 return ret;
2263
Maarten Lankhorst9b5edbf2015-06-01 08:59:53 +02002264 crtc_state->active = false;
Laurent Pinchartc30f55a2015-06-22 13:37:46 +03002265 }
Daniel Vetter042652e2014-07-27 13:46:52 +02002266 }
2267
2268 return 0;
2269}
2270
2271/**
2272 * drm_atomic_helper_set_config - set a new config from userspace
2273 * @set: mode set configuration
2274 *
2275 * Provides a default crtc set_config handler using the atomic driver interface.
2276 *
2277 * Returns:
2278 * Returns 0 on success, negative errno numbers on failure.
2279 */
2280int drm_atomic_helper_set_config(struct drm_mode_set *set)
2281{
2282 struct drm_atomic_state *state;
2283 struct drm_crtc *crtc = set->crtc;
Daniel Vetter042652e2014-07-27 13:46:52 +02002284 int ret = 0;
2285
2286 state = drm_atomic_state_alloc(crtc->dev);
2287 if (!state)
2288 return -ENOMEM;
2289
Maarten Lankhorst40616a22016-03-03 10:17:39 +01002290 state->legacy_set_config = true;
Daniel Vetter042652e2014-07-27 13:46:52 +02002291 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
2292retry:
Rob Clarkbbb1e522015-08-25 15:35:58 -04002293 ret = __drm_atomic_helper_set_config(set, state);
Daniel Stone819364d2015-05-26 14:36:48 +01002294 if (ret != 0)
2295 goto fail;
2296
Daniel Vetter042652e2014-07-27 13:46:52 +02002297 ret = drm_atomic_commit(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002298fail:
2299 if (ret == -EDEADLK)
2300 goto backoff;
2301
Chris Wilson08536952016-10-14 13:18:18 +01002302 drm_atomic_state_put(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002303 return ret;
Chris Wilson08536952016-10-14 13:18:18 +01002304
Daniel Vetter042652e2014-07-27 13:46:52 +02002305backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02002306 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01002307 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002308
2309 /*
2310 * Someone might have exchanged the framebuffer while we dropped locks
2311 * in the backoff code. We need to fix up the fb refcount tracking the
2312 * core does for us.
2313 */
2314 crtc->primary->old_fb = crtc->primary->fb;
2315
2316 goto retry;
2317}
2318EXPORT_SYMBOL(drm_atomic_helper_set_config);
2319
Rob Clarkbbb1e522015-08-25 15:35:58 -04002320/* just used from fb-helper and atomic-helper: */
2321int __drm_atomic_helper_set_config(struct drm_mode_set *set,
2322 struct drm_atomic_state *state)
2323{
2324 struct drm_crtc_state *crtc_state;
2325 struct drm_plane_state *primary_state;
2326 struct drm_crtc *crtc = set->crtc;
Ville Syrjälä83926112015-11-16 17:02:34 +02002327 int hdisplay, vdisplay;
Rob Clarkbbb1e522015-08-25 15:35:58 -04002328 int ret;
2329
2330 crtc_state = drm_atomic_get_crtc_state(state, crtc);
2331 if (IS_ERR(crtc_state))
2332 return PTR_ERR(crtc_state);
2333
2334 primary_state = drm_atomic_get_plane_state(state, crtc->primary);
2335 if (IS_ERR(primary_state))
2336 return PTR_ERR(primary_state);
2337
2338 if (!set->mode) {
2339 WARN_ON(set->fb);
2340 WARN_ON(set->num_connectors);
2341
2342 ret = drm_atomic_set_mode_for_crtc(crtc_state, NULL);
2343 if (ret != 0)
2344 return ret;
2345
2346 crtc_state->active = false;
2347
2348 ret = drm_atomic_set_crtc_for_plane(primary_state, NULL);
2349 if (ret != 0)
2350 return ret;
2351
2352 drm_atomic_set_fb_for_plane(primary_state, NULL);
2353
2354 goto commit;
2355 }
2356
2357 WARN_ON(!set->fb);
2358 WARN_ON(!set->num_connectors);
2359
2360 ret = drm_atomic_set_mode_for_crtc(crtc_state, set->mode);
2361 if (ret != 0)
2362 return ret;
2363
2364 crtc_state->active = true;
2365
2366 ret = drm_atomic_set_crtc_for_plane(primary_state, crtc);
2367 if (ret != 0)
2368 return ret;
2369
Ville Syrjälä83926112015-11-16 17:02:34 +02002370 drm_crtc_get_hv_timing(set->mode, &hdisplay, &vdisplay);
2371
Rob Clarkbbb1e522015-08-25 15:35:58 -04002372 drm_atomic_set_fb_for_plane(primary_state, set->fb);
2373 primary_state->crtc_x = 0;
2374 primary_state->crtc_y = 0;
Ville Syrjälä83926112015-11-16 17:02:34 +02002375 primary_state->crtc_w = hdisplay;
Ville Syrjälä02e6f372015-11-16 17:02:35 +02002376 primary_state->crtc_h = vdisplay;
Rob Clarkbbb1e522015-08-25 15:35:58 -04002377 primary_state->src_x = set->x << 16;
2378 primary_state->src_y = set->y << 16;
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03002379 if (drm_rotation_90_or_270(primary_state->rotation)) {
Ville Syrjälä83926112015-11-16 17:02:34 +02002380 primary_state->src_w = vdisplay << 16;
Ville Syrjälä02e6f372015-11-16 17:02:35 +02002381 primary_state->src_h = hdisplay << 16;
Ville Syrjälä41121242015-10-15 20:39:59 +03002382 } else {
Ville Syrjälä83926112015-11-16 17:02:34 +02002383 primary_state->src_w = hdisplay << 16;
Ville Syrjälä02e6f372015-11-16 17:02:35 +02002384 primary_state->src_h = vdisplay << 16;
Ville Syrjälä41121242015-10-15 20:39:59 +03002385 }
Rob Clarkbbb1e522015-08-25 15:35:58 -04002386
2387commit:
2388 ret = update_output_state(state, set);
2389 if (ret)
2390 return ret;
2391
2392 return 0;
2393}
2394
Daniel Vetter042652e2014-07-27 13:46:52 +02002395/**
Thierry Reding14942762015-12-02 17:50:04 +01002396 * drm_atomic_helper_disable_all - disable all currently active outputs
2397 * @dev: DRM device
2398 * @ctx: lock acquisition context
2399 *
2400 * Loops through all connectors, finding those that aren't turned off and then
2401 * turns them off by setting their DPMS mode to OFF and deactivating the CRTC
2402 * that they are connected to.
2403 *
2404 * This is used for example in suspend/resume to disable all currently active
2405 * functions when suspending.
2406 *
2407 * Note that if callers haven't already acquired all modeset locks this might
2408 * return -EDEADLK, which must be handled by calling drm_modeset_backoff().
2409 *
2410 * Returns:
2411 * 0 on success or a negative error code on failure.
2412 *
2413 * See also:
2414 * drm_atomic_helper_suspend(), drm_atomic_helper_resume()
2415 */
2416int drm_atomic_helper_disable_all(struct drm_device *dev,
2417 struct drm_modeset_acquire_ctx *ctx)
2418{
2419 struct drm_atomic_state *state;
2420 struct drm_connector *conn;
Daniel Vetterc36a3252016-12-15 16:58:43 +01002421 struct drm_connector_list_iter conn_iter;
Thierry Reding14942762015-12-02 17:50:04 +01002422 int err;
2423
2424 state = drm_atomic_state_alloc(dev);
2425 if (!state)
2426 return -ENOMEM;
2427
2428 state->acquire_ctx = ctx;
2429
Daniel Vetterc36a3252016-12-15 16:58:43 +01002430 drm_connector_list_iter_get(dev, &conn_iter);
2431 drm_for_each_connector_iter(conn, &conn_iter) {
Thierry Reding14942762015-12-02 17:50:04 +01002432 struct drm_crtc *crtc = conn->state->crtc;
2433 struct drm_crtc_state *crtc_state;
2434
2435 if (!crtc || conn->dpms != DRM_MODE_DPMS_ON)
2436 continue;
2437
2438 crtc_state = drm_atomic_get_crtc_state(state, crtc);
2439 if (IS_ERR(crtc_state)) {
2440 err = PTR_ERR(crtc_state);
2441 goto free;
2442 }
2443
2444 crtc_state->active = false;
2445 }
2446
2447 err = drm_atomic_commit(state);
Thierry Reding14942762015-12-02 17:50:04 +01002448free:
Daniel Vetterc36a3252016-12-15 16:58:43 +01002449 drm_connector_list_iter_put(&conn_iter);
Chris Wilson08536952016-10-14 13:18:18 +01002450 drm_atomic_state_put(state);
Thierry Reding14942762015-12-02 17:50:04 +01002451 return err;
2452}
2453EXPORT_SYMBOL(drm_atomic_helper_disable_all);
2454
2455/**
2456 * drm_atomic_helper_suspend - subsystem-level suspend helper
2457 * @dev: DRM device
2458 *
2459 * Duplicates the current atomic state, disables all active outputs and then
2460 * returns a pointer to the original atomic state to the caller. Drivers can
2461 * pass this pointer to the drm_atomic_helper_resume() helper upon resume to
2462 * restore the output configuration that was active at the time the system
2463 * entered suspend.
2464 *
2465 * Note that it is potentially unsafe to use this. The atomic state object
2466 * returned by this function is assumed to be persistent. Drivers must ensure
2467 * that this holds true. Before calling this function, drivers must make sure
2468 * to suspend fbdev emulation so that nothing can be using the device.
2469 *
2470 * Returns:
2471 * A pointer to a copy of the state before suspend on success or an ERR_PTR()-
2472 * encoded error code on failure. Drivers should store the returned atomic
2473 * state object and pass it to the drm_atomic_helper_resume() helper upon
2474 * resume.
2475 *
2476 * See also:
2477 * drm_atomic_helper_duplicate_state(), drm_atomic_helper_disable_all(),
2478 * drm_atomic_helper_resume()
2479 */
2480struct drm_atomic_state *drm_atomic_helper_suspend(struct drm_device *dev)
2481{
2482 struct drm_modeset_acquire_ctx ctx;
2483 struct drm_atomic_state *state;
2484 int err;
2485
2486 drm_modeset_acquire_init(&ctx, 0);
2487
2488retry:
2489 err = drm_modeset_lock_all_ctx(dev, &ctx);
2490 if (err < 0) {
2491 state = ERR_PTR(err);
2492 goto unlock;
2493 }
2494
2495 state = drm_atomic_helper_duplicate_state(dev, &ctx);
2496 if (IS_ERR(state))
2497 goto unlock;
2498
2499 err = drm_atomic_helper_disable_all(dev, &ctx);
2500 if (err < 0) {
Chris Wilson08536952016-10-14 13:18:18 +01002501 drm_atomic_state_put(state);
Thierry Reding14942762015-12-02 17:50:04 +01002502 state = ERR_PTR(err);
2503 goto unlock;
2504 }
2505
2506unlock:
2507 if (PTR_ERR(state) == -EDEADLK) {
2508 drm_modeset_backoff(&ctx);
2509 goto retry;
2510 }
2511
2512 drm_modeset_drop_locks(&ctx);
2513 drm_modeset_acquire_fini(&ctx);
2514 return state;
2515}
2516EXPORT_SYMBOL(drm_atomic_helper_suspend);
2517
2518/**
2519 * drm_atomic_helper_resume - subsystem-level resume helper
2520 * @dev: DRM device
2521 * @state: atomic state to resume to
2522 *
2523 * Calls drm_mode_config_reset() to synchronize hardware and software states,
2524 * grabs all modeset locks and commits the atomic state object. This can be
2525 * used in conjunction with the drm_atomic_helper_suspend() helper to
2526 * implement suspend/resume for drivers that support atomic mode-setting.
2527 *
2528 * Returns:
2529 * 0 on success or a negative error code on failure.
2530 *
2531 * See also:
2532 * drm_atomic_helper_suspend()
2533 */
2534int drm_atomic_helper_resume(struct drm_device *dev,
2535 struct drm_atomic_state *state)
2536{
2537 struct drm_mode_config *config = &dev->mode_config;
2538 int err;
2539
2540 drm_mode_config_reset(dev);
2541 drm_modeset_lock_all(dev);
2542 state->acquire_ctx = config->acquire_ctx;
2543 err = drm_atomic_commit(state);
2544 drm_modeset_unlock_all(dev);
2545
2546 return err;
2547}
2548EXPORT_SYMBOL(drm_atomic_helper_resume);
2549
2550/**
Laurent Pinchart7f500022015-02-23 02:50:23 +02002551 * drm_atomic_helper_crtc_set_property - helper for crtc properties
Daniel Vetter042652e2014-07-27 13:46:52 +02002552 * @crtc: DRM crtc
2553 * @property: DRM property
2554 * @val: value of property
2555 *
Laurent Pinchart7f500022015-02-23 02:50:23 +02002556 * Provides a default crtc set_property handler using the atomic driver
2557 * interface.
Daniel Vetter042652e2014-07-27 13:46:52 +02002558 *
2559 * RETURNS:
2560 * Zero on success, error code on failure
2561 */
2562int
2563drm_atomic_helper_crtc_set_property(struct drm_crtc *crtc,
2564 struct drm_property *property,
2565 uint64_t val)
2566{
2567 struct drm_atomic_state *state;
2568 struct drm_crtc_state *crtc_state;
2569 int ret = 0;
2570
2571 state = drm_atomic_state_alloc(crtc->dev);
2572 if (!state)
2573 return -ENOMEM;
2574
2575 /* ->set_property is always called with all locks held. */
2576 state->acquire_ctx = crtc->dev->mode_config.acquire_ctx;
2577retry:
2578 crtc_state = drm_atomic_get_crtc_state(state, crtc);
2579 if (IS_ERR(crtc_state)) {
2580 ret = PTR_ERR(crtc_state);
2581 goto fail;
2582 }
2583
Rob Clark40ecc692014-12-18 16:01:46 -05002584 ret = drm_atomic_crtc_set_property(crtc, crtc_state,
2585 property, val);
Daniel Vetter042652e2014-07-27 13:46:52 +02002586 if (ret)
2587 goto fail;
2588
2589 ret = drm_atomic_commit(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002590fail:
2591 if (ret == -EDEADLK)
2592 goto backoff;
2593
Chris Wilson08536952016-10-14 13:18:18 +01002594 drm_atomic_state_put(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002595 return ret;
Chris Wilson08536952016-10-14 13:18:18 +01002596
Daniel Vetter042652e2014-07-27 13:46:52 +02002597backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02002598 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01002599 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002600
2601 goto retry;
2602}
2603EXPORT_SYMBOL(drm_atomic_helper_crtc_set_property);
2604
2605/**
Laurent Pinchart7f500022015-02-23 02:50:23 +02002606 * drm_atomic_helper_plane_set_property - helper for plane properties
Daniel Vetter042652e2014-07-27 13:46:52 +02002607 * @plane: DRM plane
2608 * @property: DRM property
2609 * @val: value of property
2610 *
Laurent Pinchart7f500022015-02-23 02:50:23 +02002611 * Provides a default plane set_property handler using the atomic driver
2612 * interface.
Daniel Vetter042652e2014-07-27 13:46:52 +02002613 *
2614 * RETURNS:
2615 * Zero on success, error code on failure
2616 */
2617int
2618drm_atomic_helper_plane_set_property(struct drm_plane *plane,
2619 struct drm_property *property,
2620 uint64_t val)
2621{
2622 struct drm_atomic_state *state;
2623 struct drm_plane_state *plane_state;
2624 int ret = 0;
2625
2626 state = drm_atomic_state_alloc(plane->dev);
2627 if (!state)
2628 return -ENOMEM;
2629
2630 /* ->set_property is always called with all locks held. */
2631 state->acquire_ctx = plane->dev->mode_config.acquire_ctx;
2632retry:
2633 plane_state = drm_atomic_get_plane_state(state, plane);
2634 if (IS_ERR(plane_state)) {
2635 ret = PTR_ERR(plane_state);
2636 goto fail;
2637 }
2638
Rob Clark40ecc692014-12-18 16:01:46 -05002639 ret = drm_atomic_plane_set_property(plane, plane_state,
2640 property, val);
Daniel Vetter042652e2014-07-27 13:46:52 +02002641 if (ret)
2642 goto fail;
2643
2644 ret = drm_atomic_commit(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002645fail:
2646 if (ret == -EDEADLK)
2647 goto backoff;
2648
Chris Wilson08536952016-10-14 13:18:18 +01002649 drm_atomic_state_put(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002650 return ret;
Chris Wilson08536952016-10-14 13:18:18 +01002651
Daniel Vetter042652e2014-07-27 13:46:52 +02002652backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02002653 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01002654 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002655
2656 goto retry;
2657}
2658EXPORT_SYMBOL(drm_atomic_helper_plane_set_property);
2659
2660/**
Laurent Pinchart7f500022015-02-23 02:50:23 +02002661 * drm_atomic_helper_connector_set_property - helper for connector properties
Daniel Vetter042652e2014-07-27 13:46:52 +02002662 * @connector: DRM connector
2663 * @property: DRM property
2664 * @val: value of property
2665 *
Laurent Pinchart7f500022015-02-23 02:50:23 +02002666 * Provides a default connector set_property handler using the atomic driver
2667 * interface.
Daniel Vetter042652e2014-07-27 13:46:52 +02002668 *
2669 * RETURNS:
2670 * Zero on success, error code on failure
2671 */
2672int
2673drm_atomic_helper_connector_set_property(struct drm_connector *connector,
2674 struct drm_property *property,
2675 uint64_t val)
2676{
2677 struct drm_atomic_state *state;
2678 struct drm_connector_state *connector_state;
2679 int ret = 0;
2680
2681 state = drm_atomic_state_alloc(connector->dev);
2682 if (!state)
2683 return -ENOMEM;
2684
2685 /* ->set_property is always called with all locks held. */
2686 state->acquire_ctx = connector->dev->mode_config.acquire_ctx;
2687retry:
2688 connector_state = drm_atomic_get_connector_state(state, connector);
2689 if (IS_ERR(connector_state)) {
2690 ret = PTR_ERR(connector_state);
2691 goto fail;
2692 }
2693
Rob Clark40ecc692014-12-18 16:01:46 -05002694 ret = drm_atomic_connector_set_property(connector, connector_state,
2695 property, val);
Daniel Vetter042652e2014-07-27 13:46:52 +02002696 if (ret)
2697 goto fail;
2698
2699 ret = drm_atomic_commit(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002700fail:
2701 if (ret == -EDEADLK)
2702 goto backoff;
2703
Chris Wilson08536952016-10-14 13:18:18 +01002704 drm_atomic_state_put(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002705 return ret;
Chris Wilson08536952016-10-14 13:18:18 +01002706
Daniel Vetter042652e2014-07-27 13:46:52 +02002707backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02002708 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01002709 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002710
2711 goto retry;
2712}
2713EXPORT_SYMBOL(drm_atomic_helper_connector_set_property);
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002714
Andrey Grodzovskyf869a6e2017-01-06 15:39:40 -05002715static int page_flip_common(
2716 struct drm_atomic_state *state,
2717 struct drm_crtc *crtc,
2718 struct drm_framebuffer *fb,
2719 struct drm_pending_vblank_event *event)
2720{
2721 struct drm_plane *plane = crtc->primary;
2722 struct drm_plane_state *plane_state;
2723 struct drm_crtc_state *crtc_state;
2724 int ret = 0;
2725
2726 crtc_state = drm_atomic_get_crtc_state(state, crtc);
2727 if (IS_ERR(crtc_state))
2728 return PTR_ERR(crtc_state);
2729
2730 crtc_state->event = event;
2731
2732 plane_state = drm_atomic_get_plane_state(state, plane);
2733 if (IS_ERR(plane_state))
2734 return PTR_ERR(plane_state);
2735
2736
2737 ret = drm_atomic_set_crtc_for_plane(plane_state, crtc);
2738 if (ret != 0)
2739 return ret;
2740 drm_atomic_set_fb_for_plane(plane_state, fb);
2741
2742 /* Make sure we don't accidentally do a full modeset. */
2743 state->allow_modeset = false;
2744 if (!crtc_state->active) {
2745 DRM_DEBUG_ATOMIC("[CRTC:%d] disabled, rejecting legacy flip\n",
2746 crtc->base.id);
2747 return -EINVAL;
2748 }
2749
2750 return ret;
2751}
2752
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002753/**
2754 * drm_atomic_helper_page_flip - execute a legacy page flip
2755 * @crtc: DRM crtc
2756 * @fb: DRM framebuffer
2757 * @event: optional DRM event to signal upon completion
2758 * @flags: flip flags for non-vblank sync'ed updates
2759 *
Andrey Grodzovskyf869a6e2017-01-06 15:39:40 -05002760 * Provides a default &drm_crtc_funcs.page_flip implementation
2761 * using the atomic driver interface.
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002762 *
2763 * Note that for now so called async page flips (i.e. updates which are not
2764 * synchronized to vblank) are not supported, since the atomic interfaces have
2765 * no provisions for this yet.
2766 *
2767 * Returns:
2768 * Returns 0 on success, negative errno numbers on failure.
Andrey Grodzovskyf869a6e2017-01-06 15:39:40 -05002769 *
2770 * See also:
2771 * drm_atomic_helper_page_flip_target()
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002772 */
2773int drm_atomic_helper_page_flip(struct drm_crtc *crtc,
2774 struct drm_framebuffer *fb,
2775 struct drm_pending_vblank_event *event,
2776 uint32_t flags)
2777{
2778 struct drm_plane *plane = crtc->primary;
2779 struct drm_atomic_state *state;
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002780 int ret = 0;
2781
2782 if (flags & DRM_MODE_PAGE_FLIP_ASYNC)
2783 return -EINVAL;
2784
2785 state = drm_atomic_state_alloc(plane->dev);
2786 if (!state)
2787 return -ENOMEM;
2788
2789 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
Andrey Grodzovskyf869a6e2017-01-06 15:39:40 -05002790
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002791retry:
Andrey Grodzovskyf869a6e2017-01-06 15:39:40 -05002792 ret = page_flip_common(state, crtc, fb, event);
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002793 if (ret != 0)
2794 goto fail;
Daniel Vetter4cba6852015-12-08 09:49:20 +01002795
Maarten Lankhorstb837ba02016-04-26 16:11:35 +02002796 ret = drm_atomic_nonblocking_commit(state);
Andrey Grodzovskyf869a6e2017-01-06 15:39:40 -05002797
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002798fail:
2799 if (ret == -EDEADLK)
2800 goto backoff;
2801
Chris Wilson08536952016-10-14 13:18:18 +01002802 drm_atomic_state_put(state);
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002803 return ret;
Chris Wilson08536952016-10-14 13:18:18 +01002804
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002805backoff:
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002806 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01002807 drm_atomic_legacy_backoff(state);
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002808
2809 /*
2810 * Someone might have exchanged the framebuffer while we dropped locks
2811 * in the backoff code. We need to fix up the fb refcount tracking the
2812 * core does for us.
2813 */
2814 plane->old_fb = plane->fb;
2815
2816 goto retry;
2817}
2818EXPORT_SYMBOL(drm_atomic_helper_page_flip);
Daniel Vetterd4617012014-11-03 15:56:43 +01002819
2820/**
Andrey Grodzovskyf869a6e2017-01-06 15:39:40 -05002821 * drm_atomic_helper_page_flip_target - do page flip on target vblank period.
2822 * @crtc: DRM crtc
2823 * @fb: DRM framebuffer
2824 * @event: optional DRM event to signal upon completion
2825 * @flags: flip flags for non-vblank sync'ed updates
2826 * @target: specifying the target vblank period when the flip to take effect
2827 *
2828 * Provides a default &drm_crtc_funcs.page_flip_target implementation.
2829 * Similar to drm_atomic_helper_page_flip() with extra parameter to specify
2830 * target vblank period to flip.
2831 *
2832 * Returns:
2833 * Returns 0 on success, negative errno numbers on failure.
2834 */
2835int drm_atomic_helper_page_flip_target(
2836 struct drm_crtc *crtc,
2837 struct drm_framebuffer *fb,
2838 struct drm_pending_vblank_event *event,
2839 uint32_t flags,
2840 uint32_t target)
2841{
2842 struct drm_plane *plane = crtc->primary;
2843 struct drm_atomic_state *state;
2844 struct drm_crtc_state *crtc_state;
2845 int ret = 0;
2846
2847 if (flags & DRM_MODE_PAGE_FLIP_ASYNC)
2848 return -EINVAL;
2849
2850 state = drm_atomic_state_alloc(plane->dev);
2851 if (!state)
2852 return -ENOMEM;
2853
2854 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
2855
2856retry:
2857 ret = page_flip_common(state, crtc, fb, event);
2858 if (ret != 0)
2859 goto fail;
2860
2861 crtc_state = drm_atomic_get_existing_crtc_state(state, crtc);
2862 if (WARN_ON(!crtc_state)) {
2863 ret = -EINVAL;
2864 goto fail;
2865 }
2866 crtc_state->target_vblank = target;
2867
2868 ret = drm_atomic_nonblocking_commit(state);
2869
2870fail:
2871 if (ret == -EDEADLK)
2872 goto backoff;
2873
2874 drm_atomic_state_put(state);
2875 return ret;
2876
2877backoff:
2878 drm_atomic_state_clear(state);
2879 drm_atomic_legacy_backoff(state);
2880
2881 /*
2882 * Someone might have exchanged the framebuffer while we dropped locks
2883 * in the backoff code. We need to fix up the fb refcount tracking the
2884 * core does for us.
2885 */
2886 plane->old_fb = plane->fb;
2887
2888 goto retry;
2889}
2890EXPORT_SYMBOL(drm_atomic_helper_page_flip_target);
2891
2892/**
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002893 * drm_atomic_helper_connector_dpms() - connector dpms helper implementation
2894 * @connector: affected connector
2895 * @mode: DPMS mode
2896 *
2897 * This is the main helper function provided by the atomic helper framework for
2898 * implementing the legacy DPMS connector interface. It computes the new desired
Daniel Vetter6806cdf2017-01-25 07:26:43 +01002899 * &drm_crtc_state.active state for the corresponding CRTC (if the connector is
2900 * enabled) and updates it.
Maarten Lankhorst9a69a9a2015-07-21 11:34:55 +02002901 *
2902 * Returns:
2903 * Returns 0 on success, negative errno numbers on failure.
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002904 */
Maarten Lankhorst9a69a9a2015-07-21 11:34:55 +02002905int drm_atomic_helper_connector_dpms(struct drm_connector *connector,
2906 int mode)
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002907{
2908 struct drm_mode_config *config = &connector->dev->mode_config;
2909 struct drm_atomic_state *state;
2910 struct drm_crtc_state *crtc_state;
2911 struct drm_crtc *crtc;
2912 struct drm_connector *tmp_connector;
Daniel Vetterc36a3252016-12-15 16:58:43 +01002913 struct drm_connector_list_iter conn_iter;
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002914 int ret;
2915 bool active = false;
Maarten Lankhorst9a69a9a2015-07-21 11:34:55 +02002916 int old_mode = connector->dpms;
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002917
2918 if (mode != DRM_MODE_DPMS_ON)
2919 mode = DRM_MODE_DPMS_OFF;
2920
2921 connector->dpms = mode;
2922 crtc = connector->state->crtc;
2923
2924 if (!crtc)
Maarten Lankhorst9a69a9a2015-07-21 11:34:55 +02002925 return 0;
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002926
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002927 state = drm_atomic_state_alloc(connector->dev);
2928 if (!state)
Maarten Lankhorst9a69a9a2015-07-21 11:34:55 +02002929 return -ENOMEM;
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002930
2931 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
2932retry:
2933 crtc_state = drm_atomic_get_crtc_state(state, crtc);
Maarten Lankhorst9a69a9a2015-07-21 11:34:55 +02002934 if (IS_ERR(crtc_state)) {
2935 ret = PTR_ERR(crtc_state);
2936 goto fail;
2937 }
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002938
2939 WARN_ON(!drm_modeset_is_locked(&config->connection_mutex));
2940
Daniel Vetterc36a3252016-12-15 16:58:43 +01002941 drm_connector_list_iter_get(connector->dev, &conn_iter);
2942 drm_for_each_connector_iter(tmp_connector, &conn_iter) {
John Hunter0388df02015-03-17 15:30:28 +08002943 if (tmp_connector->state->crtc != crtc)
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002944 continue;
2945
John Hunter0388df02015-03-17 15:30:28 +08002946 if (tmp_connector->dpms == DRM_MODE_DPMS_ON) {
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002947 active = true;
2948 break;
2949 }
2950 }
Daniel Vetterc36a3252016-12-15 16:58:43 +01002951 drm_connector_list_iter_put(&conn_iter);
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002952 crtc_state->active = active;
2953
2954 ret = drm_atomic_commit(state);
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002955fail:
2956 if (ret == -EDEADLK)
2957 goto backoff;
Marta Lofstedt8f5040e2016-12-05 14:04:08 +02002958 if (ret != 0)
2959 connector->dpms = old_mode;
Chris Wilson08536952016-10-14 13:18:18 +01002960 drm_atomic_state_put(state);
Maarten Lankhorst9a69a9a2015-07-21 11:34:55 +02002961 return ret;
Chris Wilson08536952016-10-14 13:18:18 +01002962
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002963backoff:
2964 drm_atomic_state_clear(state);
2965 drm_atomic_legacy_backoff(state);
2966
2967 goto retry;
2968}
2969EXPORT_SYMBOL(drm_atomic_helper_connector_dpms);
2970
2971/**
Daniel Vetter6806cdf2017-01-25 07:26:43 +01002972 * drm_atomic_helper_best_encoder - Helper for
2973 * &drm_connector_helper_funcs.best_encoder callback
Noralf Trønnes9ecb5492016-05-11 18:09:21 +02002974 * @connector: Connector control structure
2975 *
Daniel Vetter6806cdf2017-01-25 07:26:43 +01002976 * This is a &drm_connector_helper_funcs.best_encoder callback helper for
Noralf Trønnes9ecb5492016-05-11 18:09:21 +02002977 * connectors that support exactly 1 encoder, statically determined at driver
2978 * init time.
2979 */
2980struct drm_encoder *
2981drm_atomic_helper_best_encoder(struct drm_connector *connector)
2982{
2983 WARN_ON(connector->encoder_ids[1]);
2984 return drm_encoder_find(connector->dev, connector->encoder_ids[0]);
2985}
2986EXPORT_SYMBOL(drm_atomic_helper_best_encoder);
2987
2988/**
Daniel Vetter3150c7d2014-11-06 20:53:29 +01002989 * DOC: atomic state reset and initialization
2990 *
2991 * Both the drm core and the atomic helpers assume that there is always the full
2992 * and correct atomic software state for all connectors, CRTCs and planes
2993 * available. Which is a bit a problem on driver load and also after system
2994 * suspend. One way to solve this is to have a hardware state read-out
2995 * infrastructure which reconstructs the full software state (e.g. the i915
2996 * driver).
2997 *
2998 * The simpler solution is to just reset the software state to everything off,
2999 * which is easiest to do by calling drm_mode_config_reset(). To facilitate this
3000 * the atomic helpers provide default reset implementations for all hooks.
Daniel Vetter7f8ee3e2015-12-04 09:46:06 +01003001 *
3002 * On the upside the precise state tracking of atomic simplifies system suspend
3003 * and resume a lot. For drivers using drm_mode_config_reset() a complete recipe
3004 * is implemented in drm_atomic_helper_suspend() and drm_atomic_helper_resume().
3005 * For other drivers the building blocks are split out, see the documentation
3006 * for these functions.
Daniel Vetter3150c7d2014-11-06 20:53:29 +01003007 */
3008
3009/**
Daniel Vetter6806cdf2017-01-25 07:26:43 +01003010 * drm_atomic_helper_crtc_reset - default &drm_crtc_funcs.reset hook for CRTCs
Daniel Vetterd4617012014-11-03 15:56:43 +01003011 * @crtc: drm CRTC
3012 *
3013 * Resets the atomic state for @crtc by freeing the state pointer (which might
3014 * be NULL, e.g. at driver load time) and allocating a new empty state object.
3015 */
3016void drm_atomic_helper_crtc_reset(struct drm_crtc *crtc)
3017{
Daniel Vetterb0b55112016-04-22 22:10:29 +02003018 if (crtc->state)
Daniel Vetterec2dc6a2016-05-09 16:34:09 +02003019 __drm_atomic_helper_crtc_destroy_state(crtc->state);
Daniel Vetterb0b55112016-04-22 22:10:29 +02003020
Daniel Vetterd4617012014-11-03 15:56:43 +01003021 kfree(crtc->state);
3022 crtc->state = kzalloc(sizeof(*crtc->state), GFP_KERNEL);
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01003023
3024 if (crtc->state)
3025 crtc->state->crtc = crtc;
Daniel Vetterd4617012014-11-03 15:56:43 +01003026}
3027EXPORT_SYMBOL(drm_atomic_helper_crtc_reset);
3028
3029/**
Thierry Redingf5e78402015-01-28 14:54:32 +01003030 * __drm_atomic_helper_crtc_duplicate_state - copy atomic CRTC state
3031 * @crtc: CRTC object
3032 * @state: atomic CRTC state
3033 *
3034 * Copies atomic state from a CRTC's current state and resets inferred values.
3035 * This is useful for drivers that subclass the CRTC state.
3036 */
3037void __drm_atomic_helper_crtc_duplicate_state(struct drm_crtc *crtc,
3038 struct drm_crtc_state *state)
3039{
3040 memcpy(state, crtc->state, sizeof(*state));
3041
Daniel Stone99cf4a22015-05-25 19:11:51 +01003042 if (state->mode_blob)
3043 drm_property_reference_blob(state->mode_blob);
Lionel Landwerlin5488dc12016-02-26 17:05:00 +00003044 if (state->degamma_lut)
3045 drm_property_reference_blob(state->degamma_lut);
3046 if (state->ctm)
3047 drm_property_reference_blob(state->ctm);
3048 if (state->gamma_lut)
3049 drm_property_reference_blob(state->gamma_lut);
Thierry Redingf5e78402015-01-28 14:54:32 +01003050 state->mode_changed = false;
3051 state->active_changed = false;
3052 state->planes_changed = false;
Maarten Lankhorstfc596662015-07-21 13:28:57 +02003053 state->connectors_changed = false;
Lionel Landwerlin5488dc12016-02-26 17:05:00 +00003054 state->color_mgmt_changed = false;
Marek Szyprowski44d1240d2016-06-13 11:11:26 +02003055 state->zpos_changed = false;
Thierry Redingf5e78402015-01-28 14:54:32 +01003056 state->event = NULL;
3057}
3058EXPORT_SYMBOL(__drm_atomic_helper_crtc_duplicate_state);
3059
3060/**
Daniel Vetterd4617012014-11-03 15:56:43 +01003061 * drm_atomic_helper_crtc_duplicate_state - default state duplicate hook
3062 * @crtc: drm CRTC
3063 *
3064 * Default CRTC state duplicate hook for drivers which don't have their own
3065 * subclassed CRTC state structure.
3066 */
3067struct drm_crtc_state *
3068drm_atomic_helper_crtc_duplicate_state(struct drm_crtc *crtc)
3069{
3070 struct drm_crtc_state *state;
3071
3072 if (WARN_ON(!crtc->state))
3073 return NULL;
3074
Thierry Redingf5e78402015-01-28 14:54:32 +01003075 state = kmalloc(sizeof(*state), GFP_KERNEL);
3076 if (state)
3077 __drm_atomic_helper_crtc_duplicate_state(crtc, state);
Daniel Vetterd4617012014-11-03 15:56:43 +01003078
3079 return state;
3080}
3081EXPORT_SYMBOL(drm_atomic_helper_crtc_duplicate_state);
3082
3083/**
Thierry Redingf5e78402015-01-28 14:54:32 +01003084 * __drm_atomic_helper_crtc_destroy_state - release CRTC state
Thierry Redingf5e78402015-01-28 14:54:32 +01003085 * @state: CRTC state object to release
3086 *
3087 * Releases all resources stored in the CRTC state without actually freeing
3088 * the memory of the CRTC state. This is useful for drivers that subclass the
3089 * CRTC state.
3090 */
Daniel Vetterec2dc6a2016-05-09 16:34:09 +02003091void __drm_atomic_helper_crtc_destroy_state(struct drm_crtc_state *state)
Thierry Redingf5e78402015-01-28 14:54:32 +01003092{
Markus Elfring5f911902015-11-06 12:03:46 +01003093 drm_property_unreference_blob(state->mode_blob);
Lionel Landwerlin5488dc12016-02-26 17:05:00 +00003094 drm_property_unreference_blob(state->degamma_lut);
3095 drm_property_unreference_blob(state->ctm);
3096 drm_property_unreference_blob(state->gamma_lut);
Thierry Redingf5e78402015-01-28 14:54:32 +01003097}
3098EXPORT_SYMBOL(__drm_atomic_helper_crtc_destroy_state);
3099
3100/**
Daniel Vetterd4617012014-11-03 15:56:43 +01003101 * drm_atomic_helper_crtc_destroy_state - default state destroy hook
3102 * @crtc: drm CRTC
3103 * @state: CRTC state object to release
3104 *
3105 * Default CRTC state destroy hook for drivers which don't have their own
3106 * subclassed CRTC state structure.
3107 */
3108void drm_atomic_helper_crtc_destroy_state(struct drm_crtc *crtc,
3109 struct drm_crtc_state *state)
3110{
Daniel Vetterec2dc6a2016-05-09 16:34:09 +02003111 __drm_atomic_helper_crtc_destroy_state(state);
Daniel Vetterd4617012014-11-03 15:56:43 +01003112 kfree(state);
3113}
3114EXPORT_SYMBOL(drm_atomic_helper_crtc_destroy_state);
3115
3116/**
Daniel Vetter6806cdf2017-01-25 07:26:43 +01003117 * drm_atomic_helper_plane_reset - default &drm_plane_funcs.reset hook for planes
Daniel Vetterd4617012014-11-03 15:56:43 +01003118 * @plane: drm plane
3119 *
3120 * Resets the atomic state for @plane by freeing the state pointer (which might
3121 * be NULL, e.g. at driver load time) and allocating a new empty state object.
3122 */
3123void drm_atomic_helper_plane_reset(struct drm_plane *plane)
3124{
Daniel Vetterb0b55112016-04-22 22:10:29 +02003125 if (plane->state)
Daniel Vetter2f701692016-05-09 16:34:10 +02003126 __drm_atomic_helper_plane_destroy_state(plane->state);
Daniel Vetter321ebf02014-11-04 22:57:27 +01003127
Daniel Vetterd4617012014-11-03 15:56:43 +01003128 kfree(plane->state);
3129 plane->state = kzalloc(sizeof(*plane->state), GFP_KERNEL);
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01003130
Marek Szyprowski25aaa3a2016-01-19 09:26:48 +01003131 if (plane->state) {
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01003132 plane->state->plane = plane;
Joonas Lahtinen31ad61e2016-07-29 08:50:05 +03003133 plane->state->rotation = DRM_ROTATE_0;
Marek Szyprowski25aaa3a2016-01-19 09:26:48 +01003134 }
Daniel Vetterd4617012014-11-03 15:56:43 +01003135}
3136EXPORT_SYMBOL(drm_atomic_helper_plane_reset);
3137
3138/**
Thierry Redingf5e78402015-01-28 14:54:32 +01003139 * __drm_atomic_helper_plane_duplicate_state - copy atomic plane state
3140 * @plane: plane object
3141 * @state: atomic plane state
3142 *
3143 * Copies atomic state from a plane's current state. This is useful for
3144 * drivers that subclass the plane state.
3145 */
3146void __drm_atomic_helper_plane_duplicate_state(struct drm_plane *plane,
3147 struct drm_plane_state *state)
3148{
3149 memcpy(state, plane->state, sizeof(*state));
3150
3151 if (state->fb)
3152 drm_framebuffer_reference(state->fb);
Gustavo Padovan96260142016-11-15 22:06:39 +09003153
3154 state->fence = NULL;
Thierry Redingf5e78402015-01-28 14:54:32 +01003155}
3156EXPORT_SYMBOL(__drm_atomic_helper_plane_duplicate_state);
3157
3158/**
Daniel Vetterd4617012014-11-03 15:56:43 +01003159 * drm_atomic_helper_plane_duplicate_state - default state duplicate hook
3160 * @plane: drm plane
3161 *
3162 * Default plane state duplicate hook for drivers which don't have their own
3163 * subclassed plane state structure.
3164 */
3165struct drm_plane_state *
3166drm_atomic_helper_plane_duplicate_state(struct drm_plane *plane)
3167{
Daniel Vetter321ebf02014-11-04 22:57:27 +01003168 struct drm_plane_state *state;
3169
Daniel Vetterd4617012014-11-03 15:56:43 +01003170 if (WARN_ON(!plane->state))
3171 return NULL;
3172
Thierry Redingf5e78402015-01-28 14:54:32 +01003173 state = kmalloc(sizeof(*state), GFP_KERNEL);
3174 if (state)
3175 __drm_atomic_helper_plane_duplicate_state(plane, state);
Daniel Vetter321ebf02014-11-04 22:57:27 +01003176
3177 return state;
Daniel Vetterd4617012014-11-03 15:56:43 +01003178}
3179EXPORT_SYMBOL(drm_atomic_helper_plane_duplicate_state);
3180
3181/**
Thierry Redingf5e78402015-01-28 14:54:32 +01003182 * __drm_atomic_helper_plane_destroy_state - release plane state
Thierry Redingf5e78402015-01-28 14:54:32 +01003183 * @state: plane state object to release
3184 *
3185 * Releases all resources stored in the plane state without actually freeing
3186 * the memory of the plane state. This is useful for drivers that subclass the
3187 * plane state.
3188 */
Daniel Vetter2f701692016-05-09 16:34:10 +02003189void __drm_atomic_helper_plane_destroy_state(struct drm_plane_state *state)
Thierry Redingf5e78402015-01-28 14:54:32 +01003190{
3191 if (state->fb)
3192 drm_framebuffer_unreference(state->fb);
Gustavo Padovan96260142016-11-15 22:06:39 +09003193
3194 if (state->fence)
3195 dma_fence_put(state->fence);
Thierry Redingf5e78402015-01-28 14:54:32 +01003196}
3197EXPORT_SYMBOL(__drm_atomic_helper_plane_destroy_state);
3198
3199/**
Daniel Vetterd4617012014-11-03 15:56:43 +01003200 * drm_atomic_helper_plane_destroy_state - default state destroy hook
3201 * @plane: drm plane
3202 * @state: plane state object to release
3203 *
3204 * Default plane state destroy hook for drivers which don't have their own
3205 * subclassed plane state structure.
3206 */
3207void drm_atomic_helper_plane_destroy_state(struct drm_plane *plane,
Daniel Vetter321ebf02014-11-04 22:57:27 +01003208 struct drm_plane_state *state)
Daniel Vetterd4617012014-11-03 15:56:43 +01003209{
Daniel Vetter2f701692016-05-09 16:34:10 +02003210 __drm_atomic_helper_plane_destroy_state(state);
Daniel Vetterd4617012014-11-03 15:56:43 +01003211 kfree(state);
3212}
3213EXPORT_SYMBOL(drm_atomic_helper_plane_destroy_state);
3214
3215/**
Maarten Lankhorst4cd39912016-01-04 12:53:16 +01003216 * __drm_atomic_helper_connector_reset - reset state on connector
3217 * @connector: drm connector
3218 * @conn_state: connector state to assign
3219 *
3220 * Initializes the newly allocated @conn_state and assigns it to
Daniel Vetter6806cdf2017-01-25 07:26:43 +01003221 * the &drm_conector->state pointer of @connector, usually required when
3222 * initializing the drivers or when called from the &drm_connector_funcs.reset
3223 * hook.
Maarten Lankhorst4cd39912016-01-04 12:53:16 +01003224 *
3225 * This is useful for drivers that subclass the connector state.
3226 */
3227void
3228__drm_atomic_helper_connector_reset(struct drm_connector *connector,
3229 struct drm_connector_state *conn_state)
3230{
3231 if (conn_state)
3232 conn_state->connector = connector;
3233
3234 connector->state = conn_state;
3235}
3236EXPORT_SYMBOL(__drm_atomic_helper_connector_reset);
3237
3238/**
Daniel Vetter6806cdf2017-01-25 07:26:43 +01003239 * drm_atomic_helper_connector_reset - default &drm_connector_funcs.reset hook for connectors
Daniel Vetterd4617012014-11-03 15:56:43 +01003240 * @connector: drm connector
3241 *
3242 * Resets the atomic state for @connector by freeing the state pointer (which
3243 * might be NULL, e.g. at driver load time) and allocating a new empty state
3244 * object.
3245 */
3246void drm_atomic_helper_connector_reset(struct drm_connector *connector)
3247{
Maarten Lankhorst4cd39912016-01-04 12:53:16 +01003248 struct drm_connector_state *conn_state =
3249 kzalloc(sizeof(*conn_state), GFP_KERNEL);
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01003250
Daniel Vetterb0b55112016-04-22 22:10:29 +02003251 if (connector->state)
Daniel Vetterfabd9102016-05-09 16:34:11 +02003252 __drm_atomic_helper_connector_destroy_state(connector->state);
Daniel Vetterb0b55112016-04-22 22:10:29 +02003253
Maarten Lankhorst4cd39912016-01-04 12:53:16 +01003254 kfree(connector->state);
3255 __drm_atomic_helper_connector_reset(connector, conn_state);
Daniel Vetterd4617012014-11-03 15:56:43 +01003256}
3257EXPORT_SYMBOL(drm_atomic_helper_connector_reset);
3258
3259/**
Thierry Redingf5e78402015-01-28 14:54:32 +01003260 * __drm_atomic_helper_connector_duplicate_state - copy atomic connector state
3261 * @connector: connector object
3262 * @state: atomic connector state
3263 *
3264 * Copies atomic state from a connector's current state. This is useful for
3265 * drivers that subclass the connector state.
3266 */
3267void
3268__drm_atomic_helper_connector_duplicate_state(struct drm_connector *connector,
3269 struct drm_connector_state *state)
3270{
3271 memcpy(state, connector->state, sizeof(*state));
Dave Airlied2307de2016-04-27 11:27:39 +10003272 if (state->crtc)
3273 drm_connector_reference(connector);
Thierry Redingf5e78402015-01-28 14:54:32 +01003274}
3275EXPORT_SYMBOL(__drm_atomic_helper_connector_duplicate_state);
3276
3277/**
Daniel Vetterd4617012014-11-03 15:56:43 +01003278 * drm_atomic_helper_connector_duplicate_state - default state duplicate hook
3279 * @connector: drm connector
3280 *
3281 * Default connector state duplicate hook for drivers which don't have their own
3282 * subclassed connector state structure.
3283 */
3284struct drm_connector_state *
3285drm_atomic_helper_connector_duplicate_state(struct drm_connector *connector)
3286{
Thierry Redingf5e78402015-01-28 14:54:32 +01003287 struct drm_connector_state *state;
3288
Daniel Vetterd4617012014-11-03 15:56:43 +01003289 if (WARN_ON(!connector->state))
3290 return NULL;
3291
Thierry Redingf5e78402015-01-28 14:54:32 +01003292 state = kmalloc(sizeof(*state), GFP_KERNEL);
3293 if (state)
3294 __drm_atomic_helper_connector_duplicate_state(connector, state);
3295
3296 return state;
Daniel Vetterd4617012014-11-03 15:56:43 +01003297}
3298EXPORT_SYMBOL(drm_atomic_helper_connector_duplicate_state);
3299
3300/**
Thierry Reding397fd772015-09-08 15:00:45 +02003301 * drm_atomic_helper_duplicate_state - duplicate an atomic state object
3302 * @dev: DRM device
3303 * @ctx: lock acquisition context
3304 *
3305 * Makes a copy of the current atomic state by looping over all objects and
Thierry Reding14942762015-12-02 17:50:04 +01003306 * duplicating their respective states. This is used for example by suspend/
3307 * resume support code to save the state prior to suspend such that it can
3308 * be restored upon resume.
Thierry Reding397fd772015-09-08 15:00:45 +02003309 *
3310 * Note that this treats atomic state as persistent between save and restore.
3311 * Drivers must make sure that this is possible and won't result in confusion
3312 * or erroneous behaviour.
3313 *
3314 * Note that if callers haven't already acquired all modeset locks this might
3315 * return -EDEADLK, which must be handled by calling drm_modeset_backoff().
3316 *
3317 * Returns:
3318 * A pointer to the copy of the atomic state object on success or an
3319 * ERR_PTR()-encoded error code on failure.
Thierry Reding14942762015-12-02 17:50:04 +01003320 *
3321 * See also:
3322 * drm_atomic_helper_suspend(), drm_atomic_helper_resume()
Thierry Reding397fd772015-09-08 15:00:45 +02003323 */
3324struct drm_atomic_state *
3325drm_atomic_helper_duplicate_state(struct drm_device *dev,
3326 struct drm_modeset_acquire_ctx *ctx)
3327{
3328 struct drm_atomic_state *state;
3329 struct drm_connector *conn;
Daniel Vetterc36a3252016-12-15 16:58:43 +01003330 struct drm_connector_list_iter conn_iter;
Thierry Reding397fd772015-09-08 15:00:45 +02003331 struct drm_plane *plane;
3332 struct drm_crtc *crtc;
3333 int err = 0;
3334
3335 state = drm_atomic_state_alloc(dev);
3336 if (!state)
3337 return ERR_PTR(-ENOMEM);
3338
3339 state->acquire_ctx = ctx;
3340
3341 drm_for_each_crtc(crtc, dev) {
3342 struct drm_crtc_state *crtc_state;
3343
3344 crtc_state = drm_atomic_get_crtc_state(state, crtc);
3345 if (IS_ERR(crtc_state)) {
3346 err = PTR_ERR(crtc_state);
3347 goto free;
3348 }
3349 }
3350
3351 drm_for_each_plane(plane, dev) {
3352 struct drm_plane_state *plane_state;
3353
3354 plane_state = drm_atomic_get_plane_state(state, plane);
3355 if (IS_ERR(plane_state)) {
3356 err = PTR_ERR(plane_state);
3357 goto free;
3358 }
3359 }
3360
Daniel Vetterc36a3252016-12-15 16:58:43 +01003361 drm_connector_list_iter_get(dev, &conn_iter);
3362 drm_for_each_connector_iter(conn, &conn_iter) {
Thierry Reding397fd772015-09-08 15:00:45 +02003363 struct drm_connector_state *conn_state;
3364
3365 conn_state = drm_atomic_get_connector_state(state, conn);
3366 if (IS_ERR(conn_state)) {
3367 err = PTR_ERR(conn_state);
Daniel Vetterc36a3252016-12-15 16:58:43 +01003368 drm_connector_list_iter_put(&conn_iter);
Thierry Reding397fd772015-09-08 15:00:45 +02003369 goto free;
3370 }
3371 }
Daniel Vetterc36a3252016-12-15 16:58:43 +01003372 drm_connector_list_iter_put(&conn_iter);
Thierry Reding397fd772015-09-08 15:00:45 +02003373
3374 /* clear the acquire context so that it isn't accidentally reused */
3375 state->acquire_ctx = NULL;
3376
3377free:
3378 if (err < 0) {
Chris Wilson08536952016-10-14 13:18:18 +01003379 drm_atomic_state_put(state);
Thierry Reding397fd772015-09-08 15:00:45 +02003380 state = ERR_PTR(err);
3381 }
3382
3383 return state;
3384}
3385EXPORT_SYMBOL(drm_atomic_helper_duplicate_state);
3386
3387/**
Thierry Redingf5e78402015-01-28 14:54:32 +01003388 * __drm_atomic_helper_connector_destroy_state - release connector state
Thierry Redingf5e78402015-01-28 14:54:32 +01003389 * @state: connector state object to release
3390 *
3391 * Releases all resources stored in the connector state without actually
3392 * freeing the memory of the connector state. This is useful for drivers that
3393 * subclass the connector state.
3394 */
3395void
Daniel Vetterfabd9102016-05-09 16:34:11 +02003396__drm_atomic_helper_connector_destroy_state(struct drm_connector_state *state)
Thierry Redingf5e78402015-01-28 14:54:32 +01003397{
Dave Airlied2307de2016-04-27 11:27:39 +10003398 if (state->crtc)
3399 drm_connector_unreference(state->connector);
Thierry Redingf5e78402015-01-28 14:54:32 +01003400}
3401EXPORT_SYMBOL(__drm_atomic_helper_connector_destroy_state);
3402
3403/**
Daniel Vetterd4617012014-11-03 15:56:43 +01003404 * drm_atomic_helper_connector_destroy_state - default state destroy hook
3405 * @connector: drm connector
3406 * @state: connector state object to release
3407 *
3408 * Default connector state destroy hook for drivers which don't have their own
3409 * subclassed connector state structure.
3410 */
3411void drm_atomic_helper_connector_destroy_state(struct drm_connector *connector,
3412 struct drm_connector_state *state)
3413{
Daniel Vetterfabd9102016-05-09 16:34:11 +02003414 __drm_atomic_helper_connector_destroy_state(state);
Daniel Vetterd4617012014-11-03 15:56:43 +01003415 kfree(state);
3416}
3417EXPORT_SYMBOL(drm_atomic_helper_connector_destroy_state);
Lionel Landwerlin5488dc12016-02-26 17:05:00 +00003418
3419/**
3420 * drm_atomic_helper_legacy_gamma_set - set the legacy gamma correction table
3421 * @crtc: CRTC object
3422 * @red: red correction table
3423 * @green: green correction table
3424 * @blue: green correction table
Lionel Landwerlin5488dc12016-02-26 17:05:00 +00003425 * @size: size of the tables
3426 *
3427 * Implements support for legacy gamma correction table for drivers
3428 * that support color management through the DEGAMMA_LUT/GAMMA_LUT
3429 * properties.
3430 */
Maarten Lankhorst7ea77282016-06-07 12:49:30 +02003431int drm_atomic_helper_legacy_gamma_set(struct drm_crtc *crtc,
3432 u16 *red, u16 *green, u16 *blue,
3433 uint32_t size)
Lionel Landwerlin5488dc12016-02-26 17:05:00 +00003434{
3435 struct drm_device *dev = crtc->dev;
3436 struct drm_mode_config *config = &dev->mode_config;
3437 struct drm_atomic_state *state;
3438 struct drm_crtc_state *crtc_state;
3439 struct drm_property_blob *blob = NULL;
3440 struct drm_color_lut *blob_data;
3441 int i, ret = 0;
3442
3443 state = drm_atomic_state_alloc(crtc->dev);
3444 if (!state)
Maarten Lankhorst7ea77282016-06-07 12:49:30 +02003445 return -ENOMEM;
Lionel Landwerlin5488dc12016-02-26 17:05:00 +00003446
3447 blob = drm_property_create_blob(dev,
3448 sizeof(struct drm_color_lut) * size,
3449 NULL);
Lionel Landwerlin562c5b42016-03-10 12:04:21 +00003450 if (IS_ERR(blob)) {
3451 ret = PTR_ERR(blob);
Lionel Landwerlinc1f415c2016-03-11 12:17:26 +00003452 blob = NULL;
Lionel Landwerlin5488dc12016-02-26 17:05:00 +00003453 goto fail;
3454 }
3455
3456 /* Prepare GAMMA_LUT with the legacy values. */
3457 blob_data = (struct drm_color_lut *) blob->data;
3458 for (i = 0; i < size; i++) {
3459 blob_data[i].red = red[i];
3460 blob_data[i].green = green[i];
3461 blob_data[i].blue = blue[i];
3462 }
3463
3464 state->acquire_ctx = crtc->dev->mode_config.acquire_ctx;
3465retry:
3466 crtc_state = drm_atomic_get_crtc_state(state, crtc);
3467 if (IS_ERR(crtc_state)) {
3468 ret = PTR_ERR(crtc_state);
3469 goto fail;
3470 }
3471
3472 /* Reset DEGAMMA_LUT and CTM properties. */
3473 ret = drm_atomic_crtc_set_property(crtc, crtc_state,
3474 config->degamma_lut_property, 0);
3475 if (ret)
3476 goto fail;
3477
3478 ret = drm_atomic_crtc_set_property(crtc, crtc_state,
3479 config->ctm_property, 0);
3480 if (ret)
3481 goto fail;
3482
3483 ret = drm_atomic_crtc_set_property(crtc, crtc_state,
3484 config->gamma_lut_property, blob->base.id);
3485 if (ret)
3486 goto fail;
3487
3488 ret = drm_atomic_commit(state);
Lionel Landwerlin5488dc12016-02-26 17:05:00 +00003489fail:
3490 if (ret == -EDEADLK)
3491 goto backoff;
3492
Chris Wilson08536952016-10-14 13:18:18 +01003493 drm_atomic_state_put(state);
Lionel Landwerlin5488dc12016-02-26 17:05:00 +00003494 drm_property_unreference_blob(blob);
Maarten Lankhorst7ea77282016-06-07 12:49:30 +02003495 return ret;
Chris Wilson08536952016-10-14 13:18:18 +01003496
Lionel Landwerlin5488dc12016-02-26 17:05:00 +00003497backoff:
3498 drm_atomic_state_clear(state);
3499 drm_atomic_legacy_backoff(state);
3500
3501 goto retry;
3502}
3503EXPORT_SYMBOL(drm_atomic_helper_legacy_gamma_set);