blob: 6b12396f718b3bd9d16901c541e464d5b43ca450 [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 */
Thierry Redingb982dab2017-02-28 15:46:43 +0100148 drm_connector_list_iter_begin(state->dev, &conn_iter);
Daniel Vetterc36a3252016-12-15 16:58:43 +0100149 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:
Thierry Redingb982dab2017-02-28 15:46:43 +0100196 drm_connector_list_iter_end(&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)) {
Russell King6ac7c542017-02-13 12:27:03 +0000325 DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] incompatible with [CRTC:%d:%s]\n",
Daniel Vetter5481c8f2015-11-18 18:46:48 +0100326 new_encoder->base.id,
327 new_encoder->name,
Russell King6ac7c542017-02-13 12:27:03 +0000328 connector_state->crtc->base.id,
329 connector_state->crtc->name);
Daniel Vetter5481c8f2015-11-18 18:46:48 +0100330 return -EINVAL;
331 }
332
Daniel Vetter623369e2014-09-16 17:50:47 +0200333 if (new_encoder == connector_state->best_encoder) {
Maarten Lankhorste87a52b2016-01-28 15:04:58 +0100334 set_best_encoder(state, connector_state, new_encoder);
335
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200336 DRM_DEBUG_ATOMIC("[CONNECTOR:%d:%s] keeps [ENCODER:%d:%s], now on [CRTC:%d:%s]\n",
Daniel Vetter17a38d92015-02-22 12:24:16 +0100337 connector->base.id,
338 connector->name,
339 new_encoder->base.id,
340 new_encoder->name,
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200341 connector_state->crtc->base.id,
342 connector_state->crtc->name);
Daniel Vetter623369e2014-09-16 17:50:47 +0200343
344 return 0;
345 }
346
Maarten Lankhorstec5aaa52016-03-03 10:17:41 +0100347 steal_encoder(state, new_encoder);
Daniel Vetter623369e2014-09-16 17:50:47 +0200348
Maarten Lankhorste87a52b2016-01-28 15:04:58 +0100349 set_best_encoder(state, connector_state, new_encoder);
350
Maarten Lankhorst9b8d1e52016-03-03 10:17:42 +0100351 crtc_state = drm_atomic_get_existing_crtc_state(state, connector_state->crtc);
Maarten Lankhorstfc596662015-07-21 13:28:57 +0200352 crtc_state->connectors_changed = true;
Daniel Vetter623369e2014-09-16 17:50:47 +0200353
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200354 DRM_DEBUG_ATOMIC("[CONNECTOR:%d:%s] using [ENCODER:%d:%s] on [CRTC:%d:%s]\n",
Daniel Vetter17a38d92015-02-22 12:24:16 +0100355 connector->base.id,
356 connector->name,
357 new_encoder->base.id,
358 new_encoder->name,
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200359 connector_state->crtc->base.id,
360 connector_state->crtc->name);
Daniel Vetter623369e2014-09-16 17:50:47 +0200361
362 return 0;
363}
364
365static int
366mode_fixup(struct drm_atomic_state *state)
367{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300368 struct drm_crtc *crtc;
Daniel Vetter623369e2014-09-16 17:50:47 +0200369 struct drm_crtc_state *crtc_state;
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300370 struct drm_connector *connector;
Daniel Vetter623369e2014-09-16 17:50:47 +0200371 struct drm_connector_state *conn_state;
372 int i;
Dan Carpenterf9ad86e2017-02-08 02:46:01 +0300373 int ret;
Daniel Vetter623369e2014-09-16 17:50:47 +0200374
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300375 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Maarten Lankhorstfc596662015-07-21 13:28:57 +0200376 if (!crtc_state->mode_changed &&
377 !crtc_state->connectors_changed)
Daniel Vetter623369e2014-09-16 17:50:47 +0200378 continue;
379
380 drm_mode_copy(&crtc_state->adjusted_mode, &crtc_state->mode);
381 }
382
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300383 for_each_connector_in_state(state, connector, conn_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +0200384 const struct drm_encoder_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200385 struct drm_encoder *encoder;
386
Daniel Vetter623369e2014-09-16 17:50:47 +0200387 WARN_ON(!!conn_state->best_encoder != !!conn_state->crtc);
388
389 if (!conn_state->crtc || !conn_state->best_encoder)
390 continue;
391
Andrzej Hajda2943ef32016-03-15 13:46:00 +0100392 crtc_state = drm_atomic_get_existing_crtc_state(state,
393 conn_state->crtc);
Daniel Vetter623369e2014-09-16 17:50:47 +0200394
395 /*
396 * Each encoder has at most one connector (since we always steal
397 * it away), so we won't call ->mode_fixup twice.
398 */
399 encoder = conn_state->best_encoder;
400 funcs = encoder->helper_private;
401
Archit Taneja862e6862015-05-21 11:03:16 +0530402 ret = drm_bridge_mode_fixup(encoder->bridge, &crtc_state->mode,
403 &crtc_state->adjusted_mode);
404 if (!ret) {
405 DRM_DEBUG_ATOMIC("Bridge fixup failed\n");
406 return -EINVAL;
Daniel Vetter623369e2014-09-16 17:50:47 +0200407 }
408
Noralf Trønnes28276352016-05-11 18:09:20 +0200409 if (funcs && funcs->atomic_check) {
Thierry Reding4cd4df82014-12-03 16:44:34 +0100410 ret = funcs->atomic_check(encoder, crtc_state,
411 conn_state);
412 if (ret) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100413 DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] check failed\n",
414 encoder->base.id, encoder->name);
Thierry Reding4cd4df82014-12-03 16:44:34 +0100415 return ret;
416 }
Noralf Trønnes28276352016-05-11 18:09:20 +0200417 } else if (funcs && funcs->mode_fixup) {
Thierry Reding4cd4df82014-12-03 16:44:34 +0100418 ret = funcs->mode_fixup(encoder, &crtc_state->mode,
419 &crtc_state->adjusted_mode);
420 if (!ret) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100421 DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] fixup failed\n",
422 encoder->base.id, encoder->name);
Thierry Reding4cd4df82014-12-03 16:44:34 +0100423 return -EINVAL;
424 }
Daniel Vetter623369e2014-09-16 17:50:47 +0200425 }
426 }
427
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300428 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +0200429 const struct drm_crtc_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200430
Liu Yingf55f1702016-05-27 17:35:54 +0800431 if (!crtc_state->enable)
432 continue;
433
Maarten Lankhorstfc596662015-07-21 13:28:57 +0200434 if (!crtc_state->mode_changed &&
435 !crtc_state->connectors_changed)
Daniel Vetter623369e2014-09-16 17:50:47 +0200436 continue;
437
438 funcs = crtc->helper_private;
Ander Conselvan de Oliveira840bfe92015-04-21 17:13:18 +0300439 if (!funcs->mode_fixup)
440 continue;
441
Daniel Vetter623369e2014-09-16 17:50:47 +0200442 ret = funcs->mode_fixup(crtc, &crtc_state->mode,
443 &crtc_state->adjusted_mode);
444 if (!ret) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200445 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] fixup failed\n",
446 crtc->base.id, crtc->name);
Daniel Vetter623369e2014-09-16 17:50:47 +0200447 return -EINVAL;
448 }
449 }
450
451 return 0;
452}
453
Daniel Vetterd9b13622014-11-26 16:57:41 +0100454/**
John Hunterf98bd3e2015-03-17 15:30:26 +0800455 * drm_atomic_helper_check_modeset - validate state object for modeset changes
Daniel Vetterd9b13622014-11-26 16:57:41 +0100456 * @dev: DRM device
457 * @state: the driver state object
458 *
459 * Check the state object to see if the requested state is physically possible.
460 * This does all the crtc and connector related computations for an atomic
Maarten Lankhorstfc596662015-07-21 13:28:57 +0200461 * update and adds any additional connectors needed for full modesets and calls
Daniel Vetter6806cdf2017-01-25 07:26:43 +0100462 * down into &drm_crtc_helper_funcs.mode_fixup and
463 * &drm_encoder_helper_funcs.mode_fixup or
464 * &drm_encoder_helper_funcs.atomic_check functions of the driver backend.
Maarten Lankhorstfc596662015-07-21 13:28:57 +0200465 *
Daniel Vetter6806cdf2017-01-25 07:26:43 +0100466 * &drm_crtc_state.mode_changed is set when the input mode is changed.
467 * &drm_crtc_state.connectors_changed is set when a connector is added or
468 * removed from the crtc. &drm_crtc_state.active_changed is set when
469 * &drm_crtc_state.active changes, which is used for DPMS.
Brian Starkeyd807ed12016-10-13 10:47:08 +0100470 * See also: drm_atomic_crtc_needs_modeset()
Daniel Vetterd9b13622014-11-26 16:57:41 +0100471 *
472 * IMPORTANT:
473 *
Daniel Vetter6806cdf2017-01-25 07:26:43 +0100474 * Drivers which set &drm_crtc_state.mode_changed (e.g. in their
475 * &drm_plane_helper_funcs.atomic_check hooks if a plane update can't be done
476 * without a full modeset) _must_ call this function afterwards after that
477 * change. It is permitted to call this function multiple times for the same
478 * update, e.g. when the &drm_crtc_helper_funcs.atomic_check functions depend
479 * upon the adjusted dotclock for fifo space allocation and watermark
480 * computation.
Daniel Vetterd9b13622014-11-26 16:57:41 +0100481 *
Daniel Vetterc39032a2016-06-08 14:19:19 +0200482 * RETURNS:
Daniel Vetterd9b13622014-11-26 16:57:41 +0100483 * Zero for success or -errno
484 */
485int
Rob Clark934ce1c2014-11-19 16:41:33 -0500486drm_atomic_helper_check_modeset(struct drm_device *dev,
Daniel Vetter623369e2014-09-16 17:50:47 +0200487 struct drm_atomic_state *state)
488{
Daniel Vetter623369e2014-09-16 17:50:47 +0200489 struct drm_crtc *crtc;
490 struct drm_crtc_state *crtc_state;
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300491 struct drm_connector *connector;
492 struct drm_connector_state *connector_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200493 int i, ret;
494
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300495 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Daniel Vetter623369e2014-09-16 17:50:47 +0200496 if (!drm_mode_equal(&crtc->state->mode, &crtc_state->mode)) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200497 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] mode changed\n",
498 crtc->base.id, crtc->name);
Daniel Vetter623369e2014-09-16 17:50:47 +0200499 crtc_state->mode_changed = true;
500 }
501
502 if (crtc->state->enable != crtc_state->enable) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200503 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] enable changed\n",
504 crtc->base.id, crtc->name);
Maarten Lankhorstfc596662015-07-21 13:28:57 +0200505
506 /*
507 * For clarity this assignment is done here, but
508 * enable == 0 is only true when there are no
509 * connectors and a NULL mode.
510 *
511 * The other way around is true as well. enable != 0
512 * iff connectors are attached and a mode is set.
513 */
Daniel Vetter623369e2014-09-16 17:50:47 +0200514 crtc_state->mode_changed = true;
Maarten Lankhorstfc596662015-07-21 13:28:57 +0200515 crtc_state->connectors_changed = true;
Daniel Vetter623369e2014-09-16 17:50:47 +0200516 }
517 }
518
Maarten Lankhorst8248b652016-03-03 10:17:40 +0100519 ret = handle_conflicting_encoders(state, state->legacy_set_config);
520 if (ret)
521 return ret;
Maarten Lankhorst40616a22016-03-03 10:17:39 +0100522
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300523 for_each_connector_in_state(state, connector, connector_state, i) {
Daniel Vetter623369e2014-09-16 17:50:47 +0200524 /*
Brian Starkeyd807ed12016-10-13 10:47:08 +0100525 * This only sets crtc->connectors_changed for routing changes,
526 * drivers must set crtc->connectors_changed themselves when
527 * connector properties need to be updated.
Daniel Vetter623369e2014-09-16 17:50:47 +0200528 */
Maarten Lankhorst94595452016-02-24 09:37:29 +0100529 ret = update_connector_routing(state, connector,
530 connector_state);
Daniel Vetter623369e2014-09-16 17:50:47 +0200531 if (ret)
532 return ret;
Manasi Navare40ee6fb2016-12-16 12:29:06 +0200533 if (connector->state->crtc) {
534 crtc_state = drm_atomic_get_existing_crtc_state(state,
535 connector->state->crtc);
536 if (connector->state->link_status !=
537 connector_state->link_status)
538 crtc_state->connectors_changed = true;
539 }
Daniel Vetter623369e2014-09-16 17:50:47 +0200540 }
541
542 /*
543 * After all the routing has been prepared we need to add in any
544 * connector which is itself unchanged, but who's crtc changes it's
545 * configuration. This must be done before calling mode_fixup in case a
546 * crtc only changed its mode but has the same set of connectors.
547 */
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300548 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Maarten Lankhorst14de6c42016-01-04 12:53:20 +0100549 bool has_connectors =
550 !!crtc_state->connector_mask;
Daniel Vetter623369e2014-09-16 17:50:47 +0200551
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100552 /*
553 * We must set ->active_changed after walking connectors for
554 * otherwise an update that only changes active would result in
555 * a full modeset because update_connector_routing force that.
556 */
557 if (crtc->state->active != crtc_state->active) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200558 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] active changed\n",
559 crtc->base.id, crtc->name);
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100560 crtc_state->active_changed = true;
561 }
562
Daniel Vetter2465ff62015-06-18 09:58:55 +0200563 if (!drm_atomic_crtc_needs_modeset(crtc_state))
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100564 continue;
565
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200566 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] needs all connectors, enable: %c, active: %c\n",
567 crtc->base.id, crtc->name,
Daniel Vetter17a38d92015-02-22 12:24:16 +0100568 crtc_state->enable ? 'y' : 'n',
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200569 crtc_state->active ? 'y' : 'n');
Daniel Vetter623369e2014-09-16 17:50:47 +0200570
571 ret = drm_atomic_add_affected_connectors(state, crtc);
572 if (ret != 0)
573 return ret;
574
Maarten Lankhorst57744aa2015-05-19 16:41:03 +0200575 ret = drm_atomic_add_affected_planes(state, crtc);
576 if (ret != 0)
577 return ret;
578
Maarten Lankhorst14de6c42016-01-04 12:53:20 +0100579 if (crtc_state->enable != has_connectors) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200580 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] enabled/connectors mismatch\n",
581 crtc->base.id, crtc->name);
Daniel Vetter623369e2014-09-16 17:50:47 +0200582
583 return -EINVAL;
584 }
585 }
586
587 return mode_fixup(state);
588}
Daniel Vetterd9b13622014-11-26 16:57:41 +0100589EXPORT_SYMBOL(drm_atomic_helper_check_modeset);
Daniel Vetter623369e2014-09-16 17:50:47 +0200590
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100591/**
John Hunterf98bd3e2015-03-17 15:30:26 +0800592 * drm_atomic_helper_check_planes - validate state object for planes changes
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100593 * @dev: DRM device
594 * @state: the driver state object
595 *
596 * Check the state object to see if the requested state is physically possible.
Daniel Vetterd9b13622014-11-26 16:57:41 +0100597 * This does all the plane update related checks using by calling into the
Daniel Vetter6806cdf2017-01-25 07:26:43 +0100598 * &drm_crtc_helper_funcs.atomic_check and &drm_plane_helper_funcs.atomic_check
599 * hooks provided by the driver.
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100600 *
Daniel Vetter6806cdf2017-01-25 07:26:43 +0100601 * It also sets &drm_crtc_state.planes_changed to indicate that a crtc has
Maarten Lankhorstfc596662015-07-21 13:28:57 +0200602 * updated planes.
603 *
Daniel Vetterc39032a2016-06-08 14:19:19 +0200604 * RETURNS:
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100605 * Zero for success or -errno
606 */
Daniel Vetterd9b13622014-11-26 16:57:41 +0100607int
608drm_atomic_helper_check_planes(struct drm_device *dev,
609 struct drm_atomic_state *state)
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100610{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300611 struct drm_crtc *crtc;
612 struct drm_crtc_state *crtc_state;
613 struct drm_plane *plane;
614 struct drm_plane_state *plane_state;
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100615 int i, ret = 0;
616
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300617 for_each_plane_in_state(state, plane, plane_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +0200618 const struct drm_plane_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100619
620 funcs = plane->helper_private;
621
622 drm_atomic_helper_plane_changed(state, plane_state, plane);
623
624 if (!funcs || !funcs->atomic_check)
625 continue;
626
627 ret = funcs->atomic_check(plane, plane_state);
628 if (ret) {
Ville Syrjälä9f4c97a2015-12-08 18:41:54 +0200629 DRM_DEBUG_ATOMIC("[PLANE:%d:%s] atomic driver check failed\n",
630 plane->base.id, plane->name);
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100631 return ret;
632 }
633 }
634
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300635 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +0200636 const struct drm_crtc_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100637
638 funcs = crtc->helper_private;
639
640 if (!funcs || !funcs->atomic_check)
641 continue;
642
Daniel Vetterbe9174a2016-06-02 00:06:24 +0200643 ret = funcs->atomic_check(crtc, crtc_state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100644 if (ret) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200645 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] atomic driver check failed\n",
646 crtc->base.id, crtc->name);
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100647 return ret;
648 }
649 }
650
Daniel Vetterd9b13622014-11-26 16:57:41 +0100651 return ret;
652}
653EXPORT_SYMBOL(drm_atomic_helper_check_planes);
654
655/**
656 * drm_atomic_helper_check - validate state object
657 * @dev: DRM device
658 * @state: the driver state object
659 *
660 * Check the state object to see if the requested state is physically possible.
661 * Only crtcs and planes have check callbacks, so for any additional (global)
662 * checking that a driver needs it can simply wrap that around this function.
Daniel Vetter6806cdf2017-01-25 07:26:43 +0100663 * Drivers without such needs can directly use this as their
664 * &drm_mode_config_funcs.atomic_check callback.
Daniel Vetterd9b13622014-11-26 16:57:41 +0100665 *
Daniel Vetterb4274fb2014-11-26 17:02:18 +0100666 * This just wraps the two parts of the state checking for planes and modeset
667 * state in the default order: First it calls drm_atomic_helper_check_modeset()
668 * and then drm_atomic_helper_check_planes(). The assumption is that the
Daniel Vetter6806cdf2017-01-25 07:26:43 +0100669 * @drm_plane_helper_funcs.atomic_check and @drm_crtc_helper_funcs.atomic_check
670 * functions depend upon an updated adjusted_mode.clock to e.g. properly compute
671 * watermarks.
Daniel Vetterb4274fb2014-11-26 17:02:18 +0100672 *
Daniel Vetterc39032a2016-06-08 14:19:19 +0200673 * RETURNS:
Daniel Vetterd9b13622014-11-26 16:57:41 +0100674 * Zero for success or -errno
675 */
676int drm_atomic_helper_check(struct drm_device *dev,
677 struct drm_atomic_state *state)
678{
679 int ret;
680
Daniel Vetterb4274fb2014-11-26 17:02:18 +0100681 ret = drm_atomic_helper_check_modeset(dev, state);
Daniel Vetterd9b13622014-11-26 16:57:41 +0100682 if (ret)
683 return ret;
684
Daniel Vetterb4274fb2014-11-26 17:02:18 +0100685 ret = drm_atomic_helper_check_planes(dev, state);
Rob Clark934ce1c2014-11-19 16:41:33 -0500686 if (ret)
687 return ret;
688
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100689 return ret;
690}
691EXPORT_SYMBOL(drm_atomic_helper_check);
692
Daniel Vetter623369e2014-09-16 17:50:47 +0200693static void
694disable_outputs(struct drm_device *dev, struct drm_atomic_state *old_state)
695{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300696 struct drm_connector *connector;
697 struct drm_connector_state *old_conn_state;
698 struct drm_crtc *crtc;
699 struct drm_crtc_state *old_crtc_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200700 int i;
701
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300702 for_each_connector_in_state(old_state, connector, old_conn_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +0200703 const struct drm_encoder_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200704 struct drm_encoder *encoder;
705
Daniel Vetter623369e2014-09-16 17:50:47 +0200706 /* Shut down everything that's in the changeset and currently
707 * still on. So need to check the old, saved state. */
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300708 if (!old_conn_state->crtc)
Daniel Vetter623369e2014-09-16 17:50:47 +0200709 continue;
710
Andrzej Hajda2943ef32016-03-15 13:46:00 +0100711 old_crtc_state = drm_atomic_get_existing_crtc_state(old_state,
712 old_conn_state->crtc);
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100713
Daniel Vetter4218a322015-03-26 22:18:40 +0100714 if (!old_crtc_state->active ||
Daniel Vetter2465ff62015-06-18 09:58:55 +0200715 !drm_atomic_crtc_needs_modeset(old_conn_state->crtc->state))
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100716 continue;
717
Rob Clark46df9ad2014-11-20 15:40:36 -0500718 encoder = old_conn_state->best_encoder;
Daniel Vetter623369e2014-09-16 17:50:47 +0200719
Rob Clark46df9ad2014-11-20 15:40:36 -0500720 /* We shouldn't get this far if we didn't previously have
721 * an encoder.. but WARN_ON() rather than explode.
722 */
723 if (WARN_ON(!encoder))
Daniel Vetter623369e2014-09-16 17:50:47 +0200724 continue;
725
726 funcs = encoder->helper_private;
727
Daniel Vetter17a38d92015-02-22 12:24:16 +0100728 DRM_DEBUG_ATOMIC("disabling [ENCODER:%d:%s]\n",
729 encoder->base.id, encoder->name);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100730
Daniel Vetter623369e2014-09-16 17:50:47 +0200731 /*
732 * Each encoder has at most one connector (since we always steal
John Hunterf98bd3e2015-03-17 15:30:26 +0800733 * it away), so we won't call disable hooks twice.
Daniel Vetter623369e2014-09-16 17:50:47 +0200734 */
Archit Taneja862e6862015-05-21 11:03:16 +0530735 drm_bridge_disable(encoder->bridge);
Daniel Vetter623369e2014-09-16 17:50:47 +0200736
737 /* Right function depends upon target state. */
Noralf Trønnes28276352016-05-11 18:09:20 +0200738 if (funcs) {
739 if (connector->state->crtc && funcs->prepare)
740 funcs->prepare(encoder);
741 else if (funcs->disable)
742 funcs->disable(encoder);
743 else if (funcs->dpms)
744 funcs->dpms(encoder, DRM_MODE_DPMS_OFF);
745 }
Daniel Vetter623369e2014-09-16 17:50:47 +0200746
Archit Taneja862e6862015-05-21 11:03:16 +0530747 drm_bridge_post_disable(encoder->bridge);
Daniel Vetter623369e2014-09-16 17:50:47 +0200748 }
749
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300750 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +0200751 const struct drm_crtc_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200752
753 /* Shut down everything that needs a full modeset. */
Daniel Vetter2465ff62015-06-18 09:58:55 +0200754 if (!drm_atomic_crtc_needs_modeset(crtc->state))
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100755 continue;
756
757 if (!old_crtc_state->active)
Daniel Vetter623369e2014-09-16 17:50:47 +0200758 continue;
759
760 funcs = crtc->helper_private;
761
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200762 DRM_DEBUG_ATOMIC("disabling [CRTC:%d:%s]\n",
763 crtc->base.id, crtc->name);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100764
765
Daniel Vetter623369e2014-09-16 17:50:47 +0200766 /* Right function depends upon target state. */
Daniel Vetteree0a89c2015-01-22 16:36:24 +0100767 if (crtc->state->enable && funcs->prepare)
Daniel Vetter623369e2014-09-16 17:50:47 +0200768 funcs->prepare(crtc);
Liu Yingc9ac8b42016-08-26 15:30:38 +0800769 else if (funcs->atomic_disable)
770 funcs->atomic_disable(crtc, old_crtc_state);
Daniel Vetter623369e2014-09-16 17:50:47 +0200771 else if (funcs->disable)
772 funcs->disable(crtc);
773 else
774 funcs->dpms(crtc, DRM_MODE_DPMS_OFF);
775 }
776}
777
Daniel Vetter4c18d302015-05-12 15:27:37 +0200778/**
779 * drm_atomic_helper_update_legacy_modeset_state - update legacy modeset state
780 * @dev: DRM device
781 * @old_state: atomic state object with old state structures
782 *
783 * This function updates all the various legacy modeset state pointers in
784 * connectors, encoders and crtcs. It also updates the timestamping constants
785 * used for precise vblank timestamps by calling
786 * drm_calc_timestamping_constants().
787 *
788 * Drivers can use this for building their own atomic commit if they don't have
789 * a pure helper-based modeset implementation.
790 */
791void
792drm_atomic_helper_update_legacy_modeset_state(struct drm_device *dev,
793 struct drm_atomic_state *old_state)
Daniel Vetter623369e2014-09-16 17:50:47 +0200794{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300795 struct drm_connector *connector;
796 struct drm_connector_state *old_conn_state;
797 struct drm_crtc *crtc;
798 struct drm_crtc_state *old_crtc_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200799 int i;
800
Maarten Lankhorst8c103422015-07-27 13:24:29 +0200801 /* clear out existing links and update dpms */
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300802 for_each_connector_in_state(old_state, connector, old_conn_state, i) {
Maarten Lankhorst8c103422015-07-27 13:24:29 +0200803 if (connector->encoder) {
804 WARN_ON(!connector->encoder->crtc);
Daniel Vetter623369e2014-09-16 17:50:47 +0200805
Maarten Lankhorst8c103422015-07-27 13:24:29 +0200806 connector->encoder->crtc = NULL;
807 connector->encoder = NULL;
808 }
Daniel Vetter623369e2014-09-16 17:50:47 +0200809
Maarten Lankhorst8c103422015-07-27 13:24:29 +0200810 crtc = connector->state->crtc;
811 if ((!crtc && old_conn_state->crtc) ||
812 (crtc && drm_atomic_crtc_needs_modeset(crtc->state))) {
813 struct drm_property *dpms_prop =
814 dev->mode_config.dpms_property;
815 int mode = DRM_MODE_DPMS_OFF;
816
817 if (crtc && crtc->state->active)
818 mode = DRM_MODE_DPMS_ON;
819
820 connector->dpms = mode;
821 drm_object_property_set_value(&connector->base,
822 dpms_prop, mode);
823 }
Daniel Vetter623369e2014-09-16 17:50:47 +0200824 }
825
826 /* set new links */
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300827 for_each_connector_in_state(old_state, connector, old_conn_state, i) {
828 if (!connector->state->crtc)
Daniel Vetter623369e2014-09-16 17:50:47 +0200829 continue;
830
831 if (WARN_ON(!connector->state->best_encoder))
832 continue;
833
834 connector->encoder = connector->state->best_encoder;
835 connector->encoder->crtc = connector->state->crtc;
836 }
837
838 /* set legacy state in the crtc structure */
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300839 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Maarten Lankhorst26608012015-07-16 15:51:01 +0200840 struct drm_plane *primary = crtc->primary;
841
Daniel Vetter623369e2014-09-16 17:50:47 +0200842 crtc->mode = crtc->state->mode;
843 crtc->enabled = crtc->state->enable;
Maarten Lankhorst26608012015-07-16 15:51:01 +0200844
845 if (drm_atomic_get_existing_plane_state(old_state, primary) &&
846 primary->state->crtc == crtc) {
847 crtc->x = primary->state->src_x >> 16;
848 crtc->y = primary->state->src_y >> 16;
849 }
Daniel Vetter3d51d2d2015-05-12 15:21:06 +0200850
851 if (crtc->state->enable)
852 drm_calc_timestamping_constants(crtc,
853 &crtc->state->adjusted_mode);
Daniel Vetter623369e2014-09-16 17:50:47 +0200854 }
855}
Daniel Vetter4c18d302015-05-12 15:27:37 +0200856EXPORT_SYMBOL(drm_atomic_helper_update_legacy_modeset_state);
Daniel Vetter623369e2014-09-16 17:50:47 +0200857
858static void
859crtc_set_mode(struct drm_device *dev, struct drm_atomic_state *old_state)
860{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300861 struct drm_crtc *crtc;
862 struct drm_crtc_state *old_crtc_state;
863 struct drm_connector *connector;
864 struct drm_connector_state *old_conn_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200865 int i;
866
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300867 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +0200868 const struct drm_crtc_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200869
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300870 if (!crtc->state->mode_changed)
Daniel Vetter623369e2014-09-16 17:50:47 +0200871 continue;
872
873 funcs = crtc->helper_private;
874
Daniel Vetterc982bd92015-02-22 12:24:20 +0100875 if (crtc->state->enable && funcs->mode_set_nofb) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200876 DRM_DEBUG_ATOMIC("modeset on [CRTC:%d:%s]\n",
877 crtc->base.id, crtc->name);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100878
Daniel Vetter623369e2014-09-16 17:50:47 +0200879 funcs->mode_set_nofb(crtc);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100880 }
Daniel Vetter623369e2014-09-16 17:50:47 +0200881 }
882
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300883 for_each_connector_in_state(old_state, connector, old_conn_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +0200884 const struct drm_encoder_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200885 struct drm_crtc_state *new_crtc_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200886 struct drm_encoder *encoder;
887 struct drm_display_mode *mode, *adjusted_mode;
888
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300889 if (!connector->state->best_encoder)
Daniel Vetter623369e2014-09-16 17:50:47 +0200890 continue;
891
892 encoder = connector->state->best_encoder;
893 funcs = encoder->helper_private;
894 new_crtc_state = connector->state->crtc->state;
895 mode = &new_crtc_state->mode;
896 adjusted_mode = &new_crtc_state->adjusted_mode;
897
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100898 if (!new_crtc_state->mode_changed)
899 continue;
900
Daniel Vetter17a38d92015-02-22 12:24:16 +0100901 DRM_DEBUG_ATOMIC("modeset on [ENCODER:%d:%s]\n",
902 encoder->base.id, encoder->name);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100903
Daniel Vetter623369e2014-09-16 17:50:47 +0200904 /*
905 * Each encoder has at most one connector (since we always steal
John Hunterf98bd3e2015-03-17 15:30:26 +0800906 * it away), so we won't call mode_set hooks twice.
Daniel Vetter623369e2014-09-16 17:50:47 +0200907 */
Philipp Zabelfe4a11c2016-07-22 12:20:47 +0200908 if (funcs && funcs->atomic_mode_set) {
909 funcs->atomic_mode_set(encoder, new_crtc_state,
910 connector->state);
911 } else if (funcs && funcs->mode_set) {
Daniel Vetterc982bd92015-02-22 12:24:20 +0100912 funcs->mode_set(encoder, mode, adjusted_mode);
Philipp Zabelfe4a11c2016-07-22 12:20:47 +0200913 }
Daniel Vetter623369e2014-09-16 17:50:47 +0200914
Archit Taneja862e6862015-05-21 11:03:16 +0530915 drm_bridge_mode_set(encoder->bridge, mode, adjusted_mode);
Daniel Vetter623369e2014-09-16 17:50:47 +0200916 }
917}
918
919/**
Daniel Vetter1af434a2015-02-22 12:24:19 +0100920 * drm_atomic_helper_commit_modeset_disables - modeset commit to disable outputs
Daniel Vetter623369e2014-09-16 17:50:47 +0200921 * @dev: DRM device
Laurent Pincharta072f802015-02-22 12:24:18 +0100922 * @old_state: atomic state object with old state structures
Daniel Vetter623369e2014-09-16 17:50:47 +0200923 *
Daniel Vetter1af434a2015-02-22 12:24:19 +0100924 * This function shuts down all the outputs that need to be shut down and
Daniel Vetter623369e2014-09-16 17:50:47 +0200925 * prepares them (if required) with the new mode.
Daniel Vetter1af434a2015-02-22 12:24:19 +0100926 *
Laurent Pinchart60acc4e2015-05-27 15:05:42 +0300927 * For compatibility with legacy crtc helpers this should be called before
Daniel Vetter1af434a2015-02-22 12:24:19 +0100928 * drm_atomic_helper_commit_planes(), which is what the default commit function
929 * does. But drivers with different needs can group the modeset commits together
930 * and do the plane commits at the end. This is useful for drivers doing runtime
931 * PM since planes updates then only happen when the CRTC is actually enabled.
Daniel Vetter623369e2014-09-16 17:50:47 +0200932 */
Daniel Vetter1af434a2015-02-22 12:24:19 +0100933void drm_atomic_helper_commit_modeset_disables(struct drm_device *dev,
934 struct drm_atomic_state *old_state)
Daniel Vetter623369e2014-09-16 17:50:47 +0200935{
Laurent Pincharta072f802015-02-22 12:24:18 +0100936 disable_outputs(dev, old_state);
Daniel Vetter4c18d302015-05-12 15:27:37 +0200937
938 drm_atomic_helper_update_legacy_modeset_state(dev, old_state);
939
Laurent Pincharta072f802015-02-22 12:24:18 +0100940 crtc_set_mode(dev, old_state);
Daniel Vetter623369e2014-09-16 17:50:47 +0200941}
Daniel Vetter1af434a2015-02-22 12:24:19 +0100942EXPORT_SYMBOL(drm_atomic_helper_commit_modeset_disables);
Daniel Vetter623369e2014-09-16 17:50:47 +0200943
944/**
Daniel Vetter1af434a2015-02-22 12:24:19 +0100945 * drm_atomic_helper_commit_modeset_enables - modeset commit to enable outputs
Daniel Vetter623369e2014-09-16 17:50:47 +0200946 * @dev: DRM device
947 * @old_state: atomic state object with old state structures
948 *
Daniel Vetter1af434a2015-02-22 12:24:19 +0100949 * This function enables all the outputs with the new configuration which had to
950 * be turned off for the update.
951 *
Laurent Pinchart60acc4e2015-05-27 15:05:42 +0300952 * For compatibility with legacy crtc helpers this should be called after
Daniel Vetter1af434a2015-02-22 12:24:19 +0100953 * drm_atomic_helper_commit_planes(), which is what the default commit function
954 * does. But drivers with different needs can group the modeset commits together
955 * and do the plane commits at the end. This is useful for drivers doing runtime
956 * PM since planes updates then only happen when the CRTC is actually enabled.
Daniel Vetter623369e2014-09-16 17:50:47 +0200957 */
Daniel Vetter1af434a2015-02-22 12:24:19 +0100958void drm_atomic_helper_commit_modeset_enables(struct drm_device *dev,
959 struct drm_atomic_state *old_state)
Daniel Vetter623369e2014-09-16 17:50:47 +0200960{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300961 struct drm_crtc *crtc;
962 struct drm_crtc_state *old_crtc_state;
963 struct drm_connector *connector;
964 struct drm_connector_state *old_conn_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200965 int i;
966
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300967 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +0200968 const struct drm_crtc_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200969
970 /* Need to filter out CRTCs where only planes change. */
Daniel Vetter2465ff62015-06-18 09:58:55 +0200971 if (!drm_atomic_crtc_needs_modeset(crtc->state))
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100972 continue;
973
974 if (!crtc->state->active)
Daniel Vetter623369e2014-09-16 17:50:47 +0200975 continue;
976
977 funcs = crtc->helper_private;
978
Daniel Vetteree0a89c2015-01-22 16:36:24 +0100979 if (crtc->state->enable) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200980 DRM_DEBUG_ATOMIC("enabling [CRTC:%d:%s]\n",
981 crtc->base.id, crtc->name);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100982
Daniel Vetteree0a89c2015-01-22 16:36:24 +0100983 if (funcs->enable)
984 funcs->enable(crtc);
985 else
986 funcs->commit(crtc);
987 }
Daniel Vetter623369e2014-09-16 17:50:47 +0200988 }
989
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300990 for_each_connector_in_state(old_state, connector, old_conn_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +0200991 const struct drm_encoder_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200992 struct drm_encoder *encoder;
993
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300994 if (!connector->state->best_encoder)
Daniel Vetter623369e2014-09-16 17:50:47 +0200995 continue;
996
Daniel Vetter4218a322015-03-26 22:18:40 +0100997 if (!connector->state->crtc->state->active ||
Daniel Vetter2465ff62015-06-18 09:58:55 +0200998 !drm_atomic_crtc_needs_modeset(connector->state->crtc->state))
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100999 continue;
1000
Daniel Vetter623369e2014-09-16 17:50:47 +02001001 encoder = connector->state->best_encoder;
1002 funcs = encoder->helper_private;
1003
Daniel Vetter17a38d92015-02-22 12:24:16 +01001004 DRM_DEBUG_ATOMIC("enabling [ENCODER:%d:%s]\n",
1005 encoder->base.id, encoder->name);
Daniel Vetter95d6eb32015-01-22 16:36:25 +01001006
Daniel Vetter623369e2014-09-16 17:50:47 +02001007 /*
1008 * Each encoder has at most one connector (since we always steal
John Hunterf98bd3e2015-03-17 15:30:26 +08001009 * it away), so we won't call enable hooks twice.
Daniel Vetter623369e2014-09-16 17:50:47 +02001010 */
Archit Taneja862e6862015-05-21 11:03:16 +05301011 drm_bridge_pre_enable(encoder->bridge);
Daniel Vetter623369e2014-09-16 17:50:47 +02001012
Noralf Trønnes28276352016-05-11 18:09:20 +02001013 if (funcs) {
1014 if (funcs->enable)
1015 funcs->enable(encoder);
1016 else if (funcs->commit)
1017 funcs->commit(encoder);
1018 }
Daniel Vetter623369e2014-09-16 17:50:47 +02001019
Archit Taneja862e6862015-05-21 11:03:16 +05301020 drm_bridge_enable(encoder->bridge);
Daniel Vetter623369e2014-09-16 17:50:47 +02001021 }
1022}
Daniel Vetter1af434a2015-02-22 12:24:19 +01001023EXPORT_SYMBOL(drm_atomic_helper_commit_modeset_enables);
Daniel Vetter623369e2014-09-16 17:50:47 +02001024
Rob Clark4c5b7f32016-03-18 19:14:55 -04001025/**
1026 * drm_atomic_helper_wait_for_fences - wait for fences stashed in plane state
1027 * @dev: DRM device
1028 * @state: atomic state object with old state structures
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001029 * @pre_swap: If true, do an interruptible wait, and @state is the new state.
1030 * Otherwise @state is the old state.
Rob Clark4c5b7f32016-03-18 19:14:55 -04001031 *
1032 * For implicit sync, driver should fish the exclusive fence out from the
1033 * incoming fb's and stash it in the drm_plane_state. This is called after
1034 * drm_atomic_helper_swap_state() so it uses the current plane state (and
1035 * just uses the atomic state to find the changed planes)
Gustavo Padovanf6ce4102016-09-12 16:08:11 -03001036 *
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001037 * Note that @pre_swap is needed since the point where we block for fences moves
1038 * around depending upon whether an atomic commit is blocking or
1039 * non-blocking. For async commit all waiting needs to happen after
1040 * drm_atomic_helper_swap_state() is called, but for synchronous commits we want
1041 * to wait **before** we do anything that can't be easily rolled back. That is
1042 * before we call drm_atomic_helper_swap_state().
1043 *
Chris Wilsonf54d1862016-10-25 13:00:45 +01001044 * Returns zero if success or < 0 if dma_fence_wait() fails.
Rob Clark4c5b7f32016-03-18 19:14:55 -04001045 */
Gustavo Padovanf6ce4102016-09-12 16:08:11 -03001046int drm_atomic_helper_wait_for_fences(struct drm_device *dev,
1047 struct drm_atomic_state *state,
1048 bool pre_swap)
Daniel Vettere2330f02014-10-29 11:34:56 +01001049{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001050 struct drm_plane *plane;
1051 struct drm_plane_state *plane_state;
Gustavo Padovanf6ce4102016-09-12 16:08:11 -03001052 int i, ret;
Daniel Vettere2330f02014-10-29 11:34:56 +01001053
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001054 for_each_plane_in_state(state, plane, plane_state, i) {
Gustavo Padovanf6ce4102016-09-12 16:08:11 -03001055 if (!pre_swap)
1056 plane_state = plane->state;
1057
1058 if (!plane_state->fence)
Daniel Vettere2330f02014-10-29 11:34:56 +01001059 continue;
1060
Gustavo Padovanf6ce4102016-09-12 16:08:11 -03001061 WARN_ON(!plane_state->fb);
Daniel Vettere2330f02014-10-29 11:34:56 +01001062
Gustavo Padovanf6ce4102016-09-12 16:08:11 -03001063 /*
1064 * If waiting for fences pre-swap (ie: nonblock), userspace can
1065 * still interrupt the operation. Instead of blocking until the
1066 * timer expires, make the wait interruptible.
1067 */
Chris Wilsonf54d1862016-10-25 13:00:45 +01001068 ret = dma_fence_wait(plane_state->fence, pre_swap);
Gustavo Padovanf6ce4102016-09-12 16:08:11 -03001069 if (ret)
1070 return ret;
1071
Chris Wilsonf54d1862016-10-25 13:00:45 +01001072 dma_fence_put(plane_state->fence);
Gustavo Padovanf6ce4102016-09-12 16:08:11 -03001073 plane_state->fence = NULL;
Daniel Vettere2330f02014-10-29 11:34:56 +01001074 }
Gustavo Padovanf6ce4102016-09-12 16:08:11 -03001075
1076 return 0;
Daniel Vettere2330f02014-10-29 11:34:56 +01001077}
Rob Clark4c5b7f32016-03-18 19:14:55 -04001078EXPORT_SYMBOL(drm_atomic_helper_wait_for_fences);
Daniel Vettere2330f02014-10-29 11:34:56 +01001079
John Keepingc2409062016-01-19 10:46:58 +00001080/**
Rob Clark5ee32292014-11-11 19:38:59 -05001081 * drm_atomic_helper_wait_for_vblanks - wait for vblank on crtcs
1082 * @dev: DRM device
1083 * @old_state: atomic state object with old state structures
1084 *
1085 * Helper to, after atomic commit, wait for vblanks on all effected
1086 * crtcs (ie. before cleaning up old framebuffers using
Daniel Vetterab58e332014-11-24 20:42:42 +01001087 * drm_atomic_helper_cleanup_planes()). It will only wait on crtcs where the
1088 * framebuffers have actually changed to optimize for the legacy cursor and
1089 * plane update use-case.
Rob Clark5ee32292014-11-11 19:38:59 -05001090 */
1091void
1092drm_atomic_helper_wait_for_vblanks(struct drm_device *dev,
1093 struct drm_atomic_state *old_state)
Daniel Vetter623369e2014-09-16 17:50:47 +02001094{
1095 struct drm_crtc *crtc;
1096 struct drm_crtc_state *old_crtc_state;
Daniel Vetter623369e2014-09-16 17:50:47 +02001097 int i, ret;
Maarten Lankhorstbdc57142016-12-15 12:51:42 +01001098 unsigned crtc_mask = 0;
1099
1100 /*
1101 * Legacy cursor ioctls are completely unsynced, and userspace
1102 * relies on that (by doing tons of cursor updates).
1103 */
1104 if (old_state->legacy_cursor_update)
1105 return;
Daniel Vetter623369e2014-09-16 17:50:47 +02001106
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001107 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Maarten Lankhorstbdc57142016-12-15 12:51:42 +01001108 struct drm_crtc_state *new_crtc_state = crtc->state;
Daniel Vetter623369e2014-09-16 17:50:47 +02001109
Maarten Lankhorsta3fbb532016-12-08 14:45:27 +01001110 if (!new_crtc_state->active || !new_crtc_state->planes_changed)
Daniel Vetterab58e332014-11-24 20:42:42 +01001111 continue;
1112
Daniel Vetter623369e2014-09-16 17:50:47 +02001113 ret = drm_crtc_vblank_get(crtc);
1114 if (ret != 0)
1115 continue;
1116
Maarten Lankhorstbdc57142016-12-15 12:51:42 +01001117 crtc_mask |= drm_crtc_mask(crtc);
1118 old_state->crtcs[i].last_vblank_count = drm_crtc_vblank_count(crtc);
Daniel Vetter623369e2014-09-16 17:50:47 +02001119 }
1120
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001121 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Maarten Lankhorstbdc57142016-12-15 12:51:42 +01001122 if (!(crtc_mask & drm_crtc_mask(crtc)))
Daniel Vetter623369e2014-09-16 17:50:47 +02001123 continue;
1124
1125 ret = wait_event_timeout(dev->vblank[i].queue,
Maarten Lankhorstbdc57142016-12-15 12:51:42 +01001126 old_state->crtcs[i].last_vblank_count !=
Thierry Redingd4853632015-08-12 17:00:35 +02001127 drm_crtc_vblank_count(crtc),
Daniel Vetter623369e2014-09-16 17:50:47 +02001128 msecs_to_jiffies(50));
1129
Russell King6ac7c542017-02-13 12:27:03 +00001130 WARN(!ret, "[CRTC:%d:%s] vblank wait timed out\n",
1131 crtc->base.id, crtc->name);
Ville Syrjälä8d4d0d72016-04-18 14:29:33 +03001132
Daniel Vetter623369e2014-09-16 17:50:47 +02001133 drm_crtc_vblank_put(crtc);
1134 }
1135}
Rob Clark5ee32292014-11-11 19:38:59 -05001136EXPORT_SYMBOL(drm_atomic_helper_wait_for_vblanks);
Daniel Vetter623369e2014-09-16 17:50:47 +02001137
1138/**
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001139 * drm_atomic_helper_commit_tail - commit atomic update to hardware
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001140 * @old_state: atomic state object with old state structures
Daniel Vetter623369e2014-09-16 17:50:47 +02001141 *
Daniel Vetter6806cdf2017-01-25 07:26:43 +01001142 * This is the default implementation for the
1143 * &drm_mode_config_helper_funcs.atomic_commit_tail hook.
Daniel Vetter623369e2014-09-16 17:50:47 +02001144 *
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001145 * Note that the default ordering of how the various stages are called is to
1146 * match the legacy modeset helper library closest. One peculiarity of that is
1147 * that it doesn't mesh well with runtime PM at all.
Daniel Vetter6e48ae32015-09-08 13:52:45 +02001148 *
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001149 * For drivers supporting runtime PM the recommended sequence is instead ::
Daniel Vetter6e48ae32015-09-08 13:52:45 +02001150 *
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001151 * drm_atomic_helper_commit_modeset_disables(dev, old_state);
Daniel Vetter6e48ae32015-09-08 13:52:45 +02001152 *
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001153 * drm_atomic_helper_commit_modeset_enables(dev, old_state);
Daniel Vetter6e48ae32015-09-08 13:52:45 +02001154 *
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001155 * drm_atomic_helper_commit_planes(dev, old_state,
Liu Ying2b58e982016-08-29 17:12:03 +08001156 * DRM_PLANE_COMMIT_ACTIVE_ONLY);
Daniel Vetter6e48ae32015-09-08 13:52:45 +02001157 *
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001158 * for committing the atomic update to hardware. See the kerneldoc entries for
1159 * these three functions for more details.
1160 */
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001161void drm_atomic_helper_commit_tail(struct drm_atomic_state *old_state)
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001162{
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001163 struct drm_device *dev = old_state->dev;
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001164
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001165 drm_atomic_helper_commit_modeset_disables(dev, old_state);
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001166
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001167 drm_atomic_helper_commit_planes(dev, old_state, 0);
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001168
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001169 drm_atomic_helper_commit_modeset_enables(dev, old_state);
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001170
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001171 drm_atomic_helper_commit_hw_done(old_state);
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001172
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001173 drm_atomic_helper_wait_for_vblanks(dev, old_state);
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001174
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001175 drm_atomic_helper_cleanup_planes(dev, old_state);
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001176}
1177EXPORT_SYMBOL(drm_atomic_helper_commit_tail);
1178
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001179static void commit_tail(struct drm_atomic_state *old_state)
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001180{
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001181 struct drm_device *dev = old_state->dev;
Laurent Pincharta4b10cc2017-01-02 11:16:13 +02001182 const struct drm_mode_config_helper_funcs *funcs;
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001183
1184 funcs = dev->mode_config.helper_private;
1185
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001186 drm_atomic_helper_wait_for_fences(dev, old_state, false);
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001187
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001188 drm_atomic_helper_wait_for_dependencies(old_state);
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001189
1190 if (funcs && funcs->atomic_commit_tail)
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001191 funcs->atomic_commit_tail(old_state);
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001192 else
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001193 drm_atomic_helper_commit_tail(old_state);
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001194
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001195 drm_atomic_helper_commit_cleanup_done(old_state);
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001196
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001197 drm_atomic_state_put(old_state);
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001198}
1199
1200static void commit_work(struct work_struct *work)
1201{
1202 struct drm_atomic_state *state = container_of(work,
1203 struct drm_atomic_state,
1204 commit_work);
1205 commit_tail(state);
1206}
1207
1208/**
1209 * drm_atomic_helper_commit - commit validated state object
1210 * @dev: DRM device
1211 * @state: the driver state object
1212 * @nonblock: whether nonblocking behavior is requested.
1213 *
1214 * This function commits a with drm_atomic_helper_check() pre-validated state
1215 * object. This can still fail when e.g. the framebuffer reservation fails. This
1216 * function implements nonblocking commits, using
1217 * drm_atomic_helper_setup_commit() and related functions.
1218 *
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001219 * Committing the actual hardware state is done through the
Daniel Vetter6806cdf2017-01-25 07:26:43 +01001220 * &drm_mode_config_helper_funcs.atomic_commit_tail callback, or it's default
1221 * implementation drm_atomic_helper_commit_tail().
Daniel Vetter6e48ae32015-09-08 13:52:45 +02001222 *
Daniel Vetterc39032a2016-06-08 14:19:19 +02001223 * RETURNS:
Daniel Vetter623369e2014-09-16 17:50:47 +02001224 * Zero for success or -errno.
1225 */
1226int drm_atomic_helper_commit(struct drm_device *dev,
1227 struct drm_atomic_state *state,
Maarten Lankhorst286dbb82016-04-26 16:11:34 +02001228 bool nonblock)
Daniel Vetter623369e2014-09-16 17:50:47 +02001229{
1230 int ret;
1231
Daniel Vettera095caa2016-06-08 17:15:36 +02001232 ret = drm_atomic_helper_setup_commit(state, nonblock);
1233 if (ret)
1234 return ret;
1235
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001236 INIT_WORK(&state->commit_work, commit_work);
1237
Daniel Vetter623369e2014-09-16 17:50:47 +02001238 ret = drm_atomic_helper_prepare_planes(dev, state);
1239 if (ret)
1240 return ret;
1241
Gustavo Padovanf6ce4102016-09-12 16:08:11 -03001242 if (!nonblock) {
1243 ret = drm_atomic_helper_wait_for_fences(dev, state, true);
Laurent Pinchartaebe55c2017-01-03 01:14:27 +02001244 if (ret) {
1245 drm_atomic_helper_cleanup_planes(dev, state);
Gustavo Padovanf6ce4102016-09-12 16:08:11 -03001246 return ret;
Laurent Pinchartaebe55c2017-01-03 01:14:27 +02001247 }
Gustavo Padovanf6ce4102016-09-12 16:08:11 -03001248 }
1249
Daniel Vetter623369e2014-09-16 17:50:47 +02001250 /*
1251 * This is the point of no return - everything below never fails except
1252 * when the hw goes bonghits. Which means we can commit the new state on
1253 * the software side now.
1254 */
1255
Daniel Vetter5e84c262016-06-10 00:06:32 +02001256 drm_atomic_helper_swap_state(state, true);
Daniel Vetter623369e2014-09-16 17:50:47 +02001257
1258 /*
1259 * Everything below can be run asynchronously without the need to grab
John Hunterf98bd3e2015-03-17 15:30:26 +08001260 * any modeset locks at all under one condition: It must be guaranteed
Daniel Vetter623369e2014-09-16 17:50:47 +02001261 * that the asynchronous work has either been cancelled (if the driver
1262 * supports it, which at least requires that the framebuffers get
1263 * cleaned up with drm_atomic_helper_cleanup_planes()) or completed
1264 * before the new state gets committed on the software side with
1265 * drm_atomic_helper_swap_state().
1266 *
1267 * This scheme allows new atomic state updates to be prepared and
1268 * checked in parallel to the asynchronous completion of the previous
1269 * update. Which is important since compositors need to figure out the
1270 * composition of the next frame right after having submitted the
1271 * current layout.
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001272 *
1273 * NOTE: Commit work has multiple phases, first hardware commit, then
1274 * cleanup. We want them to overlap, hence need system_unbound_wq to
1275 * make sure work items don't artifically stall on each another.
Daniel Vetter623369e2014-09-16 17:50:47 +02001276 */
1277
Chris Wilson08536952016-10-14 13:18:18 +01001278 drm_atomic_state_get(state);
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001279 if (nonblock)
1280 queue_work(system_unbound_wq, &state->commit_work);
1281 else
1282 commit_tail(state);
Daniel Vetter623369e2014-09-16 17:50:47 +02001283
1284 return 0;
1285}
1286EXPORT_SYMBOL(drm_atomic_helper_commit);
1287
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001288/**
Maarten Lankhorst286dbb82016-04-26 16:11:34 +02001289 * DOC: implementing nonblocking commit
Daniel Vettere8c833a2014-07-27 18:30:19 +02001290 *
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001291 * Nonblocking atomic commits have to be implemented in the following sequence:
Daniel Vettere8c833a2014-07-27 18:30:19 +02001292 *
1293 * 1. Run drm_atomic_helper_prepare_planes() first. This is the only function
1294 * which commit needs to call which can fail, so we want to run it first and
1295 * synchronously.
1296 *
Maarten Lankhorst286dbb82016-04-26 16:11:34 +02001297 * 2. Synchronize with any outstanding nonblocking commit worker threads which
Daniel Vettere8c833a2014-07-27 18:30:19 +02001298 * might be affected the new state update. This can be done by either cancelling
1299 * or flushing the work items, depending upon whether the driver can deal with
1300 * cancelled updates. Note that it is important to ensure that the framebuffer
1301 * cleanup is still done when cancelling.
1302 *
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001303 * Asynchronous workers need to have sufficient parallelism to be able to run
1304 * different atomic commits on different CRTCs in parallel. The simplest way to
1305 * achive this is by running them on the &system_unbound_wq work queue. Note
1306 * that drivers are not required to split up atomic commits and run an
1307 * individual commit in parallel - userspace is supposed to do that if it cares.
1308 * But it might be beneficial to do that for modesets, since those necessarily
1309 * must be done as one global operation, and enabling or disabling a CRTC can
1310 * take a long time. But even that is not required.
Daniel Vettere8c833a2014-07-27 18:30:19 +02001311 *
1312 * 3. The software state is updated synchronously with
Daniel Vetter26196f72015-08-25 16:26:03 +02001313 * drm_atomic_helper_swap_state(). Doing this under the protection of all modeset
Daniel Vettere8c833a2014-07-27 18:30:19 +02001314 * locks means concurrent callers never see inconsistent state. And doing this
Maarten Lankhorst286dbb82016-04-26 16:11:34 +02001315 * while it's guaranteed that no relevant nonblocking worker runs means that
1316 * nonblocking workers do not need grab any locks. Actually they must not grab
1317 * locks, for otherwise the work flushing will deadlock.
Daniel Vettere8c833a2014-07-27 18:30:19 +02001318 *
1319 * 4. Schedule a work item to do all subsequent steps, using the split-out
1320 * commit helpers: a) pre-plane commit b) plane commit c) post-plane commit and
1321 * then cleaning up the framebuffers after the old framebuffer is no longer
1322 * being displayed.
Daniel Vetter9f2a7952016-06-08 14:19:02 +02001323 *
1324 * The above scheme is implemented in the atomic helper libraries in
1325 * drm_atomic_helper_commit() using a bunch of helper functions. See
1326 * drm_atomic_helper_setup_commit() for a starting point.
Daniel Vettere8c833a2014-07-27 18:30:19 +02001327 */
1328
Daniel Vettera095caa2016-06-08 17:15:36 +02001329static int stall_checks(struct drm_crtc *crtc, bool nonblock)
1330{
1331 struct drm_crtc_commit *commit, *stall_commit = NULL;
1332 bool completed = true;
1333 int i;
1334 long ret = 0;
1335
1336 spin_lock(&crtc->commit_lock);
1337 i = 0;
1338 list_for_each_entry(commit, &crtc->commit_list, commit_entry) {
1339 if (i == 0) {
1340 completed = try_wait_for_completion(&commit->flip_done);
1341 /* Userspace is not allowed to get ahead of the previous
1342 * commit with nonblocking ones. */
1343 if (!completed && nonblock) {
1344 spin_unlock(&crtc->commit_lock);
1345 return -EBUSY;
1346 }
1347 } else if (i == 1) {
1348 stall_commit = commit;
1349 drm_crtc_commit_get(stall_commit);
Daniel Vettera095caa2016-06-08 17:15:36 +02001350 break;
Daniel Vetter723c3e52016-06-14 19:50:58 +02001351 }
Daniel Vettera095caa2016-06-08 17:15:36 +02001352
1353 i++;
1354 }
1355 spin_unlock(&crtc->commit_lock);
1356
1357 if (!stall_commit)
1358 return 0;
1359
1360 /* We don't want to let commits get ahead of cleanup work too much,
1361 * stalling on 2nd previous commit means triple-buffer won't ever stall.
1362 */
Daniel Vetter723c3e52016-06-14 19:50:58 +02001363 ret = wait_for_completion_interruptible_timeout(&stall_commit->cleanup_done,
Daniel Vettera095caa2016-06-08 17:15:36 +02001364 10*HZ);
1365 if (ret == 0)
1366 DRM_ERROR("[CRTC:%d:%s] cleanup_done timed out\n",
1367 crtc->base.id, crtc->name);
1368
1369 drm_crtc_commit_put(stall_commit);
1370
1371 return ret < 0 ? ret : 0;
1372}
1373
Wei Yongjun899cc5f2017-01-12 14:21:57 +00001374static void release_crtc_commit(struct completion *completion)
Daniel Vetter24835e42016-12-21 11:23:30 +01001375{
1376 struct drm_crtc_commit *commit = container_of(completion,
1377 typeof(*commit),
1378 flip_done);
1379
1380 drm_crtc_commit_put(commit);
1381}
1382
Daniel Vettera095caa2016-06-08 17:15:36 +02001383/**
1384 * drm_atomic_helper_setup_commit - setup possibly nonblocking commit
1385 * @state: new modeset state to be committed
1386 * @nonblock: whether nonblocking behavior is requested.
1387 *
1388 * This function prepares @state to be used by the atomic helper's support for
1389 * nonblocking commits. Drivers using the nonblocking commit infrastructure
Daniel Vetter6806cdf2017-01-25 07:26:43 +01001390 * should always call this function from their
1391 * &drm_mode_config_funcs.atomic_commit hook.
Daniel Vettera095caa2016-06-08 17:15:36 +02001392 *
1393 * To be able to use this support drivers need to use a few more helper
1394 * functions. drm_atomic_helper_wait_for_dependencies() must be called before
1395 * actually committing the hardware state, and for nonblocking commits this call
1396 * must be placed in the async worker. See also drm_atomic_helper_swap_state()
1397 * and it's stall parameter, for when a driver's commit hooks look at the
Daniel Vetter6806cdf2017-01-25 07:26:43 +01001398 * &drm_crtc.state, &drm_plane.state or &drm_connector.state pointer directly.
Daniel Vettera095caa2016-06-08 17:15:36 +02001399 *
1400 * Completion of the hardware commit step must be signalled using
1401 * drm_atomic_helper_commit_hw_done(). After this step the driver is not allowed
1402 * to read or change any permanent software or hardware modeset state. The only
1403 * exception is state protected by other means than &drm_modeset_lock locks.
1404 * Only the free standing @state with pointers to the old state structures can
1405 * be inspected, e.g. to clean up old buffers using
1406 * drm_atomic_helper_cleanup_planes().
1407 *
1408 * At the very end, before cleaning up @state drivers must call
1409 * drm_atomic_helper_commit_cleanup_done().
1410 *
1411 * This is all implemented by in drm_atomic_helper_commit(), giving drivers a
1412 * complete and esay-to-use default implementation of the atomic_commit() hook.
1413 *
1414 * The tracking of asynchronously executed and still pending commits is done
1415 * using the core structure &drm_crtc_commit.
1416 *
1417 * By default there's no need to clean up resources allocated by this function
1418 * explicitly: drm_atomic_state_default_clear() will take care of that
1419 * automatically.
1420 *
1421 * Returns:
1422 *
1423 * 0 on success. -EBUSY when userspace schedules nonblocking commits too fast,
1424 * -ENOMEM on allocation failures and -EINTR when a signal is pending.
1425 */
1426int drm_atomic_helper_setup_commit(struct drm_atomic_state *state,
1427 bool nonblock)
1428{
1429 struct drm_crtc *crtc;
1430 struct drm_crtc_state *crtc_state;
1431 struct drm_crtc_commit *commit;
1432 int i, ret;
1433
1434 for_each_crtc_in_state(state, crtc, crtc_state, i) {
1435 commit = kzalloc(sizeof(*commit), GFP_KERNEL);
1436 if (!commit)
1437 return -ENOMEM;
1438
1439 init_completion(&commit->flip_done);
1440 init_completion(&commit->hw_done);
1441 init_completion(&commit->cleanup_done);
1442 INIT_LIST_HEAD(&commit->commit_entry);
1443 kref_init(&commit->ref);
1444 commit->crtc = crtc;
1445
1446 state->crtcs[i].commit = commit;
1447
1448 ret = stall_checks(crtc, nonblock);
1449 if (ret)
1450 return ret;
1451
1452 /* Drivers only send out events when at least either current or
1453 * new CRTC state is active. Complete right away if everything
1454 * stays off. */
1455 if (!crtc->state->active && !crtc_state->active) {
1456 complete_all(&commit->flip_done);
1457 continue;
1458 }
1459
1460 /* Legacy cursor updates are fully unsynced. */
1461 if (state->legacy_cursor_update) {
1462 complete_all(&commit->flip_done);
1463 continue;
1464 }
1465
1466 if (!crtc_state->event) {
1467 commit->event = kzalloc(sizeof(*commit->event),
1468 GFP_KERNEL);
1469 if (!commit->event)
1470 return -ENOMEM;
1471
1472 crtc_state->event = commit->event;
1473 }
1474
1475 crtc_state->event->base.completion = &commit->flip_done;
Daniel Vetter24835e42016-12-21 11:23:30 +01001476 crtc_state->event->base.completion_release = release_crtc_commit;
1477 drm_crtc_commit_get(commit);
Daniel Vettera095caa2016-06-08 17:15:36 +02001478 }
1479
1480 return 0;
1481}
1482EXPORT_SYMBOL(drm_atomic_helper_setup_commit);
1483
1484
1485static struct drm_crtc_commit *preceeding_commit(struct drm_crtc *crtc)
1486{
1487 struct drm_crtc_commit *commit;
1488 int i = 0;
1489
1490 list_for_each_entry(commit, &crtc->commit_list, commit_entry) {
1491 /* skip the first entry, that's the current commit */
1492 if (i == 1)
1493 return commit;
1494 i++;
1495 }
1496
1497 return NULL;
1498}
1499
1500/**
1501 * drm_atomic_helper_wait_for_dependencies - wait for required preceeding commits
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001502 * @old_state: atomic state object with old state structures
Daniel Vettera095caa2016-06-08 17:15:36 +02001503 *
1504 * This function waits for all preceeding commits that touch the same CRTC as
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001505 * @old_state to both be committed to the hardware (as signalled by
Daniel Vettera095caa2016-06-08 17:15:36 +02001506 * drm_atomic_helper_commit_hw_done) and executed by the hardware (as signalled
Daniel Vetter6806cdf2017-01-25 07:26:43 +01001507 * by calling drm_crtc_vblank_send_event() on the &drm_crtc_state.event).
Daniel Vettera095caa2016-06-08 17:15:36 +02001508 *
1509 * This is part of the atomic helper support for nonblocking commits, see
1510 * drm_atomic_helper_setup_commit() for an overview.
1511 */
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001512void drm_atomic_helper_wait_for_dependencies(struct drm_atomic_state *old_state)
Daniel Vettera095caa2016-06-08 17:15:36 +02001513{
1514 struct drm_crtc *crtc;
1515 struct drm_crtc_state *crtc_state;
1516 struct drm_crtc_commit *commit;
1517 int i;
1518 long ret;
1519
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001520 for_each_crtc_in_state(old_state, crtc, crtc_state, i) {
Daniel Vettera095caa2016-06-08 17:15:36 +02001521 spin_lock(&crtc->commit_lock);
1522 commit = preceeding_commit(crtc);
1523 if (commit)
1524 drm_crtc_commit_get(commit);
1525 spin_unlock(&crtc->commit_lock);
1526
1527 if (!commit)
1528 continue;
1529
1530 ret = wait_for_completion_timeout(&commit->hw_done,
1531 10*HZ);
1532 if (ret == 0)
1533 DRM_ERROR("[CRTC:%d:%s] hw_done timed out\n",
1534 crtc->base.id, crtc->name);
1535
1536 /* Currently no support for overwriting flips, hence
1537 * stall for previous one to execute completely. */
1538 ret = wait_for_completion_timeout(&commit->flip_done,
1539 10*HZ);
1540 if (ret == 0)
1541 DRM_ERROR("[CRTC:%d:%s] flip_done timed out\n",
1542 crtc->base.id, crtc->name);
1543
1544 drm_crtc_commit_put(commit);
1545 }
1546}
1547EXPORT_SYMBOL(drm_atomic_helper_wait_for_dependencies);
1548
1549/**
1550 * drm_atomic_helper_commit_hw_done - setup possible nonblocking commit
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001551 * @old_state: atomic state object with old state structures
Daniel Vettera095caa2016-06-08 17:15:36 +02001552 *
1553 * This function is used to signal completion of the hardware commit step. After
1554 * this step the driver is not allowed to read or change any permanent software
1555 * or hardware modeset state. The only exception is state protected by other
1556 * means than &drm_modeset_lock locks.
1557 *
1558 * Drivers should try to postpone any expensive or delayed cleanup work after
1559 * this function is called.
1560 *
1561 * This is part of the atomic helper support for nonblocking commits, see
1562 * drm_atomic_helper_setup_commit() for an overview.
1563 */
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001564void drm_atomic_helper_commit_hw_done(struct drm_atomic_state *old_state)
Daniel Vettera095caa2016-06-08 17:15:36 +02001565{
1566 struct drm_crtc *crtc;
1567 struct drm_crtc_state *crtc_state;
1568 struct drm_crtc_commit *commit;
1569 int i;
1570
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001571 for_each_crtc_in_state(old_state, crtc, crtc_state, i) {
1572 commit = old_state->crtcs[i].commit;
Daniel Vettera095caa2016-06-08 17:15:36 +02001573 if (!commit)
1574 continue;
1575
1576 /* backend must have consumed any event by now */
1577 WARN_ON(crtc->state->event);
1578 spin_lock(&crtc->commit_lock);
1579 complete_all(&commit->hw_done);
1580 spin_unlock(&crtc->commit_lock);
1581 }
1582}
1583EXPORT_SYMBOL(drm_atomic_helper_commit_hw_done);
1584
1585/**
1586 * drm_atomic_helper_commit_cleanup_done - signal completion of commit
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001587 * @old_state: atomic state object with old state structures
Daniel Vettera095caa2016-06-08 17:15:36 +02001588 *
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001589 * This signals completion of the atomic update @old_state, including any
1590 * cleanup work. If used, it must be called right before calling
Chris Wilson08536952016-10-14 13:18:18 +01001591 * drm_atomic_state_put().
Daniel Vettera095caa2016-06-08 17:15:36 +02001592 *
1593 * This is part of the atomic helper support for nonblocking commits, see
1594 * drm_atomic_helper_setup_commit() for an overview.
1595 */
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001596void drm_atomic_helper_commit_cleanup_done(struct drm_atomic_state *old_state)
Daniel Vettera095caa2016-06-08 17:15:36 +02001597{
1598 struct drm_crtc *crtc;
1599 struct drm_crtc_state *crtc_state;
1600 struct drm_crtc_commit *commit;
1601 int i;
1602 long ret;
1603
Daniel Vetter1ea0c022016-11-21 18:18:02 +01001604 for_each_crtc_in_state(old_state, crtc, crtc_state, i) {
1605 commit = old_state->crtcs[i].commit;
Daniel Vettera095caa2016-06-08 17:15:36 +02001606 if (WARN_ON(!commit))
1607 continue;
1608
1609 spin_lock(&crtc->commit_lock);
1610 complete_all(&commit->cleanup_done);
1611 WARN_ON(!try_wait_for_completion(&commit->hw_done));
1612
1613 /* commit_list borrows our reference, need to remove before we
1614 * clean up our drm_atomic_state. But only after it actually
1615 * completed, otherwise subsequent commits won't stall properly. */
Daniel Vetter7deef7f12016-06-15 12:24:26 +02001616 if (try_wait_for_completion(&commit->flip_done))
1617 goto del_commit;
Daniel Vettera095caa2016-06-08 17:15:36 +02001618
1619 spin_unlock(&crtc->commit_lock);
1620
1621 /* We must wait for the vblank event to signal our completion
1622 * before releasing our reference, since the vblank work does
1623 * not hold a reference of its own. */
1624 ret = wait_for_completion_timeout(&commit->flip_done,
1625 10*HZ);
1626 if (ret == 0)
1627 DRM_ERROR("[CRTC:%d:%s] flip_done timed out\n",
1628 crtc->base.id, crtc->name);
1629
1630 spin_lock(&crtc->commit_lock);
Daniel Vetter7deef7f12016-06-15 12:24:26 +02001631del_commit:
Daniel Vettera095caa2016-06-08 17:15:36 +02001632 list_del(&commit->commit_entry);
1633 spin_unlock(&crtc->commit_lock);
1634 }
1635}
1636EXPORT_SYMBOL(drm_atomic_helper_commit_cleanup_done);
1637
Daniel Vettere8c833a2014-07-27 18:30:19 +02001638/**
Daniel Vetter2e3afd42015-02-26 14:17:38 +01001639 * drm_atomic_helper_prepare_planes - prepare plane resources before commit
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001640 * @dev: DRM device
Daniel Vetter2e3afd42015-02-26 14:17:38 +01001641 * @state: atomic state object with new state structures
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001642 *
1643 * This function prepares plane state, specifically framebuffers, for the new
Daniel Vetter6806cdf2017-01-25 07:26:43 +01001644 * configuration, by calling &drm_plane_helper_funcs.prepare_fb. If any failure
1645 * is encountered this function will call &drm_plane_helper_funcs.cleanup_fb on
1646 * any already successfully prepared framebuffer.
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001647 *
1648 * Returns:
1649 * 0 on success, negative error code on failure.
1650 */
1651int drm_atomic_helper_prepare_planes(struct drm_device *dev,
1652 struct drm_atomic_state *state)
1653{
Daniel Vetterbe9174a2016-06-02 00:06:24 +02001654 struct drm_plane *plane;
1655 struct drm_plane_state *plane_state;
1656 int ret, i, j;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001657
Daniel Vetterbe9174a2016-06-02 00:06:24 +02001658 for_each_plane_in_state(state, plane, plane_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +02001659 const struct drm_plane_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001660
1661 funcs = plane->helper_private;
1662
Maarten Lankhorst844f9112015-09-02 10:42:40 +02001663 if (funcs->prepare_fb) {
1664 ret = funcs->prepare_fb(plane, plane_state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001665 if (ret)
1666 goto fail;
1667 }
1668 }
1669
1670 return 0;
1671
1672fail:
Daniel Vetterbe9174a2016-06-02 00:06:24 +02001673 for_each_plane_in_state(state, plane, plane_state, j) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +02001674 const struct drm_plane_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001675
Daniel Vetterbe9174a2016-06-02 00:06:24 +02001676 if (j >= i)
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001677 continue;
1678
1679 funcs = plane->helper_private;
1680
Maarten Lankhorst844f9112015-09-02 10:42:40 +02001681 if (funcs->cleanup_fb)
1682 funcs->cleanup_fb(plane, plane_state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001683 }
1684
1685 return ret;
1686}
1687EXPORT_SYMBOL(drm_atomic_helper_prepare_planes);
1688
Ville Syrjälä7135ac52016-09-19 16:33:42 +03001689static bool plane_crtc_active(const struct drm_plane_state *state)
Daniel Vetteraef9dbb2015-09-08 12:02:07 +02001690{
1691 return state->crtc && state->crtc->state->active;
1692}
1693
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001694/**
1695 * drm_atomic_helper_commit_planes - commit plane state
1696 * @dev: DRM device
Daniel Vetterb0fcfc82014-11-19 18:38:11 +01001697 * @old_state: atomic state object with old state structures
Liu Ying2b58e982016-08-29 17:12:03 +08001698 * @flags: flags for committing plane state
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001699 *
1700 * This function commits the new plane state using the plane and atomic helper
1701 * functions for planes and crtcs. It assumes that the atomic state has already
1702 * been pushed into the relevant object state pointers, since this step can no
1703 * longer fail.
1704 *
Daniel Vetterb0fcfc82014-11-19 18:38:11 +01001705 * It still requires the global state object @old_state to know which planes and
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001706 * crtcs need to be updated though.
Maarten Lankhorstde28d022015-05-19 16:41:01 +02001707 *
1708 * Note that this function does all plane updates across all CRTCs in one step.
1709 * If the hardware can't support this approach look at
1710 * drm_atomic_helper_commit_planes_on_crtc() instead.
Daniel Vetter6e48ae32015-09-08 13:52:45 +02001711 *
1712 * Plane parameters can be updated by applications while the associated CRTC is
1713 * disabled. The DRM/KMS core will store the parameters in the plane state,
1714 * which will be available to the driver when the CRTC is turned on. As a result
1715 * most drivers don't need to be immediately notified of plane updates for a
1716 * disabled CRTC.
1717 *
Liu Ying2b58e982016-08-29 17:12:03 +08001718 * Unless otherwise needed, drivers are advised to set the ACTIVE_ONLY flag in
1719 * @flags in order not to receive plane update notifications related to a
1720 * disabled CRTC. This avoids the need to manually ignore plane updates in
Daniel Vetter6e48ae32015-09-08 13:52:45 +02001721 * driver code when the driver and/or hardware can't or just don't need to deal
1722 * with updates on disabled CRTCs, for example when supporting runtime PM.
1723 *
Liu Ying2b58e982016-08-29 17:12:03 +08001724 * Drivers may set the NO_DISABLE_AFTER_MODESET flag in @flags if the relevant
1725 * display controllers require to disable a CRTC's planes when the CRTC is
Daniel Vetter6806cdf2017-01-25 07:26:43 +01001726 * disabled. This function would skip the &drm_plane_helper_funcs.atomic_disable
1727 * call for a plane if the CRTC of the old plane state needs a modesetting
1728 * operation. Of course, the drivers need to disable the planes in their CRTC
1729 * disable callbacks since no one else would do that.
Liu Ying2b58e982016-08-29 17:12:03 +08001730 *
1731 * The drm_atomic_helper_commit() default implementation doesn't set the
1732 * ACTIVE_ONLY flag to most closely match the behaviour of the legacy helpers.
1733 * This should not be copied blindly by drivers.
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001734 */
1735void drm_atomic_helper_commit_planes(struct drm_device *dev,
Daniel Vetteraef9dbb2015-09-08 12:02:07 +02001736 struct drm_atomic_state *old_state,
Liu Ying2b58e982016-08-29 17:12:03 +08001737 uint32_t flags)
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001738{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001739 struct drm_crtc *crtc;
1740 struct drm_crtc_state *old_crtc_state;
1741 struct drm_plane *plane;
1742 struct drm_plane_state *old_plane_state;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001743 int i;
Liu Ying2b58e982016-08-29 17:12:03 +08001744 bool active_only = flags & DRM_PLANE_COMMIT_ACTIVE_ONLY;
1745 bool no_disable = flags & DRM_PLANE_COMMIT_NO_DISABLE_AFTER_MODESET;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001746
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001747 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +02001748 const struct drm_crtc_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001749
1750 funcs = crtc->helper_private;
1751
1752 if (!funcs || !funcs->atomic_begin)
1753 continue;
1754
Daniel Vetteraef9dbb2015-09-08 12:02:07 +02001755 if (active_only && !crtc->state->active)
1756 continue;
1757
Maarten Lankhorst613d2b22015-07-21 13:28:58 +02001758 funcs->atomic_begin(crtc, old_crtc_state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001759 }
1760
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001761 for_each_plane_in_state(old_state, plane, old_plane_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +02001762 const struct drm_plane_helper_funcs *funcs;
Laurent Pinchart216c59d2015-09-11 00:07:19 +03001763 bool disabling;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001764
1765 funcs = plane->helper_private;
1766
Thierry Reding3cad4b62014-11-25 13:05:12 +01001767 if (!funcs)
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001768 continue;
1769
Laurent Pinchart216c59d2015-09-11 00:07:19 +03001770 disabling = drm_atomic_plane_disabling(plane, old_plane_state);
1771
1772 if (active_only) {
1773 /*
1774 * Skip planes related to inactive CRTCs. If the plane
1775 * is enabled use the state of the current CRTC. If the
1776 * plane is being disabled use the state of the old
1777 * CRTC to avoid skipping planes being disabled on an
1778 * active CRTC.
1779 */
1780 if (!disabling && !plane_crtc_active(plane->state))
1781 continue;
1782 if (disabling && !plane_crtc_active(old_plane_state))
1783 continue;
1784 }
Daniel Vetteraef9dbb2015-09-08 12:02:07 +02001785
Thierry Reding407b8bd2014-11-20 12:05:50 +01001786 /*
1787 * Special-case disabling the plane if drivers support it.
1788 */
Liu Ying2b58e982016-08-29 17:12:03 +08001789 if (disabling && funcs->atomic_disable) {
1790 struct drm_crtc_state *crtc_state;
1791
1792 crtc_state = old_plane_state->crtc->state;
1793
1794 if (drm_atomic_crtc_needs_modeset(crtc_state) &&
1795 no_disable)
1796 continue;
1797
Thierry Reding407b8bd2014-11-20 12:05:50 +01001798 funcs->atomic_disable(plane, old_plane_state);
Liu Ying2b58e982016-08-29 17:12:03 +08001799 } else if (plane->state->crtc || disabling) {
Thierry Reding407b8bd2014-11-20 12:05:50 +01001800 funcs->atomic_update(plane, old_plane_state);
Liu Ying2b58e982016-08-29 17:12:03 +08001801 }
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001802 }
1803
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001804 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +02001805 const struct drm_crtc_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001806
1807 funcs = crtc->helper_private;
1808
1809 if (!funcs || !funcs->atomic_flush)
1810 continue;
1811
Daniel Vetteraef9dbb2015-09-08 12:02:07 +02001812 if (active_only && !crtc->state->active)
1813 continue;
1814
Maarten Lankhorst613d2b22015-07-21 13:28:58 +02001815 funcs->atomic_flush(crtc, old_crtc_state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001816 }
1817}
1818EXPORT_SYMBOL(drm_atomic_helper_commit_planes);
1819
1820/**
Maarten Lankhorstde28d022015-05-19 16:41:01 +02001821 * drm_atomic_helper_commit_planes_on_crtc - commit plane state for a crtc
1822 * @old_crtc_state: atomic state object with the old crtc state
1823 *
1824 * This function commits the new plane state using the plane and atomic helper
1825 * functions for planes on the specific crtc. It assumes that the atomic state
1826 * has already been pushed into the relevant object state pointers, since this
1827 * step can no longer fail.
1828 *
1829 * This function is useful when plane updates should be done crtc-by-crtc
1830 * instead of one global step like drm_atomic_helper_commit_planes() does.
1831 *
1832 * This function can only be savely used when planes are not allowed to move
1833 * between different CRTCs because this function doesn't handle inter-CRTC
1834 * depencies. Callers need to ensure that either no such depencies exist,
1835 * resolve them through ordering of commit calls or through some other means.
1836 */
1837void
1838drm_atomic_helper_commit_planes_on_crtc(struct drm_crtc_state *old_crtc_state)
1839{
1840 const struct drm_crtc_helper_funcs *crtc_funcs;
1841 struct drm_crtc *crtc = old_crtc_state->crtc;
1842 struct drm_atomic_state *old_state = old_crtc_state->state;
1843 struct drm_plane *plane;
1844 unsigned plane_mask;
1845
1846 plane_mask = old_crtc_state->plane_mask;
1847 plane_mask |= crtc->state->plane_mask;
1848
1849 crtc_funcs = crtc->helper_private;
1850 if (crtc_funcs && crtc_funcs->atomic_begin)
Maarten Lankhorst613d2b22015-07-21 13:28:58 +02001851 crtc_funcs->atomic_begin(crtc, old_crtc_state);
Maarten Lankhorstde28d022015-05-19 16:41:01 +02001852
1853 drm_for_each_plane_mask(plane, crtc->dev, plane_mask) {
1854 struct drm_plane_state *old_plane_state =
1855 drm_atomic_get_existing_plane_state(old_state, plane);
1856 const struct drm_plane_helper_funcs *plane_funcs;
1857
1858 plane_funcs = plane->helper_private;
1859
1860 if (!old_plane_state || !plane_funcs)
1861 continue;
1862
1863 WARN_ON(plane->state->crtc && plane->state->crtc != crtc);
1864
1865 if (drm_atomic_plane_disabling(plane, old_plane_state) &&
1866 plane_funcs->atomic_disable)
1867 plane_funcs->atomic_disable(plane, old_plane_state);
1868 else if (plane->state->crtc ||
1869 drm_atomic_plane_disabling(plane, old_plane_state))
1870 plane_funcs->atomic_update(plane, old_plane_state);
1871 }
1872
1873 if (crtc_funcs && crtc_funcs->atomic_flush)
Maarten Lankhorst613d2b22015-07-21 13:28:58 +02001874 crtc_funcs->atomic_flush(crtc, old_crtc_state);
Maarten Lankhorstde28d022015-05-19 16:41:01 +02001875}
1876EXPORT_SYMBOL(drm_atomic_helper_commit_planes_on_crtc);
1877
1878/**
Jyri Sarha6753ba92015-11-27 16:14:01 +02001879 * drm_atomic_helper_disable_planes_on_crtc - helper to disable CRTC's planes
Liu Ying28500292016-08-26 15:30:39 +08001880 * @old_crtc_state: atomic state object with the old CRTC state
Jyri Sarha6753ba92015-11-27 16:14:01 +02001881 * @atomic: if set, synchronize with CRTC's atomic_begin/flush hooks
1882 *
1883 * Disables all planes associated with the given CRTC. This can be
Liu Ying28500292016-08-26 15:30:39 +08001884 * used for instance in the CRTC helper atomic_disable callback to disable
1885 * all planes.
Jyri Sarha6753ba92015-11-27 16:14:01 +02001886 *
1887 * If the atomic-parameter is set the function calls the CRTC's
1888 * atomic_begin hook before and atomic_flush hook after disabling the
1889 * planes.
1890 *
1891 * It is a bug to call this function without having implemented the
Daniel Vetter6806cdf2017-01-25 07:26:43 +01001892 * &drm_plane_helper_funcs.atomic_disable plane hook.
Jyri Sarha6753ba92015-11-27 16:14:01 +02001893 */
Liu Ying28500292016-08-26 15:30:39 +08001894void
1895drm_atomic_helper_disable_planes_on_crtc(struct drm_crtc_state *old_crtc_state,
1896 bool atomic)
Jyri Sarha6753ba92015-11-27 16:14:01 +02001897{
Liu Ying28500292016-08-26 15:30:39 +08001898 struct drm_crtc *crtc = old_crtc_state->crtc;
Jyri Sarha6753ba92015-11-27 16:14:01 +02001899 const struct drm_crtc_helper_funcs *crtc_funcs =
1900 crtc->helper_private;
1901 struct drm_plane *plane;
1902
1903 if (atomic && crtc_funcs && crtc_funcs->atomic_begin)
1904 crtc_funcs->atomic_begin(crtc, NULL);
1905
Liu Ying28500292016-08-26 15:30:39 +08001906 drm_atomic_crtc_state_for_each_plane(plane, old_crtc_state) {
Jyri Sarha6753ba92015-11-27 16:14:01 +02001907 const struct drm_plane_helper_funcs *plane_funcs =
1908 plane->helper_private;
1909
Liu Ying28500292016-08-26 15:30:39 +08001910 if (!plane_funcs)
Jyri Sarha6753ba92015-11-27 16:14:01 +02001911 continue;
1912
1913 WARN_ON(!plane_funcs->atomic_disable);
1914 if (plane_funcs->atomic_disable)
1915 plane_funcs->atomic_disable(plane, NULL);
1916 }
1917
1918 if (atomic && crtc_funcs && crtc_funcs->atomic_flush)
1919 crtc_funcs->atomic_flush(crtc, NULL);
1920}
1921EXPORT_SYMBOL(drm_atomic_helper_disable_planes_on_crtc);
1922
1923/**
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001924 * drm_atomic_helper_cleanup_planes - cleanup plane resources after commit
1925 * @dev: DRM device
1926 * @old_state: atomic state object with old state structures
1927 *
1928 * This function cleans up plane state, specifically framebuffers, from the old
1929 * configuration. Hence the old configuration must be perserved in @old_state to
1930 * be able to call this function.
1931 *
1932 * This function must also be called on the new state when the atomic update
1933 * fails at any point after calling drm_atomic_helper_prepare_planes().
1934 */
1935void drm_atomic_helper_cleanup_planes(struct drm_device *dev,
1936 struct drm_atomic_state *old_state)
1937{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001938 struct drm_plane *plane;
1939 struct drm_plane_state *plane_state;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001940 int i;
1941
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001942 for_each_plane_in_state(old_state, plane, plane_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +02001943 const struct drm_plane_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001944
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001945 funcs = plane->helper_private;
1946
Maarten Lankhorst844f9112015-09-02 10:42:40 +02001947 if (funcs->cleanup_fb)
1948 funcs->cleanup_fb(plane, plane_state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001949 }
1950}
1951EXPORT_SYMBOL(drm_atomic_helper_cleanup_planes);
1952
1953/**
1954 * drm_atomic_helper_swap_state - store atomic state into current sw state
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001955 * @state: atomic state
Daniel Vetter5e84c262016-06-10 00:06:32 +02001956 * @stall: stall for proceeding commits
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001957 *
1958 * This function stores the atomic state into the current state pointers in all
1959 * driver objects. It should be called after all failing steps have been done
1960 * and succeeded, but before the actual hardware state is committed.
1961 *
1962 * For cleanup and error recovery the current state for all changed objects will
1963 * be swaped into @state.
1964 *
1965 * With that sequence it fits perfectly into the plane prepare/cleanup sequence:
1966 *
1967 * 1. Call drm_atomic_helper_prepare_planes() with the staged atomic state.
1968 *
1969 * 2. Do any other steps that might fail.
1970 *
1971 * 3. Put the staged state into the current state pointers with this function.
1972 *
1973 * 4. Actually commit the hardware state.
1974 *
Daniel Vetter26196f72015-08-25 16:26:03 +02001975 * 5. Call drm_atomic_helper_cleanup_planes() with @state, which since step 3
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001976 * contains the old state. Also do any other cleanup required with that state.
Daniel Vettera095caa2016-06-08 17:15:36 +02001977 *
1978 * @stall must be set when nonblocking commits for this driver directly access
Daniel Vetter6806cdf2017-01-25 07:26:43 +01001979 * the &drm_plane.state, &drm_crtc.state or &drm_connector.state pointer. With
1980 * the current atomic helpers this is almost always the case, since the helpers
Daniel Vettera095caa2016-06-08 17:15:36 +02001981 * don't pass the right state structures to the callbacks.
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001982 */
Daniel Vetter5e84c262016-06-10 00:06:32 +02001983void drm_atomic_helper_swap_state(struct drm_atomic_state *state,
1984 bool stall)
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001985{
1986 int i;
Daniel Vettera095caa2016-06-08 17:15:36 +02001987 long ret;
Daniel Vetterbe9174a2016-06-02 00:06:24 +02001988 struct drm_connector *connector;
Maarten Lankhorst581e49f2017-01-16 10:37:38 +01001989 struct drm_connector_state *conn_state, *old_conn_state;
Daniel Vetterbe9174a2016-06-02 00:06:24 +02001990 struct drm_crtc *crtc;
Maarten Lankhorst581e49f2017-01-16 10:37:38 +01001991 struct drm_crtc_state *crtc_state, *old_crtc_state;
Daniel Vetterbe9174a2016-06-02 00:06:24 +02001992 struct drm_plane *plane;
Maarten Lankhorst581e49f2017-01-16 10:37:38 +01001993 struct drm_plane_state *plane_state, *old_plane_state;
Daniel Vettera095caa2016-06-08 17:15:36 +02001994 struct drm_crtc_commit *commit;
1995
1996 if (stall) {
1997 for_each_crtc_in_state(state, crtc, crtc_state, i) {
1998 spin_lock(&crtc->commit_lock);
1999 commit = list_first_entry_or_null(&crtc->commit_list,
2000 struct drm_crtc_commit, commit_entry);
2001 if (commit)
2002 drm_crtc_commit_get(commit);
2003 spin_unlock(&crtc->commit_lock);
2004
2005 if (!commit)
2006 continue;
2007
2008 ret = wait_for_completion_timeout(&commit->hw_done,
2009 10*HZ);
2010 if (ret == 0)
2011 DRM_ERROR("[CRTC:%d:%s] hw_done timed out\n",
2012 crtc->base.id, crtc->name);
2013 drm_crtc_commit_put(commit);
2014 }
2015 }
Daniel Vetterc2fcd272014-11-05 00:14:14 +01002016
Maarten Lankhorst581e49f2017-01-16 10:37:38 +01002017 for_each_oldnew_connector_in_state(state, connector, old_conn_state, conn_state, i) {
2018 WARN_ON(connector->state != old_conn_state);
2019
Daniel Vetterc2fcd272014-11-05 00:14:14 +01002020 connector->state->state = state;
Daniel Vetter63e83c12016-06-02 00:06:32 +02002021 swap(state->connectors[i].state, connector->state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +01002022 connector->state->state = NULL;
2023 }
2024
Maarten Lankhorst581e49f2017-01-16 10:37:38 +01002025 for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state, crtc_state, i) {
2026 WARN_ON(crtc->state != old_crtc_state);
2027
Daniel Vetterc2fcd272014-11-05 00:14:14 +01002028 crtc->state->state = state;
Daniel Vetter5d943aa62016-06-02 00:06:34 +02002029 swap(state->crtcs[i].state, crtc->state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +01002030 crtc->state->state = NULL;
Daniel Vettera095caa2016-06-08 17:15:36 +02002031
2032 if (state->crtcs[i].commit) {
2033 spin_lock(&crtc->commit_lock);
2034 list_add(&state->crtcs[i].commit->commit_entry,
2035 &crtc->commit_list);
2036 spin_unlock(&crtc->commit_lock);
2037
2038 state->crtcs[i].commit->event = NULL;
2039 }
Daniel Vetterc2fcd272014-11-05 00:14:14 +01002040 }
2041
Maarten Lankhorst581e49f2017-01-16 10:37:38 +01002042 for_each_oldnew_plane_in_state(state, plane, old_plane_state, plane_state, i) {
2043 WARN_ON(plane->state != old_plane_state);
2044
Daniel Vetterc2fcd272014-11-05 00:14:14 +01002045 plane->state->state = state;
Daniel Vetterb8b53422016-06-02 00:06:33 +02002046 swap(state->planes[i].state, plane->state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +01002047 plane->state->state = NULL;
2048 }
2049}
2050EXPORT_SYMBOL(drm_atomic_helper_swap_state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002051
2052/**
2053 * drm_atomic_helper_update_plane - Helper for primary plane update using atomic
2054 * @plane: plane object to update
2055 * @crtc: owning CRTC of owning plane
2056 * @fb: framebuffer to flip onto plane
2057 * @crtc_x: x offset of primary plane on crtc
2058 * @crtc_y: y offset of primary plane on crtc
2059 * @crtc_w: width of primary plane rectangle on crtc
2060 * @crtc_h: height of primary plane rectangle on crtc
2061 * @src_x: x offset of @fb for panning
2062 * @src_y: y offset of @fb for panning
2063 * @src_w: width of source rectangle in @fb
2064 * @src_h: height of source rectangle in @fb
2065 *
2066 * Provides a default plane update handler using the atomic driver interface.
2067 *
2068 * RETURNS:
2069 * Zero on success, error code on failure
2070 */
2071int drm_atomic_helper_update_plane(struct drm_plane *plane,
2072 struct drm_crtc *crtc,
2073 struct drm_framebuffer *fb,
2074 int crtc_x, int crtc_y,
2075 unsigned int crtc_w, unsigned int crtc_h,
2076 uint32_t src_x, uint32_t src_y,
2077 uint32_t src_w, uint32_t src_h)
2078{
2079 struct drm_atomic_state *state;
2080 struct drm_plane_state *plane_state;
2081 int ret = 0;
2082
2083 state = drm_atomic_state_alloc(plane->dev);
2084 if (!state)
2085 return -ENOMEM;
2086
2087 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
2088retry:
2089 plane_state = drm_atomic_get_plane_state(state, plane);
2090 if (IS_ERR(plane_state)) {
2091 ret = PTR_ERR(plane_state);
2092 goto fail;
2093 }
2094
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01002095 ret = drm_atomic_set_crtc_for_plane(plane_state, crtc);
Daniel Vetter042652e2014-07-27 13:46:52 +02002096 if (ret != 0)
2097 goto fail;
Daniel Vetter321ebf02014-11-04 22:57:27 +01002098 drm_atomic_set_fb_for_plane(plane_state, fb);
Daniel Vetter042652e2014-07-27 13:46:52 +02002099 plane_state->crtc_x = crtc_x;
2100 plane_state->crtc_y = crtc_y;
Daniel Vetter042652e2014-07-27 13:46:52 +02002101 plane_state->crtc_w = crtc_w;
Ville Syrjälä02e6f372015-11-16 17:02:35 +02002102 plane_state->crtc_h = crtc_h;
Daniel Vetter042652e2014-07-27 13:46:52 +02002103 plane_state->src_x = src_x;
2104 plane_state->src_y = src_y;
Daniel Vetter042652e2014-07-27 13:46:52 +02002105 plane_state->src_w = src_w;
Ville Syrjälä02e6f372015-11-16 17:02:35 +02002106 plane_state->src_h = src_h;
Daniel Vetter042652e2014-07-27 13:46:52 +02002107
Daniel Vetter3671c582015-05-04 15:40:52 +02002108 if (plane == crtc->cursor)
2109 state->legacy_cursor_update = true;
2110
Daniel Vetter042652e2014-07-27 13:46:52 +02002111 ret = drm_atomic_commit(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002112fail:
2113 if (ret == -EDEADLK)
2114 goto backoff;
2115
Chris Wilson08536952016-10-14 13:18:18 +01002116 drm_atomic_state_put(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002117 return ret;
Chris Wilson08536952016-10-14 13:18:18 +01002118
Daniel Vetter042652e2014-07-27 13:46:52 +02002119backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02002120 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01002121 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002122
2123 /*
2124 * Someone might have exchanged the framebuffer while we dropped locks
2125 * in the backoff code. We need to fix up the fb refcount tracking the
2126 * core does for us.
2127 */
2128 plane->old_fb = plane->fb;
2129
2130 goto retry;
2131}
2132EXPORT_SYMBOL(drm_atomic_helper_update_plane);
2133
2134/**
2135 * drm_atomic_helper_disable_plane - Helper for primary plane disable using * atomic
2136 * @plane: plane to disable
2137 *
2138 * Provides a default plane disable handler using the atomic driver interface.
2139 *
2140 * RETURNS:
2141 * Zero on success, error code on failure
2142 */
2143int drm_atomic_helper_disable_plane(struct drm_plane *plane)
2144{
2145 struct drm_atomic_state *state;
2146 struct drm_plane_state *plane_state;
2147 int ret = 0;
2148
Jasper St. Pierreaa54e2e2014-11-20 19:59:15 -08002149 /*
2150 * FIXME: Without plane->crtc set we can't get at the implicit legacy
2151 * acquire context. The real fix will be to wire the acquire ctx through
2152 * everywhere we need it, but meanwhile prevent chaos by just skipping
2153 * this noop. The critical case is the cursor ioctls which a) only grab
2154 * crtc/cursor-plane locks (so we need the crtc to get at the right
2155 * acquire context) and b) can try to disable the plane multiple times.
2156 */
2157 if (!plane->crtc)
2158 return 0;
2159
Daniel Vetter042652e2014-07-27 13:46:52 +02002160 state = drm_atomic_state_alloc(plane->dev);
2161 if (!state)
2162 return -ENOMEM;
2163
2164 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(plane->crtc);
2165retry:
2166 plane_state = drm_atomic_get_plane_state(state, plane);
2167 if (IS_ERR(plane_state)) {
2168 ret = PTR_ERR(plane_state);
2169 goto fail;
2170 }
2171
Maarten Lankhorst24e79d02015-11-11 11:29:07 +01002172 if (plane_state->crtc && (plane == plane->crtc->cursor))
2173 plane_state->state->legacy_cursor_update = true;
2174
Rob Clarkbbb1e522015-08-25 15:35:58 -04002175 ret = __drm_atomic_helper_disable_plane(plane, plane_state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002176 if (ret != 0)
2177 goto fail;
Daniel Vetterf02ad902015-01-22 16:36:23 +01002178
Daniel Vetter042652e2014-07-27 13:46:52 +02002179 ret = drm_atomic_commit(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002180fail:
2181 if (ret == -EDEADLK)
2182 goto backoff;
2183
Chris Wilson08536952016-10-14 13:18:18 +01002184 drm_atomic_state_put(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002185 return ret;
Chris Wilson08536952016-10-14 13:18:18 +01002186
Daniel Vetter042652e2014-07-27 13:46:52 +02002187backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02002188 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01002189 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002190
2191 /*
2192 * Someone might have exchanged the framebuffer while we dropped locks
2193 * in the backoff code. We need to fix up the fb refcount tracking the
2194 * core does for us.
2195 */
2196 plane->old_fb = plane->fb;
2197
2198 goto retry;
2199}
2200EXPORT_SYMBOL(drm_atomic_helper_disable_plane);
2201
Rob Clarkbbb1e522015-08-25 15:35:58 -04002202/* just used from fb-helper and atomic-helper: */
2203int __drm_atomic_helper_disable_plane(struct drm_plane *plane,
2204 struct drm_plane_state *plane_state)
2205{
2206 int ret;
2207
2208 ret = drm_atomic_set_crtc_for_plane(plane_state, NULL);
2209 if (ret != 0)
2210 return ret;
2211
2212 drm_atomic_set_fb_for_plane(plane_state, NULL);
2213 plane_state->crtc_x = 0;
2214 plane_state->crtc_y = 0;
Rob Clarkbbb1e522015-08-25 15:35:58 -04002215 plane_state->crtc_w = 0;
Ville Syrjälä02e6f372015-11-16 17:02:35 +02002216 plane_state->crtc_h = 0;
Rob Clarkbbb1e522015-08-25 15:35:58 -04002217 plane_state->src_x = 0;
2218 plane_state->src_y = 0;
Rob Clarkbbb1e522015-08-25 15:35:58 -04002219 plane_state->src_w = 0;
Ville Syrjälä02e6f372015-11-16 17:02:35 +02002220 plane_state->src_h = 0;
Rob Clarkbbb1e522015-08-25 15:35:58 -04002221
Rob Clarkbbb1e522015-08-25 15:35:58 -04002222 return 0;
2223}
2224
Daniel Vetter042652e2014-07-27 13:46:52 +02002225static int update_output_state(struct drm_atomic_state *state,
2226 struct drm_mode_set *set)
2227{
2228 struct drm_device *dev = set->crtc->dev;
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03002229 struct drm_crtc *crtc;
2230 struct drm_crtc_state *crtc_state;
2231 struct drm_connector *connector;
Daniel Vetter042652e2014-07-27 13:46:52 +02002232 struct drm_connector_state *conn_state;
Maarten Lankhorst6ab520a2016-02-24 09:37:28 +01002233 int ret, i;
Daniel Vetter042652e2014-07-27 13:46:52 +02002234
2235 ret = drm_modeset_lock(&dev->mode_config.connection_mutex,
2236 state->acquire_ctx);
2237 if (ret)
2238 return ret;
2239
Maarten Lankhorst6ab520a2016-02-24 09:37:28 +01002240 /* First disable all connectors on the target crtc. */
2241 ret = drm_atomic_add_affected_connectors(state, set->crtc);
2242 if (ret)
2243 return ret;
Daniel Vetter042652e2014-07-27 13:46:52 +02002244
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03002245 for_each_connector_in_state(state, connector, conn_state, i) {
Daniel Vetter042652e2014-07-27 13:46:52 +02002246 if (conn_state->crtc == set->crtc) {
2247 ret = drm_atomic_set_crtc_for_connector(conn_state,
2248 NULL);
2249 if (ret)
2250 return ret;
Manasi Navare40ee6fb2016-12-16 12:29:06 +02002251 /* Make sure legacy setCrtc always re-trains */
2252 conn_state->link_status = DRM_LINK_STATUS_GOOD;
Daniel Vetter042652e2014-07-27 13:46:52 +02002253 }
Maarten Lankhorst6ab520a2016-02-24 09:37:28 +01002254 }
Daniel Vetter042652e2014-07-27 13:46:52 +02002255
Maarten Lankhorst6ab520a2016-02-24 09:37:28 +01002256 /* Then set all connectors from set->connectors on the target crtc */
2257 for (i = 0; i < set->num_connectors; i++) {
2258 conn_state = drm_atomic_get_connector_state(state,
2259 set->connectors[i]);
2260 if (IS_ERR(conn_state))
2261 return PTR_ERR(conn_state);
2262
2263 ret = drm_atomic_set_crtc_for_connector(conn_state,
2264 set->crtc);
2265 if (ret)
2266 return ret;
Daniel Vetter042652e2014-07-27 13:46:52 +02002267 }
2268
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03002269 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Daniel Vetter042652e2014-07-27 13:46:52 +02002270 /* Don't update ->enable for the CRTC in the set_config request,
2271 * since a mismatch would indicate a bug in the upper layers.
2272 * The actual modeset code later on will catch any
2273 * inconsistencies here. */
2274 if (crtc == set->crtc)
2275 continue;
2276
Maarten Lankhorst14de6c42016-01-04 12:53:20 +01002277 if (!crtc_state->connector_mask) {
Laurent Pinchartc30f55a2015-06-22 13:37:46 +03002278 ret = drm_atomic_set_mode_prop_for_crtc(crtc_state,
2279 NULL);
2280 if (ret < 0)
2281 return ret;
2282
Maarten Lankhorst9b5edbf2015-06-01 08:59:53 +02002283 crtc_state->active = false;
Laurent Pinchartc30f55a2015-06-22 13:37:46 +03002284 }
Daniel Vetter042652e2014-07-27 13:46:52 +02002285 }
2286
2287 return 0;
2288}
2289
2290/**
2291 * drm_atomic_helper_set_config - set a new config from userspace
2292 * @set: mode set configuration
2293 *
2294 * Provides a default crtc set_config handler using the atomic driver interface.
2295 *
Manasi Navare40ee6fb2016-12-16 12:29:06 +02002296 * NOTE: For backwards compatibility with old userspace this automatically
2297 * resets the "link-status" property to GOOD, to force any link
2298 * re-training. The SETCRTC ioctl does not define whether an update does
2299 * need a full modeset or just a plane update, hence we're allowed to do
2300 * that. See also drm_mode_connector_set_link_status_property().
2301 *
Daniel Vetter042652e2014-07-27 13:46:52 +02002302 * Returns:
2303 * Returns 0 on success, negative errno numbers on failure.
2304 */
2305int drm_atomic_helper_set_config(struct drm_mode_set *set)
2306{
2307 struct drm_atomic_state *state;
2308 struct drm_crtc *crtc = set->crtc;
Daniel Vetter042652e2014-07-27 13:46:52 +02002309 int ret = 0;
2310
2311 state = drm_atomic_state_alloc(crtc->dev);
2312 if (!state)
2313 return -ENOMEM;
2314
Maarten Lankhorst40616a22016-03-03 10:17:39 +01002315 state->legacy_set_config = true;
Daniel Vetter042652e2014-07-27 13:46:52 +02002316 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
2317retry:
Rob Clarkbbb1e522015-08-25 15:35:58 -04002318 ret = __drm_atomic_helper_set_config(set, state);
Daniel Stone819364d2015-05-26 14:36:48 +01002319 if (ret != 0)
2320 goto fail;
2321
Daniel Vetter042652e2014-07-27 13:46:52 +02002322 ret = drm_atomic_commit(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002323fail:
2324 if (ret == -EDEADLK)
2325 goto backoff;
2326
Chris Wilson08536952016-10-14 13:18:18 +01002327 drm_atomic_state_put(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002328 return ret;
Chris Wilson08536952016-10-14 13:18:18 +01002329
Daniel Vetter042652e2014-07-27 13:46:52 +02002330backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02002331 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01002332 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002333
2334 /*
2335 * Someone might have exchanged the framebuffer while we dropped locks
2336 * in the backoff code. We need to fix up the fb refcount tracking the
2337 * core does for us.
2338 */
2339 crtc->primary->old_fb = crtc->primary->fb;
2340
2341 goto retry;
2342}
2343EXPORT_SYMBOL(drm_atomic_helper_set_config);
2344
Rob Clarkbbb1e522015-08-25 15:35:58 -04002345/* just used from fb-helper and atomic-helper: */
2346int __drm_atomic_helper_set_config(struct drm_mode_set *set,
2347 struct drm_atomic_state *state)
2348{
2349 struct drm_crtc_state *crtc_state;
2350 struct drm_plane_state *primary_state;
2351 struct drm_crtc *crtc = set->crtc;
Ville Syrjälä83926112015-11-16 17:02:34 +02002352 int hdisplay, vdisplay;
Rob Clarkbbb1e522015-08-25 15:35:58 -04002353 int ret;
2354
2355 crtc_state = drm_atomic_get_crtc_state(state, crtc);
2356 if (IS_ERR(crtc_state))
2357 return PTR_ERR(crtc_state);
2358
2359 primary_state = drm_atomic_get_plane_state(state, crtc->primary);
2360 if (IS_ERR(primary_state))
2361 return PTR_ERR(primary_state);
2362
2363 if (!set->mode) {
2364 WARN_ON(set->fb);
2365 WARN_ON(set->num_connectors);
2366
2367 ret = drm_atomic_set_mode_for_crtc(crtc_state, NULL);
2368 if (ret != 0)
2369 return ret;
2370
2371 crtc_state->active = false;
2372
2373 ret = drm_atomic_set_crtc_for_plane(primary_state, NULL);
2374 if (ret != 0)
2375 return ret;
2376
2377 drm_atomic_set_fb_for_plane(primary_state, NULL);
2378
2379 goto commit;
2380 }
2381
2382 WARN_ON(!set->fb);
2383 WARN_ON(!set->num_connectors);
2384
2385 ret = drm_atomic_set_mode_for_crtc(crtc_state, set->mode);
2386 if (ret != 0)
2387 return ret;
2388
2389 crtc_state->active = true;
2390
2391 ret = drm_atomic_set_crtc_for_plane(primary_state, crtc);
2392 if (ret != 0)
2393 return ret;
2394
Daniel Vetter196cd5d2017-01-25 07:26:56 +01002395 drm_mode_get_hv_timing(set->mode, &hdisplay, &vdisplay);
Ville Syrjälä83926112015-11-16 17:02:34 +02002396
Rob Clarkbbb1e522015-08-25 15:35:58 -04002397 drm_atomic_set_fb_for_plane(primary_state, set->fb);
2398 primary_state->crtc_x = 0;
2399 primary_state->crtc_y = 0;
Ville Syrjälä83926112015-11-16 17:02:34 +02002400 primary_state->crtc_w = hdisplay;
Ville Syrjälä02e6f372015-11-16 17:02:35 +02002401 primary_state->crtc_h = vdisplay;
Rob Clarkbbb1e522015-08-25 15:35:58 -04002402 primary_state->src_x = set->x << 16;
2403 primary_state->src_y = set->y << 16;
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03002404 if (drm_rotation_90_or_270(primary_state->rotation)) {
Ville Syrjälä83926112015-11-16 17:02:34 +02002405 primary_state->src_w = vdisplay << 16;
Ville Syrjälä02e6f372015-11-16 17:02:35 +02002406 primary_state->src_h = hdisplay << 16;
Ville Syrjälä41121242015-10-15 20:39:59 +03002407 } else {
Ville Syrjälä83926112015-11-16 17:02:34 +02002408 primary_state->src_w = hdisplay << 16;
Ville Syrjälä02e6f372015-11-16 17:02:35 +02002409 primary_state->src_h = vdisplay << 16;
Ville Syrjälä41121242015-10-15 20:39:59 +03002410 }
Rob Clarkbbb1e522015-08-25 15:35:58 -04002411
2412commit:
2413 ret = update_output_state(state, set);
2414 if (ret)
2415 return ret;
2416
2417 return 0;
2418}
2419
Daniel Vetter042652e2014-07-27 13:46:52 +02002420/**
Thierry Reding14942762015-12-02 17:50:04 +01002421 * drm_atomic_helper_disable_all - disable all currently active outputs
2422 * @dev: DRM device
2423 * @ctx: lock acquisition context
2424 *
2425 * Loops through all connectors, finding those that aren't turned off and then
2426 * turns them off by setting their DPMS mode to OFF and deactivating the CRTC
2427 * that they are connected to.
2428 *
2429 * This is used for example in suspend/resume to disable all currently active
2430 * functions when suspending.
2431 *
2432 * Note that if callers haven't already acquired all modeset locks this might
2433 * return -EDEADLK, which must be handled by calling drm_modeset_backoff().
2434 *
2435 * Returns:
2436 * 0 on success or a negative error code on failure.
2437 *
2438 * See also:
2439 * drm_atomic_helper_suspend(), drm_atomic_helper_resume()
2440 */
2441int drm_atomic_helper_disable_all(struct drm_device *dev,
2442 struct drm_modeset_acquire_ctx *ctx)
2443{
2444 struct drm_atomic_state *state;
Maarten Lankhorst9b2104f2017-02-21 14:51:40 +01002445 struct drm_connector_state *conn_state;
Thierry Reding14942762015-12-02 17:50:04 +01002446 struct drm_connector *conn;
Maarten Lankhorst9b2104f2017-02-21 14:51:40 +01002447 struct drm_plane_state *plane_state;
2448 struct drm_plane *plane;
2449 struct drm_crtc_state *crtc_state;
2450 struct drm_crtc *crtc;
2451 int ret, i;
Thierry Reding14942762015-12-02 17:50:04 +01002452
2453 state = drm_atomic_state_alloc(dev);
2454 if (!state)
2455 return -ENOMEM;
2456
2457 state->acquire_ctx = ctx;
2458
Maarten Lankhorst9b2104f2017-02-21 14:51:40 +01002459 drm_for_each_crtc(crtc, dev) {
Thierry Reding14942762015-12-02 17:50:04 +01002460 crtc_state = drm_atomic_get_crtc_state(state, crtc);
2461 if (IS_ERR(crtc_state)) {
Maarten Lankhorst9b2104f2017-02-21 14:51:40 +01002462 ret = PTR_ERR(crtc_state);
Thierry Reding14942762015-12-02 17:50:04 +01002463 goto free;
2464 }
2465
2466 crtc_state->active = false;
Maarten Lankhorst9b2104f2017-02-21 14:51:40 +01002467
2468 ret = drm_atomic_set_mode_prop_for_crtc(crtc_state, NULL);
2469 if (ret < 0)
2470 goto free;
2471
2472 ret = drm_atomic_add_affected_planes(state, crtc);
2473 if (ret < 0)
2474 goto free;
2475
2476 ret = drm_atomic_add_affected_connectors(state, crtc);
2477 if (ret < 0)
2478 goto free;
Thierry Reding14942762015-12-02 17:50:04 +01002479 }
2480
Maarten Lankhorst9b2104f2017-02-21 14:51:40 +01002481 for_each_connector_in_state(state, conn, conn_state, i) {
2482 ret = drm_atomic_set_crtc_for_connector(conn_state, NULL);
2483 if (ret < 0)
2484 goto free;
2485 }
2486
2487 for_each_plane_in_state(state, plane, plane_state, i) {
2488 ret = drm_atomic_set_crtc_for_plane(plane_state, NULL);
2489 if (ret < 0)
2490 goto free;
2491
2492 drm_atomic_set_fb_for_plane(plane_state, NULL);
2493 }
2494
2495 ret = drm_atomic_commit(state);
Thierry Reding14942762015-12-02 17:50:04 +01002496free:
Chris Wilson08536952016-10-14 13:18:18 +01002497 drm_atomic_state_put(state);
Maarten Lankhorst9b2104f2017-02-21 14:51:40 +01002498 return ret;
Thierry Reding14942762015-12-02 17:50:04 +01002499}
Maarten Lankhorst9b2104f2017-02-21 14:51:40 +01002500
Thierry Reding14942762015-12-02 17:50:04 +01002501EXPORT_SYMBOL(drm_atomic_helper_disable_all);
2502
2503/**
2504 * drm_atomic_helper_suspend - subsystem-level suspend helper
2505 * @dev: DRM device
2506 *
2507 * Duplicates the current atomic state, disables all active outputs and then
2508 * returns a pointer to the original atomic state to the caller. Drivers can
2509 * pass this pointer to the drm_atomic_helper_resume() helper upon resume to
2510 * restore the output configuration that was active at the time the system
2511 * entered suspend.
2512 *
2513 * Note that it is potentially unsafe to use this. The atomic state object
2514 * returned by this function is assumed to be persistent. Drivers must ensure
2515 * that this holds true. Before calling this function, drivers must make sure
2516 * to suspend fbdev emulation so that nothing can be using the device.
2517 *
2518 * Returns:
2519 * A pointer to a copy of the state before suspend on success or an ERR_PTR()-
2520 * encoded error code on failure. Drivers should store the returned atomic
2521 * state object and pass it to the drm_atomic_helper_resume() helper upon
2522 * resume.
2523 *
2524 * See also:
2525 * drm_atomic_helper_duplicate_state(), drm_atomic_helper_disable_all(),
Maarten Lankhorst581e49f2017-01-16 10:37:38 +01002526 * drm_atomic_helper_resume(), drm_atomic_helper_commit_duplicated_state()
Thierry Reding14942762015-12-02 17:50:04 +01002527 */
2528struct drm_atomic_state *drm_atomic_helper_suspend(struct drm_device *dev)
2529{
2530 struct drm_modeset_acquire_ctx ctx;
2531 struct drm_atomic_state *state;
2532 int err;
2533
2534 drm_modeset_acquire_init(&ctx, 0);
2535
2536retry:
2537 err = drm_modeset_lock_all_ctx(dev, &ctx);
2538 if (err < 0) {
2539 state = ERR_PTR(err);
2540 goto unlock;
2541 }
2542
2543 state = drm_atomic_helper_duplicate_state(dev, &ctx);
2544 if (IS_ERR(state))
2545 goto unlock;
2546
2547 err = drm_atomic_helper_disable_all(dev, &ctx);
2548 if (err < 0) {
Chris Wilson08536952016-10-14 13:18:18 +01002549 drm_atomic_state_put(state);
Thierry Reding14942762015-12-02 17:50:04 +01002550 state = ERR_PTR(err);
2551 goto unlock;
2552 }
2553
2554unlock:
2555 if (PTR_ERR(state) == -EDEADLK) {
2556 drm_modeset_backoff(&ctx);
2557 goto retry;
2558 }
2559
2560 drm_modeset_drop_locks(&ctx);
2561 drm_modeset_acquire_fini(&ctx);
2562 return state;
2563}
2564EXPORT_SYMBOL(drm_atomic_helper_suspend);
2565
2566/**
Maarten Lankhorst581e49f2017-01-16 10:37:38 +01002567 * drm_atomic_helper_commit_duplicated_state - commit duplicated state
2568 * @state: duplicated atomic state to commit
2569 * @ctx: pointer to acquire_ctx to use for commit.
2570 *
2571 * The state returned by drm_atomic_helper_duplicate_state() and
2572 * drm_atomic_helper_suspend() is partially invalid, and needs to
2573 * be fixed up before commit.
2574 *
2575 * Returns:
2576 * 0 on success or a negative error code on failure.
2577 *
2578 * See also:
2579 * drm_atomic_helper_suspend()
2580 */
2581int drm_atomic_helper_commit_duplicated_state(struct drm_atomic_state *state,
2582 struct drm_modeset_acquire_ctx *ctx)
2583{
2584 int i;
2585 struct drm_plane *plane;
2586 struct drm_plane_state *plane_state;
2587 struct drm_connector *connector;
2588 struct drm_connector_state *conn_state;
2589 struct drm_crtc *crtc;
2590 struct drm_crtc_state *crtc_state;
2591
2592 state->acquire_ctx = ctx;
2593
2594 for_each_new_plane_in_state(state, plane, plane_state, i)
2595 state->planes[i].old_state = plane->state;
2596
2597 for_each_new_crtc_in_state(state, crtc, crtc_state, i)
2598 state->crtcs[i].old_state = crtc->state;
2599
2600 for_each_new_connector_in_state(state, connector, conn_state, i)
2601 state->connectors[i].old_state = connector->state;
2602
2603 return drm_atomic_commit(state);
2604}
2605EXPORT_SYMBOL(drm_atomic_helper_commit_duplicated_state);
2606
2607/**
Thierry Reding14942762015-12-02 17:50:04 +01002608 * drm_atomic_helper_resume - subsystem-level resume helper
2609 * @dev: DRM device
2610 * @state: atomic state to resume to
2611 *
2612 * Calls drm_mode_config_reset() to synchronize hardware and software states,
2613 * grabs all modeset locks and commits the atomic state object. This can be
2614 * used in conjunction with the drm_atomic_helper_suspend() helper to
2615 * implement suspend/resume for drivers that support atomic mode-setting.
2616 *
2617 * Returns:
2618 * 0 on success or a negative error code on failure.
2619 *
2620 * See also:
2621 * drm_atomic_helper_suspend()
2622 */
2623int drm_atomic_helper_resume(struct drm_device *dev,
2624 struct drm_atomic_state *state)
2625{
2626 struct drm_mode_config *config = &dev->mode_config;
2627 int err;
2628
2629 drm_mode_config_reset(dev);
Maarten Lankhorst581e49f2017-01-16 10:37:38 +01002630
Thierry Reding14942762015-12-02 17:50:04 +01002631 drm_modeset_lock_all(dev);
Maarten Lankhorst581e49f2017-01-16 10:37:38 +01002632 err = drm_atomic_helper_commit_duplicated_state(state, config->acquire_ctx);
Thierry Reding14942762015-12-02 17:50:04 +01002633 drm_modeset_unlock_all(dev);
2634
2635 return err;
2636}
2637EXPORT_SYMBOL(drm_atomic_helper_resume);
2638
2639/**
Laurent Pinchart7f500022015-02-23 02:50:23 +02002640 * drm_atomic_helper_crtc_set_property - helper for crtc properties
Daniel Vetter042652e2014-07-27 13:46:52 +02002641 * @crtc: DRM crtc
2642 * @property: DRM property
2643 * @val: value of property
2644 *
Laurent Pinchart7f500022015-02-23 02:50:23 +02002645 * Provides a default crtc set_property handler using the atomic driver
2646 * interface.
Daniel Vetter042652e2014-07-27 13:46:52 +02002647 *
2648 * RETURNS:
2649 * Zero on success, error code on failure
2650 */
2651int
2652drm_atomic_helper_crtc_set_property(struct drm_crtc *crtc,
2653 struct drm_property *property,
2654 uint64_t val)
2655{
2656 struct drm_atomic_state *state;
2657 struct drm_crtc_state *crtc_state;
2658 int ret = 0;
2659
2660 state = drm_atomic_state_alloc(crtc->dev);
2661 if (!state)
2662 return -ENOMEM;
2663
2664 /* ->set_property is always called with all locks held. */
2665 state->acquire_ctx = crtc->dev->mode_config.acquire_ctx;
2666retry:
2667 crtc_state = drm_atomic_get_crtc_state(state, crtc);
2668 if (IS_ERR(crtc_state)) {
2669 ret = PTR_ERR(crtc_state);
2670 goto fail;
2671 }
2672
Rob Clark40ecc692014-12-18 16:01:46 -05002673 ret = drm_atomic_crtc_set_property(crtc, crtc_state,
2674 property, val);
Daniel Vetter042652e2014-07-27 13:46:52 +02002675 if (ret)
2676 goto fail;
2677
2678 ret = drm_atomic_commit(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002679fail:
2680 if (ret == -EDEADLK)
2681 goto backoff;
2682
Chris Wilson08536952016-10-14 13:18:18 +01002683 drm_atomic_state_put(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002684 return ret;
Chris Wilson08536952016-10-14 13:18:18 +01002685
Daniel Vetter042652e2014-07-27 13:46:52 +02002686backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02002687 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01002688 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002689
2690 goto retry;
2691}
2692EXPORT_SYMBOL(drm_atomic_helper_crtc_set_property);
2693
2694/**
Laurent Pinchart7f500022015-02-23 02:50:23 +02002695 * drm_atomic_helper_plane_set_property - helper for plane properties
Daniel Vetter042652e2014-07-27 13:46:52 +02002696 * @plane: DRM plane
2697 * @property: DRM property
2698 * @val: value of property
2699 *
Laurent Pinchart7f500022015-02-23 02:50:23 +02002700 * Provides a default plane set_property handler using the atomic driver
2701 * interface.
Daniel Vetter042652e2014-07-27 13:46:52 +02002702 *
2703 * RETURNS:
2704 * Zero on success, error code on failure
2705 */
2706int
2707drm_atomic_helper_plane_set_property(struct drm_plane *plane,
2708 struct drm_property *property,
2709 uint64_t val)
2710{
2711 struct drm_atomic_state *state;
2712 struct drm_plane_state *plane_state;
2713 int ret = 0;
2714
2715 state = drm_atomic_state_alloc(plane->dev);
2716 if (!state)
2717 return -ENOMEM;
2718
2719 /* ->set_property is always called with all locks held. */
2720 state->acquire_ctx = plane->dev->mode_config.acquire_ctx;
2721retry:
2722 plane_state = drm_atomic_get_plane_state(state, plane);
2723 if (IS_ERR(plane_state)) {
2724 ret = PTR_ERR(plane_state);
2725 goto fail;
2726 }
2727
Rob Clark40ecc692014-12-18 16:01:46 -05002728 ret = drm_atomic_plane_set_property(plane, plane_state,
2729 property, val);
Daniel Vetter042652e2014-07-27 13:46:52 +02002730 if (ret)
2731 goto fail;
2732
2733 ret = drm_atomic_commit(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002734fail:
2735 if (ret == -EDEADLK)
2736 goto backoff;
2737
Chris Wilson08536952016-10-14 13:18:18 +01002738 drm_atomic_state_put(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002739 return ret;
Chris Wilson08536952016-10-14 13:18:18 +01002740
Daniel Vetter042652e2014-07-27 13:46:52 +02002741backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02002742 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01002743 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002744
2745 goto retry;
2746}
2747EXPORT_SYMBOL(drm_atomic_helper_plane_set_property);
2748
2749/**
Laurent Pinchart7f500022015-02-23 02:50:23 +02002750 * drm_atomic_helper_connector_set_property - helper for connector properties
Daniel Vetter042652e2014-07-27 13:46:52 +02002751 * @connector: DRM connector
2752 * @property: DRM property
2753 * @val: value of property
2754 *
Laurent Pinchart7f500022015-02-23 02:50:23 +02002755 * Provides a default connector set_property handler using the atomic driver
2756 * interface.
Daniel Vetter042652e2014-07-27 13:46:52 +02002757 *
2758 * RETURNS:
2759 * Zero on success, error code on failure
2760 */
2761int
2762drm_atomic_helper_connector_set_property(struct drm_connector *connector,
2763 struct drm_property *property,
2764 uint64_t val)
2765{
2766 struct drm_atomic_state *state;
2767 struct drm_connector_state *connector_state;
2768 int ret = 0;
2769
2770 state = drm_atomic_state_alloc(connector->dev);
2771 if (!state)
2772 return -ENOMEM;
2773
2774 /* ->set_property is always called with all locks held. */
2775 state->acquire_ctx = connector->dev->mode_config.acquire_ctx;
2776retry:
2777 connector_state = drm_atomic_get_connector_state(state, connector);
2778 if (IS_ERR(connector_state)) {
2779 ret = PTR_ERR(connector_state);
2780 goto fail;
2781 }
2782
Rob Clark40ecc692014-12-18 16:01:46 -05002783 ret = drm_atomic_connector_set_property(connector, connector_state,
2784 property, val);
Daniel Vetter042652e2014-07-27 13:46:52 +02002785 if (ret)
2786 goto fail;
2787
2788 ret = drm_atomic_commit(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002789fail:
2790 if (ret == -EDEADLK)
2791 goto backoff;
2792
Chris Wilson08536952016-10-14 13:18:18 +01002793 drm_atomic_state_put(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002794 return ret;
Chris Wilson08536952016-10-14 13:18:18 +01002795
Daniel Vetter042652e2014-07-27 13:46:52 +02002796backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02002797 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01002798 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002799
2800 goto retry;
2801}
2802EXPORT_SYMBOL(drm_atomic_helper_connector_set_property);
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002803
Andrey Grodzovskyf869a6e2017-01-06 15:39:40 -05002804static int page_flip_common(
2805 struct drm_atomic_state *state,
2806 struct drm_crtc *crtc,
2807 struct drm_framebuffer *fb,
Andrey Grodzovsky6cbe5c42017-02-02 16:56:29 -05002808 struct drm_pending_vblank_event *event,
2809 uint32_t flags)
Andrey Grodzovskyf869a6e2017-01-06 15:39:40 -05002810{
2811 struct drm_plane *plane = crtc->primary;
2812 struct drm_plane_state *plane_state;
2813 struct drm_crtc_state *crtc_state;
2814 int ret = 0;
2815
2816 crtc_state = drm_atomic_get_crtc_state(state, crtc);
2817 if (IS_ERR(crtc_state))
2818 return PTR_ERR(crtc_state);
2819
2820 crtc_state->event = event;
Andrey Grodzovsky6cbe5c42017-02-02 16:56:29 -05002821 crtc_state->pageflip_flags = flags;
Andrey Grodzovskyf869a6e2017-01-06 15:39:40 -05002822
2823 plane_state = drm_atomic_get_plane_state(state, plane);
2824 if (IS_ERR(plane_state))
2825 return PTR_ERR(plane_state);
2826
Andrey Grodzovskyf869a6e2017-01-06 15:39:40 -05002827 ret = drm_atomic_set_crtc_for_plane(plane_state, crtc);
2828 if (ret != 0)
2829 return ret;
2830 drm_atomic_set_fb_for_plane(plane_state, fb);
2831
2832 /* Make sure we don't accidentally do a full modeset. */
2833 state->allow_modeset = false;
2834 if (!crtc_state->active) {
Russell King6ac7c542017-02-13 12:27:03 +00002835 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] disabled, rejecting legacy flip\n",
2836 crtc->base.id, crtc->name);
Andrey Grodzovskyf869a6e2017-01-06 15:39:40 -05002837 return -EINVAL;
2838 }
2839
2840 return ret;
2841}
2842
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002843/**
2844 * drm_atomic_helper_page_flip - execute a legacy page flip
2845 * @crtc: DRM crtc
2846 * @fb: DRM framebuffer
2847 * @event: optional DRM event to signal upon completion
2848 * @flags: flip flags for non-vblank sync'ed updates
2849 *
Andrey Grodzovskyf869a6e2017-01-06 15:39:40 -05002850 * Provides a default &drm_crtc_funcs.page_flip implementation
2851 * using the atomic driver interface.
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002852 *
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002853 * Returns:
2854 * Returns 0 on success, negative errno numbers on failure.
Andrey Grodzovskyf869a6e2017-01-06 15:39:40 -05002855 *
2856 * See also:
2857 * drm_atomic_helper_page_flip_target()
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002858 */
2859int drm_atomic_helper_page_flip(struct drm_crtc *crtc,
2860 struct drm_framebuffer *fb,
2861 struct drm_pending_vblank_event *event,
2862 uint32_t flags)
2863{
2864 struct drm_plane *plane = crtc->primary;
2865 struct drm_atomic_state *state;
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002866 int ret = 0;
2867
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002868 state = drm_atomic_state_alloc(plane->dev);
2869 if (!state)
2870 return -ENOMEM;
2871
2872 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
Andrey Grodzovskyf869a6e2017-01-06 15:39:40 -05002873
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002874retry:
Andrey Grodzovsky6cbe5c42017-02-02 16:56:29 -05002875 ret = page_flip_common(state, crtc, fb, event, flags);
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002876 if (ret != 0)
2877 goto fail;
Daniel Vetter4cba6852015-12-08 09:49:20 +01002878
Maarten Lankhorstb837ba02016-04-26 16:11:35 +02002879 ret = drm_atomic_nonblocking_commit(state);
Andrey Grodzovskyf869a6e2017-01-06 15:39:40 -05002880
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002881fail:
2882 if (ret == -EDEADLK)
2883 goto backoff;
2884
Chris Wilson08536952016-10-14 13:18:18 +01002885 drm_atomic_state_put(state);
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002886 return ret;
Chris Wilson08536952016-10-14 13:18:18 +01002887
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002888backoff:
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002889 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01002890 drm_atomic_legacy_backoff(state);
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002891
2892 /*
2893 * Someone might have exchanged the framebuffer while we dropped locks
2894 * in the backoff code. We need to fix up the fb refcount tracking the
2895 * core does for us.
2896 */
2897 plane->old_fb = plane->fb;
2898
2899 goto retry;
2900}
2901EXPORT_SYMBOL(drm_atomic_helper_page_flip);
Daniel Vetterd4617012014-11-03 15:56:43 +01002902
2903/**
Andrey Grodzovskyf869a6e2017-01-06 15:39:40 -05002904 * drm_atomic_helper_page_flip_target - do page flip on target vblank period.
2905 * @crtc: DRM crtc
2906 * @fb: DRM framebuffer
2907 * @event: optional DRM event to signal upon completion
2908 * @flags: flip flags for non-vblank sync'ed updates
2909 * @target: specifying the target vblank period when the flip to take effect
2910 *
2911 * Provides a default &drm_crtc_funcs.page_flip_target implementation.
2912 * Similar to drm_atomic_helper_page_flip() with extra parameter to specify
2913 * target vblank period to flip.
2914 *
2915 * Returns:
2916 * Returns 0 on success, negative errno numbers on failure.
2917 */
2918int drm_atomic_helper_page_flip_target(
2919 struct drm_crtc *crtc,
2920 struct drm_framebuffer *fb,
2921 struct drm_pending_vblank_event *event,
2922 uint32_t flags,
2923 uint32_t target)
2924{
2925 struct drm_plane *plane = crtc->primary;
2926 struct drm_atomic_state *state;
2927 struct drm_crtc_state *crtc_state;
2928 int ret = 0;
2929
Andrey Grodzovskyf869a6e2017-01-06 15:39:40 -05002930 state = drm_atomic_state_alloc(plane->dev);
2931 if (!state)
2932 return -ENOMEM;
2933
2934 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
2935
2936retry:
Andrey Grodzovsky6cbe5c42017-02-02 16:56:29 -05002937 ret = page_flip_common(state, crtc, fb, event, flags);
Andrey Grodzovskyf869a6e2017-01-06 15:39:40 -05002938 if (ret != 0)
2939 goto fail;
2940
2941 crtc_state = drm_atomic_get_existing_crtc_state(state, crtc);
2942 if (WARN_ON(!crtc_state)) {
2943 ret = -EINVAL;
2944 goto fail;
2945 }
2946 crtc_state->target_vblank = target;
2947
2948 ret = drm_atomic_nonblocking_commit(state);
2949
2950fail:
2951 if (ret == -EDEADLK)
2952 goto backoff;
2953
2954 drm_atomic_state_put(state);
2955 return ret;
2956
2957backoff:
2958 drm_atomic_state_clear(state);
2959 drm_atomic_legacy_backoff(state);
2960
2961 /*
2962 * Someone might have exchanged the framebuffer while we dropped locks
2963 * in the backoff code. We need to fix up the fb refcount tracking the
2964 * core does for us.
2965 */
2966 plane->old_fb = plane->fb;
2967
2968 goto retry;
2969}
2970EXPORT_SYMBOL(drm_atomic_helper_page_flip_target);
2971
2972/**
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002973 * drm_atomic_helper_connector_dpms() - connector dpms helper implementation
2974 * @connector: affected connector
2975 * @mode: DPMS mode
2976 *
2977 * This is the main helper function provided by the atomic helper framework for
2978 * implementing the legacy DPMS connector interface. It computes the new desired
Daniel Vetter6806cdf2017-01-25 07:26:43 +01002979 * &drm_crtc_state.active state for the corresponding CRTC (if the connector is
2980 * enabled) and updates it.
Maarten Lankhorst9a69a9a2015-07-21 11:34:55 +02002981 *
2982 * Returns:
2983 * Returns 0 on success, negative errno numbers on failure.
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002984 */
Maarten Lankhorst9a69a9a2015-07-21 11:34:55 +02002985int drm_atomic_helper_connector_dpms(struct drm_connector *connector,
2986 int mode)
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002987{
2988 struct drm_mode_config *config = &connector->dev->mode_config;
2989 struct drm_atomic_state *state;
2990 struct drm_crtc_state *crtc_state;
2991 struct drm_crtc *crtc;
2992 struct drm_connector *tmp_connector;
Daniel Vetterc36a3252016-12-15 16:58:43 +01002993 struct drm_connector_list_iter conn_iter;
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002994 int ret;
2995 bool active = false;
Maarten Lankhorst9a69a9a2015-07-21 11:34:55 +02002996 int old_mode = connector->dpms;
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002997
2998 if (mode != DRM_MODE_DPMS_ON)
2999 mode = DRM_MODE_DPMS_OFF;
3000
3001 connector->dpms = mode;
3002 crtc = connector->state->crtc;
3003
3004 if (!crtc)
Maarten Lankhorst9a69a9a2015-07-21 11:34:55 +02003005 return 0;
Daniel Vetterb486e0e2015-01-22 18:53:05 +01003006
Daniel Vetterb486e0e2015-01-22 18:53:05 +01003007 state = drm_atomic_state_alloc(connector->dev);
3008 if (!state)
Maarten Lankhorst9a69a9a2015-07-21 11:34:55 +02003009 return -ENOMEM;
Daniel Vetterb486e0e2015-01-22 18:53:05 +01003010
3011 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
3012retry:
3013 crtc_state = drm_atomic_get_crtc_state(state, crtc);
Maarten Lankhorst9a69a9a2015-07-21 11:34:55 +02003014 if (IS_ERR(crtc_state)) {
3015 ret = PTR_ERR(crtc_state);
3016 goto fail;
3017 }
Daniel Vetterb486e0e2015-01-22 18:53:05 +01003018
3019 WARN_ON(!drm_modeset_is_locked(&config->connection_mutex));
3020
Thierry Redingb982dab2017-02-28 15:46:43 +01003021 drm_connector_list_iter_begin(connector->dev, &conn_iter);
Daniel Vetterc36a3252016-12-15 16:58:43 +01003022 drm_for_each_connector_iter(tmp_connector, &conn_iter) {
John Hunter0388df02015-03-17 15:30:28 +08003023 if (tmp_connector->state->crtc != crtc)
Daniel Vetterb486e0e2015-01-22 18:53:05 +01003024 continue;
3025
John Hunter0388df02015-03-17 15:30:28 +08003026 if (tmp_connector->dpms == DRM_MODE_DPMS_ON) {
Daniel Vetterb486e0e2015-01-22 18:53:05 +01003027 active = true;
3028 break;
3029 }
3030 }
Thierry Redingb982dab2017-02-28 15:46:43 +01003031 drm_connector_list_iter_end(&conn_iter);
Daniel Vetterb486e0e2015-01-22 18:53:05 +01003032 crtc_state->active = active;
3033
3034 ret = drm_atomic_commit(state);
Daniel Vetterb486e0e2015-01-22 18:53:05 +01003035fail:
3036 if (ret == -EDEADLK)
3037 goto backoff;
Marta Lofstedt8f5040e2016-12-05 14:04:08 +02003038 if (ret != 0)
3039 connector->dpms = old_mode;
Chris Wilson08536952016-10-14 13:18:18 +01003040 drm_atomic_state_put(state);
Maarten Lankhorst9a69a9a2015-07-21 11:34:55 +02003041 return ret;
Chris Wilson08536952016-10-14 13:18:18 +01003042
Daniel Vetterb486e0e2015-01-22 18:53:05 +01003043backoff:
3044 drm_atomic_state_clear(state);
3045 drm_atomic_legacy_backoff(state);
3046
3047 goto retry;
3048}
3049EXPORT_SYMBOL(drm_atomic_helper_connector_dpms);
3050
3051/**
Daniel Vetter6806cdf2017-01-25 07:26:43 +01003052 * drm_atomic_helper_best_encoder - Helper for
3053 * &drm_connector_helper_funcs.best_encoder callback
Noralf Trønnes9ecb5492016-05-11 18:09:21 +02003054 * @connector: Connector control structure
3055 *
Daniel Vetter6806cdf2017-01-25 07:26:43 +01003056 * This is a &drm_connector_helper_funcs.best_encoder callback helper for
Noralf Trønnes9ecb5492016-05-11 18:09:21 +02003057 * connectors that support exactly 1 encoder, statically determined at driver
3058 * init time.
3059 */
3060struct drm_encoder *
3061drm_atomic_helper_best_encoder(struct drm_connector *connector)
3062{
3063 WARN_ON(connector->encoder_ids[1]);
3064 return drm_encoder_find(connector->dev, connector->encoder_ids[0]);
3065}
3066EXPORT_SYMBOL(drm_atomic_helper_best_encoder);
3067
3068/**
Daniel Vetter3150c7d2014-11-06 20:53:29 +01003069 * DOC: atomic state reset and initialization
3070 *
3071 * Both the drm core and the atomic helpers assume that there is always the full
3072 * and correct atomic software state for all connectors, CRTCs and planes
3073 * available. Which is a bit a problem on driver load and also after system
3074 * suspend. One way to solve this is to have a hardware state read-out
3075 * infrastructure which reconstructs the full software state (e.g. the i915
3076 * driver).
3077 *
3078 * The simpler solution is to just reset the software state to everything off,
3079 * which is easiest to do by calling drm_mode_config_reset(). To facilitate this
3080 * the atomic helpers provide default reset implementations for all hooks.
Daniel Vetter7f8ee3e2015-12-04 09:46:06 +01003081 *
3082 * On the upside the precise state tracking of atomic simplifies system suspend
3083 * and resume a lot. For drivers using drm_mode_config_reset() a complete recipe
3084 * is implemented in drm_atomic_helper_suspend() and drm_atomic_helper_resume().
3085 * For other drivers the building blocks are split out, see the documentation
3086 * for these functions.
Daniel Vetter3150c7d2014-11-06 20:53:29 +01003087 */
3088
3089/**
Daniel Vetter6806cdf2017-01-25 07:26:43 +01003090 * drm_atomic_helper_crtc_reset - default &drm_crtc_funcs.reset hook for CRTCs
Daniel Vetterd4617012014-11-03 15:56:43 +01003091 * @crtc: drm CRTC
3092 *
3093 * Resets the atomic state for @crtc by freeing the state pointer (which might
3094 * be NULL, e.g. at driver load time) and allocating a new empty state object.
3095 */
3096void drm_atomic_helper_crtc_reset(struct drm_crtc *crtc)
3097{
Daniel Vetterb0b55112016-04-22 22:10:29 +02003098 if (crtc->state)
Daniel Vetterec2dc6a2016-05-09 16:34:09 +02003099 __drm_atomic_helper_crtc_destroy_state(crtc->state);
Daniel Vetterb0b55112016-04-22 22:10:29 +02003100
Daniel Vetterd4617012014-11-03 15:56:43 +01003101 kfree(crtc->state);
3102 crtc->state = kzalloc(sizeof(*crtc->state), GFP_KERNEL);
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01003103
3104 if (crtc->state)
3105 crtc->state->crtc = crtc;
Daniel Vetterd4617012014-11-03 15:56:43 +01003106}
3107EXPORT_SYMBOL(drm_atomic_helper_crtc_reset);
3108
3109/**
Thierry Redingf5e78402015-01-28 14:54:32 +01003110 * __drm_atomic_helper_crtc_duplicate_state - copy atomic CRTC state
3111 * @crtc: CRTC object
3112 * @state: atomic CRTC state
3113 *
3114 * Copies atomic state from a CRTC's current state and resets inferred values.
3115 * This is useful for drivers that subclass the CRTC state.
3116 */
3117void __drm_atomic_helper_crtc_duplicate_state(struct drm_crtc *crtc,
3118 struct drm_crtc_state *state)
3119{
3120 memcpy(state, crtc->state, sizeof(*state));
3121
Daniel Stone99cf4a22015-05-25 19:11:51 +01003122 if (state->mode_blob)
Thierry Reding6472e502017-02-28 15:46:42 +01003123 drm_property_blob_get(state->mode_blob);
Lionel Landwerlin5488dc12016-02-26 17:05:00 +00003124 if (state->degamma_lut)
Thierry Reding6472e502017-02-28 15:46:42 +01003125 drm_property_blob_get(state->degamma_lut);
Lionel Landwerlin5488dc12016-02-26 17:05:00 +00003126 if (state->ctm)
Thierry Reding6472e502017-02-28 15:46:42 +01003127 drm_property_blob_get(state->ctm);
Lionel Landwerlin5488dc12016-02-26 17:05:00 +00003128 if (state->gamma_lut)
Thierry Reding6472e502017-02-28 15:46:42 +01003129 drm_property_blob_get(state->gamma_lut);
Thierry Redingf5e78402015-01-28 14:54:32 +01003130 state->mode_changed = false;
3131 state->active_changed = false;
3132 state->planes_changed = false;
Maarten Lankhorstfc596662015-07-21 13:28:57 +02003133 state->connectors_changed = false;
Lionel Landwerlin5488dc12016-02-26 17:05:00 +00003134 state->color_mgmt_changed = false;
Marek Szyprowski44d1240d2016-06-13 11:11:26 +02003135 state->zpos_changed = false;
Thierry Redingf5e78402015-01-28 14:54:32 +01003136 state->event = NULL;
Andrey Grodzovsky6cbe5c42017-02-02 16:56:29 -05003137 state->pageflip_flags = 0;
Thierry Redingf5e78402015-01-28 14:54:32 +01003138}
3139EXPORT_SYMBOL(__drm_atomic_helper_crtc_duplicate_state);
3140
3141/**
Daniel Vetterd4617012014-11-03 15:56:43 +01003142 * drm_atomic_helper_crtc_duplicate_state - default state duplicate hook
3143 * @crtc: drm CRTC
3144 *
3145 * Default CRTC state duplicate hook for drivers which don't have their own
3146 * subclassed CRTC state structure.
3147 */
3148struct drm_crtc_state *
3149drm_atomic_helper_crtc_duplicate_state(struct drm_crtc *crtc)
3150{
3151 struct drm_crtc_state *state;
3152
3153 if (WARN_ON(!crtc->state))
3154 return NULL;
3155
Thierry Redingf5e78402015-01-28 14:54:32 +01003156 state = kmalloc(sizeof(*state), GFP_KERNEL);
3157 if (state)
3158 __drm_atomic_helper_crtc_duplicate_state(crtc, state);
Daniel Vetterd4617012014-11-03 15:56:43 +01003159
3160 return state;
3161}
3162EXPORT_SYMBOL(drm_atomic_helper_crtc_duplicate_state);
3163
3164/**
Thierry Redingf5e78402015-01-28 14:54:32 +01003165 * __drm_atomic_helper_crtc_destroy_state - release CRTC state
Thierry Redingf5e78402015-01-28 14:54:32 +01003166 * @state: CRTC state object to release
3167 *
3168 * Releases all resources stored in the CRTC state without actually freeing
3169 * the memory of the CRTC state. This is useful for drivers that subclass the
3170 * CRTC state.
3171 */
Daniel Vetterec2dc6a2016-05-09 16:34:09 +02003172void __drm_atomic_helper_crtc_destroy_state(struct drm_crtc_state *state)
Thierry Redingf5e78402015-01-28 14:54:32 +01003173{
Thierry Reding6472e502017-02-28 15:46:42 +01003174 drm_property_blob_put(state->mode_blob);
3175 drm_property_blob_put(state->degamma_lut);
3176 drm_property_blob_put(state->ctm);
3177 drm_property_blob_put(state->gamma_lut);
Thierry Redingf5e78402015-01-28 14:54:32 +01003178}
3179EXPORT_SYMBOL(__drm_atomic_helper_crtc_destroy_state);
3180
3181/**
Daniel Vetterd4617012014-11-03 15:56:43 +01003182 * drm_atomic_helper_crtc_destroy_state - default state destroy hook
3183 * @crtc: drm CRTC
3184 * @state: CRTC state object to release
3185 *
3186 * Default CRTC state destroy hook for drivers which don't have their own
3187 * subclassed CRTC state structure.
3188 */
3189void drm_atomic_helper_crtc_destroy_state(struct drm_crtc *crtc,
3190 struct drm_crtc_state *state)
3191{
Daniel Vetterec2dc6a2016-05-09 16:34:09 +02003192 __drm_atomic_helper_crtc_destroy_state(state);
Daniel Vetterd4617012014-11-03 15:56:43 +01003193 kfree(state);
3194}
3195EXPORT_SYMBOL(drm_atomic_helper_crtc_destroy_state);
3196
3197/**
Daniel Vetter6806cdf2017-01-25 07:26:43 +01003198 * drm_atomic_helper_plane_reset - default &drm_plane_funcs.reset hook for planes
Daniel Vetterd4617012014-11-03 15:56:43 +01003199 * @plane: drm plane
3200 *
3201 * Resets the atomic state for @plane by freeing the state pointer (which might
3202 * be NULL, e.g. at driver load time) and allocating a new empty state object.
3203 */
3204void drm_atomic_helper_plane_reset(struct drm_plane *plane)
3205{
Daniel Vetterb0b55112016-04-22 22:10:29 +02003206 if (plane->state)
Daniel Vetter2f701692016-05-09 16:34:10 +02003207 __drm_atomic_helper_plane_destroy_state(plane->state);
Daniel Vetter321ebf02014-11-04 22:57:27 +01003208
Daniel Vetterd4617012014-11-03 15:56:43 +01003209 kfree(plane->state);
3210 plane->state = kzalloc(sizeof(*plane->state), GFP_KERNEL);
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01003211
Marek Szyprowski25aaa3a2016-01-19 09:26:48 +01003212 if (plane->state) {
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01003213 plane->state->plane = plane;
Joonas Lahtinen31ad61e2016-07-29 08:50:05 +03003214 plane->state->rotation = DRM_ROTATE_0;
Marek Szyprowski25aaa3a2016-01-19 09:26:48 +01003215 }
Daniel Vetterd4617012014-11-03 15:56:43 +01003216}
3217EXPORT_SYMBOL(drm_atomic_helper_plane_reset);
3218
3219/**
Thierry Redingf5e78402015-01-28 14:54:32 +01003220 * __drm_atomic_helper_plane_duplicate_state - copy atomic plane state
3221 * @plane: plane object
3222 * @state: atomic plane state
3223 *
3224 * Copies atomic state from a plane's current state. This is useful for
3225 * drivers that subclass the plane state.
3226 */
3227void __drm_atomic_helper_plane_duplicate_state(struct drm_plane *plane,
3228 struct drm_plane_state *state)
3229{
3230 memcpy(state, plane->state, sizeof(*state));
3231
3232 if (state->fb)
Thierry Redinga4a69da2017-02-28 15:46:40 +01003233 drm_framebuffer_get(state->fb);
Gustavo Padovan96260142016-11-15 22:06:39 +09003234
3235 state->fence = NULL;
Thierry Redingf5e78402015-01-28 14:54:32 +01003236}
3237EXPORT_SYMBOL(__drm_atomic_helper_plane_duplicate_state);
3238
3239/**
Daniel Vetterd4617012014-11-03 15:56:43 +01003240 * drm_atomic_helper_plane_duplicate_state - default state duplicate hook
3241 * @plane: drm plane
3242 *
3243 * Default plane state duplicate hook for drivers which don't have their own
3244 * subclassed plane state structure.
3245 */
3246struct drm_plane_state *
3247drm_atomic_helper_plane_duplicate_state(struct drm_plane *plane)
3248{
Daniel Vetter321ebf02014-11-04 22:57:27 +01003249 struct drm_plane_state *state;
3250
Daniel Vetterd4617012014-11-03 15:56:43 +01003251 if (WARN_ON(!plane->state))
3252 return NULL;
3253
Thierry Redingf5e78402015-01-28 14:54:32 +01003254 state = kmalloc(sizeof(*state), GFP_KERNEL);
3255 if (state)
3256 __drm_atomic_helper_plane_duplicate_state(plane, state);
Daniel Vetter321ebf02014-11-04 22:57:27 +01003257
3258 return state;
Daniel Vetterd4617012014-11-03 15:56:43 +01003259}
3260EXPORT_SYMBOL(drm_atomic_helper_plane_duplicate_state);
3261
3262/**
Thierry Redingf5e78402015-01-28 14:54:32 +01003263 * __drm_atomic_helper_plane_destroy_state - release plane state
Thierry Redingf5e78402015-01-28 14:54:32 +01003264 * @state: plane state object to release
3265 *
3266 * Releases all resources stored in the plane state without actually freeing
3267 * the memory of the plane state. This is useful for drivers that subclass the
3268 * plane state.
3269 */
Daniel Vetter2f701692016-05-09 16:34:10 +02003270void __drm_atomic_helper_plane_destroy_state(struct drm_plane_state *state)
Thierry Redingf5e78402015-01-28 14:54:32 +01003271{
3272 if (state->fb)
Thierry Redinga4a69da2017-02-28 15:46:40 +01003273 drm_framebuffer_put(state->fb);
Gustavo Padovan96260142016-11-15 22:06:39 +09003274
3275 if (state->fence)
3276 dma_fence_put(state->fence);
Thierry Redingf5e78402015-01-28 14:54:32 +01003277}
3278EXPORT_SYMBOL(__drm_atomic_helper_plane_destroy_state);
3279
3280/**
Daniel Vetterd4617012014-11-03 15:56:43 +01003281 * drm_atomic_helper_plane_destroy_state - default state destroy hook
3282 * @plane: drm plane
3283 * @state: plane state object to release
3284 *
3285 * Default plane state destroy hook for drivers which don't have their own
3286 * subclassed plane state structure.
3287 */
3288void drm_atomic_helper_plane_destroy_state(struct drm_plane *plane,
Daniel Vetter321ebf02014-11-04 22:57:27 +01003289 struct drm_plane_state *state)
Daniel Vetterd4617012014-11-03 15:56:43 +01003290{
Daniel Vetter2f701692016-05-09 16:34:10 +02003291 __drm_atomic_helper_plane_destroy_state(state);
Daniel Vetterd4617012014-11-03 15:56:43 +01003292 kfree(state);
3293}
3294EXPORT_SYMBOL(drm_atomic_helper_plane_destroy_state);
3295
3296/**
Maarten Lankhorst4cd39912016-01-04 12:53:16 +01003297 * __drm_atomic_helper_connector_reset - reset state on connector
3298 * @connector: drm connector
3299 * @conn_state: connector state to assign
3300 *
3301 * Initializes the newly allocated @conn_state and assigns it to
Daniel Vetter6806cdf2017-01-25 07:26:43 +01003302 * the &drm_conector->state pointer of @connector, usually required when
3303 * initializing the drivers or when called from the &drm_connector_funcs.reset
3304 * hook.
Maarten Lankhorst4cd39912016-01-04 12:53:16 +01003305 *
3306 * This is useful for drivers that subclass the connector state.
3307 */
3308void
3309__drm_atomic_helper_connector_reset(struct drm_connector *connector,
3310 struct drm_connector_state *conn_state)
3311{
3312 if (conn_state)
3313 conn_state->connector = connector;
3314
3315 connector->state = conn_state;
3316}
3317EXPORT_SYMBOL(__drm_atomic_helper_connector_reset);
3318
3319/**
Daniel Vetter6806cdf2017-01-25 07:26:43 +01003320 * drm_atomic_helper_connector_reset - default &drm_connector_funcs.reset hook for connectors
Daniel Vetterd4617012014-11-03 15:56:43 +01003321 * @connector: drm connector
3322 *
3323 * Resets the atomic state for @connector by freeing the state pointer (which
3324 * might be NULL, e.g. at driver load time) and allocating a new empty state
3325 * object.
3326 */
3327void drm_atomic_helper_connector_reset(struct drm_connector *connector)
3328{
Maarten Lankhorst4cd39912016-01-04 12:53:16 +01003329 struct drm_connector_state *conn_state =
3330 kzalloc(sizeof(*conn_state), GFP_KERNEL);
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01003331
Daniel Vetterb0b55112016-04-22 22:10:29 +02003332 if (connector->state)
Daniel Vetterfabd9102016-05-09 16:34:11 +02003333 __drm_atomic_helper_connector_destroy_state(connector->state);
Daniel Vetterb0b55112016-04-22 22:10:29 +02003334
Maarten Lankhorst4cd39912016-01-04 12:53:16 +01003335 kfree(connector->state);
3336 __drm_atomic_helper_connector_reset(connector, conn_state);
Daniel Vetterd4617012014-11-03 15:56:43 +01003337}
3338EXPORT_SYMBOL(drm_atomic_helper_connector_reset);
3339
3340/**
Thierry Redingf5e78402015-01-28 14:54:32 +01003341 * __drm_atomic_helper_connector_duplicate_state - copy atomic connector state
3342 * @connector: connector object
3343 * @state: atomic connector state
3344 *
3345 * Copies atomic state from a connector's current state. This is useful for
3346 * drivers that subclass the connector state.
3347 */
3348void
3349__drm_atomic_helper_connector_duplicate_state(struct drm_connector *connector,
3350 struct drm_connector_state *state)
3351{
3352 memcpy(state, connector->state, sizeof(*state));
Dave Airlied2307de2016-04-27 11:27:39 +10003353 if (state->crtc)
Thierry Redingad093602017-02-28 15:46:39 +01003354 drm_connector_get(connector);
Thierry Redingf5e78402015-01-28 14:54:32 +01003355}
3356EXPORT_SYMBOL(__drm_atomic_helper_connector_duplicate_state);
3357
3358/**
Daniel Vetterd4617012014-11-03 15:56:43 +01003359 * drm_atomic_helper_connector_duplicate_state - default state duplicate hook
3360 * @connector: drm connector
3361 *
3362 * Default connector state duplicate hook for drivers which don't have their own
3363 * subclassed connector state structure.
3364 */
3365struct drm_connector_state *
3366drm_atomic_helper_connector_duplicate_state(struct drm_connector *connector)
3367{
Thierry Redingf5e78402015-01-28 14:54:32 +01003368 struct drm_connector_state *state;
3369
Daniel Vetterd4617012014-11-03 15:56:43 +01003370 if (WARN_ON(!connector->state))
3371 return NULL;
3372
Thierry Redingf5e78402015-01-28 14:54:32 +01003373 state = kmalloc(sizeof(*state), GFP_KERNEL);
3374 if (state)
3375 __drm_atomic_helper_connector_duplicate_state(connector, state);
3376
3377 return state;
Daniel Vetterd4617012014-11-03 15:56:43 +01003378}
3379EXPORT_SYMBOL(drm_atomic_helper_connector_duplicate_state);
3380
3381/**
Thierry Reding397fd772015-09-08 15:00:45 +02003382 * drm_atomic_helper_duplicate_state - duplicate an atomic state object
3383 * @dev: DRM device
3384 * @ctx: lock acquisition context
3385 *
3386 * Makes a copy of the current atomic state by looping over all objects and
Thierry Reding14942762015-12-02 17:50:04 +01003387 * duplicating their respective states. This is used for example by suspend/
3388 * resume support code to save the state prior to suspend such that it can
3389 * be restored upon resume.
Thierry Reding397fd772015-09-08 15:00:45 +02003390 *
3391 * Note that this treats atomic state as persistent between save and restore.
3392 * Drivers must make sure that this is possible and won't result in confusion
3393 * or erroneous behaviour.
3394 *
3395 * Note that if callers haven't already acquired all modeset locks this might
3396 * return -EDEADLK, which must be handled by calling drm_modeset_backoff().
3397 *
3398 * Returns:
3399 * A pointer to the copy of the atomic state object on success or an
3400 * ERR_PTR()-encoded error code on failure.
Thierry Reding14942762015-12-02 17:50:04 +01003401 *
3402 * See also:
3403 * drm_atomic_helper_suspend(), drm_atomic_helper_resume()
Thierry Reding397fd772015-09-08 15:00:45 +02003404 */
3405struct drm_atomic_state *
3406drm_atomic_helper_duplicate_state(struct drm_device *dev,
3407 struct drm_modeset_acquire_ctx *ctx)
3408{
3409 struct drm_atomic_state *state;
3410 struct drm_connector *conn;
Daniel Vetterc36a3252016-12-15 16:58:43 +01003411 struct drm_connector_list_iter conn_iter;
Thierry Reding397fd772015-09-08 15:00:45 +02003412 struct drm_plane *plane;
3413 struct drm_crtc *crtc;
3414 int err = 0;
3415
3416 state = drm_atomic_state_alloc(dev);
3417 if (!state)
3418 return ERR_PTR(-ENOMEM);
3419
3420 state->acquire_ctx = ctx;
3421
3422 drm_for_each_crtc(crtc, dev) {
3423 struct drm_crtc_state *crtc_state;
3424
3425 crtc_state = drm_atomic_get_crtc_state(state, crtc);
3426 if (IS_ERR(crtc_state)) {
3427 err = PTR_ERR(crtc_state);
3428 goto free;
3429 }
3430 }
3431
3432 drm_for_each_plane(plane, dev) {
3433 struct drm_plane_state *plane_state;
3434
3435 plane_state = drm_atomic_get_plane_state(state, plane);
3436 if (IS_ERR(plane_state)) {
3437 err = PTR_ERR(plane_state);
3438 goto free;
3439 }
3440 }
3441
Thierry Redingb982dab2017-02-28 15:46:43 +01003442 drm_connector_list_iter_begin(dev, &conn_iter);
Daniel Vetterc36a3252016-12-15 16:58:43 +01003443 drm_for_each_connector_iter(conn, &conn_iter) {
Thierry Reding397fd772015-09-08 15:00:45 +02003444 struct drm_connector_state *conn_state;
3445
3446 conn_state = drm_atomic_get_connector_state(state, conn);
3447 if (IS_ERR(conn_state)) {
3448 err = PTR_ERR(conn_state);
Thierry Redingb982dab2017-02-28 15:46:43 +01003449 drm_connector_list_iter_end(&conn_iter);
Thierry Reding397fd772015-09-08 15:00:45 +02003450 goto free;
3451 }
3452 }
Thierry Redingb982dab2017-02-28 15:46:43 +01003453 drm_connector_list_iter_end(&conn_iter);
Thierry Reding397fd772015-09-08 15:00:45 +02003454
3455 /* clear the acquire context so that it isn't accidentally reused */
3456 state->acquire_ctx = NULL;
3457
3458free:
3459 if (err < 0) {
Chris Wilson08536952016-10-14 13:18:18 +01003460 drm_atomic_state_put(state);
Thierry Reding397fd772015-09-08 15:00:45 +02003461 state = ERR_PTR(err);
3462 }
3463
3464 return state;
3465}
3466EXPORT_SYMBOL(drm_atomic_helper_duplicate_state);
3467
3468/**
Thierry Redingf5e78402015-01-28 14:54:32 +01003469 * __drm_atomic_helper_connector_destroy_state - release connector state
Thierry Redingf5e78402015-01-28 14:54:32 +01003470 * @state: connector state object to release
3471 *
3472 * Releases all resources stored in the connector state without actually
3473 * freeing the memory of the connector state. This is useful for drivers that
3474 * subclass the connector state.
3475 */
3476void
Daniel Vetterfabd9102016-05-09 16:34:11 +02003477__drm_atomic_helper_connector_destroy_state(struct drm_connector_state *state)
Thierry Redingf5e78402015-01-28 14:54:32 +01003478{
Dave Airlied2307de2016-04-27 11:27:39 +10003479 if (state->crtc)
Thierry Redingad093602017-02-28 15:46:39 +01003480 drm_connector_put(state->connector);
Thierry Redingf5e78402015-01-28 14:54:32 +01003481}
3482EXPORT_SYMBOL(__drm_atomic_helper_connector_destroy_state);
3483
3484/**
Daniel Vetterd4617012014-11-03 15:56:43 +01003485 * drm_atomic_helper_connector_destroy_state - default state destroy hook
3486 * @connector: drm connector
3487 * @state: connector state object to release
3488 *
3489 * Default connector state destroy hook for drivers which don't have their own
3490 * subclassed connector state structure.
3491 */
3492void drm_atomic_helper_connector_destroy_state(struct drm_connector *connector,
3493 struct drm_connector_state *state)
3494{
Daniel Vetterfabd9102016-05-09 16:34:11 +02003495 __drm_atomic_helper_connector_destroy_state(state);
Daniel Vetterd4617012014-11-03 15:56:43 +01003496 kfree(state);
3497}
3498EXPORT_SYMBOL(drm_atomic_helper_connector_destroy_state);
Lionel Landwerlin5488dc12016-02-26 17:05:00 +00003499
3500/**
3501 * drm_atomic_helper_legacy_gamma_set - set the legacy gamma correction table
3502 * @crtc: CRTC object
3503 * @red: red correction table
3504 * @green: green correction table
3505 * @blue: green correction table
Lionel Landwerlin5488dc12016-02-26 17:05:00 +00003506 * @size: size of the tables
3507 *
3508 * Implements support for legacy gamma correction table for drivers
3509 * that support color management through the DEGAMMA_LUT/GAMMA_LUT
3510 * properties.
3511 */
Maarten Lankhorst7ea77282016-06-07 12:49:30 +02003512int drm_atomic_helper_legacy_gamma_set(struct drm_crtc *crtc,
3513 u16 *red, u16 *green, u16 *blue,
3514 uint32_t size)
Lionel Landwerlin5488dc12016-02-26 17:05:00 +00003515{
3516 struct drm_device *dev = crtc->dev;
3517 struct drm_mode_config *config = &dev->mode_config;
3518 struct drm_atomic_state *state;
3519 struct drm_crtc_state *crtc_state;
3520 struct drm_property_blob *blob = NULL;
3521 struct drm_color_lut *blob_data;
3522 int i, ret = 0;
3523
3524 state = drm_atomic_state_alloc(crtc->dev);
3525 if (!state)
Maarten Lankhorst7ea77282016-06-07 12:49:30 +02003526 return -ENOMEM;
Lionel Landwerlin5488dc12016-02-26 17:05:00 +00003527
3528 blob = drm_property_create_blob(dev,
3529 sizeof(struct drm_color_lut) * size,
3530 NULL);
Lionel Landwerlin562c5b42016-03-10 12:04:21 +00003531 if (IS_ERR(blob)) {
3532 ret = PTR_ERR(blob);
Lionel Landwerlinc1f415c2016-03-11 12:17:26 +00003533 blob = NULL;
Lionel Landwerlin5488dc12016-02-26 17:05:00 +00003534 goto fail;
3535 }
3536
3537 /* Prepare GAMMA_LUT with the legacy values. */
3538 blob_data = (struct drm_color_lut *) blob->data;
3539 for (i = 0; i < size; i++) {
3540 blob_data[i].red = red[i];
3541 blob_data[i].green = green[i];
3542 blob_data[i].blue = blue[i];
3543 }
3544
3545 state->acquire_ctx = crtc->dev->mode_config.acquire_ctx;
3546retry:
3547 crtc_state = drm_atomic_get_crtc_state(state, crtc);
3548 if (IS_ERR(crtc_state)) {
3549 ret = PTR_ERR(crtc_state);
3550 goto fail;
3551 }
3552
3553 /* Reset DEGAMMA_LUT and CTM properties. */
3554 ret = drm_atomic_crtc_set_property(crtc, crtc_state,
3555 config->degamma_lut_property, 0);
3556 if (ret)
3557 goto fail;
3558
3559 ret = drm_atomic_crtc_set_property(crtc, crtc_state,
3560 config->ctm_property, 0);
3561 if (ret)
3562 goto fail;
3563
3564 ret = drm_atomic_crtc_set_property(crtc, crtc_state,
3565 config->gamma_lut_property, blob->base.id);
3566 if (ret)
3567 goto fail;
3568
3569 ret = drm_atomic_commit(state);
Lionel Landwerlin5488dc12016-02-26 17:05:00 +00003570fail:
3571 if (ret == -EDEADLK)
3572 goto backoff;
3573
Chris Wilson08536952016-10-14 13:18:18 +01003574 drm_atomic_state_put(state);
Thierry Reding6472e502017-02-28 15:46:42 +01003575 drm_property_blob_put(blob);
Maarten Lankhorst7ea77282016-06-07 12:49:30 +02003576 return ret;
Chris Wilson08536952016-10-14 13:18:18 +01003577
Lionel Landwerlin5488dc12016-02-26 17:05:00 +00003578backoff:
3579 drm_atomic_state_clear(state);
3580 drm_atomic_legacy_backoff(state);
3581
3582 goto retry;
3583}
3584EXPORT_SYMBOL(drm_atomic_helper_legacy_gamma_set);