blob: 2e62b332ae8bc57d661ab60276f4b5323a11d145 [file] [log] [blame]
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001/*
2 * Copyright (C) 2014 Red Hat
3 * Copyright (C) 2014 Intel Corp.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
19 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
20 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
21 * OTHER DEALINGS IN THE SOFTWARE.
22 *
23 * Authors:
24 * Rob Clark <robdclark@gmail.com>
25 * Daniel Vetter <daniel.vetter@ffwll.ch>
26 */
27
28#include <drm/drmP.h>
29#include <drm/drm_atomic.h>
30#include <drm/drm_plane_helper.h>
31#include <drm/drm_crtc_helper.h>
Daniel Vetter623369e2014-09-16 17:50:47 +020032#include <drm/drm_atomic_helper.h>
Chris Wilsonf54d1862016-10-25 13:00:45 +010033#include <linux/dma-fence.h>
Daniel Vetterc2fcd272014-11-05 00:14:14 +010034
Marek Szyprowski44d1240d2016-06-13 11:11:26 +020035#include "drm_crtc_internal.h"
36
Daniel Vetter3150c7d2014-11-06 20:53:29 +010037/**
38 * DOC: overview
39 *
40 * This helper library provides implementations of check and commit functions on
41 * top of the CRTC modeset helper callbacks and the plane helper callbacks. It
42 * also provides convenience implementations for the atomic state handling
43 * callbacks for drivers which don't need to subclass the drm core structures to
44 * add their own additional internal state.
45 *
46 * This library also provides default implementations for the check callback in
Daniel Vetter26196f72015-08-25 16:26:03 +020047 * drm_atomic_helper_check() and for the commit callback with
48 * drm_atomic_helper_commit(). But the individual stages and callbacks are
49 * exposed to allow drivers to mix and match and e.g. use the plane helpers only
Daniel Vetter3150c7d2014-11-06 20:53:29 +010050 * together with a driver private modeset implementation.
51 *
52 * This library also provides implementations for all the legacy driver
Daniel Vetter26196f72015-08-25 16:26:03 +020053 * interfaces on top of the atomic interface. See drm_atomic_helper_set_config(),
54 * drm_atomic_helper_disable_plane(), drm_atomic_helper_disable_plane() and the
Daniel Vetter3150c7d2014-11-06 20:53:29 +010055 * various functions to implement set_property callbacks. New drivers must not
56 * implement these functions themselves but must use the provided helpers.
Daniel Vetter092d01d2015-12-04 09:45:44 +010057 *
58 * The atomic helper uses the same function table structures as all other
Daniel Vetterea0dd852016-12-29 21:48:26 +010059 * modesetting helpers. See the documentation for &struct drm_crtc_helper_funcs,
60 * struct &drm_encoder_helper_funcs and &struct drm_connector_helper_funcs. It
61 * also shares the &struct drm_plane_helper_funcs function table with the plane
Daniel Vetter092d01d2015-12-04 09:45:44 +010062 * helpers.
Daniel Vetter3150c7d2014-11-06 20:53:29 +010063 */
Daniel Vetterc2fcd272014-11-05 00:14:14 +010064static void
65drm_atomic_helper_plane_changed(struct drm_atomic_state *state,
66 struct drm_plane_state *plane_state,
67 struct drm_plane *plane)
68{
69 struct drm_crtc_state *crtc_state;
70
71 if (plane->state->crtc) {
Andrzej Hajda2943ef32016-03-15 13:46:00 +010072 crtc_state = drm_atomic_get_existing_crtc_state(state,
73 plane->state->crtc);
Daniel Vetterc2fcd272014-11-05 00:14:14 +010074
75 if (WARN_ON(!crtc_state))
76 return;
77
78 crtc_state->planes_changed = true;
79 }
80
81 if (plane_state->crtc) {
Andrzej Hajda2943ef32016-03-15 13:46:00 +010082 crtc_state = drm_atomic_get_existing_crtc_state(state,
83 plane_state->crtc);
Daniel Vetterc2fcd272014-11-05 00:14:14 +010084
85 if (WARN_ON(!crtc_state))
86 return;
87
88 crtc_state->planes_changed = true;
89 }
90}
91
Maarten Lankhorst8248b652016-03-03 10:17:40 +010092static int handle_conflicting_encoders(struct drm_atomic_state *state,
93 bool disable_conflicting_encoders)
Daniel Vetter97ac3202015-12-03 10:49:14 +010094{
Daniel Vetter97ac3202015-12-03 10:49:14 +010095 struct drm_connector_state *conn_state;
Daniel Vetter623369e2014-09-16 17:50:47 +020096 struct drm_connector *connector;
Daniel Vetterc36a3252016-12-15 16:58:43 +010097 struct drm_connector_list_iter conn_iter;
Maarten Lankhorst40616a22016-03-03 10:17:39 +010098 struct drm_encoder *encoder;
99 unsigned encoder_mask = 0;
Daniel Vetterc36a3252016-12-15 16:58:43 +0100100 int i, ret = 0;
Daniel Vetter623369e2014-09-16 17:50:47 +0200101
Maarten Lankhorst8248b652016-03-03 10:17:40 +0100102 /*
103 * First loop, find all newly assigned encoders from the connectors
104 * part of the state. If the same encoder is assigned to multiple
105 * connectors bail out.
106 */
Maarten Lankhorst40616a22016-03-03 10:17:39 +0100107 for_each_connector_in_state(state, connector, conn_state, i) {
108 const struct drm_connector_helper_funcs *funcs = connector->helper_private;
109 struct drm_encoder *new_encoder;
Daniel Vetter623369e2014-09-16 17:50:47 +0200110
Maarten Lankhorst40616a22016-03-03 10:17:39 +0100111 if (!conn_state->crtc)
Daniel Vetter623369e2014-09-16 17:50:47 +0200112 continue;
113
Maarten Lankhorst40616a22016-03-03 10:17:39 +0100114 if (funcs->atomic_best_encoder)
115 new_encoder = funcs->atomic_best_encoder(connector, conn_state);
Boris Brezillona0909cc2016-06-01 18:03:37 +0200116 else if (funcs->best_encoder)
Maarten Lankhorst40616a22016-03-03 10:17:39 +0100117 new_encoder = funcs->best_encoder(connector);
Boris Brezillona0909cc2016-06-01 18:03:37 +0200118 else
119 new_encoder = drm_atomic_helper_best_encoder(connector);
Maarten Lankhorst40616a22016-03-03 10:17:39 +0100120
Maarten Lankhorst8248b652016-03-03 10:17:40 +0100121 if (new_encoder) {
122 if (encoder_mask & (1 << drm_encoder_index(new_encoder))) {
123 DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] on [CONNECTOR:%d:%s] already assigned\n",
124 new_encoder->base.id, new_encoder->name,
125 connector->base.id, connector->name);
126
127 return -EINVAL;
128 }
129
Maarten Lankhorst40616a22016-03-03 10:17:39 +0100130 encoder_mask |= 1 << drm_encoder_index(new_encoder);
Maarten Lankhorst8248b652016-03-03 10:17:40 +0100131 }
Daniel Vetter623369e2014-09-16 17:50:47 +0200132 }
133
Maarten Lankhorst8248b652016-03-03 10:17:40 +0100134 if (!encoder_mask)
135 return 0;
136
137 /*
138 * Second loop, iterate over all connectors not part of the state.
139 *
140 * If a conflicting encoder is found and disable_conflicting_encoders
141 * is not set, an error is returned. Userspace can provide a solution
142 * through the atomic ioctl.
143 *
144 * If the flag is set conflicting connectors are removed from the crtc
145 * and the crtc is disabled if no encoder is left. This preserves
146 * compatibility with the legacy set_config behavior.
147 */
Daniel Vetterc36a3252016-12-15 16:58:43 +0100148 drm_connector_list_iter_get(state->dev, &conn_iter);
149 drm_for_each_connector_iter(connector, &conn_iter) {
Maarten Lankhorst40616a22016-03-03 10:17:39 +0100150 struct drm_crtc_state *crtc_state;
151
152 if (drm_atomic_get_existing_connector_state(state, connector))
153 continue;
154
155 encoder = connector->state->best_encoder;
156 if (!encoder || !(encoder_mask & (1 << drm_encoder_index(encoder))))
157 continue;
158
Maarten Lankhorst8248b652016-03-03 10:17:40 +0100159 if (!disable_conflicting_encoders) {
160 DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] in use on [CRTC:%d:%s] by [CONNECTOR:%d:%s]\n",
161 encoder->base.id, encoder->name,
162 connector->state->crtc->base.id,
163 connector->state->crtc->name,
164 connector->base.id, connector->name);
Daniel Vetterc36a3252016-12-15 16:58:43 +0100165 ret = -EINVAL;
166 goto out;
Maarten Lankhorst8248b652016-03-03 10:17:40 +0100167 }
168
Maarten Lankhorst40616a22016-03-03 10:17:39 +0100169 conn_state = drm_atomic_get_connector_state(state, connector);
Daniel Vetterc36a3252016-12-15 16:58:43 +0100170 if (IS_ERR(conn_state)) {
171 ret = PTR_ERR(conn_state);
172 goto out;
173 }
Maarten Lankhorst40616a22016-03-03 10:17:39 +0100174
175 DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] in use on [CRTC:%d:%s], disabling [CONNECTOR:%d:%s]\n",
176 encoder->base.id, encoder->name,
177 conn_state->crtc->base.id, conn_state->crtc->name,
178 connector->base.id, connector->name);
179
180 crtc_state = drm_atomic_get_existing_crtc_state(state, conn_state->crtc);
181
182 ret = drm_atomic_set_crtc_for_connector(conn_state, NULL);
183 if (ret)
Daniel Vetterc36a3252016-12-15 16:58:43 +0100184 goto out;
Maarten Lankhorst40616a22016-03-03 10:17:39 +0100185
186 if (!crtc_state->connector_mask) {
187 ret = drm_atomic_set_mode_prop_for_crtc(crtc_state,
188 NULL);
189 if (ret < 0)
Daniel Vetterc36a3252016-12-15 16:58:43 +0100190 goto out;
Maarten Lankhorst40616a22016-03-03 10:17:39 +0100191
192 crtc_state->active = false;
193 }
194 }
Daniel Vetterc36a3252016-12-15 16:58:43 +0100195out:
196 drm_connector_list_iter_put(&conn_iter);
Maarten Lankhorst40616a22016-03-03 10:17:39 +0100197
Daniel Vetterc36a3252016-12-15 16:58:43 +0100198 return ret;
Daniel Vetter623369e2014-09-16 17:50:47 +0200199}
200
Maarten Lankhorste87a52b2016-01-28 15:04:58 +0100201static void
202set_best_encoder(struct drm_atomic_state *state,
203 struct drm_connector_state *conn_state,
204 struct drm_encoder *encoder)
205{
206 struct drm_crtc_state *crtc_state;
207 struct drm_crtc *crtc;
208
209 if (conn_state->best_encoder) {
210 /* Unset the encoder_mask in the old crtc state. */
211 crtc = conn_state->connector->state->crtc;
212
213 /* A NULL crtc is an error here because we should have
214 * duplicated a NULL best_encoder when crtc was NULL.
215 * As an exception restoring duplicated atomic state
216 * during resume is allowed, so don't warn when
217 * best_encoder is equal to encoder we intend to set.
218 */
219 WARN_ON(!crtc && encoder != conn_state->best_encoder);
220 if (crtc) {
221 crtc_state = drm_atomic_get_existing_crtc_state(state, crtc);
222
223 crtc_state->encoder_mask &=
224 ~(1 << drm_encoder_index(conn_state->best_encoder));
225 }
226 }
227
228 if (encoder) {
229 crtc = conn_state->crtc;
230 WARN_ON(!crtc);
231 if (crtc) {
232 crtc_state = drm_atomic_get_existing_crtc_state(state, crtc);
233
234 crtc_state->encoder_mask |=
235 1 << drm_encoder_index(encoder);
236 }
237 }
238
239 conn_state->best_encoder = encoder;
240}
241
Maarten Lankhorstec5aaa52016-03-03 10:17:41 +0100242static void
Daniel Vetter623369e2014-09-16 17:50:47 +0200243steal_encoder(struct drm_atomic_state *state,
Maarten Lankhorstff19b782016-03-03 10:17:38 +0100244 struct drm_encoder *encoder)
Daniel Vetter623369e2014-09-16 17:50:47 +0200245{
Daniel Vetter623369e2014-09-16 17:50:47 +0200246 struct drm_crtc_state *crtc_state;
247 struct drm_connector *connector;
248 struct drm_connector_state *connector_state;
Maarten Lankhorstec5aaa52016-03-03 10:17:41 +0100249 int i;
Daniel Vetter623369e2014-09-16 17:50:47 +0200250
Maarten Lankhorstec5aaa52016-03-03 10:17:41 +0100251 for_each_connector_in_state(state, connector, connector_state, i) {
Maarten Lankhorstff19b782016-03-03 10:17:38 +0100252 struct drm_crtc *encoder_crtc;
Daniel Vetter623369e2014-09-16 17:50:47 +0200253
Maarten Lankhorste87a52b2016-01-28 15:04:58 +0100254 if (connector_state->best_encoder != encoder)
255 continue;
256
Maarten Lankhorstff19b782016-03-03 10:17:38 +0100257 encoder_crtc = connector->state->crtc;
Daniel Vetter623369e2014-09-16 17:50:47 +0200258
Maarten Lankhorstff19b782016-03-03 10:17:38 +0100259 DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] in use on [CRTC:%d:%s], stealing it\n",
260 encoder->base.id, encoder->name,
261 encoder_crtc->base.id, encoder_crtc->name);
262
Daniel Vetter623369e2014-09-16 17:50:47 +0200263 set_best_encoder(state, connector_state, NULL);
Maarten Lankhorstff19b782016-03-03 10:17:38 +0100264
265 crtc_state = drm_atomic_get_existing_crtc_state(state, encoder_crtc);
266 crtc_state->connectors_changed = true;
267
Maarten Lankhorstec5aaa52016-03-03 10:17:41 +0100268 return;
Daniel Vetter623369e2014-09-16 17:50:47 +0200269 }
Daniel Vetter623369e2014-09-16 17:50:47 +0200270}
271
272static int
Maarten Lankhorst94595452016-02-24 09:37:29 +0100273update_connector_routing(struct drm_atomic_state *state,
274 struct drm_connector *connector,
275 struct drm_connector_state *connector_state)
Daniel Vetter623369e2014-09-16 17:50:47 +0200276{
Ville Syrjäläb5ceff202015-03-10 14:35:20 +0200277 const struct drm_connector_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200278 struct drm_encoder *new_encoder;
Daniel Vetter623369e2014-09-16 17:50:47 +0200279 struct drm_crtc_state *crtc_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200280
Daniel Vetter17a38d92015-02-22 12:24:16 +0100281 DRM_DEBUG_ATOMIC("Updating routing for [CONNECTOR:%d:%s]\n",
282 connector->base.id,
283 connector->name);
Daniel Vetter623369e2014-09-16 17:50:47 +0200284
285 if (connector->state->crtc != connector_state->crtc) {
286 if (connector->state->crtc) {
Maarten Lankhorst9b8d1e52016-03-03 10:17:42 +0100287 crtc_state = drm_atomic_get_existing_crtc_state(state, connector->state->crtc);
Maarten Lankhorstfc596662015-07-21 13:28:57 +0200288 crtc_state->connectors_changed = true;
Daniel Vetter623369e2014-09-16 17:50:47 +0200289 }
290
291 if (connector_state->crtc) {
Maarten Lankhorst9b8d1e52016-03-03 10:17:42 +0100292 crtc_state = drm_atomic_get_existing_crtc_state(state, connector_state->crtc);
Maarten Lankhorstfc596662015-07-21 13:28:57 +0200293 crtc_state->connectors_changed = true;
Daniel Vetter623369e2014-09-16 17:50:47 +0200294 }
295 }
296
297 if (!connector_state->crtc) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100298 DRM_DEBUG_ATOMIC("Disabling [CONNECTOR:%d:%s]\n",
Daniel Vetter623369e2014-09-16 17:50:47 +0200299 connector->base.id,
300 connector->name);
301
Maarten Lankhorste87a52b2016-01-28 15:04:58 +0100302 set_best_encoder(state, connector_state, NULL);
Daniel Vetter623369e2014-09-16 17:50:47 +0200303
304 return 0;
305 }
306
307 funcs = connector->helper_private;
Daniel Vetter3b8a6842015-08-03 17:24:08 +0200308
309 if (funcs->atomic_best_encoder)
310 new_encoder = funcs->atomic_best_encoder(connector,
311 connector_state);
Boris Brezillonc61b93fe2016-06-07 13:47:56 +0200312 else if (funcs->best_encoder)
Daniel Vetter3b8a6842015-08-03 17:24:08 +0200313 new_encoder = funcs->best_encoder(connector);
Boris Brezillonc61b93fe2016-06-07 13:47:56 +0200314 else
315 new_encoder = drm_atomic_helper_best_encoder(connector);
Daniel Vetter623369e2014-09-16 17:50:47 +0200316
317 if (!new_encoder) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100318 DRM_DEBUG_ATOMIC("No suitable encoder found for [CONNECTOR:%d:%s]\n",
319 connector->base.id,
320 connector->name);
Daniel Vetter623369e2014-09-16 17:50:47 +0200321 return -EINVAL;
322 }
323
Daniel Vetter5481c8f2015-11-18 18:46:48 +0100324 if (!drm_encoder_crtc_ok(new_encoder, connector_state->crtc)) {
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;
2445 struct drm_connector *conn;
Daniel Vetterc36a3252016-12-15 16:58:43 +01002446 struct drm_connector_list_iter conn_iter;
Thierry Reding14942762015-12-02 17:50:04 +01002447 int err;
2448
2449 state = drm_atomic_state_alloc(dev);
2450 if (!state)
2451 return -ENOMEM;
2452
2453 state->acquire_ctx = ctx;
2454
Daniel Vetterc36a3252016-12-15 16:58:43 +01002455 drm_connector_list_iter_get(dev, &conn_iter);
2456 drm_for_each_connector_iter(conn, &conn_iter) {
Thierry Reding14942762015-12-02 17:50:04 +01002457 struct drm_crtc *crtc = conn->state->crtc;
2458 struct drm_crtc_state *crtc_state;
2459
2460 if (!crtc || conn->dpms != DRM_MODE_DPMS_ON)
2461 continue;
2462
2463 crtc_state = drm_atomic_get_crtc_state(state, crtc);
2464 if (IS_ERR(crtc_state)) {
2465 err = PTR_ERR(crtc_state);
2466 goto free;
2467 }
2468
2469 crtc_state->active = false;
2470 }
2471
2472 err = drm_atomic_commit(state);
Thierry Reding14942762015-12-02 17:50:04 +01002473free:
Daniel Vetterc36a3252016-12-15 16:58:43 +01002474 drm_connector_list_iter_put(&conn_iter);
Chris Wilson08536952016-10-14 13:18:18 +01002475 drm_atomic_state_put(state);
Thierry Reding14942762015-12-02 17:50:04 +01002476 return err;
2477}
2478EXPORT_SYMBOL(drm_atomic_helper_disable_all);
2479
2480/**
2481 * drm_atomic_helper_suspend - subsystem-level suspend helper
2482 * @dev: DRM device
2483 *
2484 * Duplicates the current atomic state, disables all active outputs and then
2485 * returns a pointer to the original atomic state to the caller. Drivers can
2486 * pass this pointer to the drm_atomic_helper_resume() helper upon resume to
2487 * restore the output configuration that was active at the time the system
2488 * entered suspend.
2489 *
2490 * Note that it is potentially unsafe to use this. The atomic state object
2491 * returned by this function is assumed to be persistent. Drivers must ensure
2492 * that this holds true. Before calling this function, drivers must make sure
2493 * to suspend fbdev emulation so that nothing can be using the device.
2494 *
2495 * Returns:
2496 * A pointer to a copy of the state before suspend on success or an ERR_PTR()-
2497 * encoded error code on failure. Drivers should store the returned atomic
2498 * state object and pass it to the drm_atomic_helper_resume() helper upon
2499 * resume.
2500 *
2501 * See also:
2502 * drm_atomic_helper_duplicate_state(), drm_atomic_helper_disable_all(),
Maarten Lankhorst581e49f2017-01-16 10:37:38 +01002503 * drm_atomic_helper_resume(), drm_atomic_helper_commit_duplicated_state()
Thierry Reding14942762015-12-02 17:50:04 +01002504 */
2505struct drm_atomic_state *drm_atomic_helper_suspend(struct drm_device *dev)
2506{
2507 struct drm_modeset_acquire_ctx ctx;
2508 struct drm_atomic_state *state;
2509 int err;
2510
2511 drm_modeset_acquire_init(&ctx, 0);
2512
2513retry:
2514 err = drm_modeset_lock_all_ctx(dev, &ctx);
2515 if (err < 0) {
2516 state = ERR_PTR(err);
2517 goto unlock;
2518 }
2519
2520 state = drm_atomic_helper_duplicate_state(dev, &ctx);
2521 if (IS_ERR(state))
2522 goto unlock;
2523
2524 err = drm_atomic_helper_disable_all(dev, &ctx);
2525 if (err < 0) {
Chris Wilson08536952016-10-14 13:18:18 +01002526 drm_atomic_state_put(state);
Thierry Reding14942762015-12-02 17:50:04 +01002527 state = ERR_PTR(err);
2528 goto unlock;
2529 }
2530
2531unlock:
2532 if (PTR_ERR(state) == -EDEADLK) {
2533 drm_modeset_backoff(&ctx);
2534 goto retry;
2535 }
2536
2537 drm_modeset_drop_locks(&ctx);
2538 drm_modeset_acquire_fini(&ctx);
2539 return state;
2540}
2541EXPORT_SYMBOL(drm_atomic_helper_suspend);
2542
2543/**
Maarten Lankhorst581e49f2017-01-16 10:37:38 +01002544 * drm_atomic_helper_commit_duplicated_state - commit duplicated state
2545 * @state: duplicated atomic state to commit
2546 * @ctx: pointer to acquire_ctx to use for commit.
2547 *
2548 * The state returned by drm_atomic_helper_duplicate_state() and
2549 * drm_atomic_helper_suspend() is partially invalid, and needs to
2550 * be fixed up before commit.
2551 *
2552 * Returns:
2553 * 0 on success or a negative error code on failure.
2554 *
2555 * See also:
2556 * drm_atomic_helper_suspend()
2557 */
2558int drm_atomic_helper_commit_duplicated_state(struct drm_atomic_state *state,
2559 struct drm_modeset_acquire_ctx *ctx)
2560{
2561 int i;
2562 struct drm_plane *plane;
2563 struct drm_plane_state *plane_state;
2564 struct drm_connector *connector;
2565 struct drm_connector_state *conn_state;
2566 struct drm_crtc *crtc;
2567 struct drm_crtc_state *crtc_state;
2568
2569 state->acquire_ctx = ctx;
2570
2571 for_each_new_plane_in_state(state, plane, plane_state, i)
2572 state->planes[i].old_state = plane->state;
2573
2574 for_each_new_crtc_in_state(state, crtc, crtc_state, i)
2575 state->crtcs[i].old_state = crtc->state;
2576
2577 for_each_new_connector_in_state(state, connector, conn_state, i)
2578 state->connectors[i].old_state = connector->state;
2579
2580 return drm_atomic_commit(state);
2581}
2582EXPORT_SYMBOL(drm_atomic_helper_commit_duplicated_state);
2583
2584/**
Thierry Reding14942762015-12-02 17:50:04 +01002585 * drm_atomic_helper_resume - subsystem-level resume helper
2586 * @dev: DRM device
2587 * @state: atomic state to resume to
2588 *
2589 * Calls drm_mode_config_reset() to synchronize hardware and software states,
2590 * grabs all modeset locks and commits the atomic state object. This can be
2591 * used in conjunction with the drm_atomic_helper_suspend() helper to
2592 * implement suspend/resume for drivers that support atomic mode-setting.
2593 *
2594 * Returns:
2595 * 0 on success or a negative error code on failure.
2596 *
2597 * See also:
2598 * drm_atomic_helper_suspend()
2599 */
2600int drm_atomic_helper_resume(struct drm_device *dev,
2601 struct drm_atomic_state *state)
2602{
2603 struct drm_mode_config *config = &dev->mode_config;
2604 int err;
2605
2606 drm_mode_config_reset(dev);
Maarten Lankhorst581e49f2017-01-16 10:37:38 +01002607
Thierry Reding14942762015-12-02 17:50:04 +01002608 drm_modeset_lock_all(dev);
Maarten Lankhorst581e49f2017-01-16 10:37:38 +01002609 err = drm_atomic_helper_commit_duplicated_state(state, config->acquire_ctx);
Thierry Reding14942762015-12-02 17:50:04 +01002610 drm_modeset_unlock_all(dev);
2611
2612 return err;
2613}
2614EXPORT_SYMBOL(drm_atomic_helper_resume);
2615
2616/**
Laurent Pinchart7f500022015-02-23 02:50:23 +02002617 * drm_atomic_helper_crtc_set_property - helper for crtc properties
Daniel Vetter042652e2014-07-27 13:46:52 +02002618 * @crtc: DRM crtc
2619 * @property: DRM property
2620 * @val: value of property
2621 *
Laurent Pinchart7f500022015-02-23 02:50:23 +02002622 * Provides a default crtc set_property handler using the atomic driver
2623 * interface.
Daniel Vetter042652e2014-07-27 13:46:52 +02002624 *
2625 * RETURNS:
2626 * Zero on success, error code on failure
2627 */
2628int
2629drm_atomic_helper_crtc_set_property(struct drm_crtc *crtc,
2630 struct drm_property *property,
2631 uint64_t val)
2632{
2633 struct drm_atomic_state *state;
2634 struct drm_crtc_state *crtc_state;
2635 int ret = 0;
2636
2637 state = drm_atomic_state_alloc(crtc->dev);
2638 if (!state)
2639 return -ENOMEM;
2640
2641 /* ->set_property is always called with all locks held. */
2642 state->acquire_ctx = crtc->dev->mode_config.acquire_ctx;
2643retry:
2644 crtc_state = drm_atomic_get_crtc_state(state, crtc);
2645 if (IS_ERR(crtc_state)) {
2646 ret = PTR_ERR(crtc_state);
2647 goto fail;
2648 }
2649
Rob Clark40ecc692014-12-18 16:01:46 -05002650 ret = drm_atomic_crtc_set_property(crtc, crtc_state,
2651 property, val);
Daniel Vetter042652e2014-07-27 13:46:52 +02002652 if (ret)
2653 goto fail;
2654
2655 ret = drm_atomic_commit(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002656fail:
2657 if (ret == -EDEADLK)
2658 goto backoff;
2659
Chris Wilson08536952016-10-14 13:18:18 +01002660 drm_atomic_state_put(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002661 return ret;
Chris Wilson08536952016-10-14 13:18:18 +01002662
Daniel Vetter042652e2014-07-27 13:46:52 +02002663backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02002664 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01002665 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002666
2667 goto retry;
2668}
2669EXPORT_SYMBOL(drm_atomic_helper_crtc_set_property);
2670
2671/**
Laurent Pinchart7f500022015-02-23 02:50:23 +02002672 * drm_atomic_helper_plane_set_property - helper for plane properties
Daniel Vetter042652e2014-07-27 13:46:52 +02002673 * @plane: DRM plane
2674 * @property: DRM property
2675 * @val: value of property
2676 *
Laurent Pinchart7f500022015-02-23 02:50:23 +02002677 * Provides a default plane set_property handler using the atomic driver
2678 * interface.
Daniel Vetter042652e2014-07-27 13:46:52 +02002679 *
2680 * RETURNS:
2681 * Zero on success, error code on failure
2682 */
2683int
2684drm_atomic_helper_plane_set_property(struct drm_plane *plane,
2685 struct drm_property *property,
2686 uint64_t val)
2687{
2688 struct drm_atomic_state *state;
2689 struct drm_plane_state *plane_state;
2690 int ret = 0;
2691
2692 state = drm_atomic_state_alloc(plane->dev);
2693 if (!state)
2694 return -ENOMEM;
2695
2696 /* ->set_property is always called with all locks held. */
2697 state->acquire_ctx = plane->dev->mode_config.acquire_ctx;
2698retry:
2699 plane_state = drm_atomic_get_plane_state(state, plane);
2700 if (IS_ERR(plane_state)) {
2701 ret = PTR_ERR(plane_state);
2702 goto fail;
2703 }
2704
Rob Clark40ecc692014-12-18 16:01:46 -05002705 ret = drm_atomic_plane_set_property(plane, plane_state,
2706 property, val);
Daniel Vetter042652e2014-07-27 13:46:52 +02002707 if (ret)
2708 goto fail;
2709
2710 ret = drm_atomic_commit(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002711fail:
2712 if (ret == -EDEADLK)
2713 goto backoff;
2714
Chris Wilson08536952016-10-14 13:18:18 +01002715 drm_atomic_state_put(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002716 return ret;
Chris Wilson08536952016-10-14 13:18:18 +01002717
Daniel Vetter042652e2014-07-27 13:46:52 +02002718backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02002719 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01002720 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002721
2722 goto retry;
2723}
2724EXPORT_SYMBOL(drm_atomic_helper_plane_set_property);
2725
2726/**
Laurent Pinchart7f500022015-02-23 02:50:23 +02002727 * drm_atomic_helper_connector_set_property - helper for connector properties
Daniel Vetter042652e2014-07-27 13:46:52 +02002728 * @connector: DRM connector
2729 * @property: DRM property
2730 * @val: value of property
2731 *
Laurent Pinchart7f500022015-02-23 02:50:23 +02002732 * Provides a default connector set_property handler using the atomic driver
2733 * interface.
Daniel Vetter042652e2014-07-27 13:46:52 +02002734 *
2735 * RETURNS:
2736 * Zero on success, error code on failure
2737 */
2738int
2739drm_atomic_helper_connector_set_property(struct drm_connector *connector,
2740 struct drm_property *property,
2741 uint64_t val)
2742{
2743 struct drm_atomic_state *state;
2744 struct drm_connector_state *connector_state;
2745 int ret = 0;
2746
2747 state = drm_atomic_state_alloc(connector->dev);
2748 if (!state)
2749 return -ENOMEM;
2750
2751 /* ->set_property is always called with all locks held. */
2752 state->acquire_ctx = connector->dev->mode_config.acquire_ctx;
2753retry:
2754 connector_state = drm_atomic_get_connector_state(state, connector);
2755 if (IS_ERR(connector_state)) {
2756 ret = PTR_ERR(connector_state);
2757 goto fail;
2758 }
2759
Rob Clark40ecc692014-12-18 16:01:46 -05002760 ret = drm_atomic_connector_set_property(connector, connector_state,
2761 property, val);
Daniel Vetter042652e2014-07-27 13:46:52 +02002762 if (ret)
2763 goto fail;
2764
2765 ret = drm_atomic_commit(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002766fail:
2767 if (ret == -EDEADLK)
2768 goto backoff;
2769
Chris Wilson08536952016-10-14 13:18:18 +01002770 drm_atomic_state_put(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002771 return ret;
Chris Wilson08536952016-10-14 13:18:18 +01002772
Daniel Vetter042652e2014-07-27 13:46:52 +02002773backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02002774 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01002775 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002776
2777 goto retry;
2778}
2779EXPORT_SYMBOL(drm_atomic_helper_connector_set_property);
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002780
Andrey Grodzovskyf869a6e2017-01-06 15:39:40 -05002781static int page_flip_common(
2782 struct drm_atomic_state *state,
2783 struct drm_crtc *crtc,
2784 struct drm_framebuffer *fb,
Andrey Grodzovsky6cbe5c42017-02-02 16:56:29 -05002785 struct drm_pending_vblank_event *event,
2786 uint32_t flags)
Andrey Grodzovskyf869a6e2017-01-06 15:39:40 -05002787{
2788 struct drm_plane *plane = crtc->primary;
2789 struct drm_plane_state *plane_state;
2790 struct drm_crtc_state *crtc_state;
2791 int ret = 0;
2792
2793 crtc_state = drm_atomic_get_crtc_state(state, crtc);
2794 if (IS_ERR(crtc_state))
2795 return PTR_ERR(crtc_state);
2796
2797 crtc_state->event = event;
Andrey Grodzovsky6cbe5c42017-02-02 16:56:29 -05002798 crtc_state->pageflip_flags = flags;
Andrey Grodzovskyf869a6e2017-01-06 15:39:40 -05002799
2800 plane_state = drm_atomic_get_plane_state(state, plane);
2801 if (IS_ERR(plane_state))
2802 return PTR_ERR(plane_state);
2803
Andrey Grodzovskyf869a6e2017-01-06 15:39:40 -05002804 ret = drm_atomic_set_crtc_for_plane(plane_state, crtc);
2805 if (ret != 0)
2806 return ret;
2807 drm_atomic_set_fb_for_plane(plane_state, fb);
2808
2809 /* Make sure we don't accidentally do a full modeset. */
2810 state->allow_modeset = false;
2811 if (!crtc_state->active) {
Russell King6ac7c542017-02-13 12:27:03 +00002812 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] disabled, rejecting legacy flip\n",
2813 crtc->base.id, crtc->name);
Andrey Grodzovskyf869a6e2017-01-06 15:39:40 -05002814 return -EINVAL;
2815 }
2816
2817 return ret;
2818}
2819
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002820/**
2821 * drm_atomic_helper_page_flip - execute a legacy page flip
2822 * @crtc: DRM crtc
2823 * @fb: DRM framebuffer
2824 * @event: optional DRM event to signal upon completion
2825 * @flags: flip flags for non-vblank sync'ed updates
2826 *
Andrey Grodzovskyf869a6e2017-01-06 15:39:40 -05002827 * Provides a default &drm_crtc_funcs.page_flip implementation
2828 * using the atomic driver interface.
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002829 *
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002830 * Returns:
2831 * Returns 0 on success, negative errno numbers on failure.
Andrey Grodzovskyf869a6e2017-01-06 15:39:40 -05002832 *
2833 * See also:
2834 * drm_atomic_helper_page_flip_target()
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002835 */
2836int drm_atomic_helper_page_flip(struct drm_crtc *crtc,
2837 struct drm_framebuffer *fb,
2838 struct drm_pending_vblank_event *event,
2839 uint32_t flags)
2840{
2841 struct drm_plane *plane = crtc->primary;
2842 struct drm_atomic_state *state;
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002843 int ret = 0;
2844
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002845 state = drm_atomic_state_alloc(plane->dev);
2846 if (!state)
2847 return -ENOMEM;
2848
2849 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
Andrey Grodzovskyf869a6e2017-01-06 15:39:40 -05002850
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002851retry:
Andrey Grodzovsky6cbe5c42017-02-02 16:56:29 -05002852 ret = page_flip_common(state, crtc, fb, event, flags);
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002853 if (ret != 0)
2854 goto fail;
Daniel Vetter4cba6852015-12-08 09:49:20 +01002855
Maarten Lankhorstb837ba02016-04-26 16:11:35 +02002856 ret = drm_atomic_nonblocking_commit(state);
Andrey Grodzovskyf869a6e2017-01-06 15:39:40 -05002857
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002858fail:
2859 if (ret == -EDEADLK)
2860 goto backoff;
2861
Chris Wilson08536952016-10-14 13:18:18 +01002862 drm_atomic_state_put(state);
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002863 return ret;
Chris Wilson08536952016-10-14 13:18:18 +01002864
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002865backoff:
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002866 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01002867 drm_atomic_legacy_backoff(state);
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002868
2869 /*
2870 * Someone might have exchanged the framebuffer while we dropped locks
2871 * in the backoff code. We need to fix up the fb refcount tracking the
2872 * core does for us.
2873 */
2874 plane->old_fb = plane->fb;
2875
2876 goto retry;
2877}
2878EXPORT_SYMBOL(drm_atomic_helper_page_flip);
Daniel Vetterd4617012014-11-03 15:56:43 +01002879
2880/**
Andrey Grodzovskyf869a6e2017-01-06 15:39:40 -05002881 * drm_atomic_helper_page_flip_target - do page flip on target vblank period.
2882 * @crtc: DRM crtc
2883 * @fb: DRM framebuffer
2884 * @event: optional DRM event to signal upon completion
2885 * @flags: flip flags for non-vblank sync'ed updates
2886 * @target: specifying the target vblank period when the flip to take effect
2887 *
2888 * Provides a default &drm_crtc_funcs.page_flip_target implementation.
2889 * Similar to drm_atomic_helper_page_flip() with extra parameter to specify
2890 * target vblank period to flip.
2891 *
2892 * Returns:
2893 * Returns 0 on success, negative errno numbers on failure.
2894 */
2895int drm_atomic_helper_page_flip_target(
2896 struct drm_crtc *crtc,
2897 struct drm_framebuffer *fb,
2898 struct drm_pending_vblank_event *event,
2899 uint32_t flags,
2900 uint32_t target)
2901{
2902 struct drm_plane *plane = crtc->primary;
2903 struct drm_atomic_state *state;
2904 struct drm_crtc_state *crtc_state;
2905 int ret = 0;
2906
Andrey Grodzovskyf869a6e2017-01-06 15:39:40 -05002907 state = drm_atomic_state_alloc(plane->dev);
2908 if (!state)
2909 return -ENOMEM;
2910
2911 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
2912
2913retry:
Andrey Grodzovsky6cbe5c42017-02-02 16:56:29 -05002914 ret = page_flip_common(state, crtc, fb, event, flags);
Andrey Grodzovskyf869a6e2017-01-06 15:39:40 -05002915 if (ret != 0)
2916 goto fail;
2917
2918 crtc_state = drm_atomic_get_existing_crtc_state(state, crtc);
2919 if (WARN_ON(!crtc_state)) {
2920 ret = -EINVAL;
2921 goto fail;
2922 }
2923 crtc_state->target_vblank = target;
2924
2925 ret = drm_atomic_nonblocking_commit(state);
2926
2927fail:
2928 if (ret == -EDEADLK)
2929 goto backoff;
2930
2931 drm_atomic_state_put(state);
2932 return ret;
2933
2934backoff:
2935 drm_atomic_state_clear(state);
2936 drm_atomic_legacy_backoff(state);
2937
2938 /*
2939 * Someone might have exchanged the framebuffer while we dropped locks
2940 * in the backoff code. We need to fix up the fb refcount tracking the
2941 * core does for us.
2942 */
2943 plane->old_fb = plane->fb;
2944
2945 goto retry;
2946}
2947EXPORT_SYMBOL(drm_atomic_helper_page_flip_target);
2948
2949/**
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002950 * drm_atomic_helper_connector_dpms() - connector dpms helper implementation
2951 * @connector: affected connector
2952 * @mode: DPMS mode
2953 *
2954 * This is the main helper function provided by the atomic helper framework for
2955 * implementing the legacy DPMS connector interface. It computes the new desired
Daniel Vetter6806cdf2017-01-25 07:26:43 +01002956 * &drm_crtc_state.active state for the corresponding CRTC (if the connector is
2957 * enabled) and updates it.
Maarten Lankhorst9a69a9a2015-07-21 11:34:55 +02002958 *
2959 * Returns:
2960 * Returns 0 on success, negative errno numbers on failure.
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002961 */
Maarten Lankhorst9a69a9a2015-07-21 11:34:55 +02002962int drm_atomic_helper_connector_dpms(struct drm_connector *connector,
2963 int mode)
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002964{
2965 struct drm_mode_config *config = &connector->dev->mode_config;
2966 struct drm_atomic_state *state;
2967 struct drm_crtc_state *crtc_state;
2968 struct drm_crtc *crtc;
2969 struct drm_connector *tmp_connector;
Daniel Vetterc36a3252016-12-15 16:58:43 +01002970 struct drm_connector_list_iter conn_iter;
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002971 int ret;
2972 bool active = false;
Maarten Lankhorst9a69a9a2015-07-21 11:34:55 +02002973 int old_mode = connector->dpms;
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002974
2975 if (mode != DRM_MODE_DPMS_ON)
2976 mode = DRM_MODE_DPMS_OFF;
2977
2978 connector->dpms = mode;
2979 crtc = connector->state->crtc;
2980
2981 if (!crtc)
Maarten Lankhorst9a69a9a2015-07-21 11:34:55 +02002982 return 0;
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002983
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002984 state = drm_atomic_state_alloc(connector->dev);
2985 if (!state)
Maarten Lankhorst9a69a9a2015-07-21 11:34:55 +02002986 return -ENOMEM;
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002987
2988 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
2989retry:
2990 crtc_state = drm_atomic_get_crtc_state(state, crtc);
Maarten Lankhorst9a69a9a2015-07-21 11:34:55 +02002991 if (IS_ERR(crtc_state)) {
2992 ret = PTR_ERR(crtc_state);
2993 goto fail;
2994 }
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002995
2996 WARN_ON(!drm_modeset_is_locked(&config->connection_mutex));
2997
Daniel Vetterc36a3252016-12-15 16:58:43 +01002998 drm_connector_list_iter_get(connector->dev, &conn_iter);
2999 drm_for_each_connector_iter(tmp_connector, &conn_iter) {
John Hunter0388df02015-03-17 15:30:28 +08003000 if (tmp_connector->state->crtc != crtc)
Daniel Vetterb486e0e2015-01-22 18:53:05 +01003001 continue;
3002
John Hunter0388df02015-03-17 15:30:28 +08003003 if (tmp_connector->dpms == DRM_MODE_DPMS_ON) {
Daniel Vetterb486e0e2015-01-22 18:53:05 +01003004 active = true;
3005 break;
3006 }
3007 }
Daniel Vetterc36a3252016-12-15 16:58:43 +01003008 drm_connector_list_iter_put(&conn_iter);
Daniel Vetterb486e0e2015-01-22 18:53:05 +01003009 crtc_state->active = active;
3010
3011 ret = drm_atomic_commit(state);
Daniel Vetterb486e0e2015-01-22 18:53:05 +01003012fail:
3013 if (ret == -EDEADLK)
3014 goto backoff;
Marta Lofstedt8f5040e2016-12-05 14:04:08 +02003015 if (ret != 0)
3016 connector->dpms = old_mode;
Chris Wilson08536952016-10-14 13:18:18 +01003017 drm_atomic_state_put(state);
Maarten Lankhorst9a69a9a2015-07-21 11:34:55 +02003018 return ret;
Chris Wilson08536952016-10-14 13:18:18 +01003019
Daniel Vetterb486e0e2015-01-22 18:53:05 +01003020backoff:
3021 drm_atomic_state_clear(state);
3022 drm_atomic_legacy_backoff(state);
3023
3024 goto retry;
3025}
3026EXPORT_SYMBOL(drm_atomic_helper_connector_dpms);
3027
3028/**
Daniel Vetter6806cdf2017-01-25 07:26:43 +01003029 * drm_atomic_helper_best_encoder - Helper for
3030 * &drm_connector_helper_funcs.best_encoder callback
Noralf Trønnes9ecb5492016-05-11 18:09:21 +02003031 * @connector: Connector control structure
3032 *
Daniel Vetter6806cdf2017-01-25 07:26:43 +01003033 * This is a &drm_connector_helper_funcs.best_encoder callback helper for
Noralf Trønnes9ecb5492016-05-11 18:09:21 +02003034 * connectors that support exactly 1 encoder, statically determined at driver
3035 * init time.
3036 */
3037struct drm_encoder *
3038drm_atomic_helper_best_encoder(struct drm_connector *connector)
3039{
3040 WARN_ON(connector->encoder_ids[1]);
3041 return drm_encoder_find(connector->dev, connector->encoder_ids[0]);
3042}
3043EXPORT_SYMBOL(drm_atomic_helper_best_encoder);
3044
3045/**
Daniel Vetter3150c7d2014-11-06 20:53:29 +01003046 * DOC: atomic state reset and initialization
3047 *
3048 * Both the drm core and the atomic helpers assume that there is always the full
3049 * and correct atomic software state for all connectors, CRTCs and planes
3050 * available. Which is a bit a problem on driver load and also after system
3051 * suspend. One way to solve this is to have a hardware state read-out
3052 * infrastructure which reconstructs the full software state (e.g. the i915
3053 * driver).
3054 *
3055 * The simpler solution is to just reset the software state to everything off,
3056 * which is easiest to do by calling drm_mode_config_reset(). To facilitate this
3057 * the atomic helpers provide default reset implementations for all hooks.
Daniel Vetter7f8ee3e2015-12-04 09:46:06 +01003058 *
3059 * On the upside the precise state tracking of atomic simplifies system suspend
3060 * and resume a lot. For drivers using drm_mode_config_reset() a complete recipe
3061 * is implemented in drm_atomic_helper_suspend() and drm_atomic_helper_resume().
3062 * For other drivers the building blocks are split out, see the documentation
3063 * for these functions.
Daniel Vetter3150c7d2014-11-06 20:53:29 +01003064 */
3065
3066/**
Daniel Vetter6806cdf2017-01-25 07:26:43 +01003067 * drm_atomic_helper_crtc_reset - default &drm_crtc_funcs.reset hook for CRTCs
Daniel Vetterd4617012014-11-03 15:56:43 +01003068 * @crtc: drm CRTC
3069 *
3070 * Resets the atomic state for @crtc by freeing the state pointer (which might
3071 * be NULL, e.g. at driver load time) and allocating a new empty state object.
3072 */
3073void drm_atomic_helper_crtc_reset(struct drm_crtc *crtc)
3074{
Daniel Vetterb0b55112016-04-22 22:10:29 +02003075 if (crtc->state)
Daniel Vetterec2dc6a2016-05-09 16:34:09 +02003076 __drm_atomic_helper_crtc_destroy_state(crtc->state);
Daniel Vetterb0b55112016-04-22 22:10:29 +02003077
Daniel Vetterd4617012014-11-03 15:56:43 +01003078 kfree(crtc->state);
3079 crtc->state = kzalloc(sizeof(*crtc->state), GFP_KERNEL);
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01003080
3081 if (crtc->state)
3082 crtc->state->crtc = crtc;
Daniel Vetterd4617012014-11-03 15:56:43 +01003083}
3084EXPORT_SYMBOL(drm_atomic_helper_crtc_reset);
3085
3086/**
Thierry Redingf5e78402015-01-28 14:54:32 +01003087 * __drm_atomic_helper_crtc_duplicate_state - copy atomic CRTC state
3088 * @crtc: CRTC object
3089 * @state: atomic CRTC state
3090 *
3091 * Copies atomic state from a CRTC's current state and resets inferred values.
3092 * This is useful for drivers that subclass the CRTC state.
3093 */
3094void __drm_atomic_helper_crtc_duplicate_state(struct drm_crtc *crtc,
3095 struct drm_crtc_state *state)
3096{
3097 memcpy(state, crtc->state, sizeof(*state));
3098
Daniel Stone99cf4a22015-05-25 19:11:51 +01003099 if (state->mode_blob)
3100 drm_property_reference_blob(state->mode_blob);
Lionel Landwerlin5488dc12016-02-26 17:05:00 +00003101 if (state->degamma_lut)
3102 drm_property_reference_blob(state->degamma_lut);
3103 if (state->ctm)
3104 drm_property_reference_blob(state->ctm);
3105 if (state->gamma_lut)
3106 drm_property_reference_blob(state->gamma_lut);
Thierry Redingf5e78402015-01-28 14:54:32 +01003107 state->mode_changed = false;
3108 state->active_changed = false;
3109 state->planes_changed = false;
Maarten Lankhorstfc596662015-07-21 13:28:57 +02003110 state->connectors_changed = false;
Lionel Landwerlin5488dc12016-02-26 17:05:00 +00003111 state->color_mgmt_changed = false;
Marek Szyprowski44d1240d2016-06-13 11:11:26 +02003112 state->zpos_changed = false;
Thierry Redingf5e78402015-01-28 14:54:32 +01003113 state->event = NULL;
Andrey Grodzovsky6cbe5c42017-02-02 16:56:29 -05003114 state->pageflip_flags = 0;
Thierry Redingf5e78402015-01-28 14:54:32 +01003115}
3116EXPORT_SYMBOL(__drm_atomic_helper_crtc_duplicate_state);
3117
3118/**
Daniel Vetterd4617012014-11-03 15:56:43 +01003119 * drm_atomic_helper_crtc_duplicate_state - default state duplicate hook
3120 * @crtc: drm CRTC
3121 *
3122 * Default CRTC state duplicate hook for drivers which don't have their own
3123 * subclassed CRTC state structure.
3124 */
3125struct drm_crtc_state *
3126drm_atomic_helper_crtc_duplicate_state(struct drm_crtc *crtc)
3127{
3128 struct drm_crtc_state *state;
3129
3130 if (WARN_ON(!crtc->state))
3131 return NULL;
3132
Thierry Redingf5e78402015-01-28 14:54:32 +01003133 state = kmalloc(sizeof(*state), GFP_KERNEL);
3134 if (state)
3135 __drm_atomic_helper_crtc_duplicate_state(crtc, state);
Daniel Vetterd4617012014-11-03 15:56:43 +01003136
3137 return state;
3138}
3139EXPORT_SYMBOL(drm_atomic_helper_crtc_duplicate_state);
3140
3141/**
Thierry Redingf5e78402015-01-28 14:54:32 +01003142 * __drm_atomic_helper_crtc_destroy_state - release CRTC state
Thierry Redingf5e78402015-01-28 14:54:32 +01003143 * @state: CRTC state object to release
3144 *
3145 * Releases all resources stored in the CRTC state without actually freeing
3146 * the memory of the CRTC state. This is useful for drivers that subclass the
3147 * CRTC state.
3148 */
Daniel Vetterec2dc6a2016-05-09 16:34:09 +02003149void __drm_atomic_helper_crtc_destroy_state(struct drm_crtc_state *state)
Thierry Redingf5e78402015-01-28 14:54:32 +01003150{
Markus Elfring5f911902015-11-06 12:03:46 +01003151 drm_property_unreference_blob(state->mode_blob);
Lionel Landwerlin5488dc12016-02-26 17:05:00 +00003152 drm_property_unreference_blob(state->degamma_lut);
3153 drm_property_unreference_blob(state->ctm);
3154 drm_property_unreference_blob(state->gamma_lut);
Thierry Redingf5e78402015-01-28 14:54:32 +01003155}
3156EXPORT_SYMBOL(__drm_atomic_helper_crtc_destroy_state);
3157
3158/**
Daniel Vetterd4617012014-11-03 15:56:43 +01003159 * drm_atomic_helper_crtc_destroy_state - default state destroy hook
3160 * @crtc: drm CRTC
3161 * @state: CRTC state object to release
3162 *
3163 * Default CRTC state destroy hook for drivers which don't have their own
3164 * subclassed CRTC state structure.
3165 */
3166void drm_atomic_helper_crtc_destroy_state(struct drm_crtc *crtc,
3167 struct drm_crtc_state *state)
3168{
Daniel Vetterec2dc6a2016-05-09 16:34:09 +02003169 __drm_atomic_helper_crtc_destroy_state(state);
Daniel Vetterd4617012014-11-03 15:56:43 +01003170 kfree(state);
3171}
3172EXPORT_SYMBOL(drm_atomic_helper_crtc_destroy_state);
3173
3174/**
Daniel Vetter6806cdf2017-01-25 07:26:43 +01003175 * drm_atomic_helper_plane_reset - default &drm_plane_funcs.reset hook for planes
Daniel Vetterd4617012014-11-03 15:56:43 +01003176 * @plane: drm plane
3177 *
3178 * Resets the atomic state for @plane by freeing the state pointer (which might
3179 * be NULL, e.g. at driver load time) and allocating a new empty state object.
3180 */
3181void drm_atomic_helper_plane_reset(struct drm_plane *plane)
3182{
Daniel Vetterb0b55112016-04-22 22:10:29 +02003183 if (plane->state)
Daniel Vetter2f701692016-05-09 16:34:10 +02003184 __drm_atomic_helper_plane_destroy_state(plane->state);
Daniel Vetter321ebf02014-11-04 22:57:27 +01003185
Daniel Vetterd4617012014-11-03 15:56:43 +01003186 kfree(plane->state);
3187 plane->state = kzalloc(sizeof(*plane->state), GFP_KERNEL);
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01003188
Marek Szyprowski25aaa3a2016-01-19 09:26:48 +01003189 if (plane->state) {
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01003190 plane->state->plane = plane;
Joonas Lahtinen31ad61e2016-07-29 08:50:05 +03003191 plane->state->rotation = DRM_ROTATE_0;
Marek Szyprowski25aaa3a2016-01-19 09:26:48 +01003192 }
Daniel Vetterd4617012014-11-03 15:56:43 +01003193}
3194EXPORT_SYMBOL(drm_atomic_helper_plane_reset);
3195
3196/**
Thierry Redingf5e78402015-01-28 14:54:32 +01003197 * __drm_atomic_helper_plane_duplicate_state - copy atomic plane state
3198 * @plane: plane object
3199 * @state: atomic plane state
3200 *
3201 * Copies atomic state from a plane's current state. This is useful for
3202 * drivers that subclass the plane state.
3203 */
3204void __drm_atomic_helper_plane_duplicate_state(struct drm_plane *plane,
3205 struct drm_plane_state *state)
3206{
3207 memcpy(state, plane->state, sizeof(*state));
3208
3209 if (state->fb)
3210 drm_framebuffer_reference(state->fb);
Gustavo Padovan96260142016-11-15 22:06:39 +09003211
3212 state->fence = NULL;
Thierry Redingf5e78402015-01-28 14:54:32 +01003213}
3214EXPORT_SYMBOL(__drm_atomic_helper_plane_duplicate_state);
3215
3216/**
Daniel Vetterd4617012014-11-03 15:56:43 +01003217 * drm_atomic_helper_plane_duplicate_state - default state duplicate hook
3218 * @plane: drm plane
3219 *
3220 * Default plane state duplicate hook for drivers which don't have their own
3221 * subclassed plane state structure.
3222 */
3223struct drm_plane_state *
3224drm_atomic_helper_plane_duplicate_state(struct drm_plane *plane)
3225{
Daniel Vetter321ebf02014-11-04 22:57:27 +01003226 struct drm_plane_state *state;
3227
Daniel Vetterd4617012014-11-03 15:56:43 +01003228 if (WARN_ON(!plane->state))
3229 return NULL;
3230
Thierry Redingf5e78402015-01-28 14:54:32 +01003231 state = kmalloc(sizeof(*state), GFP_KERNEL);
3232 if (state)
3233 __drm_atomic_helper_plane_duplicate_state(plane, state);
Daniel Vetter321ebf02014-11-04 22:57:27 +01003234
3235 return state;
Daniel Vetterd4617012014-11-03 15:56:43 +01003236}
3237EXPORT_SYMBOL(drm_atomic_helper_plane_duplicate_state);
3238
3239/**
Thierry Redingf5e78402015-01-28 14:54:32 +01003240 * __drm_atomic_helper_plane_destroy_state - release plane state
Thierry Redingf5e78402015-01-28 14:54:32 +01003241 * @state: plane state object to release
3242 *
3243 * Releases all resources stored in the plane state without actually freeing
3244 * the memory of the plane state. This is useful for drivers that subclass the
3245 * plane state.
3246 */
Daniel Vetter2f701692016-05-09 16:34:10 +02003247void __drm_atomic_helper_plane_destroy_state(struct drm_plane_state *state)
Thierry Redingf5e78402015-01-28 14:54:32 +01003248{
3249 if (state->fb)
3250 drm_framebuffer_unreference(state->fb);
Gustavo Padovan96260142016-11-15 22:06:39 +09003251
3252 if (state->fence)
3253 dma_fence_put(state->fence);
Thierry Redingf5e78402015-01-28 14:54:32 +01003254}
3255EXPORT_SYMBOL(__drm_atomic_helper_plane_destroy_state);
3256
3257/**
Daniel Vetterd4617012014-11-03 15:56:43 +01003258 * drm_atomic_helper_plane_destroy_state - default state destroy hook
3259 * @plane: drm plane
3260 * @state: plane state object to release
3261 *
3262 * Default plane state destroy hook for drivers which don't have their own
3263 * subclassed plane state structure.
3264 */
3265void drm_atomic_helper_plane_destroy_state(struct drm_plane *plane,
Daniel Vetter321ebf02014-11-04 22:57:27 +01003266 struct drm_plane_state *state)
Daniel Vetterd4617012014-11-03 15:56:43 +01003267{
Daniel Vetter2f701692016-05-09 16:34:10 +02003268 __drm_atomic_helper_plane_destroy_state(state);
Daniel Vetterd4617012014-11-03 15:56:43 +01003269 kfree(state);
3270}
3271EXPORT_SYMBOL(drm_atomic_helper_plane_destroy_state);
3272
3273/**
Maarten Lankhorst4cd39912016-01-04 12:53:16 +01003274 * __drm_atomic_helper_connector_reset - reset state on connector
3275 * @connector: drm connector
3276 * @conn_state: connector state to assign
3277 *
3278 * Initializes the newly allocated @conn_state and assigns it to
Daniel Vetter6806cdf2017-01-25 07:26:43 +01003279 * the &drm_conector->state pointer of @connector, usually required when
3280 * initializing the drivers or when called from the &drm_connector_funcs.reset
3281 * hook.
Maarten Lankhorst4cd39912016-01-04 12:53:16 +01003282 *
3283 * This is useful for drivers that subclass the connector state.
3284 */
3285void
3286__drm_atomic_helper_connector_reset(struct drm_connector *connector,
3287 struct drm_connector_state *conn_state)
3288{
3289 if (conn_state)
3290 conn_state->connector = connector;
3291
3292 connector->state = conn_state;
3293}
3294EXPORT_SYMBOL(__drm_atomic_helper_connector_reset);
3295
3296/**
Daniel Vetter6806cdf2017-01-25 07:26:43 +01003297 * drm_atomic_helper_connector_reset - default &drm_connector_funcs.reset hook for connectors
Daniel Vetterd4617012014-11-03 15:56:43 +01003298 * @connector: drm connector
3299 *
3300 * Resets the atomic state for @connector by freeing the state pointer (which
3301 * might be NULL, e.g. at driver load time) and allocating a new empty state
3302 * object.
3303 */
3304void drm_atomic_helper_connector_reset(struct drm_connector *connector)
3305{
Maarten Lankhorst4cd39912016-01-04 12:53:16 +01003306 struct drm_connector_state *conn_state =
3307 kzalloc(sizeof(*conn_state), GFP_KERNEL);
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01003308
Daniel Vetterb0b55112016-04-22 22:10:29 +02003309 if (connector->state)
Daniel Vetterfabd9102016-05-09 16:34:11 +02003310 __drm_atomic_helper_connector_destroy_state(connector->state);
Daniel Vetterb0b55112016-04-22 22:10:29 +02003311
Maarten Lankhorst4cd39912016-01-04 12:53:16 +01003312 kfree(connector->state);
3313 __drm_atomic_helper_connector_reset(connector, conn_state);
Daniel Vetterd4617012014-11-03 15:56:43 +01003314}
3315EXPORT_SYMBOL(drm_atomic_helper_connector_reset);
3316
3317/**
Thierry Redingf5e78402015-01-28 14:54:32 +01003318 * __drm_atomic_helper_connector_duplicate_state - copy atomic connector state
3319 * @connector: connector object
3320 * @state: atomic connector state
3321 *
3322 * Copies atomic state from a connector's current state. This is useful for
3323 * drivers that subclass the connector state.
3324 */
3325void
3326__drm_atomic_helper_connector_duplicate_state(struct drm_connector *connector,
3327 struct drm_connector_state *state)
3328{
3329 memcpy(state, connector->state, sizeof(*state));
Dave Airlied2307de2016-04-27 11:27:39 +10003330 if (state->crtc)
3331 drm_connector_reference(connector);
Thierry Redingf5e78402015-01-28 14:54:32 +01003332}
3333EXPORT_SYMBOL(__drm_atomic_helper_connector_duplicate_state);
3334
3335/**
Daniel Vetterd4617012014-11-03 15:56:43 +01003336 * drm_atomic_helper_connector_duplicate_state - default state duplicate hook
3337 * @connector: drm connector
3338 *
3339 * Default connector state duplicate hook for drivers which don't have their own
3340 * subclassed connector state structure.
3341 */
3342struct drm_connector_state *
3343drm_atomic_helper_connector_duplicate_state(struct drm_connector *connector)
3344{
Thierry Redingf5e78402015-01-28 14:54:32 +01003345 struct drm_connector_state *state;
3346
Daniel Vetterd4617012014-11-03 15:56:43 +01003347 if (WARN_ON(!connector->state))
3348 return NULL;
3349
Thierry Redingf5e78402015-01-28 14:54:32 +01003350 state = kmalloc(sizeof(*state), GFP_KERNEL);
3351 if (state)
3352 __drm_atomic_helper_connector_duplicate_state(connector, state);
3353
3354 return state;
Daniel Vetterd4617012014-11-03 15:56:43 +01003355}
3356EXPORT_SYMBOL(drm_atomic_helper_connector_duplicate_state);
3357
3358/**
Thierry Reding397fd772015-09-08 15:00:45 +02003359 * drm_atomic_helper_duplicate_state - duplicate an atomic state object
3360 * @dev: DRM device
3361 * @ctx: lock acquisition context
3362 *
3363 * Makes a copy of the current atomic state by looping over all objects and
Thierry Reding14942762015-12-02 17:50:04 +01003364 * duplicating their respective states. This is used for example by suspend/
3365 * resume support code to save the state prior to suspend such that it can
3366 * be restored upon resume.
Thierry Reding397fd772015-09-08 15:00:45 +02003367 *
3368 * Note that this treats atomic state as persistent between save and restore.
3369 * Drivers must make sure that this is possible and won't result in confusion
3370 * or erroneous behaviour.
3371 *
3372 * Note that if callers haven't already acquired all modeset locks this might
3373 * return -EDEADLK, which must be handled by calling drm_modeset_backoff().
3374 *
3375 * Returns:
3376 * A pointer to the copy of the atomic state object on success or an
3377 * ERR_PTR()-encoded error code on failure.
Thierry Reding14942762015-12-02 17:50:04 +01003378 *
3379 * See also:
3380 * drm_atomic_helper_suspend(), drm_atomic_helper_resume()
Thierry Reding397fd772015-09-08 15:00:45 +02003381 */
3382struct drm_atomic_state *
3383drm_atomic_helper_duplicate_state(struct drm_device *dev,
3384 struct drm_modeset_acquire_ctx *ctx)
3385{
3386 struct drm_atomic_state *state;
3387 struct drm_connector *conn;
Daniel Vetterc36a3252016-12-15 16:58:43 +01003388 struct drm_connector_list_iter conn_iter;
Thierry Reding397fd772015-09-08 15:00:45 +02003389 struct drm_plane *plane;
3390 struct drm_crtc *crtc;
3391 int err = 0;
3392
3393 state = drm_atomic_state_alloc(dev);
3394 if (!state)
3395 return ERR_PTR(-ENOMEM);
3396
3397 state->acquire_ctx = ctx;
3398
3399 drm_for_each_crtc(crtc, dev) {
3400 struct drm_crtc_state *crtc_state;
3401
3402 crtc_state = drm_atomic_get_crtc_state(state, crtc);
3403 if (IS_ERR(crtc_state)) {
3404 err = PTR_ERR(crtc_state);
3405 goto free;
3406 }
3407 }
3408
3409 drm_for_each_plane(plane, dev) {
3410 struct drm_plane_state *plane_state;
3411
3412 plane_state = drm_atomic_get_plane_state(state, plane);
3413 if (IS_ERR(plane_state)) {
3414 err = PTR_ERR(plane_state);
3415 goto free;
3416 }
3417 }
3418
Daniel Vetterc36a3252016-12-15 16:58:43 +01003419 drm_connector_list_iter_get(dev, &conn_iter);
3420 drm_for_each_connector_iter(conn, &conn_iter) {
Thierry Reding397fd772015-09-08 15:00:45 +02003421 struct drm_connector_state *conn_state;
3422
3423 conn_state = drm_atomic_get_connector_state(state, conn);
3424 if (IS_ERR(conn_state)) {
3425 err = PTR_ERR(conn_state);
Daniel Vetterc36a3252016-12-15 16:58:43 +01003426 drm_connector_list_iter_put(&conn_iter);
Thierry Reding397fd772015-09-08 15:00:45 +02003427 goto free;
3428 }
3429 }
Daniel Vetterc36a3252016-12-15 16:58:43 +01003430 drm_connector_list_iter_put(&conn_iter);
Thierry Reding397fd772015-09-08 15:00:45 +02003431
3432 /* clear the acquire context so that it isn't accidentally reused */
3433 state->acquire_ctx = NULL;
3434
3435free:
3436 if (err < 0) {
Chris Wilson08536952016-10-14 13:18:18 +01003437 drm_atomic_state_put(state);
Thierry Reding397fd772015-09-08 15:00:45 +02003438 state = ERR_PTR(err);
3439 }
3440
3441 return state;
3442}
3443EXPORT_SYMBOL(drm_atomic_helper_duplicate_state);
3444
3445/**
Thierry Redingf5e78402015-01-28 14:54:32 +01003446 * __drm_atomic_helper_connector_destroy_state - release connector state
Thierry Redingf5e78402015-01-28 14:54:32 +01003447 * @state: connector state object to release
3448 *
3449 * Releases all resources stored in the connector state without actually
3450 * freeing the memory of the connector state. This is useful for drivers that
3451 * subclass the connector state.
3452 */
3453void
Daniel Vetterfabd9102016-05-09 16:34:11 +02003454__drm_atomic_helper_connector_destroy_state(struct drm_connector_state *state)
Thierry Redingf5e78402015-01-28 14:54:32 +01003455{
Dave Airlied2307de2016-04-27 11:27:39 +10003456 if (state->crtc)
3457 drm_connector_unreference(state->connector);
Thierry Redingf5e78402015-01-28 14:54:32 +01003458}
3459EXPORT_SYMBOL(__drm_atomic_helper_connector_destroy_state);
3460
3461/**
Daniel Vetterd4617012014-11-03 15:56:43 +01003462 * drm_atomic_helper_connector_destroy_state - default state destroy hook
3463 * @connector: drm connector
3464 * @state: connector state object to release
3465 *
3466 * Default connector state destroy hook for drivers which don't have their own
3467 * subclassed connector state structure.
3468 */
3469void drm_atomic_helper_connector_destroy_state(struct drm_connector *connector,
3470 struct drm_connector_state *state)
3471{
Daniel Vetterfabd9102016-05-09 16:34:11 +02003472 __drm_atomic_helper_connector_destroy_state(state);
Daniel Vetterd4617012014-11-03 15:56:43 +01003473 kfree(state);
3474}
3475EXPORT_SYMBOL(drm_atomic_helper_connector_destroy_state);
Lionel Landwerlin5488dc12016-02-26 17:05:00 +00003476
3477/**
3478 * drm_atomic_helper_legacy_gamma_set - set the legacy gamma correction table
3479 * @crtc: CRTC object
3480 * @red: red correction table
3481 * @green: green correction table
3482 * @blue: green correction table
Lionel Landwerlin5488dc12016-02-26 17:05:00 +00003483 * @size: size of the tables
3484 *
3485 * Implements support for legacy gamma correction table for drivers
3486 * that support color management through the DEGAMMA_LUT/GAMMA_LUT
3487 * properties.
3488 */
Maarten Lankhorst7ea77282016-06-07 12:49:30 +02003489int drm_atomic_helper_legacy_gamma_set(struct drm_crtc *crtc,
3490 u16 *red, u16 *green, u16 *blue,
3491 uint32_t size)
Lionel Landwerlin5488dc12016-02-26 17:05:00 +00003492{
3493 struct drm_device *dev = crtc->dev;
3494 struct drm_mode_config *config = &dev->mode_config;
3495 struct drm_atomic_state *state;
3496 struct drm_crtc_state *crtc_state;
3497 struct drm_property_blob *blob = NULL;
3498 struct drm_color_lut *blob_data;
3499 int i, ret = 0;
3500
3501 state = drm_atomic_state_alloc(crtc->dev);
3502 if (!state)
Maarten Lankhorst7ea77282016-06-07 12:49:30 +02003503 return -ENOMEM;
Lionel Landwerlin5488dc12016-02-26 17:05:00 +00003504
3505 blob = drm_property_create_blob(dev,
3506 sizeof(struct drm_color_lut) * size,
3507 NULL);
Lionel Landwerlin562c5b42016-03-10 12:04:21 +00003508 if (IS_ERR(blob)) {
3509 ret = PTR_ERR(blob);
Lionel Landwerlinc1f415c2016-03-11 12:17:26 +00003510 blob = NULL;
Lionel Landwerlin5488dc12016-02-26 17:05:00 +00003511 goto fail;
3512 }
3513
3514 /* Prepare GAMMA_LUT with the legacy values. */
3515 blob_data = (struct drm_color_lut *) blob->data;
3516 for (i = 0; i < size; i++) {
3517 blob_data[i].red = red[i];
3518 blob_data[i].green = green[i];
3519 blob_data[i].blue = blue[i];
3520 }
3521
3522 state->acquire_ctx = crtc->dev->mode_config.acquire_ctx;
3523retry:
3524 crtc_state = drm_atomic_get_crtc_state(state, crtc);
3525 if (IS_ERR(crtc_state)) {
3526 ret = PTR_ERR(crtc_state);
3527 goto fail;
3528 }
3529
3530 /* Reset DEGAMMA_LUT and CTM properties. */
3531 ret = drm_atomic_crtc_set_property(crtc, crtc_state,
3532 config->degamma_lut_property, 0);
3533 if (ret)
3534 goto fail;
3535
3536 ret = drm_atomic_crtc_set_property(crtc, crtc_state,
3537 config->ctm_property, 0);
3538 if (ret)
3539 goto fail;
3540
3541 ret = drm_atomic_crtc_set_property(crtc, crtc_state,
3542 config->gamma_lut_property, blob->base.id);
3543 if (ret)
3544 goto fail;
3545
3546 ret = drm_atomic_commit(state);
Lionel Landwerlin5488dc12016-02-26 17:05:00 +00003547fail:
3548 if (ret == -EDEADLK)
3549 goto backoff;
3550
Chris Wilson08536952016-10-14 13:18:18 +01003551 drm_atomic_state_put(state);
Lionel Landwerlin5488dc12016-02-26 17:05:00 +00003552 drm_property_unreference_blob(blob);
Maarten Lankhorst7ea77282016-06-07 12:49:30 +02003553 return ret;
Chris Wilson08536952016-10-14 13:18:18 +01003554
Lionel Landwerlin5488dc12016-02-26 17:05:00 +00003555backoff:
3556 drm_atomic_state_clear(state);
3557 drm_atomic_legacy_backoff(state);
3558
3559 goto retry;
3560}
3561EXPORT_SYMBOL(drm_atomic_helper_legacy_gamma_set);