blob: ddfa0d120e398a63f755c677dcdb1b5e58f371e5 [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>
Daniel Vettere2330f02014-10-29 11:34:56 +010033#include <linux/fence.h>
Daniel Vetterc2fcd272014-11-05 00:14:14 +010034
Daniel Vetter3150c7d2014-11-06 20:53:29 +010035/**
36 * DOC: overview
37 *
38 * This helper library provides implementations of check and commit functions on
39 * top of the CRTC modeset helper callbacks and the plane helper callbacks. It
40 * also provides convenience implementations for the atomic state handling
41 * callbacks for drivers which don't need to subclass the drm core structures to
42 * add their own additional internal state.
43 *
44 * This library also provides default implementations for the check callback in
Daniel Vetter26196f72015-08-25 16:26:03 +020045 * drm_atomic_helper_check() and for the commit callback with
46 * drm_atomic_helper_commit(). But the individual stages and callbacks are
47 * exposed to allow drivers to mix and match and e.g. use the plane helpers only
Daniel Vetter3150c7d2014-11-06 20:53:29 +010048 * together with a driver private modeset implementation.
49 *
50 * This library also provides implementations for all the legacy driver
Daniel Vetter26196f72015-08-25 16:26:03 +020051 * interfaces on top of the atomic interface. See drm_atomic_helper_set_config(),
52 * drm_atomic_helper_disable_plane(), drm_atomic_helper_disable_plane() and the
Daniel Vetter3150c7d2014-11-06 20:53:29 +010053 * various functions to implement set_property callbacks. New drivers must not
54 * implement these functions themselves but must use the provided helpers.
Daniel Vetter092d01d2015-12-04 09:45:44 +010055 *
56 * The atomic helper uses the same function table structures as all other
57 * modesetting helpers. See the documentation for struct &drm_crtc_helper_funcs,
58 * struct &drm_encoder_helper_funcs and struct &drm_connector_helper_funcs. It
59 * also shares the struct &drm_plane_helper_funcs function table with the plane
60 * helpers.
Daniel Vetter3150c7d2014-11-06 20:53:29 +010061 */
Daniel Vetterc2fcd272014-11-05 00:14:14 +010062static void
63drm_atomic_helper_plane_changed(struct drm_atomic_state *state,
64 struct drm_plane_state *plane_state,
65 struct drm_plane *plane)
66{
67 struct drm_crtc_state *crtc_state;
68
69 if (plane->state->crtc) {
Andrzej Hajda2943ef32016-03-15 13:46:00 +010070 crtc_state = drm_atomic_get_existing_crtc_state(state,
71 plane->state->crtc);
Daniel Vetterc2fcd272014-11-05 00:14:14 +010072
73 if (WARN_ON(!crtc_state))
74 return;
75
76 crtc_state->planes_changed = true;
77 }
78
79 if (plane_state->crtc) {
Andrzej Hajda2943ef32016-03-15 13:46:00 +010080 crtc_state = drm_atomic_get_existing_crtc_state(state,
81 plane_state->crtc);
Daniel Vetterc2fcd272014-11-05 00:14:14 +010082
83 if (WARN_ON(!crtc_state))
84 return;
85
86 crtc_state->planes_changed = true;
87 }
88}
89
Maarten Lankhorst8248b652016-03-03 10:17:40 +010090static int handle_conflicting_encoders(struct drm_atomic_state *state,
91 bool disable_conflicting_encoders)
Daniel Vetter97ac3202015-12-03 10:49:14 +010092{
Daniel Vetter97ac3202015-12-03 10:49:14 +010093 struct drm_connector_state *conn_state;
Daniel Vetter623369e2014-09-16 17:50:47 +020094 struct drm_connector *connector;
Maarten Lankhorst40616a22016-03-03 10:17:39 +010095 struct drm_encoder *encoder;
96 unsigned encoder_mask = 0;
97 int i, ret;
Daniel Vetter623369e2014-09-16 17:50:47 +020098
Maarten Lankhorst8248b652016-03-03 10:17:40 +010099 /*
100 * First loop, find all newly assigned encoders from the connectors
101 * part of the state. If the same encoder is assigned to multiple
102 * connectors bail out.
103 */
Maarten Lankhorst40616a22016-03-03 10:17:39 +0100104 for_each_connector_in_state(state, connector, conn_state, i) {
105 const struct drm_connector_helper_funcs *funcs = connector->helper_private;
106 struct drm_encoder *new_encoder;
Daniel Vetter623369e2014-09-16 17:50:47 +0200107
Maarten Lankhorst40616a22016-03-03 10:17:39 +0100108 if (!conn_state->crtc)
Daniel Vetter623369e2014-09-16 17:50:47 +0200109 continue;
110
Maarten Lankhorst40616a22016-03-03 10:17:39 +0100111 if (funcs->atomic_best_encoder)
112 new_encoder = funcs->atomic_best_encoder(connector, conn_state);
113 else
114 new_encoder = funcs->best_encoder(connector);
115
Maarten Lankhorst8248b652016-03-03 10:17:40 +0100116 if (new_encoder) {
117 if (encoder_mask & (1 << drm_encoder_index(new_encoder))) {
118 DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] on [CONNECTOR:%d:%s] already assigned\n",
119 new_encoder->base.id, new_encoder->name,
120 connector->base.id, connector->name);
121
122 return -EINVAL;
123 }
124
Maarten Lankhorst40616a22016-03-03 10:17:39 +0100125 encoder_mask |= 1 << drm_encoder_index(new_encoder);
Maarten Lankhorst8248b652016-03-03 10:17:40 +0100126 }
Daniel Vetter623369e2014-09-16 17:50:47 +0200127 }
128
Maarten Lankhorst8248b652016-03-03 10:17:40 +0100129 if (!encoder_mask)
130 return 0;
131
132 /*
133 * Second loop, iterate over all connectors not part of the state.
134 *
135 * If a conflicting encoder is found and disable_conflicting_encoders
136 * is not set, an error is returned. Userspace can provide a solution
137 * through the atomic ioctl.
138 *
139 * If the flag is set conflicting connectors are removed from the crtc
140 * and the crtc is disabled if no encoder is left. This preserves
141 * compatibility with the legacy set_config behavior.
142 */
Maarten Lankhorst40616a22016-03-03 10:17:39 +0100143 drm_for_each_connector(connector, state->dev) {
144 struct drm_crtc_state *crtc_state;
145
146 if (drm_atomic_get_existing_connector_state(state, connector))
147 continue;
148
149 encoder = connector->state->best_encoder;
150 if (!encoder || !(encoder_mask & (1 << drm_encoder_index(encoder))))
151 continue;
152
Maarten Lankhorst8248b652016-03-03 10:17:40 +0100153 if (!disable_conflicting_encoders) {
154 DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] in use on [CRTC:%d:%s] by [CONNECTOR:%d:%s]\n",
155 encoder->base.id, encoder->name,
156 connector->state->crtc->base.id,
157 connector->state->crtc->name,
158 connector->base.id, connector->name);
159 return -EINVAL;
160 }
161
Maarten Lankhorst40616a22016-03-03 10:17:39 +0100162 conn_state = drm_atomic_get_connector_state(state, connector);
163 if (IS_ERR(conn_state))
164 return PTR_ERR(conn_state);
165
166 DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] in use on [CRTC:%d:%s], disabling [CONNECTOR:%d:%s]\n",
167 encoder->base.id, encoder->name,
168 conn_state->crtc->base.id, conn_state->crtc->name,
169 connector->base.id, connector->name);
170
171 crtc_state = drm_atomic_get_existing_crtc_state(state, conn_state->crtc);
172
173 ret = drm_atomic_set_crtc_for_connector(conn_state, NULL);
174 if (ret)
175 return ret;
176
177 if (!crtc_state->connector_mask) {
178 ret = drm_atomic_set_mode_prop_for_crtc(crtc_state,
179 NULL);
180 if (ret < 0)
181 return ret;
182
183 crtc_state->active = false;
184 }
185 }
186
187 return 0;
Daniel Vetter623369e2014-09-16 17:50:47 +0200188}
189
Maarten Lankhorste87a52b2016-01-28 15:04:58 +0100190static void
191set_best_encoder(struct drm_atomic_state *state,
192 struct drm_connector_state *conn_state,
193 struct drm_encoder *encoder)
194{
195 struct drm_crtc_state *crtc_state;
196 struct drm_crtc *crtc;
197
198 if (conn_state->best_encoder) {
199 /* Unset the encoder_mask in the old crtc state. */
200 crtc = conn_state->connector->state->crtc;
201
202 /* A NULL crtc is an error here because we should have
203 * duplicated a NULL best_encoder when crtc was NULL.
204 * As an exception restoring duplicated atomic state
205 * during resume is allowed, so don't warn when
206 * best_encoder is equal to encoder we intend to set.
207 */
208 WARN_ON(!crtc && encoder != conn_state->best_encoder);
209 if (crtc) {
210 crtc_state = drm_atomic_get_existing_crtc_state(state, crtc);
211
212 crtc_state->encoder_mask &=
213 ~(1 << drm_encoder_index(conn_state->best_encoder));
214 }
215 }
216
217 if (encoder) {
218 crtc = conn_state->crtc;
219 WARN_ON(!crtc);
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(encoder);
225 }
226 }
227
228 conn_state->best_encoder = encoder;
229}
230
Maarten Lankhorstec5aaa52016-03-03 10:17:41 +0100231static void
Daniel Vetter623369e2014-09-16 17:50:47 +0200232steal_encoder(struct drm_atomic_state *state,
Maarten Lankhorstff19b782016-03-03 10:17:38 +0100233 struct drm_encoder *encoder)
Daniel Vetter623369e2014-09-16 17:50:47 +0200234{
Daniel Vetter623369e2014-09-16 17:50:47 +0200235 struct drm_crtc_state *crtc_state;
236 struct drm_connector *connector;
237 struct drm_connector_state *connector_state;
Maarten Lankhorstec5aaa52016-03-03 10:17:41 +0100238 int i;
Daniel Vetter623369e2014-09-16 17:50:47 +0200239
Maarten Lankhorstec5aaa52016-03-03 10:17:41 +0100240 for_each_connector_in_state(state, connector, connector_state, i) {
Maarten Lankhorstff19b782016-03-03 10:17:38 +0100241 struct drm_crtc *encoder_crtc;
Daniel Vetter623369e2014-09-16 17:50:47 +0200242
Maarten Lankhorste87a52b2016-01-28 15:04:58 +0100243 if (connector_state->best_encoder != encoder)
244 continue;
245
Maarten Lankhorstff19b782016-03-03 10:17:38 +0100246 encoder_crtc = connector->state->crtc;
Daniel Vetter623369e2014-09-16 17:50:47 +0200247
Maarten Lankhorstff19b782016-03-03 10:17:38 +0100248 DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] in use on [CRTC:%d:%s], stealing it\n",
249 encoder->base.id, encoder->name,
250 encoder_crtc->base.id, encoder_crtc->name);
251
Daniel Vetter623369e2014-09-16 17:50:47 +0200252 set_best_encoder(state, connector_state, NULL);
Maarten Lankhorstff19b782016-03-03 10:17:38 +0100253
254 crtc_state = drm_atomic_get_existing_crtc_state(state, encoder_crtc);
255 crtc_state->connectors_changed = true;
256
Maarten Lankhorstec5aaa52016-03-03 10:17:41 +0100257 return;
Daniel Vetter623369e2014-09-16 17:50:47 +0200258 }
Daniel Vetter623369e2014-09-16 17:50:47 +0200259}
260
261static int
Maarten Lankhorst94595452016-02-24 09:37:29 +0100262update_connector_routing(struct drm_atomic_state *state,
263 struct drm_connector *connector,
264 struct drm_connector_state *connector_state)
Daniel Vetter623369e2014-09-16 17:50:47 +0200265{
Ville Syrjäläb5ceff22015-03-10 14:35:20 +0200266 const struct drm_connector_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200267 struct drm_encoder *new_encoder;
Daniel Vetter623369e2014-09-16 17:50:47 +0200268 struct drm_crtc_state *crtc_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200269
Daniel Vetter17a38d92015-02-22 12:24:16 +0100270 DRM_DEBUG_ATOMIC("Updating routing for [CONNECTOR:%d:%s]\n",
271 connector->base.id,
272 connector->name);
Daniel Vetter623369e2014-09-16 17:50:47 +0200273
274 if (connector->state->crtc != connector_state->crtc) {
275 if (connector->state->crtc) {
Maarten Lankhorst9b8d1e52016-03-03 10:17:42 +0100276 crtc_state = drm_atomic_get_existing_crtc_state(state, connector->state->crtc);
Maarten Lankhorstfc596662015-07-21 13:28:57 +0200277 crtc_state->connectors_changed = true;
Daniel Vetter623369e2014-09-16 17:50:47 +0200278 }
279
280 if (connector_state->crtc) {
Maarten Lankhorst9b8d1e52016-03-03 10:17:42 +0100281 crtc_state = drm_atomic_get_existing_crtc_state(state, connector_state->crtc);
Maarten Lankhorstfc596662015-07-21 13:28:57 +0200282 crtc_state->connectors_changed = true;
Daniel Vetter623369e2014-09-16 17:50:47 +0200283 }
284 }
285
286 if (!connector_state->crtc) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100287 DRM_DEBUG_ATOMIC("Disabling [CONNECTOR:%d:%s]\n",
Daniel Vetter623369e2014-09-16 17:50:47 +0200288 connector->base.id,
289 connector->name);
290
Maarten Lankhorste87a52b2016-01-28 15:04:58 +0100291 set_best_encoder(state, connector_state, NULL);
Daniel Vetter623369e2014-09-16 17:50:47 +0200292
293 return 0;
294 }
295
296 funcs = connector->helper_private;
Daniel Vetter3b8a684b2015-08-03 17:24:08 +0200297
298 if (funcs->atomic_best_encoder)
299 new_encoder = funcs->atomic_best_encoder(connector,
300 connector_state);
301 else
302 new_encoder = funcs->best_encoder(connector);
Daniel Vetter623369e2014-09-16 17:50:47 +0200303
304 if (!new_encoder) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100305 DRM_DEBUG_ATOMIC("No suitable encoder found for [CONNECTOR:%d:%s]\n",
306 connector->base.id,
307 connector->name);
Daniel Vetter623369e2014-09-16 17:50:47 +0200308 return -EINVAL;
309 }
310
Daniel Vetter5481c8f2015-11-18 18:46:48 +0100311 if (!drm_encoder_crtc_ok(new_encoder, connector_state->crtc)) {
312 DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] incompatible with [CRTC:%d]\n",
313 new_encoder->base.id,
314 new_encoder->name,
315 connector_state->crtc->base.id);
316 return -EINVAL;
317 }
318
Daniel Vetter623369e2014-09-16 17:50:47 +0200319 if (new_encoder == connector_state->best_encoder) {
Maarten Lankhorste87a52b2016-01-28 15:04:58 +0100320 set_best_encoder(state, connector_state, new_encoder);
321
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200322 DRM_DEBUG_ATOMIC("[CONNECTOR:%d:%s] keeps [ENCODER:%d:%s], now on [CRTC:%d:%s]\n",
Daniel Vetter17a38d92015-02-22 12:24:16 +0100323 connector->base.id,
324 connector->name,
325 new_encoder->base.id,
326 new_encoder->name,
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200327 connector_state->crtc->base.id,
328 connector_state->crtc->name);
Daniel Vetter623369e2014-09-16 17:50:47 +0200329
330 return 0;
331 }
332
Maarten Lankhorstec5aaa52016-03-03 10:17:41 +0100333 steal_encoder(state, new_encoder);
Daniel Vetter623369e2014-09-16 17:50:47 +0200334
Maarten Lankhorste87a52b2016-01-28 15:04:58 +0100335 set_best_encoder(state, connector_state, new_encoder);
336
Maarten Lankhorst9b8d1e52016-03-03 10:17:42 +0100337 crtc_state = drm_atomic_get_existing_crtc_state(state, connector_state->crtc);
Maarten Lankhorstfc596662015-07-21 13:28:57 +0200338 crtc_state->connectors_changed = true;
Daniel Vetter623369e2014-09-16 17:50:47 +0200339
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200340 DRM_DEBUG_ATOMIC("[CONNECTOR:%d:%s] using [ENCODER:%d:%s] on [CRTC:%d:%s]\n",
Daniel Vetter17a38d92015-02-22 12:24:16 +0100341 connector->base.id,
342 connector->name,
343 new_encoder->base.id,
344 new_encoder->name,
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200345 connector_state->crtc->base.id,
346 connector_state->crtc->name);
Daniel Vetter623369e2014-09-16 17:50:47 +0200347
348 return 0;
349}
350
351static int
352mode_fixup(struct drm_atomic_state *state)
353{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300354 struct drm_crtc *crtc;
Daniel Vetter623369e2014-09-16 17:50:47 +0200355 struct drm_crtc_state *crtc_state;
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300356 struct drm_connector *connector;
Daniel Vetter623369e2014-09-16 17:50:47 +0200357 struct drm_connector_state *conn_state;
358 int i;
359 bool ret;
360
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300361 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Maarten Lankhorstfc596662015-07-21 13:28:57 +0200362 if (!crtc_state->mode_changed &&
363 !crtc_state->connectors_changed)
Daniel Vetter623369e2014-09-16 17:50:47 +0200364 continue;
365
366 drm_mode_copy(&crtc_state->adjusted_mode, &crtc_state->mode);
367 }
368
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300369 for_each_connector_in_state(state, connector, conn_state, i) {
Ville Syrjäläb5ceff22015-03-10 14:35:20 +0200370 const struct drm_encoder_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200371 struct drm_encoder *encoder;
372
Daniel Vetter623369e2014-09-16 17:50:47 +0200373 WARN_ON(!!conn_state->best_encoder != !!conn_state->crtc);
374
375 if (!conn_state->crtc || !conn_state->best_encoder)
376 continue;
377
Andrzej Hajda2943ef32016-03-15 13:46:00 +0100378 crtc_state = drm_atomic_get_existing_crtc_state(state,
379 conn_state->crtc);
Daniel Vetter623369e2014-09-16 17:50:47 +0200380
381 /*
382 * Each encoder has at most one connector (since we always steal
383 * it away), so we won't call ->mode_fixup twice.
384 */
385 encoder = conn_state->best_encoder;
386 funcs = encoder->helper_private;
387
Archit Taneja862e6862015-05-21 11:03:16 +0530388 ret = drm_bridge_mode_fixup(encoder->bridge, &crtc_state->mode,
389 &crtc_state->adjusted_mode);
390 if (!ret) {
391 DRM_DEBUG_ATOMIC("Bridge fixup failed\n");
392 return -EINVAL;
Daniel Vetter623369e2014-09-16 17:50:47 +0200393 }
394
Noralf Trønnes28276352016-05-11 18:09:20 +0200395 if (funcs && funcs->atomic_check) {
Thierry Reding4cd4df82014-12-03 16:44:34 +0100396 ret = funcs->atomic_check(encoder, crtc_state,
397 conn_state);
398 if (ret) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100399 DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] check failed\n",
400 encoder->base.id, encoder->name);
Thierry Reding4cd4df82014-12-03 16:44:34 +0100401 return ret;
402 }
Noralf Trønnes28276352016-05-11 18:09:20 +0200403 } else if (funcs && funcs->mode_fixup) {
Thierry Reding4cd4df82014-12-03 16:44:34 +0100404 ret = funcs->mode_fixup(encoder, &crtc_state->mode,
405 &crtc_state->adjusted_mode);
406 if (!ret) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100407 DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] fixup failed\n",
408 encoder->base.id, encoder->name);
Thierry Reding4cd4df82014-12-03 16:44:34 +0100409 return -EINVAL;
410 }
Daniel Vetter623369e2014-09-16 17:50:47 +0200411 }
412 }
413
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300414 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Ville Syrjäläb5ceff22015-03-10 14:35:20 +0200415 const struct drm_crtc_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200416
Maarten Lankhorstfc596662015-07-21 13:28:57 +0200417 if (!crtc_state->mode_changed &&
418 !crtc_state->connectors_changed)
Daniel Vetter623369e2014-09-16 17:50:47 +0200419 continue;
420
421 funcs = crtc->helper_private;
Ander Conselvan de Oliveira840bfe92015-04-21 17:13:18 +0300422 if (!funcs->mode_fixup)
423 continue;
424
Daniel Vetter623369e2014-09-16 17:50:47 +0200425 ret = funcs->mode_fixup(crtc, &crtc_state->mode,
426 &crtc_state->adjusted_mode);
427 if (!ret) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200428 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] fixup failed\n",
429 crtc->base.id, crtc->name);
Daniel Vetter623369e2014-09-16 17:50:47 +0200430 return -EINVAL;
431 }
432 }
433
434 return 0;
435}
436
Daniel Vetterd9b13622014-11-26 16:57:41 +0100437/**
John Hunterf98bd3e2015-03-17 15:30:26 +0800438 * drm_atomic_helper_check_modeset - validate state object for modeset changes
Daniel Vetterd9b13622014-11-26 16:57:41 +0100439 * @dev: DRM device
440 * @state: the driver state object
441 *
442 * Check the state object to see if the requested state is physically possible.
443 * This does all the crtc and connector related computations for an atomic
Maarten Lankhorstfc596662015-07-21 13:28:57 +0200444 * update and adds any additional connectors needed for full modesets and calls
445 * down into ->mode_fixup functions of the driver backend.
446 *
447 * crtc_state->mode_changed is set when the input mode is changed.
448 * crtc_state->connectors_changed is set when a connector is added or
449 * removed from the crtc.
450 * crtc_state->active_changed is set when crtc_state->active changes,
451 * which is used for dpms.
Daniel Vetterd9b13622014-11-26 16:57:41 +0100452 *
453 * IMPORTANT:
454 *
455 * Drivers which update ->mode_changed (e.g. in their ->atomic_check hooks if a
456 * plane update can't be done without a full modeset) _must_ call this function
457 * afterwards after that change. It is permitted to call this function multiple
458 * times for the same update, e.g. when the ->atomic_check functions depend upon
459 * the adjusted dotclock for fifo space allocation and watermark computation.
460 *
461 * RETURNS
462 * Zero for success or -errno
463 */
464int
Rob Clark934ce1c2014-11-19 16:41:33 -0500465drm_atomic_helper_check_modeset(struct drm_device *dev,
Daniel Vetter623369e2014-09-16 17:50:47 +0200466 struct drm_atomic_state *state)
467{
Daniel Vetter623369e2014-09-16 17:50:47 +0200468 struct drm_crtc *crtc;
469 struct drm_crtc_state *crtc_state;
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300470 struct drm_connector *connector;
471 struct drm_connector_state *connector_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200472 int i, ret;
473
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300474 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Daniel Vetter623369e2014-09-16 17:50:47 +0200475 if (!drm_mode_equal(&crtc->state->mode, &crtc_state->mode)) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200476 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] mode changed\n",
477 crtc->base.id, crtc->name);
Daniel Vetter623369e2014-09-16 17:50:47 +0200478 crtc_state->mode_changed = true;
479 }
480
481 if (crtc->state->enable != crtc_state->enable) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200482 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] enable changed\n",
483 crtc->base.id, crtc->name);
Maarten Lankhorstfc596662015-07-21 13:28:57 +0200484
485 /*
486 * For clarity this assignment is done here, but
487 * enable == 0 is only true when there are no
488 * connectors and a NULL mode.
489 *
490 * The other way around is true as well. enable != 0
491 * iff connectors are attached and a mode is set.
492 */
Daniel Vetter623369e2014-09-16 17:50:47 +0200493 crtc_state->mode_changed = true;
Maarten Lankhorstfc596662015-07-21 13:28:57 +0200494 crtc_state->connectors_changed = true;
Daniel Vetter623369e2014-09-16 17:50:47 +0200495 }
496 }
497
Maarten Lankhorst8248b652016-03-03 10:17:40 +0100498 ret = handle_conflicting_encoders(state, state->legacy_set_config);
499 if (ret)
500 return ret;
Maarten Lankhorst40616a22016-03-03 10:17:39 +0100501
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300502 for_each_connector_in_state(state, connector, connector_state, i) {
Daniel Vetter623369e2014-09-16 17:50:47 +0200503 /*
504 * This only sets crtc->mode_changed for routing changes,
505 * drivers must set crtc->mode_changed themselves when connector
506 * properties need to be updated.
507 */
Maarten Lankhorst94595452016-02-24 09:37:29 +0100508 ret = update_connector_routing(state, connector,
509 connector_state);
Daniel Vetter623369e2014-09-16 17:50:47 +0200510 if (ret)
511 return ret;
512 }
513
514 /*
515 * After all the routing has been prepared we need to add in any
516 * connector which is itself unchanged, but who's crtc changes it's
517 * configuration. This must be done before calling mode_fixup in case a
518 * crtc only changed its mode but has the same set of connectors.
519 */
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300520 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Maarten Lankhorst14de6c42016-01-04 12:53:20 +0100521 bool has_connectors =
522 !!crtc_state->connector_mask;
Daniel Vetter623369e2014-09-16 17:50:47 +0200523
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100524 /*
525 * We must set ->active_changed after walking connectors for
526 * otherwise an update that only changes active would result in
527 * a full modeset because update_connector_routing force that.
528 */
529 if (crtc->state->active != crtc_state->active) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200530 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] active changed\n",
531 crtc->base.id, crtc->name);
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100532 crtc_state->active_changed = true;
533 }
534
Daniel Vetter2465ff62015-06-18 09:58:55 +0200535 if (!drm_atomic_crtc_needs_modeset(crtc_state))
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100536 continue;
537
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200538 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] needs all connectors, enable: %c, active: %c\n",
539 crtc->base.id, crtc->name,
Daniel Vetter17a38d92015-02-22 12:24:16 +0100540 crtc_state->enable ? 'y' : 'n',
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200541 crtc_state->active ? 'y' : 'n');
Daniel Vetter623369e2014-09-16 17:50:47 +0200542
543 ret = drm_atomic_add_affected_connectors(state, crtc);
544 if (ret != 0)
545 return ret;
546
Maarten Lankhorst57744aa2015-05-19 16:41:03 +0200547 ret = drm_atomic_add_affected_planes(state, crtc);
548 if (ret != 0)
549 return ret;
550
Maarten Lankhorst14de6c42016-01-04 12:53:20 +0100551 if (crtc_state->enable != has_connectors) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200552 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] enabled/connectors mismatch\n",
553 crtc->base.id, crtc->name);
Daniel Vetter623369e2014-09-16 17:50:47 +0200554
555 return -EINVAL;
556 }
557 }
558
559 return mode_fixup(state);
560}
Daniel Vetterd9b13622014-11-26 16:57:41 +0100561EXPORT_SYMBOL(drm_atomic_helper_check_modeset);
Daniel Vetter623369e2014-09-16 17:50:47 +0200562
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100563/**
John Hunterf98bd3e2015-03-17 15:30:26 +0800564 * drm_atomic_helper_check_planes - validate state object for planes changes
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100565 * @dev: DRM device
566 * @state: the driver state object
567 *
568 * Check the state object to see if the requested state is physically possible.
Daniel Vetterd9b13622014-11-26 16:57:41 +0100569 * This does all the plane update related checks using by calling into the
570 * ->atomic_check hooks provided by the driver.
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100571 *
Maarten Lankhorstfc596662015-07-21 13:28:57 +0200572 * It also sets crtc_state->planes_changed to indicate that a crtc has
573 * updated planes.
574 *
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100575 * RETURNS
576 * Zero for success or -errno
577 */
Daniel Vetterd9b13622014-11-26 16:57:41 +0100578int
579drm_atomic_helper_check_planes(struct drm_device *dev,
580 struct drm_atomic_state *state)
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100581{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300582 struct drm_crtc *crtc;
583 struct drm_crtc_state *crtc_state;
584 struct drm_plane *plane;
585 struct drm_plane_state *plane_state;
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100586 int i, ret = 0;
587
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300588 for_each_plane_in_state(state, plane, plane_state, i) {
Ville Syrjäläb5ceff22015-03-10 14:35:20 +0200589 const struct drm_plane_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100590
591 funcs = plane->helper_private;
592
593 drm_atomic_helper_plane_changed(state, plane_state, plane);
594
595 if (!funcs || !funcs->atomic_check)
596 continue;
597
598 ret = funcs->atomic_check(plane, plane_state);
599 if (ret) {
Ville Syrjälä9f4c97a2015-12-08 18:41:54 +0200600 DRM_DEBUG_ATOMIC("[PLANE:%d:%s] atomic driver check failed\n",
601 plane->base.id, plane->name);
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100602 return ret;
603 }
604 }
605
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300606 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Ville Syrjäläb5ceff22015-03-10 14:35:20 +0200607 const struct drm_crtc_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100608
609 funcs = crtc->helper_private;
610
611 if (!funcs || !funcs->atomic_check)
612 continue;
613
614 ret = funcs->atomic_check(crtc, state->crtc_states[i]);
615 if (ret) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200616 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] atomic driver check failed\n",
617 crtc->base.id, crtc->name);
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100618 return ret;
619 }
620 }
621
Daniel Vetterd9b13622014-11-26 16:57:41 +0100622 return ret;
623}
624EXPORT_SYMBOL(drm_atomic_helper_check_planes);
625
626/**
627 * drm_atomic_helper_check - validate state object
628 * @dev: DRM device
629 * @state: the driver state object
630 *
631 * Check the state object to see if the requested state is physically possible.
632 * Only crtcs and planes have check callbacks, so for any additional (global)
633 * checking that a driver needs it can simply wrap that around this function.
634 * Drivers without such needs can directly use this as their ->atomic_check()
635 * callback.
636 *
Daniel Vetterb4274fb2014-11-26 17:02:18 +0100637 * This just wraps the two parts of the state checking for planes and modeset
638 * state in the default order: First it calls drm_atomic_helper_check_modeset()
639 * and then drm_atomic_helper_check_planes(). The assumption is that the
640 * ->atomic_check functions depend upon an updated adjusted_mode.clock to
641 * e.g. properly compute watermarks.
642 *
Daniel Vetterd9b13622014-11-26 16:57:41 +0100643 * RETURNS
644 * Zero for success or -errno
645 */
646int drm_atomic_helper_check(struct drm_device *dev,
647 struct drm_atomic_state *state)
648{
649 int ret;
650
Daniel Vetterb4274fb2014-11-26 17:02:18 +0100651 ret = drm_atomic_helper_check_modeset(dev, state);
Daniel Vetterd9b13622014-11-26 16:57:41 +0100652 if (ret)
653 return ret;
654
Daniel Vetterb4274fb2014-11-26 17:02:18 +0100655 ret = drm_atomic_helper_check_planes(dev, state);
Rob Clark934ce1c2014-11-19 16:41:33 -0500656 if (ret)
657 return ret;
658
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100659 return ret;
660}
661EXPORT_SYMBOL(drm_atomic_helper_check);
662
Daniel Vetter623369e2014-09-16 17:50:47 +0200663static void
664disable_outputs(struct drm_device *dev, struct drm_atomic_state *old_state)
665{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300666 struct drm_connector *connector;
667 struct drm_connector_state *old_conn_state;
668 struct drm_crtc *crtc;
669 struct drm_crtc_state *old_crtc_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200670 int i;
671
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300672 for_each_connector_in_state(old_state, connector, old_conn_state, i) {
Ville Syrjäläb5ceff22015-03-10 14:35:20 +0200673 const struct drm_encoder_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200674 struct drm_encoder *encoder;
675
Daniel Vetter623369e2014-09-16 17:50:47 +0200676 /* Shut down everything that's in the changeset and currently
677 * still on. So need to check the old, saved state. */
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300678 if (!old_conn_state->crtc)
Daniel Vetter623369e2014-09-16 17:50:47 +0200679 continue;
680
Andrzej Hajda2943ef32016-03-15 13:46:00 +0100681 old_crtc_state = drm_atomic_get_existing_crtc_state(old_state,
682 old_conn_state->crtc);
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100683
Daniel Vetter4218a322015-03-26 22:18:40 +0100684 if (!old_crtc_state->active ||
Daniel Vetter2465ff62015-06-18 09:58:55 +0200685 !drm_atomic_crtc_needs_modeset(old_conn_state->crtc->state))
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100686 continue;
687
Rob Clark46df9ad2014-11-20 15:40:36 -0500688 encoder = old_conn_state->best_encoder;
Daniel Vetter623369e2014-09-16 17:50:47 +0200689
Rob Clark46df9ad2014-11-20 15:40:36 -0500690 /* We shouldn't get this far if we didn't previously have
691 * an encoder.. but WARN_ON() rather than explode.
692 */
693 if (WARN_ON(!encoder))
Daniel Vetter623369e2014-09-16 17:50:47 +0200694 continue;
695
696 funcs = encoder->helper_private;
697
Daniel Vetter17a38d92015-02-22 12:24:16 +0100698 DRM_DEBUG_ATOMIC("disabling [ENCODER:%d:%s]\n",
699 encoder->base.id, encoder->name);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100700
Daniel Vetter623369e2014-09-16 17:50:47 +0200701 /*
702 * Each encoder has at most one connector (since we always steal
John Hunterf98bd3e2015-03-17 15:30:26 +0800703 * it away), so we won't call disable hooks twice.
Daniel Vetter623369e2014-09-16 17:50:47 +0200704 */
Archit Taneja862e6862015-05-21 11:03:16 +0530705 drm_bridge_disable(encoder->bridge);
Daniel Vetter623369e2014-09-16 17:50:47 +0200706
707 /* Right function depends upon target state. */
Noralf Trønnes28276352016-05-11 18:09:20 +0200708 if (funcs) {
709 if (connector->state->crtc && funcs->prepare)
710 funcs->prepare(encoder);
711 else if (funcs->disable)
712 funcs->disable(encoder);
713 else if (funcs->dpms)
714 funcs->dpms(encoder, DRM_MODE_DPMS_OFF);
715 }
Daniel Vetter623369e2014-09-16 17:50:47 +0200716
Archit Taneja862e6862015-05-21 11:03:16 +0530717 drm_bridge_post_disable(encoder->bridge);
Daniel Vetter623369e2014-09-16 17:50:47 +0200718 }
719
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300720 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Ville Syrjäläb5ceff22015-03-10 14:35:20 +0200721 const struct drm_crtc_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200722
723 /* Shut down everything that needs a full modeset. */
Daniel Vetter2465ff62015-06-18 09:58:55 +0200724 if (!drm_atomic_crtc_needs_modeset(crtc->state))
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100725 continue;
726
727 if (!old_crtc_state->active)
Daniel Vetter623369e2014-09-16 17:50:47 +0200728 continue;
729
730 funcs = crtc->helper_private;
731
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200732 DRM_DEBUG_ATOMIC("disabling [CRTC:%d:%s]\n",
733 crtc->base.id, crtc->name);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100734
735
Daniel Vetter623369e2014-09-16 17:50:47 +0200736 /* Right function depends upon target state. */
Daniel Vetteree0a89c2015-01-22 16:36:24 +0100737 if (crtc->state->enable && funcs->prepare)
Daniel Vetter623369e2014-09-16 17:50:47 +0200738 funcs->prepare(crtc);
739 else if (funcs->disable)
740 funcs->disable(crtc);
741 else
742 funcs->dpms(crtc, DRM_MODE_DPMS_OFF);
743 }
744}
745
Daniel Vetter4c18d302015-05-12 15:27:37 +0200746/**
747 * drm_atomic_helper_update_legacy_modeset_state - update legacy modeset state
748 * @dev: DRM device
749 * @old_state: atomic state object with old state structures
750 *
751 * This function updates all the various legacy modeset state pointers in
752 * connectors, encoders and crtcs. It also updates the timestamping constants
753 * used for precise vblank timestamps by calling
754 * drm_calc_timestamping_constants().
755 *
756 * Drivers can use this for building their own atomic commit if they don't have
757 * a pure helper-based modeset implementation.
758 */
759void
760drm_atomic_helper_update_legacy_modeset_state(struct drm_device *dev,
761 struct drm_atomic_state *old_state)
Daniel Vetter623369e2014-09-16 17:50:47 +0200762{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300763 struct drm_connector *connector;
764 struct drm_connector_state *old_conn_state;
765 struct drm_crtc *crtc;
766 struct drm_crtc_state *old_crtc_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200767 int i;
768
Maarten Lankhorst8c103422015-07-27 13:24:29 +0200769 /* clear out existing links and update dpms */
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300770 for_each_connector_in_state(old_state, connector, old_conn_state, i) {
Maarten Lankhorst8c103422015-07-27 13:24:29 +0200771 if (connector->encoder) {
772 WARN_ON(!connector->encoder->crtc);
Daniel Vetter623369e2014-09-16 17:50:47 +0200773
Maarten Lankhorst8c103422015-07-27 13:24:29 +0200774 connector->encoder->crtc = NULL;
775 connector->encoder = NULL;
776 }
Daniel Vetter623369e2014-09-16 17:50:47 +0200777
Maarten Lankhorst8c103422015-07-27 13:24:29 +0200778 crtc = connector->state->crtc;
779 if ((!crtc && old_conn_state->crtc) ||
780 (crtc && drm_atomic_crtc_needs_modeset(crtc->state))) {
781 struct drm_property *dpms_prop =
782 dev->mode_config.dpms_property;
783 int mode = DRM_MODE_DPMS_OFF;
784
785 if (crtc && crtc->state->active)
786 mode = DRM_MODE_DPMS_ON;
787
788 connector->dpms = mode;
789 drm_object_property_set_value(&connector->base,
790 dpms_prop, mode);
791 }
Daniel Vetter623369e2014-09-16 17:50:47 +0200792 }
793
794 /* set new links */
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300795 for_each_connector_in_state(old_state, connector, old_conn_state, i) {
796 if (!connector->state->crtc)
Daniel Vetter623369e2014-09-16 17:50:47 +0200797 continue;
798
799 if (WARN_ON(!connector->state->best_encoder))
800 continue;
801
802 connector->encoder = connector->state->best_encoder;
803 connector->encoder->crtc = connector->state->crtc;
804 }
805
806 /* set legacy state in the crtc structure */
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300807 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Maarten Lankhorst26608012015-07-16 15:51:01 +0200808 struct drm_plane *primary = crtc->primary;
809
Daniel Vetter623369e2014-09-16 17:50:47 +0200810 crtc->mode = crtc->state->mode;
811 crtc->enabled = crtc->state->enable;
Maarten Lankhorst26608012015-07-16 15:51:01 +0200812
813 if (drm_atomic_get_existing_plane_state(old_state, primary) &&
814 primary->state->crtc == crtc) {
815 crtc->x = primary->state->src_x >> 16;
816 crtc->y = primary->state->src_y >> 16;
817 }
Daniel Vetter3d51d2d2015-05-12 15:21:06 +0200818
819 if (crtc->state->enable)
820 drm_calc_timestamping_constants(crtc,
821 &crtc->state->adjusted_mode);
Daniel Vetter623369e2014-09-16 17:50:47 +0200822 }
823}
Daniel Vetter4c18d302015-05-12 15:27:37 +0200824EXPORT_SYMBOL(drm_atomic_helper_update_legacy_modeset_state);
Daniel Vetter623369e2014-09-16 17:50:47 +0200825
826static void
827crtc_set_mode(struct drm_device *dev, struct drm_atomic_state *old_state)
828{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300829 struct drm_crtc *crtc;
830 struct drm_crtc_state *old_crtc_state;
831 struct drm_connector *connector;
832 struct drm_connector_state *old_conn_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200833 int i;
834
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300835 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Ville Syrjäläb5ceff22015-03-10 14:35:20 +0200836 const struct drm_crtc_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200837
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300838 if (!crtc->state->mode_changed)
Daniel Vetter623369e2014-09-16 17:50:47 +0200839 continue;
840
841 funcs = crtc->helper_private;
842
Daniel Vetterc982bd92015-02-22 12:24:20 +0100843 if (crtc->state->enable && funcs->mode_set_nofb) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200844 DRM_DEBUG_ATOMIC("modeset on [CRTC:%d:%s]\n",
845 crtc->base.id, crtc->name);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100846
Daniel Vetter623369e2014-09-16 17:50:47 +0200847 funcs->mode_set_nofb(crtc);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100848 }
Daniel Vetter623369e2014-09-16 17:50:47 +0200849 }
850
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300851 for_each_connector_in_state(old_state, connector, old_conn_state, i) {
Ville Syrjäläb5ceff22015-03-10 14:35:20 +0200852 const struct drm_encoder_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200853 struct drm_crtc_state *new_crtc_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200854 struct drm_encoder *encoder;
855 struct drm_display_mode *mode, *adjusted_mode;
856
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300857 if (!connector->state->best_encoder)
Daniel Vetter623369e2014-09-16 17:50:47 +0200858 continue;
859
860 encoder = connector->state->best_encoder;
861 funcs = encoder->helper_private;
862 new_crtc_state = connector->state->crtc->state;
863 mode = &new_crtc_state->mode;
864 adjusted_mode = &new_crtc_state->adjusted_mode;
865
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100866 if (!new_crtc_state->mode_changed)
867 continue;
868
Daniel Vetter17a38d92015-02-22 12:24:16 +0100869 DRM_DEBUG_ATOMIC("modeset on [ENCODER:%d:%s]\n",
870 encoder->base.id, encoder->name);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100871
Daniel Vetter623369e2014-09-16 17:50:47 +0200872 /*
873 * Each encoder has at most one connector (since we always steal
John Hunterf98bd3e2015-03-17 15:30:26 +0800874 * it away), so we won't call mode_set hooks twice.
Daniel Vetter623369e2014-09-16 17:50:47 +0200875 */
Noralf Trønnes28276352016-05-11 18:09:20 +0200876 if (funcs && funcs->mode_set)
Daniel Vetterc982bd92015-02-22 12:24:20 +0100877 funcs->mode_set(encoder, mode, adjusted_mode);
Daniel Vetter623369e2014-09-16 17:50:47 +0200878
Archit Taneja862e6862015-05-21 11:03:16 +0530879 drm_bridge_mode_set(encoder->bridge, mode, adjusted_mode);
Daniel Vetter623369e2014-09-16 17:50:47 +0200880 }
881}
882
883/**
Daniel Vetter1af434a2015-02-22 12:24:19 +0100884 * drm_atomic_helper_commit_modeset_disables - modeset commit to disable outputs
Daniel Vetter623369e2014-09-16 17:50:47 +0200885 * @dev: DRM device
Laurent Pincharta072f802015-02-22 12:24:18 +0100886 * @old_state: atomic state object with old state structures
Daniel Vetter623369e2014-09-16 17:50:47 +0200887 *
Daniel Vetter1af434a2015-02-22 12:24:19 +0100888 * This function shuts down all the outputs that need to be shut down and
Daniel Vetter623369e2014-09-16 17:50:47 +0200889 * prepares them (if required) with the new mode.
Daniel Vetter1af434a2015-02-22 12:24:19 +0100890 *
Laurent Pinchart60acc4e2015-05-27 15:05:42 +0300891 * For compatibility with legacy crtc helpers this should be called before
Daniel Vetter1af434a2015-02-22 12:24:19 +0100892 * drm_atomic_helper_commit_planes(), which is what the default commit function
893 * does. But drivers with different needs can group the modeset commits together
894 * and do the plane commits at the end. This is useful for drivers doing runtime
895 * PM since planes updates then only happen when the CRTC is actually enabled.
Daniel Vetter623369e2014-09-16 17:50:47 +0200896 */
Daniel Vetter1af434a2015-02-22 12:24:19 +0100897void drm_atomic_helper_commit_modeset_disables(struct drm_device *dev,
898 struct drm_atomic_state *old_state)
Daniel Vetter623369e2014-09-16 17:50:47 +0200899{
Laurent Pincharta072f802015-02-22 12:24:18 +0100900 disable_outputs(dev, old_state);
Daniel Vetter4c18d302015-05-12 15:27:37 +0200901
902 drm_atomic_helper_update_legacy_modeset_state(dev, old_state);
903
Laurent Pincharta072f802015-02-22 12:24:18 +0100904 crtc_set_mode(dev, old_state);
Daniel Vetter623369e2014-09-16 17:50:47 +0200905}
Daniel Vetter1af434a2015-02-22 12:24:19 +0100906EXPORT_SYMBOL(drm_atomic_helper_commit_modeset_disables);
Daniel Vetter623369e2014-09-16 17:50:47 +0200907
908/**
Daniel Vetter1af434a2015-02-22 12:24:19 +0100909 * drm_atomic_helper_commit_modeset_enables - modeset commit to enable outputs
Daniel Vetter623369e2014-09-16 17:50:47 +0200910 * @dev: DRM device
911 * @old_state: atomic state object with old state structures
912 *
Daniel Vetter1af434a2015-02-22 12:24:19 +0100913 * This function enables all the outputs with the new configuration which had to
914 * be turned off for the update.
915 *
Laurent Pinchart60acc4e2015-05-27 15:05:42 +0300916 * For compatibility with legacy crtc helpers this should be called after
Daniel Vetter1af434a2015-02-22 12:24:19 +0100917 * drm_atomic_helper_commit_planes(), which is what the default commit function
918 * does. But drivers with different needs can group the modeset commits together
919 * and do the plane commits at the end. This is useful for drivers doing runtime
920 * PM since planes updates then only happen when the CRTC is actually enabled.
Daniel Vetter623369e2014-09-16 17:50:47 +0200921 */
Daniel Vetter1af434a2015-02-22 12:24:19 +0100922void drm_atomic_helper_commit_modeset_enables(struct drm_device *dev,
923 struct drm_atomic_state *old_state)
Daniel Vetter623369e2014-09-16 17:50:47 +0200924{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300925 struct drm_crtc *crtc;
926 struct drm_crtc_state *old_crtc_state;
927 struct drm_connector *connector;
928 struct drm_connector_state *old_conn_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200929 int i;
930
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300931 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Ville Syrjäläb5ceff22015-03-10 14:35:20 +0200932 const struct drm_crtc_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200933
934 /* Need to filter out CRTCs where only planes change. */
Daniel Vetter2465ff62015-06-18 09:58:55 +0200935 if (!drm_atomic_crtc_needs_modeset(crtc->state))
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100936 continue;
937
938 if (!crtc->state->active)
Daniel Vetter623369e2014-09-16 17:50:47 +0200939 continue;
940
941 funcs = crtc->helper_private;
942
Daniel Vetteree0a89c2015-01-22 16:36:24 +0100943 if (crtc->state->enable) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200944 DRM_DEBUG_ATOMIC("enabling [CRTC:%d:%s]\n",
945 crtc->base.id, crtc->name);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100946
Daniel Vetteree0a89c2015-01-22 16:36:24 +0100947 if (funcs->enable)
948 funcs->enable(crtc);
949 else
950 funcs->commit(crtc);
951 }
Daniel Vetter623369e2014-09-16 17:50:47 +0200952 }
953
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300954 for_each_connector_in_state(old_state, connector, old_conn_state, i) {
Ville Syrjäläb5ceff22015-03-10 14:35:20 +0200955 const struct drm_encoder_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200956 struct drm_encoder *encoder;
957
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300958 if (!connector->state->best_encoder)
Daniel Vetter623369e2014-09-16 17:50:47 +0200959 continue;
960
Daniel Vetter4218a322015-03-26 22:18:40 +0100961 if (!connector->state->crtc->state->active ||
Daniel Vetter2465ff62015-06-18 09:58:55 +0200962 !drm_atomic_crtc_needs_modeset(connector->state->crtc->state))
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100963 continue;
964
Daniel Vetter623369e2014-09-16 17:50:47 +0200965 encoder = connector->state->best_encoder;
966 funcs = encoder->helper_private;
967
Daniel Vetter17a38d92015-02-22 12:24:16 +0100968 DRM_DEBUG_ATOMIC("enabling [ENCODER:%d:%s]\n",
969 encoder->base.id, encoder->name);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100970
Daniel Vetter623369e2014-09-16 17:50:47 +0200971 /*
972 * Each encoder has at most one connector (since we always steal
John Hunterf98bd3e2015-03-17 15:30:26 +0800973 * it away), so we won't call enable hooks twice.
Daniel Vetter623369e2014-09-16 17:50:47 +0200974 */
Archit Taneja862e6862015-05-21 11:03:16 +0530975 drm_bridge_pre_enable(encoder->bridge);
Daniel Vetter623369e2014-09-16 17:50:47 +0200976
Noralf Trønnes28276352016-05-11 18:09:20 +0200977 if (funcs) {
978 if (funcs->enable)
979 funcs->enable(encoder);
980 else if (funcs->commit)
981 funcs->commit(encoder);
982 }
Daniel Vetter623369e2014-09-16 17:50:47 +0200983
Archit Taneja862e6862015-05-21 11:03:16 +0530984 drm_bridge_enable(encoder->bridge);
Daniel Vetter623369e2014-09-16 17:50:47 +0200985 }
986}
Daniel Vetter1af434a2015-02-22 12:24:19 +0100987EXPORT_SYMBOL(drm_atomic_helper_commit_modeset_enables);
Daniel Vetter623369e2014-09-16 17:50:47 +0200988
Rob Clark4c5b7f32016-03-18 19:14:55 -0400989/**
990 * drm_atomic_helper_wait_for_fences - wait for fences stashed in plane state
991 * @dev: DRM device
992 * @state: atomic state object with old state structures
993 *
994 * For implicit sync, driver should fish the exclusive fence out from the
995 * incoming fb's and stash it in the drm_plane_state. This is called after
996 * drm_atomic_helper_swap_state() so it uses the current plane state (and
997 * just uses the atomic state to find the changed planes)
998 */
999void drm_atomic_helper_wait_for_fences(struct drm_device *dev,
Daniel Vettere2330f02014-10-29 11:34:56 +01001000 struct drm_atomic_state *state)
1001{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001002 struct drm_plane *plane;
1003 struct drm_plane_state *plane_state;
Daniel Vettere2330f02014-10-29 11:34:56 +01001004 int i;
1005
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001006 for_each_plane_in_state(state, plane, plane_state, i) {
1007 if (!plane->state->fence)
Daniel Vettere2330f02014-10-29 11:34:56 +01001008 continue;
1009
1010 WARN_ON(!plane->state->fb);
1011
1012 fence_wait(plane->state->fence, false);
1013 fence_put(plane->state->fence);
1014 plane->state->fence = NULL;
1015 }
1016}
Rob Clark4c5b7f32016-03-18 19:14:55 -04001017EXPORT_SYMBOL(drm_atomic_helper_wait_for_fences);
Daniel Vettere2330f02014-10-29 11:34:56 +01001018
John Keepingc2409062016-01-19 10:46:58 +00001019/**
1020 * drm_atomic_helper_framebuffer_changed - check if framebuffer has changed
1021 * @dev: DRM device
1022 * @old_state: atomic state object with old state structures
1023 * @crtc: DRM crtc
1024 *
1025 * Checks whether the framebuffer used for this CRTC changes as a result of
1026 * the atomic update. This is useful for drivers which cannot use
1027 * drm_atomic_helper_wait_for_vblanks() and need to reimplement its
1028 * functionality.
1029 *
1030 * Returns:
1031 * true if the framebuffer changed.
1032 */
1033bool drm_atomic_helper_framebuffer_changed(struct drm_device *dev,
1034 struct drm_atomic_state *old_state,
1035 struct drm_crtc *crtc)
Daniel Vetterab58e332014-11-24 20:42:42 +01001036{
1037 struct drm_plane *plane;
1038 struct drm_plane_state *old_plane_state;
Daniel Vetterab58e332014-11-24 20:42:42 +01001039 int i;
1040
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001041 for_each_plane_in_state(old_state, plane, old_plane_state, i) {
Daniel Vetterab58e332014-11-24 20:42:42 +01001042 if (plane->state->crtc != crtc &&
1043 old_plane_state->crtc != crtc)
1044 continue;
1045
1046 if (plane->state->fb != old_plane_state->fb)
1047 return true;
1048 }
1049
1050 return false;
1051}
John Keepingc2409062016-01-19 10:46:58 +00001052EXPORT_SYMBOL(drm_atomic_helper_framebuffer_changed);
Daniel Vetterab58e332014-11-24 20:42:42 +01001053
Rob Clark5ee32292014-11-11 19:38:59 -05001054/**
1055 * drm_atomic_helper_wait_for_vblanks - wait for vblank on crtcs
1056 * @dev: DRM device
1057 * @old_state: atomic state object with old state structures
1058 *
1059 * Helper to, after atomic commit, wait for vblanks on all effected
1060 * crtcs (ie. before cleaning up old framebuffers using
Daniel Vetterab58e332014-11-24 20:42:42 +01001061 * drm_atomic_helper_cleanup_planes()). It will only wait on crtcs where the
1062 * framebuffers have actually changed to optimize for the legacy cursor and
1063 * plane update use-case.
Rob Clark5ee32292014-11-11 19:38:59 -05001064 */
1065void
1066drm_atomic_helper_wait_for_vblanks(struct drm_device *dev,
1067 struct drm_atomic_state *old_state)
Daniel Vetter623369e2014-09-16 17:50:47 +02001068{
1069 struct drm_crtc *crtc;
1070 struct drm_crtc_state *old_crtc_state;
Daniel Vetter623369e2014-09-16 17:50:47 +02001071 int i, ret;
1072
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001073 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Daniel Vetter623369e2014-09-16 17:50:47 +02001074 /* No one cares about the old state, so abuse it for tracking
1075 * and store whether we hold a vblank reference (and should do a
1076 * vblank wait) in the ->enable boolean. */
1077 old_crtc_state->enable = false;
1078
1079 if (!crtc->state->enable)
1080 continue;
1081
Daniel Vetterf02ad902015-01-22 16:36:23 +01001082 /* Legacy cursor ioctls are completely unsynced, and userspace
1083 * relies on that (by doing tons of cursor updates). */
1084 if (old_state->legacy_cursor_update)
1085 continue;
1086
John Keepingc2409062016-01-19 10:46:58 +00001087 if (!drm_atomic_helper_framebuffer_changed(dev,
1088 old_state, crtc))
Daniel Vetterab58e332014-11-24 20:42:42 +01001089 continue;
1090
Daniel Vetter623369e2014-09-16 17:50:47 +02001091 ret = drm_crtc_vblank_get(crtc);
1092 if (ret != 0)
1093 continue;
1094
1095 old_crtc_state->enable = true;
Thierry Redingd4853632015-08-12 17:00:35 +02001096 old_crtc_state->last_vblank_count = drm_crtc_vblank_count(crtc);
Daniel Vetter623369e2014-09-16 17:50:47 +02001097 }
1098
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001099 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
1100 if (!old_crtc_state->enable)
Daniel Vetter623369e2014-09-16 17:50:47 +02001101 continue;
1102
1103 ret = wait_event_timeout(dev->vblank[i].queue,
1104 old_crtc_state->last_vblank_count !=
Thierry Redingd4853632015-08-12 17:00:35 +02001105 drm_crtc_vblank_count(crtc),
Daniel Vetter623369e2014-09-16 17:50:47 +02001106 msecs_to_jiffies(50));
1107
Ville Syrjälä8d4d0d72016-04-18 14:29:33 +03001108 WARN(!ret, "[CRTC:%d] vblank wait timed out\n", crtc->base.id);
1109
Daniel Vetter623369e2014-09-16 17:50:47 +02001110 drm_crtc_vblank_put(crtc);
1111 }
1112}
Rob Clark5ee32292014-11-11 19:38:59 -05001113EXPORT_SYMBOL(drm_atomic_helper_wait_for_vblanks);
Daniel Vetter623369e2014-09-16 17:50:47 +02001114
1115/**
1116 * drm_atomic_helper_commit - commit validated state object
1117 * @dev: DRM device
1118 * @state: the driver state object
Maarten Lankhorst286dbb82016-04-26 16:11:34 +02001119 * @nonblocking: whether nonblocking behavior is requested.
Daniel Vetter623369e2014-09-16 17:50:47 +02001120 *
1121 * This function commits a with drm_atomic_helper_check() pre-validated state
1122 * object. This can still fail when e.g. the framebuffer reservation fails. For
Maarten Lankhorst286dbb82016-04-26 16:11:34 +02001123 * now this doesn't implement nonblocking commits.
Daniel Vetter623369e2014-09-16 17:50:47 +02001124 *
Maarten Lankhorst286dbb82016-04-26 16:11:34 +02001125 * Note that right now this function does not support nonblocking commits, hence
Daniel Vetter6e48ae32015-09-08 13:52:45 +02001126 * driver writers must implement their own version for now. Also note that the
1127 * default ordering of how the various stages are called is to match the legacy
1128 * modeset helper library closest. One peculiarity of that is that it doesn't
1129 * mesh well with runtime PM at all.
1130 *
1131 * For drivers supporting runtime PM the recommended sequence is
1132 *
1133 * drm_atomic_helper_commit_modeset_disables(dev, state);
1134 *
1135 * drm_atomic_helper_commit_modeset_enables(dev, state);
1136 *
1137 * drm_atomic_helper_commit_planes(dev, state, true);
1138 *
1139 * See the kerneldoc entries for these three functions for more details.
1140 *
Daniel Vetter623369e2014-09-16 17:50:47 +02001141 * RETURNS
1142 * Zero for success or -errno.
1143 */
1144int drm_atomic_helper_commit(struct drm_device *dev,
1145 struct drm_atomic_state *state,
Maarten Lankhorst286dbb82016-04-26 16:11:34 +02001146 bool nonblock)
Daniel Vetter623369e2014-09-16 17:50:47 +02001147{
1148 int ret;
1149
Maarten Lankhorst286dbb82016-04-26 16:11:34 +02001150 if (nonblock)
Daniel Vetter623369e2014-09-16 17:50:47 +02001151 return -EBUSY;
1152
1153 ret = drm_atomic_helper_prepare_planes(dev, state);
1154 if (ret)
1155 return ret;
1156
1157 /*
1158 * This is the point of no return - everything below never fails except
1159 * when the hw goes bonghits. Which means we can commit the new state on
1160 * the software side now.
1161 */
1162
1163 drm_atomic_helper_swap_state(dev, state);
1164
1165 /*
1166 * Everything below can be run asynchronously without the need to grab
John Hunterf98bd3e2015-03-17 15:30:26 +08001167 * any modeset locks at all under one condition: It must be guaranteed
Daniel Vetter623369e2014-09-16 17:50:47 +02001168 * that the asynchronous work has either been cancelled (if the driver
1169 * supports it, which at least requires that the framebuffers get
1170 * cleaned up with drm_atomic_helper_cleanup_planes()) or completed
1171 * before the new state gets committed on the software side with
1172 * drm_atomic_helper_swap_state().
1173 *
1174 * This scheme allows new atomic state updates to be prepared and
1175 * checked in parallel to the asynchronous completion of the previous
1176 * update. Which is important since compositors need to figure out the
1177 * composition of the next frame right after having submitted the
1178 * current layout.
1179 */
1180
Rob Clark4c5b7f32016-03-18 19:14:55 -04001181 drm_atomic_helper_wait_for_fences(dev, state);
Daniel Vettere2330f02014-10-29 11:34:56 +01001182
Daniel Vetter1af434a2015-02-22 12:24:19 +01001183 drm_atomic_helper_commit_modeset_disables(dev, state);
Daniel Vetter623369e2014-09-16 17:50:47 +02001184
Daniel Vetteraef9dbb2015-09-08 12:02:07 +02001185 drm_atomic_helper_commit_planes(dev, state, false);
Daniel Vetter623369e2014-09-16 17:50:47 +02001186
Daniel Vetter1af434a2015-02-22 12:24:19 +01001187 drm_atomic_helper_commit_modeset_enables(dev, state);
Daniel Vetter623369e2014-09-16 17:50:47 +02001188
Rob Clark5ee32292014-11-11 19:38:59 -05001189 drm_atomic_helper_wait_for_vblanks(dev, state);
Daniel Vetter623369e2014-09-16 17:50:47 +02001190
1191 drm_atomic_helper_cleanup_planes(dev, state);
1192
1193 drm_atomic_state_free(state);
1194
1195 return 0;
1196}
1197EXPORT_SYMBOL(drm_atomic_helper_commit);
1198
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001199/**
Maarten Lankhorst286dbb82016-04-26 16:11:34 +02001200 * DOC: implementing nonblocking commit
Daniel Vettere8c833a2014-07-27 18:30:19 +02001201 *
Maarten Lankhorst286dbb82016-04-26 16:11:34 +02001202 * For now the atomic helpers don't support nonblocking commit directly. If
1203 * there is real need it could be added though, using the dma-buf fence
1204 * infrastructure for generic synchronization with outstanding rendering.
Daniel Vettere8c833a2014-07-27 18:30:19 +02001205 *
Maarten Lankhorst286dbb82016-04-26 16:11:34 +02001206 * For now drivers have to implement nonblocking commit themselves, with the
1207 * following sequence being the recommended one:
Daniel Vettere8c833a2014-07-27 18:30:19 +02001208 *
1209 * 1. Run drm_atomic_helper_prepare_planes() first. This is the only function
1210 * which commit needs to call which can fail, so we want to run it first and
1211 * synchronously.
1212 *
Maarten Lankhorst286dbb82016-04-26 16:11:34 +02001213 * 2. Synchronize with any outstanding nonblocking commit worker threads which
Daniel Vettere8c833a2014-07-27 18:30:19 +02001214 * might be affected the new state update. This can be done by either cancelling
1215 * or flushing the work items, depending upon whether the driver can deal with
1216 * cancelled updates. Note that it is important to ensure that the framebuffer
1217 * cleanup is still done when cancelling.
1218 *
1219 * For sufficient parallelism it is recommended to have a work item per crtc
1220 * (for updates which don't touch global state) and a global one. Then we only
1221 * need to synchronize with the crtc work items for changed crtcs and the global
1222 * work item, which allows nice concurrent updates on disjoint sets of crtcs.
1223 *
1224 * 3. The software state is updated synchronously with
Daniel Vetter26196f72015-08-25 16:26:03 +02001225 * drm_atomic_helper_swap_state(). Doing this under the protection of all modeset
Daniel Vettere8c833a2014-07-27 18:30:19 +02001226 * locks means concurrent callers never see inconsistent state. And doing this
Maarten Lankhorst286dbb82016-04-26 16:11:34 +02001227 * while it's guaranteed that no relevant nonblocking worker runs means that
1228 * nonblocking workers do not need grab any locks. Actually they must not grab
1229 * locks, for otherwise the work flushing will deadlock.
Daniel Vettere8c833a2014-07-27 18:30:19 +02001230 *
1231 * 4. Schedule a work item to do all subsequent steps, using the split-out
1232 * commit helpers: a) pre-plane commit b) plane commit c) post-plane commit and
1233 * then cleaning up the framebuffers after the old framebuffer is no longer
1234 * being displayed.
1235 */
1236
1237/**
Daniel Vetter2e3afd42015-02-26 14:17:38 +01001238 * drm_atomic_helper_prepare_planes - prepare plane resources before commit
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001239 * @dev: DRM device
Daniel Vetter2e3afd42015-02-26 14:17:38 +01001240 * @state: atomic state object with new state structures
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001241 *
1242 * This function prepares plane state, specifically framebuffers, for the new
1243 * configuration. If any failure is encountered this function will call
1244 * ->cleanup_fb on any already successfully prepared framebuffer.
1245 *
1246 * Returns:
1247 * 0 on success, negative error code on failure.
1248 */
1249int drm_atomic_helper_prepare_planes(struct drm_device *dev,
1250 struct drm_atomic_state *state)
1251{
1252 int nplanes = dev->mode_config.num_total_plane;
1253 int ret, i;
1254
1255 for (i = 0; i < nplanes; i++) {
Ville Syrjäläb5ceff22015-03-10 14:35:20 +02001256 const struct drm_plane_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001257 struct drm_plane *plane = state->planes[i];
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +00001258 struct drm_plane_state *plane_state = state->plane_states[i];
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001259
1260 if (!plane)
1261 continue;
1262
1263 funcs = plane->helper_private;
1264
Maarten Lankhorst844f9112015-09-02 10:42:40 +02001265 if (funcs->prepare_fb) {
1266 ret = funcs->prepare_fb(plane, plane_state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001267 if (ret)
1268 goto fail;
1269 }
1270 }
1271
1272 return 0;
1273
1274fail:
1275 for (i--; i >= 0; i--) {
Ville Syrjäläb5ceff22015-03-10 14:35:20 +02001276 const struct drm_plane_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001277 struct drm_plane *plane = state->planes[i];
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +00001278 struct drm_plane_state *plane_state = state->plane_states[i];
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001279
1280 if (!plane)
1281 continue;
1282
1283 funcs = plane->helper_private;
1284
Maarten Lankhorst844f9112015-09-02 10:42:40 +02001285 if (funcs->cleanup_fb)
1286 funcs->cleanup_fb(plane, plane_state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001287
1288 }
1289
1290 return ret;
1291}
1292EXPORT_SYMBOL(drm_atomic_helper_prepare_planes);
1293
Daniel Vetteraef9dbb2015-09-08 12:02:07 +02001294bool plane_crtc_active(struct drm_plane_state *state)
1295{
1296 return state->crtc && state->crtc->state->active;
1297}
1298
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001299/**
1300 * drm_atomic_helper_commit_planes - commit plane state
1301 * @dev: DRM device
Daniel Vetterb0fcfc82014-11-19 18:38:11 +01001302 * @old_state: atomic state object with old state structures
Daniel Vetteraef9dbb2015-09-08 12:02:07 +02001303 * @active_only: Only commit on active CRTC if set
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001304 *
1305 * This function commits the new plane state using the plane and atomic helper
1306 * functions for planes and crtcs. It assumes that the atomic state has already
1307 * been pushed into the relevant object state pointers, since this step can no
1308 * longer fail.
1309 *
Daniel Vetterb0fcfc82014-11-19 18:38:11 +01001310 * It still requires the global state object @old_state to know which planes and
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001311 * crtcs need to be updated though.
Maarten Lankhorstde28d022015-05-19 16:41:01 +02001312 *
1313 * Note that this function does all plane updates across all CRTCs in one step.
1314 * If the hardware can't support this approach look at
1315 * drm_atomic_helper_commit_planes_on_crtc() instead.
Daniel Vetter6e48ae32015-09-08 13:52:45 +02001316 *
1317 * Plane parameters can be updated by applications while the associated CRTC is
1318 * disabled. The DRM/KMS core will store the parameters in the plane state,
1319 * which will be available to the driver when the CRTC is turned on. As a result
1320 * most drivers don't need to be immediately notified of plane updates for a
1321 * disabled CRTC.
1322 *
1323 * Unless otherwise needed, drivers are advised to set the @active_only
1324 * parameters to true in order not to receive plane update notifications related
1325 * to a disabled CRTC. This avoids the need to manually ignore plane updates in
1326 * driver code when the driver and/or hardware can't or just don't need to deal
1327 * with updates on disabled CRTCs, for example when supporting runtime PM.
1328 *
1329 * The drm_atomic_helper_commit() default implementation only sets @active_only
1330 * to false to most closely match the behaviour of the legacy helpers. This should
1331 * not be copied blindly by drivers.
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001332 */
1333void drm_atomic_helper_commit_planes(struct drm_device *dev,
Daniel Vetteraef9dbb2015-09-08 12:02:07 +02001334 struct drm_atomic_state *old_state,
1335 bool active_only)
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001336{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001337 struct drm_crtc *crtc;
1338 struct drm_crtc_state *old_crtc_state;
1339 struct drm_plane *plane;
1340 struct drm_plane_state *old_plane_state;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001341 int i;
1342
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001343 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Ville Syrjäläb5ceff22015-03-10 14:35:20 +02001344 const struct drm_crtc_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001345
1346 funcs = crtc->helper_private;
1347
1348 if (!funcs || !funcs->atomic_begin)
1349 continue;
1350
Daniel Vetteraef9dbb2015-09-08 12:02:07 +02001351 if (active_only && !crtc->state->active)
1352 continue;
1353
Maarten Lankhorst613d2b22015-07-21 13:28:58 +02001354 funcs->atomic_begin(crtc, old_crtc_state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001355 }
1356
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001357 for_each_plane_in_state(old_state, plane, old_plane_state, i) {
Ville Syrjäläb5ceff22015-03-10 14:35:20 +02001358 const struct drm_plane_helper_funcs *funcs;
Laurent Pinchart216c59d2015-09-11 00:07:19 +03001359 bool disabling;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001360
1361 funcs = plane->helper_private;
1362
Thierry Reding3cad4b62014-11-25 13:05:12 +01001363 if (!funcs)
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001364 continue;
1365
Laurent Pinchart216c59d2015-09-11 00:07:19 +03001366 disabling = drm_atomic_plane_disabling(plane, old_plane_state);
1367
1368 if (active_only) {
1369 /*
1370 * Skip planes related to inactive CRTCs. If the plane
1371 * is enabled use the state of the current CRTC. If the
1372 * plane is being disabled use the state of the old
1373 * CRTC to avoid skipping planes being disabled on an
1374 * active CRTC.
1375 */
1376 if (!disabling && !plane_crtc_active(plane->state))
1377 continue;
1378 if (disabling && !plane_crtc_active(old_plane_state))
1379 continue;
1380 }
Daniel Vetteraef9dbb2015-09-08 12:02:07 +02001381
Thierry Reding407b8bd2014-11-20 12:05:50 +01001382 /*
1383 * Special-case disabling the plane if drivers support it.
1384 */
Laurent Pinchart216c59d2015-09-11 00:07:19 +03001385 if (disabling && funcs->atomic_disable)
Thierry Reding407b8bd2014-11-20 12:05:50 +01001386 funcs->atomic_disable(plane, old_plane_state);
Laurent Pinchart216c59d2015-09-11 00:07:19 +03001387 else if (plane->state->crtc || disabling)
Thierry Reding407b8bd2014-11-20 12:05:50 +01001388 funcs->atomic_update(plane, old_plane_state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001389 }
1390
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001391 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Ville Syrjäläb5ceff22015-03-10 14:35:20 +02001392 const struct drm_crtc_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001393
1394 funcs = crtc->helper_private;
1395
1396 if (!funcs || !funcs->atomic_flush)
1397 continue;
1398
Daniel Vetteraef9dbb2015-09-08 12:02:07 +02001399 if (active_only && !crtc->state->active)
1400 continue;
1401
Maarten Lankhorst613d2b22015-07-21 13:28:58 +02001402 funcs->atomic_flush(crtc, old_crtc_state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001403 }
1404}
1405EXPORT_SYMBOL(drm_atomic_helper_commit_planes);
1406
1407/**
Maarten Lankhorstde28d022015-05-19 16:41:01 +02001408 * drm_atomic_helper_commit_planes_on_crtc - commit plane state for a crtc
1409 * @old_crtc_state: atomic state object with the old crtc state
1410 *
1411 * This function commits the new plane state using the plane and atomic helper
1412 * functions for planes on the specific crtc. It assumes that the atomic state
1413 * has already been pushed into the relevant object state pointers, since this
1414 * step can no longer fail.
1415 *
1416 * This function is useful when plane updates should be done crtc-by-crtc
1417 * instead of one global step like drm_atomic_helper_commit_planes() does.
1418 *
1419 * This function can only be savely used when planes are not allowed to move
1420 * between different CRTCs because this function doesn't handle inter-CRTC
1421 * depencies. Callers need to ensure that either no such depencies exist,
1422 * resolve them through ordering of commit calls or through some other means.
1423 */
1424void
1425drm_atomic_helper_commit_planes_on_crtc(struct drm_crtc_state *old_crtc_state)
1426{
1427 const struct drm_crtc_helper_funcs *crtc_funcs;
1428 struct drm_crtc *crtc = old_crtc_state->crtc;
1429 struct drm_atomic_state *old_state = old_crtc_state->state;
1430 struct drm_plane *plane;
1431 unsigned plane_mask;
1432
1433 plane_mask = old_crtc_state->plane_mask;
1434 plane_mask |= crtc->state->plane_mask;
1435
1436 crtc_funcs = crtc->helper_private;
1437 if (crtc_funcs && crtc_funcs->atomic_begin)
Maarten Lankhorst613d2b22015-07-21 13:28:58 +02001438 crtc_funcs->atomic_begin(crtc, old_crtc_state);
Maarten Lankhorstde28d022015-05-19 16:41:01 +02001439
1440 drm_for_each_plane_mask(plane, crtc->dev, plane_mask) {
1441 struct drm_plane_state *old_plane_state =
1442 drm_atomic_get_existing_plane_state(old_state, plane);
1443 const struct drm_plane_helper_funcs *plane_funcs;
1444
1445 plane_funcs = plane->helper_private;
1446
1447 if (!old_plane_state || !plane_funcs)
1448 continue;
1449
1450 WARN_ON(plane->state->crtc && plane->state->crtc != crtc);
1451
1452 if (drm_atomic_plane_disabling(plane, old_plane_state) &&
1453 plane_funcs->atomic_disable)
1454 plane_funcs->atomic_disable(plane, old_plane_state);
1455 else if (plane->state->crtc ||
1456 drm_atomic_plane_disabling(plane, old_plane_state))
1457 plane_funcs->atomic_update(plane, old_plane_state);
1458 }
1459
1460 if (crtc_funcs && crtc_funcs->atomic_flush)
Maarten Lankhorst613d2b22015-07-21 13:28:58 +02001461 crtc_funcs->atomic_flush(crtc, old_crtc_state);
Maarten Lankhorstde28d022015-05-19 16:41:01 +02001462}
1463EXPORT_SYMBOL(drm_atomic_helper_commit_planes_on_crtc);
1464
1465/**
Jyri Sarha6753ba92015-11-27 16:14:01 +02001466 * drm_atomic_helper_disable_planes_on_crtc - helper to disable CRTC's planes
1467 * @crtc: CRTC
1468 * @atomic: if set, synchronize with CRTC's atomic_begin/flush hooks
1469 *
1470 * Disables all planes associated with the given CRTC. This can be
1471 * used for instance in the CRTC helper disable callback to disable
1472 * all planes before shutting down the display pipeline.
1473 *
1474 * If the atomic-parameter is set the function calls the CRTC's
1475 * atomic_begin hook before and atomic_flush hook after disabling the
1476 * planes.
1477 *
1478 * It is a bug to call this function without having implemented the
1479 * ->atomic_disable() plane hook.
1480 */
1481void drm_atomic_helper_disable_planes_on_crtc(struct drm_crtc *crtc,
1482 bool atomic)
1483{
1484 const struct drm_crtc_helper_funcs *crtc_funcs =
1485 crtc->helper_private;
1486 struct drm_plane *plane;
1487
1488 if (atomic && crtc_funcs && crtc_funcs->atomic_begin)
1489 crtc_funcs->atomic_begin(crtc, NULL);
1490
1491 drm_for_each_plane(plane, crtc->dev) {
1492 const struct drm_plane_helper_funcs *plane_funcs =
1493 plane->helper_private;
1494
1495 if (plane->state->crtc != crtc || !plane_funcs)
1496 continue;
1497
1498 WARN_ON(!plane_funcs->atomic_disable);
1499 if (plane_funcs->atomic_disable)
1500 plane_funcs->atomic_disable(plane, NULL);
1501 }
1502
1503 if (atomic && crtc_funcs && crtc_funcs->atomic_flush)
1504 crtc_funcs->atomic_flush(crtc, NULL);
1505}
1506EXPORT_SYMBOL(drm_atomic_helper_disable_planes_on_crtc);
1507
1508/**
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001509 * drm_atomic_helper_cleanup_planes - cleanup plane resources after commit
1510 * @dev: DRM device
1511 * @old_state: atomic state object with old state structures
1512 *
1513 * This function cleans up plane state, specifically framebuffers, from the old
1514 * configuration. Hence the old configuration must be perserved in @old_state to
1515 * be able to call this function.
1516 *
1517 * This function must also be called on the new state when the atomic update
1518 * fails at any point after calling drm_atomic_helper_prepare_planes().
1519 */
1520void drm_atomic_helper_cleanup_planes(struct drm_device *dev,
1521 struct drm_atomic_state *old_state)
1522{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001523 struct drm_plane *plane;
1524 struct drm_plane_state *plane_state;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001525 int i;
1526
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001527 for_each_plane_in_state(old_state, plane, plane_state, i) {
Ville Syrjäläb5ceff22015-03-10 14:35:20 +02001528 const struct drm_plane_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001529
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001530 funcs = plane->helper_private;
1531
Maarten Lankhorst844f9112015-09-02 10:42:40 +02001532 if (funcs->cleanup_fb)
1533 funcs->cleanup_fb(plane, plane_state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001534 }
1535}
1536EXPORT_SYMBOL(drm_atomic_helper_cleanup_planes);
1537
1538/**
1539 * drm_atomic_helper_swap_state - store atomic state into current sw state
1540 * @dev: DRM device
1541 * @state: atomic state
1542 *
1543 * This function stores the atomic state into the current state pointers in all
1544 * driver objects. It should be called after all failing steps have been done
1545 * and succeeded, but before the actual hardware state is committed.
1546 *
1547 * For cleanup and error recovery the current state for all changed objects will
1548 * be swaped into @state.
1549 *
1550 * With that sequence it fits perfectly into the plane prepare/cleanup sequence:
1551 *
1552 * 1. Call drm_atomic_helper_prepare_planes() with the staged atomic state.
1553 *
1554 * 2. Do any other steps that might fail.
1555 *
1556 * 3. Put the staged state into the current state pointers with this function.
1557 *
1558 * 4. Actually commit the hardware state.
1559 *
Daniel Vetter26196f72015-08-25 16:26:03 +02001560 * 5. Call drm_atomic_helper_cleanup_planes() with @state, which since step 3
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001561 * contains the old state. Also do any other cleanup required with that state.
1562 */
1563void drm_atomic_helper_swap_state(struct drm_device *dev,
1564 struct drm_atomic_state *state)
1565{
1566 int i;
1567
Maarten Lankhorst5fff80b2016-02-17 08:32:05 +01001568 for (i = 0; i < state->num_connector; i++) {
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001569 struct drm_connector *connector = state->connectors[i];
1570
1571 if (!connector)
1572 continue;
1573
1574 connector->state->state = state;
1575 swap(state->connector_states[i], connector->state);
1576 connector->state->state = NULL;
1577 }
1578
1579 for (i = 0; i < dev->mode_config.num_crtc; i++) {
1580 struct drm_crtc *crtc = state->crtcs[i];
1581
1582 if (!crtc)
1583 continue;
1584
1585 crtc->state->state = state;
1586 swap(state->crtc_states[i], crtc->state);
1587 crtc->state->state = NULL;
1588 }
1589
1590 for (i = 0; i < dev->mode_config.num_total_plane; i++) {
1591 struct drm_plane *plane = state->planes[i];
1592
1593 if (!plane)
1594 continue;
1595
1596 plane->state->state = state;
1597 swap(state->plane_states[i], plane->state);
1598 plane->state->state = NULL;
1599 }
1600}
1601EXPORT_SYMBOL(drm_atomic_helper_swap_state);
Daniel Vetter042652e2014-07-27 13:46:52 +02001602
1603/**
1604 * drm_atomic_helper_update_plane - Helper for primary plane update using atomic
1605 * @plane: plane object to update
1606 * @crtc: owning CRTC of owning plane
1607 * @fb: framebuffer to flip onto plane
1608 * @crtc_x: x offset of primary plane on crtc
1609 * @crtc_y: y offset of primary plane on crtc
1610 * @crtc_w: width of primary plane rectangle on crtc
1611 * @crtc_h: height of primary plane rectangle on crtc
1612 * @src_x: x offset of @fb for panning
1613 * @src_y: y offset of @fb for panning
1614 * @src_w: width of source rectangle in @fb
1615 * @src_h: height of source rectangle in @fb
1616 *
1617 * Provides a default plane update handler using the atomic driver interface.
1618 *
1619 * RETURNS:
1620 * Zero on success, error code on failure
1621 */
1622int drm_atomic_helper_update_plane(struct drm_plane *plane,
1623 struct drm_crtc *crtc,
1624 struct drm_framebuffer *fb,
1625 int crtc_x, int crtc_y,
1626 unsigned int crtc_w, unsigned int crtc_h,
1627 uint32_t src_x, uint32_t src_y,
1628 uint32_t src_w, uint32_t src_h)
1629{
1630 struct drm_atomic_state *state;
1631 struct drm_plane_state *plane_state;
1632 int ret = 0;
1633
1634 state = drm_atomic_state_alloc(plane->dev);
1635 if (!state)
1636 return -ENOMEM;
1637
1638 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
1639retry:
1640 plane_state = drm_atomic_get_plane_state(state, plane);
1641 if (IS_ERR(plane_state)) {
1642 ret = PTR_ERR(plane_state);
1643 goto fail;
1644 }
1645
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01001646 ret = drm_atomic_set_crtc_for_plane(plane_state, crtc);
Daniel Vetter042652e2014-07-27 13:46:52 +02001647 if (ret != 0)
1648 goto fail;
Daniel Vetter321ebf02014-11-04 22:57:27 +01001649 drm_atomic_set_fb_for_plane(plane_state, fb);
Daniel Vetter042652e2014-07-27 13:46:52 +02001650 plane_state->crtc_x = crtc_x;
1651 plane_state->crtc_y = crtc_y;
Daniel Vetter042652e2014-07-27 13:46:52 +02001652 plane_state->crtc_w = crtc_w;
Ville Syrjälä02e6f372015-11-16 17:02:35 +02001653 plane_state->crtc_h = crtc_h;
Daniel Vetter042652e2014-07-27 13:46:52 +02001654 plane_state->src_x = src_x;
1655 plane_state->src_y = src_y;
Daniel Vetter042652e2014-07-27 13:46:52 +02001656 plane_state->src_w = src_w;
Ville Syrjälä02e6f372015-11-16 17:02:35 +02001657 plane_state->src_h = src_h;
Daniel Vetter042652e2014-07-27 13:46:52 +02001658
Daniel Vetter3671c582015-05-04 15:40:52 +02001659 if (plane == crtc->cursor)
1660 state->legacy_cursor_update = true;
1661
Daniel Vetter042652e2014-07-27 13:46:52 +02001662 ret = drm_atomic_commit(state);
1663 if (ret != 0)
1664 goto fail;
1665
1666 /* Driver takes ownership of state on successful commit. */
1667 return 0;
1668fail:
1669 if (ret == -EDEADLK)
1670 goto backoff;
1671
1672 drm_atomic_state_free(state);
1673
1674 return ret;
1675backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02001676 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01001677 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02001678
1679 /*
1680 * Someone might have exchanged the framebuffer while we dropped locks
1681 * in the backoff code. We need to fix up the fb refcount tracking the
1682 * core does for us.
1683 */
1684 plane->old_fb = plane->fb;
1685
1686 goto retry;
1687}
1688EXPORT_SYMBOL(drm_atomic_helper_update_plane);
1689
1690/**
1691 * drm_atomic_helper_disable_plane - Helper for primary plane disable using * atomic
1692 * @plane: plane to disable
1693 *
1694 * Provides a default plane disable handler using the atomic driver interface.
1695 *
1696 * RETURNS:
1697 * Zero on success, error code on failure
1698 */
1699int drm_atomic_helper_disable_plane(struct drm_plane *plane)
1700{
1701 struct drm_atomic_state *state;
1702 struct drm_plane_state *plane_state;
1703 int ret = 0;
1704
Jasper St. Pierreaa54e2e2014-11-20 19:59:15 -08001705 /*
1706 * FIXME: Without plane->crtc set we can't get at the implicit legacy
1707 * acquire context. The real fix will be to wire the acquire ctx through
1708 * everywhere we need it, but meanwhile prevent chaos by just skipping
1709 * this noop. The critical case is the cursor ioctls which a) only grab
1710 * crtc/cursor-plane locks (so we need the crtc to get at the right
1711 * acquire context) and b) can try to disable the plane multiple times.
1712 */
1713 if (!plane->crtc)
1714 return 0;
1715
Daniel Vetter042652e2014-07-27 13:46:52 +02001716 state = drm_atomic_state_alloc(plane->dev);
1717 if (!state)
1718 return -ENOMEM;
1719
1720 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(plane->crtc);
1721retry:
1722 plane_state = drm_atomic_get_plane_state(state, plane);
1723 if (IS_ERR(plane_state)) {
1724 ret = PTR_ERR(plane_state);
1725 goto fail;
1726 }
1727
Maarten Lankhorst24e79d02015-11-11 11:29:07 +01001728 if (plane_state->crtc && (plane == plane->crtc->cursor))
1729 plane_state->state->legacy_cursor_update = true;
1730
Rob Clarkbbb1e522015-08-25 15:35:58 -04001731 ret = __drm_atomic_helper_disable_plane(plane, plane_state);
Daniel Vetter042652e2014-07-27 13:46:52 +02001732 if (ret != 0)
1733 goto fail;
Daniel Vetterf02ad902015-01-22 16:36:23 +01001734
Daniel Vetter042652e2014-07-27 13:46:52 +02001735 ret = drm_atomic_commit(state);
1736 if (ret != 0)
1737 goto fail;
1738
1739 /* Driver takes ownership of state on successful commit. */
1740 return 0;
1741fail:
1742 if (ret == -EDEADLK)
1743 goto backoff;
1744
1745 drm_atomic_state_free(state);
1746
1747 return ret;
1748backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02001749 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01001750 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02001751
1752 /*
1753 * Someone might have exchanged the framebuffer while we dropped locks
1754 * in the backoff code. We need to fix up the fb refcount tracking the
1755 * core does for us.
1756 */
1757 plane->old_fb = plane->fb;
1758
1759 goto retry;
1760}
1761EXPORT_SYMBOL(drm_atomic_helper_disable_plane);
1762
Rob Clarkbbb1e522015-08-25 15:35:58 -04001763/* just used from fb-helper and atomic-helper: */
1764int __drm_atomic_helper_disable_plane(struct drm_plane *plane,
1765 struct drm_plane_state *plane_state)
1766{
1767 int ret;
1768
1769 ret = drm_atomic_set_crtc_for_plane(plane_state, NULL);
1770 if (ret != 0)
1771 return ret;
1772
1773 drm_atomic_set_fb_for_plane(plane_state, NULL);
1774 plane_state->crtc_x = 0;
1775 plane_state->crtc_y = 0;
Rob Clarkbbb1e522015-08-25 15:35:58 -04001776 plane_state->crtc_w = 0;
Ville Syrjälä02e6f372015-11-16 17:02:35 +02001777 plane_state->crtc_h = 0;
Rob Clarkbbb1e522015-08-25 15:35:58 -04001778 plane_state->src_x = 0;
1779 plane_state->src_y = 0;
Rob Clarkbbb1e522015-08-25 15:35:58 -04001780 plane_state->src_w = 0;
Ville Syrjälä02e6f372015-11-16 17:02:35 +02001781 plane_state->src_h = 0;
Rob Clarkbbb1e522015-08-25 15:35:58 -04001782
Rob Clarkbbb1e522015-08-25 15:35:58 -04001783 return 0;
1784}
1785
Daniel Vetter042652e2014-07-27 13:46:52 +02001786static int update_output_state(struct drm_atomic_state *state,
1787 struct drm_mode_set *set)
1788{
1789 struct drm_device *dev = set->crtc->dev;
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001790 struct drm_crtc *crtc;
1791 struct drm_crtc_state *crtc_state;
1792 struct drm_connector *connector;
Daniel Vetter042652e2014-07-27 13:46:52 +02001793 struct drm_connector_state *conn_state;
Maarten Lankhorst6ab520a2016-02-24 09:37:28 +01001794 int ret, i;
Daniel Vetter042652e2014-07-27 13:46:52 +02001795
1796 ret = drm_modeset_lock(&dev->mode_config.connection_mutex,
1797 state->acquire_ctx);
1798 if (ret)
1799 return ret;
1800
Maarten Lankhorst6ab520a2016-02-24 09:37:28 +01001801 /* First disable all connectors on the target crtc. */
1802 ret = drm_atomic_add_affected_connectors(state, set->crtc);
1803 if (ret)
1804 return ret;
Daniel Vetter042652e2014-07-27 13:46:52 +02001805
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001806 for_each_connector_in_state(state, connector, conn_state, i) {
Daniel Vetter042652e2014-07-27 13:46:52 +02001807 if (conn_state->crtc == set->crtc) {
1808 ret = drm_atomic_set_crtc_for_connector(conn_state,
1809 NULL);
1810 if (ret)
1811 return ret;
1812 }
Maarten Lankhorst6ab520a2016-02-24 09:37:28 +01001813 }
Daniel Vetter042652e2014-07-27 13:46:52 +02001814
Maarten Lankhorst6ab520a2016-02-24 09:37:28 +01001815 /* Then set all connectors from set->connectors on the target crtc */
1816 for (i = 0; i < set->num_connectors; i++) {
1817 conn_state = drm_atomic_get_connector_state(state,
1818 set->connectors[i]);
1819 if (IS_ERR(conn_state))
1820 return PTR_ERR(conn_state);
1821
1822 ret = drm_atomic_set_crtc_for_connector(conn_state,
1823 set->crtc);
1824 if (ret)
1825 return ret;
Daniel Vetter042652e2014-07-27 13:46:52 +02001826 }
1827
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001828 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Daniel Vetter042652e2014-07-27 13:46:52 +02001829 /* Don't update ->enable for the CRTC in the set_config request,
1830 * since a mismatch would indicate a bug in the upper layers.
1831 * The actual modeset code later on will catch any
1832 * inconsistencies here. */
1833 if (crtc == set->crtc)
1834 continue;
1835
Maarten Lankhorst14de6c42016-01-04 12:53:20 +01001836 if (!crtc_state->connector_mask) {
Laurent Pinchartc30f55a2015-06-22 13:37:46 +03001837 ret = drm_atomic_set_mode_prop_for_crtc(crtc_state,
1838 NULL);
1839 if (ret < 0)
1840 return ret;
1841
Maarten Lankhorst9b5edbf2015-06-01 08:59:53 +02001842 crtc_state->active = false;
Laurent Pinchartc30f55a2015-06-22 13:37:46 +03001843 }
Daniel Vetter042652e2014-07-27 13:46:52 +02001844 }
1845
1846 return 0;
1847}
1848
1849/**
1850 * drm_atomic_helper_set_config - set a new config from userspace
1851 * @set: mode set configuration
1852 *
1853 * Provides a default crtc set_config handler using the atomic driver interface.
1854 *
1855 * Returns:
1856 * Returns 0 on success, negative errno numbers on failure.
1857 */
1858int drm_atomic_helper_set_config(struct drm_mode_set *set)
1859{
1860 struct drm_atomic_state *state;
1861 struct drm_crtc *crtc = set->crtc;
Daniel Vetter042652e2014-07-27 13:46:52 +02001862 int ret = 0;
1863
1864 state = drm_atomic_state_alloc(crtc->dev);
1865 if (!state)
1866 return -ENOMEM;
1867
Maarten Lankhorst40616a22016-03-03 10:17:39 +01001868 state->legacy_set_config = true;
Daniel Vetter042652e2014-07-27 13:46:52 +02001869 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
1870retry:
Rob Clarkbbb1e522015-08-25 15:35:58 -04001871 ret = __drm_atomic_helper_set_config(set, state);
Daniel Stone819364d2015-05-26 14:36:48 +01001872 if (ret != 0)
1873 goto fail;
1874
Daniel Vetter042652e2014-07-27 13:46:52 +02001875 ret = drm_atomic_commit(state);
1876 if (ret != 0)
1877 goto fail;
1878
1879 /* Driver takes ownership of state on successful commit. */
1880 return 0;
1881fail:
1882 if (ret == -EDEADLK)
1883 goto backoff;
1884
1885 drm_atomic_state_free(state);
1886
1887 return ret;
1888backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02001889 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01001890 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02001891
1892 /*
1893 * Someone might have exchanged the framebuffer while we dropped locks
1894 * in the backoff code. We need to fix up the fb refcount tracking the
1895 * core does for us.
1896 */
1897 crtc->primary->old_fb = crtc->primary->fb;
1898
1899 goto retry;
1900}
1901EXPORT_SYMBOL(drm_atomic_helper_set_config);
1902
Rob Clarkbbb1e522015-08-25 15:35:58 -04001903/* just used from fb-helper and atomic-helper: */
1904int __drm_atomic_helper_set_config(struct drm_mode_set *set,
1905 struct drm_atomic_state *state)
1906{
1907 struct drm_crtc_state *crtc_state;
1908 struct drm_plane_state *primary_state;
1909 struct drm_crtc *crtc = set->crtc;
Ville Syrjälä83926112015-11-16 17:02:34 +02001910 int hdisplay, vdisplay;
Rob Clarkbbb1e522015-08-25 15:35:58 -04001911 int ret;
1912
1913 crtc_state = drm_atomic_get_crtc_state(state, crtc);
1914 if (IS_ERR(crtc_state))
1915 return PTR_ERR(crtc_state);
1916
1917 primary_state = drm_atomic_get_plane_state(state, crtc->primary);
1918 if (IS_ERR(primary_state))
1919 return PTR_ERR(primary_state);
1920
1921 if (!set->mode) {
1922 WARN_ON(set->fb);
1923 WARN_ON(set->num_connectors);
1924
1925 ret = drm_atomic_set_mode_for_crtc(crtc_state, NULL);
1926 if (ret != 0)
1927 return ret;
1928
1929 crtc_state->active = false;
1930
1931 ret = drm_atomic_set_crtc_for_plane(primary_state, NULL);
1932 if (ret != 0)
1933 return ret;
1934
1935 drm_atomic_set_fb_for_plane(primary_state, NULL);
1936
1937 goto commit;
1938 }
1939
1940 WARN_ON(!set->fb);
1941 WARN_ON(!set->num_connectors);
1942
1943 ret = drm_atomic_set_mode_for_crtc(crtc_state, set->mode);
1944 if (ret != 0)
1945 return ret;
1946
1947 crtc_state->active = true;
1948
1949 ret = drm_atomic_set_crtc_for_plane(primary_state, crtc);
1950 if (ret != 0)
1951 return ret;
1952
Ville Syrjälä83926112015-11-16 17:02:34 +02001953 drm_crtc_get_hv_timing(set->mode, &hdisplay, &vdisplay);
1954
Rob Clarkbbb1e522015-08-25 15:35:58 -04001955 drm_atomic_set_fb_for_plane(primary_state, set->fb);
1956 primary_state->crtc_x = 0;
1957 primary_state->crtc_y = 0;
Ville Syrjälä83926112015-11-16 17:02:34 +02001958 primary_state->crtc_w = hdisplay;
Ville Syrjälä02e6f372015-11-16 17:02:35 +02001959 primary_state->crtc_h = vdisplay;
Rob Clarkbbb1e522015-08-25 15:35:58 -04001960 primary_state->src_x = set->x << 16;
1961 primary_state->src_y = set->y << 16;
Ville Syrjälä41121242015-10-15 20:39:59 +03001962 if (primary_state->rotation & (BIT(DRM_ROTATE_90) | BIT(DRM_ROTATE_270))) {
Ville Syrjälä83926112015-11-16 17:02:34 +02001963 primary_state->src_w = vdisplay << 16;
Ville Syrjälä02e6f372015-11-16 17:02:35 +02001964 primary_state->src_h = hdisplay << 16;
Ville Syrjälä41121242015-10-15 20:39:59 +03001965 } else {
Ville Syrjälä83926112015-11-16 17:02:34 +02001966 primary_state->src_w = hdisplay << 16;
Ville Syrjälä02e6f372015-11-16 17:02:35 +02001967 primary_state->src_h = vdisplay << 16;
Ville Syrjälä41121242015-10-15 20:39:59 +03001968 }
Rob Clarkbbb1e522015-08-25 15:35:58 -04001969
1970commit:
1971 ret = update_output_state(state, set);
1972 if (ret)
1973 return ret;
1974
1975 return 0;
1976}
1977
Daniel Vetter042652e2014-07-27 13:46:52 +02001978/**
Thierry Reding14942762015-12-02 17:50:04 +01001979 * drm_atomic_helper_disable_all - disable all currently active outputs
1980 * @dev: DRM device
1981 * @ctx: lock acquisition context
1982 *
1983 * Loops through all connectors, finding those that aren't turned off and then
1984 * turns them off by setting their DPMS mode to OFF and deactivating the CRTC
1985 * that they are connected to.
1986 *
1987 * This is used for example in suspend/resume to disable all currently active
1988 * functions when suspending.
1989 *
1990 * Note that if callers haven't already acquired all modeset locks this might
1991 * return -EDEADLK, which must be handled by calling drm_modeset_backoff().
1992 *
1993 * Returns:
1994 * 0 on success or a negative error code on failure.
1995 *
1996 * See also:
1997 * drm_atomic_helper_suspend(), drm_atomic_helper_resume()
1998 */
1999int drm_atomic_helper_disable_all(struct drm_device *dev,
2000 struct drm_modeset_acquire_ctx *ctx)
2001{
2002 struct drm_atomic_state *state;
2003 struct drm_connector *conn;
2004 int err;
2005
2006 state = drm_atomic_state_alloc(dev);
2007 if (!state)
2008 return -ENOMEM;
2009
2010 state->acquire_ctx = ctx;
2011
2012 drm_for_each_connector(conn, dev) {
2013 struct drm_crtc *crtc = conn->state->crtc;
2014 struct drm_crtc_state *crtc_state;
2015
2016 if (!crtc || conn->dpms != DRM_MODE_DPMS_ON)
2017 continue;
2018
2019 crtc_state = drm_atomic_get_crtc_state(state, crtc);
2020 if (IS_ERR(crtc_state)) {
2021 err = PTR_ERR(crtc_state);
2022 goto free;
2023 }
2024
2025 crtc_state->active = false;
2026 }
2027
2028 err = drm_atomic_commit(state);
2029
2030free:
2031 if (err < 0)
2032 drm_atomic_state_free(state);
2033
2034 return err;
2035}
2036EXPORT_SYMBOL(drm_atomic_helper_disable_all);
2037
2038/**
2039 * drm_atomic_helper_suspend - subsystem-level suspend helper
2040 * @dev: DRM device
2041 *
2042 * Duplicates the current atomic state, disables all active outputs and then
2043 * returns a pointer to the original atomic state to the caller. Drivers can
2044 * pass this pointer to the drm_atomic_helper_resume() helper upon resume to
2045 * restore the output configuration that was active at the time the system
2046 * entered suspend.
2047 *
2048 * Note that it is potentially unsafe to use this. The atomic state object
2049 * returned by this function is assumed to be persistent. Drivers must ensure
2050 * that this holds true. Before calling this function, drivers must make sure
2051 * to suspend fbdev emulation so that nothing can be using the device.
2052 *
2053 * Returns:
2054 * A pointer to a copy of the state before suspend on success or an ERR_PTR()-
2055 * encoded error code on failure. Drivers should store the returned atomic
2056 * state object and pass it to the drm_atomic_helper_resume() helper upon
2057 * resume.
2058 *
2059 * See also:
2060 * drm_atomic_helper_duplicate_state(), drm_atomic_helper_disable_all(),
2061 * drm_atomic_helper_resume()
2062 */
2063struct drm_atomic_state *drm_atomic_helper_suspend(struct drm_device *dev)
2064{
2065 struct drm_modeset_acquire_ctx ctx;
2066 struct drm_atomic_state *state;
2067 int err;
2068
2069 drm_modeset_acquire_init(&ctx, 0);
2070
2071retry:
2072 err = drm_modeset_lock_all_ctx(dev, &ctx);
2073 if (err < 0) {
2074 state = ERR_PTR(err);
2075 goto unlock;
2076 }
2077
2078 state = drm_atomic_helper_duplicate_state(dev, &ctx);
2079 if (IS_ERR(state))
2080 goto unlock;
2081
2082 err = drm_atomic_helper_disable_all(dev, &ctx);
2083 if (err < 0) {
2084 drm_atomic_state_free(state);
2085 state = ERR_PTR(err);
2086 goto unlock;
2087 }
2088
2089unlock:
2090 if (PTR_ERR(state) == -EDEADLK) {
2091 drm_modeset_backoff(&ctx);
2092 goto retry;
2093 }
2094
2095 drm_modeset_drop_locks(&ctx);
2096 drm_modeset_acquire_fini(&ctx);
2097 return state;
2098}
2099EXPORT_SYMBOL(drm_atomic_helper_suspend);
2100
2101/**
2102 * drm_atomic_helper_resume - subsystem-level resume helper
2103 * @dev: DRM device
2104 * @state: atomic state to resume to
2105 *
2106 * Calls drm_mode_config_reset() to synchronize hardware and software states,
2107 * grabs all modeset locks and commits the atomic state object. This can be
2108 * used in conjunction with the drm_atomic_helper_suspend() helper to
2109 * implement suspend/resume for drivers that support atomic mode-setting.
2110 *
2111 * Returns:
2112 * 0 on success or a negative error code on failure.
2113 *
2114 * See also:
2115 * drm_atomic_helper_suspend()
2116 */
2117int drm_atomic_helper_resume(struct drm_device *dev,
2118 struct drm_atomic_state *state)
2119{
2120 struct drm_mode_config *config = &dev->mode_config;
2121 int err;
2122
2123 drm_mode_config_reset(dev);
2124 drm_modeset_lock_all(dev);
2125 state->acquire_ctx = config->acquire_ctx;
2126 err = drm_atomic_commit(state);
2127 drm_modeset_unlock_all(dev);
2128
2129 return err;
2130}
2131EXPORT_SYMBOL(drm_atomic_helper_resume);
2132
2133/**
Laurent Pinchart7f500022015-02-23 02:50:23 +02002134 * drm_atomic_helper_crtc_set_property - helper for crtc properties
Daniel Vetter042652e2014-07-27 13:46:52 +02002135 * @crtc: DRM crtc
2136 * @property: DRM property
2137 * @val: value of property
2138 *
Laurent Pinchart7f500022015-02-23 02:50:23 +02002139 * Provides a default crtc set_property handler using the atomic driver
2140 * interface.
Daniel Vetter042652e2014-07-27 13:46:52 +02002141 *
2142 * RETURNS:
2143 * Zero on success, error code on failure
2144 */
2145int
2146drm_atomic_helper_crtc_set_property(struct drm_crtc *crtc,
2147 struct drm_property *property,
2148 uint64_t val)
2149{
2150 struct drm_atomic_state *state;
2151 struct drm_crtc_state *crtc_state;
2152 int ret = 0;
2153
2154 state = drm_atomic_state_alloc(crtc->dev);
2155 if (!state)
2156 return -ENOMEM;
2157
2158 /* ->set_property is always called with all locks held. */
2159 state->acquire_ctx = crtc->dev->mode_config.acquire_ctx;
2160retry:
2161 crtc_state = drm_atomic_get_crtc_state(state, crtc);
2162 if (IS_ERR(crtc_state)) {
2163 ret = PTR_ERR(crtc_state);
2164 goto fail;
2165 }
2166
Rob Clark40ecc692014-12-18 16:01:46 -05002167 ret = drm_atomic_crtc_set_property(crtc, crtc_state,
2168 property, val);
Daniel Vetter042652e2014-07-27 13:46:52 +02002169 if (ret)
2170 goto fail;
2171
2172 ret = drm_atomic_commit(state);
2173 if (ret != 0)
2174 goto fail;
2175
2176 /* Driver takes ownership of state on successful commit. */
2177 return 0;
2178fail:
2179 if (ret == -EDEADLK)
2180 goto backoff;
2181
2182 drm_atomic_state_free(state);
2183
2184 return ret;
2185backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02002186 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01002187 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002188
2189 goto retry;
2190}
2191EXPORT_SYMBOL(drm_atomic_helper_crtc_set_property);
2192
2193/**
Laurent Pinchart7f500022015-02-23 02:50:23 +02002194 * drm_atomic_helper_plane_set_property - helper for plane properties
Daniel Vetter042652e2014-07-27 13:46:52 +02002195 * @plane: DRM plane
2196 * @property: DRM property
2197 * @val: value of property
2198 *
Laurent Pinchart7f500022015-02-23 02:50:23 +02002199 * Provides a default plane set_property handler using the atomic driver
2200 * interface.
Daniel Vetter042652e2014-07-27 13:46:52 +02002201 *
2202 * RETURNS:
2203 * Zero on success, error code on failure
2204 */
2205int
2206drm_atomic_helper_plane_set_property(struct drm_plane *plane,
2207 struct drm_property *property,
2208 uint64_t val)
2209{
2210 struct drm_atomic_state *state;
2211 struct drm_plane_state *plane_state;
2212 int ret = 0;
2213
2214 state = drm_atomic_state_alloc(plane->dev);
2215 if (!state)
2216 return -ENOMEM;
2217
2218 /* ->set_property is always called with all locks held. */
2219 state->acquire_ctx = plane->dev->mode_config.acquire_ctx;
2220retry:
2221 plane_state = drm_atomic_get_plane_state(state, plane);
2222 if (IS_ERR(plane_state)) {
2223 ret = PTR_ERR(plane_state);
2224 goto fail;
2225 }
2226
Rob Clark40ecc692014-12-18 16:01:46 -05002227 ret = drm_atomic_plane_set_property(plane, plane_state,
2228 property, val);
Daniel Vetter042652e2014-07-27 13:46:52 +02002229 if (ret)
2230 goto fail;
2231
2232 ret = drm_atomic_commit(state);
2233 if (ret != 0)
2234 goto fail;
2235
2236 /* Driver takes ownership of state on successful commit. */
2237 return 0;
2238fail:
2239 if (ret == -EDEADLK)
2240 goto backoff;
2241
2242 drm_atomic_state_free(state);
2243
2244 return ret;
2245backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02002246 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01002247 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002248
2249 goto retry;
2250}
2251EXPORT_SYMBOL(drm_atomic_helper_plane_set_property);
2252
2253/**
Laurent Pinchart7f500022015-02-23 02:50:23 +02002254 * drm_atomic_helper_connector_set_property - helper for connector properties
Daniel Vetter042652e2014-07-27 13:46:52 +02002255 * @connector: DRM connector
2256 * @property: DRM property
2257 * @val: value of property
2258 *
Laurent Pinchart7f500022015-02-23 02:50:23 +02002259 * Provides a default connector set_property handler using the atomic driver
2260 * interface.
Daniel Vetter042652e2014-07-27 13:46:52 +02002261 *
2262 * RETURNS:
2263 * Zero on success, error code on failure
2264 */
2265int
2266drm_atomic_helper_connector_set_property(struct drm_connector *connector,
2267 struct drm_property *property,
2268 uint64_t val)
2269{
2270 struct drm_atomic_state *state;
2271 struct drm_connector_state *connector_state;
2272 int ret = 0;
2273
2274 state = drm_atomic_state_alloc(connector->dev);
2275 if (!state)
2276 return -ENOMEM;
2277
2278 /* ->set_property is always called with all locks held. */
2279 state->acquire_ctx = connector->dev->mode_config.acquire_ctx;
2280retry:
2281 connector_state = drm_atomic_get_connector_state(state, connector);
2282 if (IS_ERR(connector_state)) {
2283 ret = PTR_ERR(connector_state);
2284 goto fail;
2285 }
2286
Rob Clark40ecc692014-12-18 16:01:46 -05002287 ret = drm_atomic_connector_set_property(connector, connector_state,
2288 property, val);
Daniel Vetter042652e2014-07-27 13:46:52 +02002289 if (ret)
2290 goto fail;
2291
2292 ret = drm_atomic_commit(state);
2293 if (ret != 0)
2294 goto fail;
2295
2296 /* Driver takes ownership of state on successful commit. */
2297 return 0;
2298fail:
2299 if (ret == -EDEADLK)
2300 goto backoff;
2301
2302 drm_atomic_state_free(state);
2303
2304 return ret;
2305backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02002306 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01002307 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02002308
2309 goto retry;
2310}
2311EXPORT_SYMBOL(drm_atomic_helper_connector_set_property);
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002312
2313/**
2314 * drm_atomic_helper_page_flip - execute a legacy page flip
2315 * @crtc: DRM crtc
2316 * @fb: DRM framebuffer
2317 * @event: optional DRM event to signal upon completion
2318 * @flags: flip flags for non-vblank sync'ed updates
2319 *
2320 * Provides a default page flip implementation using the atomic driver interface.
2321 *
2322 * Note that for now so called async page flips (i.e. updates which are not
2323 * synchronized to vblank) are not supported, since the atomic interfaces have
2324 * no provisions for this yet.
2325 *
2326 * Returns:
2327 * Returns 0 on success, negative errno numbers on failure.
2328 */
2329int drm_atomic_helper_page_flip(struct drm_crtc *crtc,
2330 struct drm_framebuffer *fb,
2331 struct drm_pending_vblank_event *event,
2332 uint32_t flags)
2333{
2334 struct drm_plane *plane = crtc->primary;
2335 struct drm_atomic_state *state;
2336 struct drm_plane_state *plane_state;
2337 struct drm_crtc_state *crtc_state;
2338 int ret = 0;
2339
2340 if (flags & DRM_MODE_PAGE_FLIP_ASYNC)
2341 return -EINVAL;
2342
2343 state = drm_atomic_state_alloc(plane->dev);
2344 if (!state)
2345 return -ENOMEM;
2346
2347 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
2348retry:
2349 crtc_state = drm_atomic_get_crtc_state(state, crtc);
2350 if (IS_ERR(crtc_state)) {
2351 ret = PTR_ERR(crtc_state);
2352 goto fail;
2353 }
2354 crtc_state->event = event;
2355
2356 plane_state = drm_atomic_get_plane_state(state, plane);
2357 if (IS_ERR(plane_state)) {
2358 ret = PTR_ERR(plane_state);
2359 goto fail;
2360 }
2361
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01002362 ret = drm_atomic_set_crtc_for_plane(plane_state, crtc);
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002363 if (ret != 0)
2364 goto fail;
Daniel Vetter321ebf02014-11-04 22:57:27 +01002365 drm_atomic_set_fb_for_plane(plane_state, fb);
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002366
Daniel Vetter4cba6852015-12-08 09:49:20 +01002367 /* Make sure we don't accidentally do a full modeset. */
2368 state->allow_modeset = false;
2369 if (!crtc_state->active) {
2370 DRM_DEBUG_ATOMIC("[CRTC:%d] disabled, rejecting legacy flip\n",
2371 crtc->base.id);
2372 ret = -EINVAL;
2373 goto fail;
2374 }
2375
Maarten Lankhorstb837ba02016-04-26 16:11:35 +02002376 ret = drm_atomic_nonblocking_commit(state);
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002377 if (ret != 0)
2378 goto fail;
2379
Maarten Lankhorstb837ba02016-04-26 16:11:35 +02002380 /* Driver takes ownership of state on successful commit. */
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002381 return 0;
2382fail:
2383 if (ret == -EDEADLK)
2384 goto backoff;
2385
2386 drm_atomic_state_free(state);
2387
2388 return ret;
2389backoff:
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002390 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01002391 drm_atomic_legacy_backoff(state);
Daniel Vetter8bc0f312014-07-27 18:42:37 +02002392
2393 /*
2394 * Someone might have exchanged the framebuffer while we dropped locks
2395 * in the backoff code. We need to fix up the fb refcount tracking the
2396 * core does for us.
2397 */
2398 plane->old_fb = plane->fb;
2399
2400 goto retry;
2401}
2402EXPORT_SYMBOL(drm_atomic_helper_page_flip);
Daniel Vetterd4617012014-11-03 15:56:43 +01002403
2404/**
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002405 * drm_atomic_helper_connector_dpms() - connector dpms helper implementation
2406 * @connector: affected connector
2407 * @mode: DPMS mode
2408 *
2409 * This is the main helper function provided by the atomic helper framework for
2410 * implementing the legacy DPMS connector interface. It computes the new desired
2411 * ->active state for the corresponding CRTC (if the connector is enabled) and
2412 * updates it.
Maarten Lankhorst9a69a9a2015-07-21 11:34:55 +02002413 *
2414 * Returns:
2415 * Returns 0 on success, negative errno numbers on failure.
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002416 */
Maarten Lankhorst9a69a9a2015-07-21 11:34:55 +02002417int drm_atomic_helper_connector_dpms(struct drm_connector *connector,
2418 int mode)
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002419{
2420 struct drm_mode_config *config = &connector->dev->mode_config;
2421 struct drm_atomic_state *state;
2422 struct drm_crtc_state *crtc_state;
2423 struct drm_crtc *crtc;
2424 struct drm_connector *tmp_connector;
2425 int ret;
2426 bool active = false;
Maarten Lankhorst9a69a9a2015-07-21 11:34:55 +02002427 int old_mode = connector->dpms;
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002428
2429 if (mode != DRM_MODE_DPMS_ON)
2430 mode = DRM_MODE_DPMS_OFF;
2431
2432 connector->dpms = mode;
2433 crtc = connector->state->crtc;
2434
2435 if (!crtc)
Maarten Lankhorst9a69a9a2015-07-21 11:34:55 +02002436 return 0;
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002437
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002438 state = drm_atomic_state_alloc(connector->dev);
2439 if (!state)
Maarten Lankhorst9a69a9a2015-07-21 11:34:55 +02002440 return -ENOMEM;
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002441
2442 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
2443retry:
2444 crtc_state = drm_atomic_get_crtc_state(state, crtc);
Maarten Lankhorst9a69a9a2015-07-21 11:34:55 +02002445 if (IS_ERR(crtc_state)) {
2446 ret = PTR_ERR(crtc_state);
2447 goto fail;
2448 }
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002449
2450 WARN_ON(!drm_modeset_is_locked(&config->connection_mutex));
2451
Daniel Vetter9a9f5ce2015-07-09 23:44:34 +02002452 drm_for_each_connector(tmp_connector, connector->dev) {
John Hunter0388df02015-03-17 15:30:28 +08002453 if (tmp_connector->state->crtc != crtc)
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002454 continue;
2455
John Hunter0388df02015-03-17 15:30:28 +08002456 if (tmp_connector->dpms == DRM_MODE_DPMS_ON) {
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002457 active = true;
2458 break;
2459 }
2460 }
2461 crtc_state->active = active;
2462
2463 ret = drm_atomic_commit(state);
2464 if (ret != 0)
2465 goto fail;
2466
Maarten Lankhorst9a69a9a2015-07-21 11:34:55 +02002467 /* Driver takes ownership of state on successful commit. */
2468 return 0;
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002469fail:
2470 if (ret == -EDEADLK)
2471 goto backoff;
2472
Maarten Lankhorst9a69a9a2015-07-21 11:34:55 +02002473 connector->dpms = old_mode;
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002474 drm_atomic_state_free(state);
2475
Maarten Lankhorst9a69a9a2015-07-21 11:34:55 +02002476 return ret;
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002477backoff:
2478 drm_atomic_state_clear(state);
2479 drm_atomic_legacy_backoff(state);
2480
2481 goto retry;
2482}
2483EXPORT_SYMBOL(drm_atomic_helper_connector_dpms);
2484
2485/**
Noralf Trønnes9ecb5492016-05-11 18:09:21 +02002486 * drm_atomic_helper_best_encoder - Helper for &drm_connector_helper_funcs
2487 * ->best_encoder callback
2488 * @connector: Connector control structure
2489 *
2490 * This is a &drm_connector_helper_funcs ->best_encoder callback helper for
2491 * connectors that support exactly 1 encoder, statically determined at driver
2492 * init time.
2493 */
2494struct drm_encoder *
2495drm_atomic_helper_best_encoder(struct drm_connector *connector)
2496{
2497 WARN_ON(connector->encoder_ids[1]);
2498 return drm_encoder_find(connector->dev, connector->encoder_ids[0]);
2499}
2500EXPORT_SYMBOL(drm_atomic_helper_best_encoder);
2501
2502/**
Daniel Vetter3150c7d2014-11-06 20:53:29 +01002503 * DOC: atomic state reset and initialization
2504 *
2505 * Both the drm core and the atomic helpers assume that there is always the full
2506 * and correct atomic software state for all connectors, CRTCs and planes
2507 * available. Which is a bit a problem on driver load and also after system
2508 * suspend. One way to solve this is to have a hardware state read-out
2509 * infrastructure which reconstructs the full software state (e.g. the i915
2510 * driver).
2511 *
2512 * The simpler solution is to just reset the software state to everything off,
2513 * which is easiest to do by calling drm_mode_config_reset(). To facilitate this
2514 * the atomic helpers provide default reset implementations for all hooks.
Daniel Vetter7f8ee3e2015-12-04 09:46:06 +01002515 *
2516 * On the upside the precise state tracking of atomic simplifies system suspend
2517 * and resume a lot. For drivers using drm_mode_config_reset() a complete recipe
2518 * is implemented in drm_atomic_helper_suspend() and drm_atomic_helper_resume().
2519 * For other drivers the building blocks are split out, see the documentation
2520 * for these functions.
Daniel Vetter3150c7d2014-11-06 20:53:29 +01002521 */
2522
2523/**
Daniel Vetterd4617012014-11-03 15:56:43 +01002524 * drm_atomic_helper_crtc_reset - default ->reset hook for CRTCs
2525 * @crtc: drm CRTC
2526 *
2527 * Resets the atomic state for @crtc by freeing the state pointer (which might
2528 * be NULL, e.g. at driver load time) and allocating a new empty state object.
2529 */
2530void drm_atomic_helper_crtc_reset(struct drm_crtc *crtc)
2531{
Daniel Vetterb0b55112016-04-22 22:10:29 +02002532 if (crtc->state)
Daniel Vetterec2dc6a2016-05-09 16:34:09 +02002533 __drm_atomic_helper_crtc_destroy_state(crtc->state);
Daniel Vetterb0b55112016-04-22 22:10:29 +02002534
Daniel Vetterd4617012014-11-03 15:56:43 +01002535 kfree(crtc->state);
2536 crtc->state = kzalloc(sizeof(*crtc->state), GFP_KERNEL);
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01002537
2538 if (crtc->state)
2539 crtc->state->crtc = crtc;
Daniel Vetterd4617012014-11-03 15:56:43 +01002540}
2541EXPORT_SYMBOL(drm_atomic_helper_crtc_reset);
2542
2543/**
Thierry Redingf5e78402015-01-28 14:54:32 +01002544 * __drm_atomic_helper_crtc_duplicate_state - copy atomic CRTC state
2545 * @crtc: CRTC object
2546 * @state: atomic CRTC state
2547 *
2548 * Copies atomic state from a CRTC's current state and resets inferred values.
2549 * This is useful for drivers that subclass the CRTC state.
2550 */
2551void __drm_atomic_helper_crtc_duplicate_state(struct drm_crtc *crtc,
2552 struct drm_crtc_state *state)
2553{
2554 memcpy(state, crtc->state, sizeof(*state));
2555
Daniel Stone99cf4a22015-05-25 19:11:51 +01002556 if (state->mode_blob)
2557 drm_property_reference_blob(state->mode_blob);
Lionel Landwerlin5488dc12016-02-26 17:05:00 +00002558 if (state->degamma_lut)
2559 drm_property_reference_blob(state->degamma_lut);
2560 if (state->ctm)
2561 drm_property_reference_blob(state->ctm);
2562 if (state->gamma_lut)
2563 drm_property_reference_blob(state->gamma_lut);
Thierry Redingf5e78402015-01-28 14:54:32 +01002564 state->mode_changed = false;
2565 state->active_changed = false;
2566 state->planes_changed = false;
Maarten Lankhorstfc596662015-07-21 13:28:57 +02002567 state->connectors_changed = false;
Lionel Landwerlin5488dc12016-02-26 17:05:00 +00002568 state->color_mgmt_changed = false;
Thierry Redingf5e78402015-01-28 14:54:32 +01002569 state->event = NULL;
2570}
2571EXPORT_SYMBOL(__drm_atomic_helper_crtc_duplicate_state);
2572
2573/**
Daniel Vetterd4617012014-11-03 15:56:43 +01002574 * drm_atomic_helper_crtc_duplicate_state - default state duplicate hook
2575 * @crtc: drm CRTC
2576 *
2577 * Default CRTC state duplicate hook for drivers which don't have their own
2578 * subclassed CRTC state structure.
2579 */
2580struct drm_crtc_state *
2581drm_atomic_helper_crtc_duplicate_state(struct drm_crtc *crtc)
2582{
2583 struct drm_crtc_state *state;
2584
2585 if (WARN_ON(!crtc->state))
2586 return NULL;
2587
Thierry Redingf5e78402015-01-28 14:54:32 +01002588 state = kmalloc(sizeof(*state), GFP_KERNEL);
2589 if (state)
2590 __drm_atomic_helper_crtc_duplicate_state(crtc, state);
Daniel Vetterd4617012014-11-03 15:56:43 +01002591
2592 return state;
2593}
2594EXPORT_SYMBOL(drm_atomic_helper_crtc_duplicate_state);
2595
2596/**
Thierry Redingf5e78402015-01-28 14:54:32 +01002597 * __drm_atomic_helper_crtc_destroy_state - release CRTC state
Thierry Redingf5e78402015-01-28 14:54:32 +01002598 * @state: CRTC state object to release
2599 *
2600 * Releases all resources stored in the CRTC state without actually freeing
2601 * the memory of the CRTC state. This is useful for drivers that subclass the
2602 * CRTC state.
2603 */
Daniel Vetterec2dc6a2016-05-09 16:34:09 +02002604void __drm_atomic_helper_crtc_destroy_state(struct drm_crtc_state *state)
Thierry Redingf5e78402015-01-28 14:54:32 +01002605{
Markus Elfring5f911902015-11-06 12:03:46 +01002606 drm_property_unreference_blob(state->mode_blob);
Lionel Landwerlin5488dc12016-02-26 17:05:00 +00002607 drm_property_unreference_blob(state->degamma_lut);
2608 drm_property_unreference_blob(state->ctm);
2609 drm_property_unreference_blob(state->gamma_lut);
Thierry Redingf5e78402015-01-28 14:54:32 +01002610}
2611EXPORT_SYMBOL(__drm_atomic_helper_crtc_destroy_state);
2612
2613/**
Daniel Vetterd4617012014-11-03 15:56:43 +01002614 * drm_atomic_helper_crtc_destroy_state - default state destroy hook
2615 * @crtc: drm CRTC
2616 * @state: CRTC state object to release
2617 *
2618 * Default CRTC state destroy hook for drivers which don't have their own
2619 * subclassed CRTC state structure.
2620 */
2621void drm_atomic_helper_crtc_destroy_state(struct drm_crtc *crtc,
2622 struct drm_crtc_state *state)
2623{
Daniel Vetterec2dc6a2016-05-09 16:34:09 +02002624 __drm_atomic_helper_crtc_destroy_state(state);
Daniel Vetterd4617012014-11-03 15:56:43 +01002625 kfree(state);
2626}
2627EXPORT_SYMBOL(drm_atomic_helper_crtc_destroy_state);
2628
2629/**
2630 * drm_atomic_helper_plane_reset - default ->reset hook for planes
2631 * @plane: drm plane
2632 *
2633 * Resets the atomic state for @plane by freeing the state pointer (which might
2634 * be NULL, e.g. at driver load time) and allocating a new empty state object.
2635 */
2636void drm_atomic_helper_plane_reset(struct drm_plane *plane)
2637{
Daniel Vetterb0b55112016-04-22 22:10:29 +02002638 if (plane->state)
Daniel Vetter2f701692016-05-09 16:34:10 +02002639 __drm_atomic_helper_plane_destroy_state(plane->state);
Daniel Vetter321ebf02014-11-04 22:57:27 +01002640
Daniel Vetterd4617012014-11-03 15:56:43 +01002641 kfree(plane->state);
2642 plane->state = kzalloc(sizeof(*plane->state), GFP_KERNEL);
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01002643
Marek Szyprowski25aaa3a2016-01-19 09:26:48 +01002644 if (plane->state) {
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01002645 plane->state->plane = plane;
Marek Szyprowski25aaa3a2016-01-19 09:26:48 +01002646 plane->state->rotation = BIT(DRM_ROTATE_0);
2647 }
Daniel Vetterd4617012014-11-03 15:56:43 +01002648}
2649EXPORT_SYMBOL(drm_atomic_helper_plane_reset);
2650
2651/**
Thierry Redingf5e78402015-01-28 14:54:32 +01002652 * __drm_atomic_helper_plane_duplicate_state - copy atomic plane state
2653 * @plane: plane object
2654 * @state: atomic plane state
2655 *
2656 * Copies atomic state from a plane's current state. This is useful for
2657 * drivers that subclass the plane state.
2658 */
2659void __drm_atomic_helper_plane_duplicate_state(struct drm_plane *plane,
2660 struct drm_plane_state *state)
2661{
2662 memcpy(state, plane->state, sizeof(*state));
2663
2664 if (state->fb)
2665 drm_framebuffer_reference(state->fb);
2666}
2667EXPORT_SYMBOL(__drm_atomic_helper_plane_duplicate_state);
2668
2669/**
Daniel Vetterd4617012014-11-03 15:56:43 +01002670 * drm_atomic_helper_plane_duplicate_state - default state duplicate hook
2671 * @plane: drm plane
2672 *
2673 * Default plane state duplicate hook for drivers which don't have their own
2674 * subclassed plane state structure.
2675 */
2676struct drm_plane_state *
2677drm_atomic_helper_plane_duplicate_state(struct drm_plane *plane)
2678{
Daniel Vetter321ebf02014-11-04 22:57:27 +01002679 struct drm_plane_state *state;
2680
Daniel Vetterd4617012014-11-03 15:56:43 +01002681 if (WARN_ON(!plane->state))
2682 return NULL;
2683
Thierry Redingf5e78402015-01-28 14:54:32 +01002684 state = kmalloc(sizeof(*state), GFP_KERNEL);
2685 if (state)
2686 __drm_atomic_helper_plane_duplicate_state(plane, state);
Daniel Vetter321ebf02014-11-04 22:57:27 +01002687
2688 return state;
Daniel Vetterd4617012014-11-03 15:56:43 +01002689}
2690EXPORT_SYMBOL(drm_atomic_helper_plane_duplicate_state);
2691
2692/**
Thierry Redingf5e78402015-01-28 14:54:32 +01002693 * __drm_atomic_helper_plane_destroy_state - release plane state
Thierry Redingf5e78402015-01-28 14:54:32 +01002694 * @state: plane state object to release
2695 *
2696 * Releases all resources stored in the plane state without actually freeing
2697 * the memory of the plane state. This is useful for drivers that subclass the
2698 * plane state.
2699 */
Daniel Vetter2f701692016-05-09 16:34:10 +02002700void __drm_atomic_helper_plane_destroy_state(struct drm_plane_state *state)
Thierry Redingf5e78402015-01-28 14:54:32 +01002701{
2702 if (state->fb)
2703 drm_framebuffer_unreference(state->fb);
2704}
2705EXPORT_SYMBOL(__drm_atomic_helper_plane_destroy_state);
2706
2707/**
Daniel Vetterd4617012014-11-03 15:56:43 +01002708 * drm_atomic_helper_plane_destroy_state - default state destroy hook
2709 * @plane: drm plane
2710 * @state: plane state object to release
2711 *
2712 * Default plane state destroy hook for drivers which don't have their own
2713 * subclassed plane state structure.
2714 */
2715void drm_atomic_helper_plane_destroy_state(struct drm_plane *plane,
Daniel Vetter321ebf02014-11-04 22:57:27 +01002716 struct drm_plane_state *state)
Daniel Vetterd4617012014-11-03 15:56:43 +01002717{
Daniel Vetter2f701692016-05-09 16:34:10 +02002718 __drm_atomic_helper_plane_destroy_state(state);
Daniel Vetterd4617012014-11-03 15:56:43 +01002719 kfree(state);
2720}
2721EXPORT_SYMBOL(drm_atomic_helper_plane_destroy_state);
2722
2723/**
Maarten Lankhorst4cd39912016-01-04 12:53:16 +01002724 * __drm_atomic_helper_connector_reset - reset state on connector
2725 * @connector: drm connector
2726 * @conn_state: connector state to assign
2727 *
2728 * Initializes the newly allocated @conn_state and assigns it to
2729 * #connector ->state, usually required when initializing the drivers
2730 * or when called from the ->reset hook.
2731 *
2732 * This is useful for drivers that subclass the connector state.
2733 */
2734void
2735__drm_atomic_helper_connector_reset(struct drm_connector *connector,
2736 struct drm_connector_state *conn_state)
2737{
2738 if (conn_state)
2739 conn_state->connector = connector;
2740
2741 connector->state = conn_state;
2742}
2743EXPORT_SYMBOL(__drm_atomic_helper_connector_reset);
2744
2745/**
Daniel Vetterd4617012014-11-03 15:56:43 +01002746 * drm_atomic_helper_connector_reset - default ->reset hook for connectors
2747 * @connector: drm connector
2748 *
2749 * Resets the atomic state for @connector by freeing the state pointer (which
2750 * might be NULL, e.g. at driver load time) and allocating a new empty state
2751 * object.
2752 */
2753void drm_atomic_helper_connector_reset(struct drm_connector *connector)
2754{
Maarten Lankhorst4cd39912016-01-04 12:53:16 +01002755 struct drm_connector_state *conn_state =
2756 kzalloc(sizeof(*conn_state), GFP_KERNEL);
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01002757
Daniel Vetterb0b55112016-04-22 22:10:29 +02002758 if (connector->state)
Daniel Vetterfabd9102016-05-09 16:34:11 +02002759 __drm_atomic_helper_connector_destroy_state(connector->state);
Daniel Vetterb0b55112016-04-22 22:10:29 +02002760
Maarten Lankhorst4cd39912016-01-04 12:53:16 +01002761 kfree(connector->state);
2762 __drm_atomic_helper_connector_reset(connector, conn_state);
Daniel Vetterd4617012014-11-03 15:56:43 +01002763}
2764EXPORT_SYMBOL(drm_atomic_helper_connector_reset);
2765
2766/**
Thierry Redingf5e78402015-01-28 14:54:32 +01002767 * __drm_atomic_helper_connector_duplicate_state - copy atomic connector state
2768 * @connector: connector object
2769 * @state: atomic connector state
2770 *
2771 * Copies atomic state from a connector's current state. This is useful for
2772 * drivers that subclass the connector state.
2773 */
2774void
2775__drm_atomic_helper_connector_duplicate_state(struct drm_connector *connector,
2776 struct drm_connector_state *state)
2777{
2778 memcpy(state, connector->state, sizeof(*state));
Dave Airlied2307de2016-04-27 11:27:39 +10002779 if (state->crtc)
2780 drm_connector_reference(connector);
Thierry Redingf5e78402015-01-28 14:54:32 +01002781}
2782EXPORT_SYMBOL(__drm_atomic_helper_connector_duplicate_state);
2783
2784/**
Daniel Vetterd4617012014-11-03 15:56:43 +01002785 * drm_atomic_helper_connector_duplicate_state - default state duplicate hook
2786 * @connector: drm connector
2787 *
2788 * Default connector state duplicate hook for drivers which don't have their own
2789 * subclassed connector state structure.
2790 */
2791struct drm_connector_state *
2792drm_atomic_helper_connector_duplicate_state(struct drm_connector *connector)
2793{
Thierry Redingf5e78402015-01-28 14:54:32 +01002794 struct drm_connector_state *state;
2795
Daniel Vetterd4617012014-11-03 15:56:43 +01002796 if (WARN_ON(!connector->state))
2797 return NULL;
2798
Thierry Redingf5e78402015-01-28 14:54:32 +01002799 state = kmalloc(sizeof(*state), GFP_KERNEL);
2800 if (state)
2801 __drm_atomic_helper_connector_duplicate_state(connector, state);
2802
2803 return state;
Daniel Vetterd4617012014-11-03 15:56:43 +01002804}
2805EXPORT_SYMBOL(drm_atomic_helper_connector_duplicate_state);
2806
2807/**
Thierry Reding397fd772015-09-08 15:00:45 +02002808 * drm_atomic_helper_duplicate_state - duplicate an atomic state object
2809 * @dev: DRM device
2810 * @ctx: lock acquisition context
2811 *
2812 * Makes a copy of the current atomic state by looping over all objects and
Thierry Reding14942762015-12-02 17:50:04 +01002813 * duplicating their respective states. This is used for example by suspend/
2814 * resume support code to save the state prior to suspend such that it can
2815 * be restored upon resume.
Thierry Reding397fd772015-09-08 15:00:45 +02002816 *
2817 * Note that this treats atomic state as persistent between save and restore.
2818 * Drivers must make sure that this is possible and won't result in confusion
2819 * or erroneous behaviour.
2820 *
2821 * Note that if callers haven't already acquired all modeset locks this might
2822 * return -EDEADLK, which must be handled by calling drm_modeset_backoff().
2823 *
2824 * Returns:
2825 * A pointer to the copy of the atomic state object on success or an
2826 * ERR_PTR()-encoded error code on failure.
Thierry Reding14942762015-12-02 17:50:04 +01002827 *
2828 * See also:
2829 * drm_atomic_helper_suspend(), drm_atomic_helper_resume()
Thierry Reding397fd772015-09-08 15:00:45 +02002830 */
2831struct drm_atomic_state *
2832drm_atomic_helper_duplicate_state(struct drm_device *dev,
2833 struct drm_modeset_acquire_ctx *ctx)
2834{
2835 struct drm_atomic_state *state;
2836 struct drm_connector *conn;
2837 struct drm_plane *plane;
2838 struct drm_crtc *crtc;
2839 int err = 0;
2840
2841 state = drm_atomic_state_alloc(dev);
2842 if (!state)
2843 return ERR_PTR(-ENOMEM);
2844
2845 state->acquire_ctx = ctx;
2846
2847 drm_for_each_crtc(crtc, dev) {
2848 struct drm_crtc_state *crtc_state;
2849
2850 crtc_state = drm_atomic_get_crtc_state(state, crtc);
2851 if (IS_ERR(crtc_state)) {
2852 err = PTR_ERR(crtc_state);
2853 goto free;
2854 }
2855 }
2856
2857 drm_for_each_plane(plane, dev) {
2858 struct drm_plane_state *plane_state;
2859
2860 plane_state = drm_atomic_get_plane_state(state, plane);
2861 if (IS_ERR(plane_state)) {
2862 err = PTR_ERR(plane_state);
2863 goto free;
2864 }
2865 }
2866
2867 drm_for_each_connector(conn, dev) {
2868 struct drm_connector_state *conn_state;
2869
2870 conn_state = drm_atomic_get_connector_state(state, conn);
2871 if (IS_ERR(conn_state)) {
2872 err = PTR_ERR(conn_state);
2873 goto free;
2874 }
2875 }
2876
2877 /* clear the acquire context so that it isn't accidentally reused */
2878 state->acquire_ctx = NULL;
2879
2880free:
2881 if (err < 0) {
2882 drm_atomic_state_free(state);
2883 state = ERR_PTR(err);
2884 }
2885
2886 return state;
2887}
2888EXPORT_SYMBOL(drm_atomic_helper_duplicate_state);
2889
2890/**
Thierry Redingf5e78402015-01-28 14:54:32 +01002891 * __drm_atomic_helper_connector_destroy_state - release connector state
Thierry Redingf5e78402015-01-28 14:54:32 +01002892 * @state: connector state object to release
2893 *
2894 * Releases all resources stored in the connector state without actually
2895 * freeing the memory of the connector state. This is useful for drivers that
2896 * subclass the connector state.
2897 */
2898void
Daniel Vetterfabd9102016-05-09 16:34:11 +02002899__drm_atomic_helper_connector_destroy_state(struct drm_connector_state *state)
Thierry Redingf5e78402015-01-28 14:54:32 +01002900{
2901 /*
2902 * This is currently a placeholder so that drivers that subclass the
2903 * state will automatically do the right thing if code is ever added
2904 * to this function.
2905 */
Dave Airlied2307de2016-04-27 11:27:39 +10002906 if (state->crtc)
2907 drm_connector_unreference(state->connector);
Thierry Redingf5e78402015-01-28 14:54:32 +01002908}
2909EXPORT_SYMBOL(__drm_atomic_helper_connector_destroy_state);
2910
2911/**
Daniel Vetterd4617012014-11-03 15:56:43 +01002912 * drm_atomic_helper_connector_destroy_state - default state destroy hook
2913 * @connector: drm connector
2914 * @state: connector state object to release
2915 *
2916 * Default connector state destroy hook for drivers which don't have their own
2917 * subclassed connector state structure.
2918 */
2919void drm_atomic_helper_connector_destroy_state(struct drm_connector *connector,
2920 struct drm_connector_state *state)
2921{
Daniel Vetterfabd9102016-05-09 16:34:11 +02002922 __drm_atomic_helper_connector_destroy_state(state);
Daniel Vetterd4617012014-11-03 15:56:43 +01002923 kfree(state);
2924}
2925EXPORT_SYMBOL(drm_atomic_helper_connector_destroy_state);
Lionel Landwerlin5488dc12016-02-26 17:05:00 +00002926
2927/**
2928 * drm_atomic_helper_legacy_gamma_set - set the legacy gamma correction table
2929 * @crtc: CRTC object
2930 * @red: red correction table
2931 * @green: green correction table
2932 * @blue: green correction table
2933 * @start:
2934 * @size: size of the tables
2935 *
2936 * Implements support for legacy gamma correction table for drivers
2937 * that support color management through the DEGAMMA_LUT/GAMMA_LUT
2938 * properties.
2939 */
2940void drm_atomic_helper_legacy_gamma_set(struct drm_crtc *crtc,
2941 u16 *red, u16 *green, u16 *blue,
2942 uint32_t start, uint32_t size)
2943{
2944 struct drm_device *dev = crtc->dev;
2945 struct drm_mode_config *config = &dev->mode_config;
2946 struct drm_atomic_state *state;
2947 struct drm_crtc_state *crtc_state;
2948 struct drm_property_blob *blob = NULL;
2949 struct drm_color_lut *blob_data;
2950 int i, ret = 0;
2951
2952 state = drm_atomic_state_alloc(crtc->dev);
2953 if (!state)
2954 return;
2955
2956 blob = drm_property_create_blob(dev,
2957 sizeof(struct drm_color_lut) * size,
2958 NULL);
Lionel Landwerlin562c5b42016-03-10 12:04:21 +00002959 if (IS_ERR(blob)) {
2960 ret = PTR_ERR(blob);
Lionel Landwerlinc1f415c2016-03-11 12:17:26 +00002961 blob = NULL;
Lionel Landwerlin5488dc12016-02-26 17:05:00 +00002962 goto fail;
2963 }
2964
2965 /* Prepare GAMMA_LUT with the legacy values. */
2966 blob_data = (struct drm_color_lut *) blob->data;
2967 for (i = 0; i < size; i++) {
2968 blob_data[i].red = red[i];
2969 blob_data[i].green = green[i];
2970 blob_data[i].blue = blue[i];
2971 }
2972
2973 state->acquire_ctx = crtc->dev->mode_config.acquire_ctx;
2974retry:
2975 crtc_state = drm_atomic_get_crtc_state(state, crtc);
2976 if (IS_ERR(crtc_state)) {
2977 ret = PTR_ERR(crtc_state);
2978 goto fail;
2979 }
2980
2981 /* Reset DEGAMMA_LUT and CTM properties. */
2982 ret = drm_atomic_crtc_set_property(crtc, crtc_state,
2983 config->degamma_lut_property, 0);
2984 if (ret)
2985 goto fail;
2986
2987 ret = drm_atomic_crtc_set_property(crtc, crtc_state,
2988 config->ctm_property, 0);
2989 if (ret)
2990 goto fail;
2991
2992 ret = drm_atomic_crtc_set_property(crtc, crtc_state,
2993 config->gamma_lut_property, blob->base.id);
2994 if (ret)
2995 goto fail;
2996
2997 ret = drm_atomic_commit(state);
2998 if (ret)
2999 goto fail;
3000
3001 /* Driver takes ownership of state on successful commit. */
3002
3003 drm_property_unreference_blob(blob);
3004
3005 return;
3006fail:
3007 if (ret == -EDEADLK)
3008 goto backoff;
3009
3010 drm_atomic_state_free(state);
3011 drm_property_unreference_blob(blob);
3012
3013 return;
3014backoff:
3015 drm_atomic_state_clear(state);
3016 drm_atomic_legacy_backoff(state);
3017
3018 goto retry;
3019}
3020EXPORT_SYMBOL(drm_atomic_helper_legacy_gamma_set);