]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/gpu/drm/drm_atomic_helper.c
drm: Only create a cmdline mode if no probed modes match
[mirror_ubuntu-artful-kernel.git] / drivers / gpu / drm / drm_atomic_helper.c
CommitLineData
c2fcd274
DV
1/*
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>
623369e5 32#include <drm/drm_atomic_helper.h>
e2330f07 33#include <linux/fence.h>
c2fcd274 34
3150c7d0
DV
35/**
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
26196f7e
DV
45 * 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
3150c7d0
DV
48 * together with a driver private modeset implementation.
49 *
50 * This library also provides implementations for all the legacy driver
26196f7e
DV
51 * 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
3150c7d0
DV
53 * various functions to implement set_property callbacks. New drivers must not
54 * implement these functions themselves but must use the provided helpers.
092d01da
DV
55 *
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.
3150c7d0 61 */
c2fcd274
DV
62static 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) {
2943ef32
AH
70 crtc_state = drm_atomic_get_existing_crtc_state(state,
71 plane->state->crtc);
c2fcd274
DV
72
73 if (WARN_ON(!crtc_state))
74 return;
75
76 crtc_state->planes_changed = true;
77 }
78
79 if (plane_state->crtc) {
2943ef32
AH
80 crtc_state = drm_atomic_get_existing_crtc_state(state,
81 plane_state->crtc);
c2fcd274
DV
82
83 if (WARN_ON(!crtc_state))
84 return;
85
86 crtc_state->planes_changed = true;
87 }
88}
89
8248b65d
ML
90static int handle_conflicting_encoders(struct drm_atomic_state *state,
91 bool disable_conflicting_encoders)
97ac3204 92{
97ac3204 93 struct drm_connector_state *conn_state;
40616a26
ML
94 struct drm_connector *connector;
95 struct drm_encoder *encoder;
96 unsigned encoder_mask = 0;
97 int i, ret;
97ac3204 98
8248b65d
ML
99 /*
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 */
97ac3204 104 for_each_connector_in_state(state, connector, conn_state, i) {
40616a26
ML
105 const struct drm_connector_helper_funcs *funcs = connector->helper_private;
106 struct drm_encoder *new_encoder;
107
108 if (!conn_state->crtc)
97ac3204
DV
109 continue;
110
40616a26
ML
111 if (funcs->atomic_best_encoder)
112 new_encoder = funcs->atomic_best_encoder(connector, conn_state);
a0909cc5 113 else if (funcs->best_encoder)
40616a26 114 new_encoder = funcs->best_encoder(connector);
a0909cc5
BB
115 else
116 new_encoder = drm_atomic_helper_best_encoder(connector);
40616a26 117
8248b65d
ML
118 if (new_encoder) {
119 if (encoder_mask & (1 << drm_encoder_index(new_encoder))) {
120 DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] on [CONNECTOR:%d:%s] already assigned\n",
121 new_encoder->base.id, new_encoder->name,
122 connector->base.id, connector->name);
123
124 return -EINVAL;
125 }
126
40616a26 127 encoder_mask |= 1 << drm_encoder_index(new_encoder);
8248b65d 128 }
97ac3204
DV
129 }
130
8248b65d
ML
131 if (!encoder_mask)
132 return 0;
97ac3204 133
8248b65d
ML
134 /*
135 * Second loop, iterate over all connectors not part of the state.
136 *
137 * If a conflicting encoder is found and disable_conflicting_encoders
138 * is not set, an error is returned. Userspace can provide a solution
139 * through the atomic ioctl.
140 *
141 * If the flag is set conflicting connectors are removed from the crtc
142 * and the crtc is disabled if no encoder is left. This preserves
143 * compatibility with the legacy set_config behavior.
144 */
40616a26
ML
145 drm_for_each_connector(connector, state->dev) {
146 struct drm_crtc_state *crtc_state;
623369e5 147
40616a26
ML
148 if (drm_atomic_get_existing_connector_state(state, connector))
149 continue;
623369e5 150
40616a26
ML
151 encoder = connector->state->best_encoder;
152 if (!encoder || !(encoder_mask & (1 << drm_encoder_index(encoder))))
623369e5
DV
153 continue;
154
8248b65d
ML
155 if (!disable_conflicting_encoders) {
156 DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] in use on [CRTC:%d:%s] by [CONNECTOR:%d:%s]\n",
157 encoder->base.id, encoder->name,
158 connector->state->crtc->base.id,
159 connector->state->crtc->name,
160 connector->base.id, connector->name);
161 return -EINVAL;
162 }
163
40616a26
ML
164 conn_state = drm_atomic_get_connector_state(state, connector);
165 if (IS_ERR(conn_state))
166 return PTR_ERR(conn_state);
167
168 DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] in use on [CRTC:%d:%s], disabling [CONNECTOR:%d:%s]\n",
169 encoder->base.id, encoder->name,
170 conn_state->crtc->base.id, conn_state->crtc->name,
171 connector->base.id, connector->name);
172
173 crtc_state = drm_atomic_get_existing_crtc_state(state, conn_state->crtc);
174
175 ret = drm_atomic_set_crtc_for_connector(conn_state, NULL);
176 if (ret)
177 return ret;
178
179 if (!crtc_state->connector_mask) {
180 ret = drm_atomic_set_mode_prop_for_crtc(crtc_state,
181 NULL);
182 if (ret < 0)
183 return ret;
184
185 crtc_state->active = false;
186 }
623369e5
DV
187 }
188
40616a26 189 return 0;
623369e5
DV
190}
191
e87a52b3
ML
192static void
193set_best_encoder(struct drm_atomic_state *state,
194 struct drm_connector_state *conn_state,
195 struct drm_encoder *encoder)
196{
197 struct drm_crtc_state *crtc_state;
198 struct drm_crtc *crtc;
199
200 if (conn_state->best_encoder) {
201 /* Unset the encoder_mask in the old crtc state. */
202 crtc = conn_state->connector->state->crtc;
203
204 /* A NULL crtc is an error here because we should have
205 * duplicated a NULL best_encoder when crtc was NULL.
206 * As an exception restoring duplicated atomic state
207 * during resume is allowed, so don't warn when
208 * best_encoder is equal to encoder we intend to set.
209 */
210 WARN_ON(!crtc && encoder != conn_state->best_encoder);
211 if (crtc) {
212 crtc_state = drm_atomic_get_existing_crtc_state(state, crtc);
213
214 crtc_state->encoder_mask &=
215 ~(1 << drm_encoder_index(conn_state->best_encoder));
216 }
217 }
218
219 if (encoder) {
220 crtc = conn_state->crtc;
221 WARN_ON(!crtc);
222 if (crtc) {
223 crtc_state = drm_atomic_get_existing_crtc_state(state, crtc);
224
225 crtc_state->encoder_mask |=
226 1 << drm_encoder_index(encoder);
227 }
228 }
229
230 conn_state->best_encoder = encoder;
231}
232
ec5aaa58 233static void
623369e5 234steal_encoder(struct drm_atomic_state *state,
ff19b786 235 struct drm_encoder *encoder)
623369e5 236{
623369e5
DV
237 struct drm_crtc_state *crtc_state;
238 struct drm_connector *connector;
239 struct drm_connector_state *connector_state;
ec5aaa58 240 int i;
623369e5 241
ec5aaa58 242 for_each_connector_in_state(state, connector, connector_state, i) {
ff19b786 243 struct drm_crtc *encoder_crtc;
623369e5 244
e87a52b3 245 if (connector_state->best_encoder != encoder)
623369e5
DV
246 continue;
247
ff19b786 248 encoder_crtc = connector->state->crtc;
623369e5 249
ff19b786
ML
250 DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] in use on [CRTC:%d:%s], stealing it\n",
251 encoder->base.id, encoder->name,
252 encoder_crtc->base.id, encoder_crtc->name);
e87a52b3
ML
253
254 set_best_encoder(state, connector_state, NULL);
623369e5 255
ff19b786
ML
256 crtc_state = drm_atomic_get_existing_crtc_state(state, encoder_crtc);
257 crtc_state->connectors_changed = true;
258
ec5aaa58 259 return;
623369e5 260 }
623369e5
DV
261}
262
263static int
9459545b
ML
264update_connector_routing(struct drm_atomic_state *state,
265 struct drm_connector *connector,
266 struct drm_connector_state *connector_state)
623369e5 267{
b5ceff20 268 const struct drm_connector_helper_funcs *funcs;
623369e5 269 struct drm_encoder *new_encoder;
623369e5 270 struct drm_crtc_state *crtc_state;
623369e5 271
17a38d9c
DV
272 DRM_DEBUG_ATOMIC("Updating routing for [CONNECTOR:%d:%s]\n",
273 connector->base.id,
274 connector->name);
623369e5
DV
275
276 if (connector->state->crtc != connector_state->crtc) {
277 if (connector->state->crtc) {
9b8d1e53 278 crtc_state = drm_atomic_get_existing_crtc_state(state, connector->state->crtc);
fc596660 279 crtc_state->connectors_changed = true;
623369e5
DV
280 }
281
282 if (connector_state->crtc) {
9b8d1e53 283 crtc_state = drm_atomic_get_existing_crtc_state(state, connector_state->crtc);
fc596660 284 crtc_state->connectors_changed = true;
623369e5
DV
285 }
286 }
287
288 if (!connector_state->crtc) {
17a38d9c 289 DRM_DEBUG_ATOMIC("Disabling [CONNECTOR:%d:%s]\n",
623369e5
DV
290 connector->base.id,
291 connector->name);
292
e87a52b3 293 set_best_encoder(state, connector_state, NULL);
623369e5
DV
294
295 return 0;
296 }
297
298 funcs = connector->helper_private;
3b8a684b
DV
299
300 if (funcs->atomic_best_encoder)
301 new_encoder = funcs->atomic_best_encoder(connector,
302 connector_state);
303 else
304 new_encoder = funcs->best_encoder(connector);
623369e5
DV
305
306 if (!new_encoder) {
17a38d9c
DV
307 DRM_DEBUG_ATOMIC("No suitable encoder found for [CONNECTOR:%d:%s]\n",
308 connector->base.id,
309 connector->name);
623369e5
DV
310 return -EINVAL;
311 }
312
5481c8fb
DV
313 if (!drm_encoder_crtc_ok(new_encoder, connector_state->crtc)) {
314 DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] incompatible with [CRTC:%d]\n",
315 new_encoder->base.id,
316 new_encoder->name,
317 connector_state->crtc->base.id);
318 return -EINVAL;
319 }
320
623369e5 321 if (new_encoder == connector_state->best_encoder) {
e87a52b3
ML
322 set_best_encoder(state, connector_state, new_encoder);
323
fa3ab4c2 324 DRM_DEBUG_ATOMIC("[CONNECTOR:%d:%s] keeps [ENCODER:%d:%s], now on [CRTC:%d:%s]\n",
17a38d9c
DV
325 connector->base.id,
326 connector->name,
327 new_encoder->base.id,
328 new_encoder->name,
fa3ab4c2
VS
329 connector_state->crtc->base.id,
330 connector_state->crtc->name);
623369e5
DV
331
332 return 0;
333 }
334
ec5aaa58 335 steal_encoder(state, new_encoder);
6ea76f3c 336
e87a52b3
ML
337 set_best_encoder(state, connector_state, new_encoder);
338
9b8d1e53 339 crtc_state = drm_atomic_get_existing_crtc_state(state, connector_state->crtc);
fc596660 340 crtc_state->connectors_changed = true;
623369e5 341
fa3ab4c2 342 DRM_DEBUG_ATOMIC("[CONNECTOR:%d:%s] using [ENCODER:%d:%s] on [CRTC:%d:%s]\n",
17a38d9c
DV
343 connector->base.id,
344 connector->name,
345 new_encoder->base.id,
346 new_encoder->name,
fa3ab4c2
VS
347 connector_state->crtc->base.id,
348 connector_state->crtc->name);
623369e5
DV
349
350 return 0;
351}
352
353static int
354mode_fixup(struct drm_atomic_state *state)
355{
df63b999 356 struct drm_crtc *crtc;
623369e5 357 struct drm_crtc_state *crtc_state;
df63b999 358 struct drm_connector *connector;
623369e5
DV
359 struct drm_connector_state *conn_state;
360 int i;
361 bool ret;
362
df63b999 363 for_each_crtc_in_state(state, crtc, crtc_state, i) {
fc596660
ML
364 if (!crtc_state->mode_changed &&
365 !crtc_state->connectors_changed)
623369e5
DV
366 continue;
367
368 drm_mode_copy(&crtc_state->adjusted_mode, &crtc_state->mode);
369 }
370
df63b999 371 for_each_connector_in_state(state, connector, conn_state, i) {
b5ceff20 372 const struct drm_encoder_helper_funcs *funcs;
623369e5
DV
373 struct drm_encoder *encoder;
374
623369e5
DV
375 WARN_ON(!!conn_state->best_encoder != !!conn_state->crtc);
376
377 if (!conn_state->crtc || !conn_state->best_encoder)
378 continue;
379
2943ef32
AH
380 crtc_state = drm_atomic_get_existing_crtc_state(state,
381 conn_state->crtc);
623369e5
DV
382
383 /*
384 * Each encoder has at most one connector (since we always steal
385 * it away), so we won't call ->mode_fixup twice.
386 */
387 encoder = conn_state->best_encoder;
388 funcs = encoder->helper_private;
389
862e686c
AT
390 ret = drm_bridge_mode_fixup(encoder->bridge, &crtc_state->mode,
391 &crtc_state->adjusted_mode);
392 if (!ret) {
393 DRM_DEBUG_ATOMIC("Bridge fixup failed\n");
394 return -EINVAL;
623369e5
DV
395 }
396
2827635e 397 if (funcs && funcs->atomic_check) {
4cd4df80
TR
398 ret = funcs->atomic_check(encoder, crtc_state,
399 conn_state);
400 if (ret) {
17a38d9c
DV
401 DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] check failed\n",
402 encoder->base.id, encoder->name);
4cd4df80
TR
403 return ret;
404 }
2827635e 405 } else if (funcs && funcs->mode_fixup) {
4cd4df80
TR
406 ret = funcs->mode_fixup(encoder, &crtc_state->mode,
407 &crtc_state->adjusted_mode);
408 if (!ret) {
17a38d9c
DV
409 DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] fixup failed\n",
410 encoder->base.id, encoder->name);
4cd4df80
TR
411 return -EINVAL;
412 }
623369e5
DV
413 }
414 }
415
df63b999 416 for_each_crtc_in_state(state, crtc, crtc_state, i) {
b5ceff20 417 const struct drm_crtc_helper_funcs *funcs;
623369e5 418
f55f1701
LY
419 if (!crtc_state->enable)
420 continue;
421
fc596660
ML
422 if (!crtc_state->mode_changed &&
423 !crtc_state->connectors_changed)
623369e5
DV
424 continue;
425
426 funcs = crtc->helper_private;
840bfe95
ACO
427 if (!funcs->mode_fixup)
428 continue;
429
623369e5
DV
430 ret = funcs->mode_fixup(crtc, &crtc_state->mode,
431 &crtc_state->adjusted_mode);
432 if (!ret) {
fa3ab4c2
VS
433 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] fixup failed\n",
434 crtc->base.id, crtc->name);
623369e5
DV
435 return -EINVAL;
436 }
437 }
438
439 return 0;
440}
441
d9b13620 442/**
f98bd3ef 443 * drm_atomic_helper_check_modeset - validate state object for modeset changes
d9b13620
DV
444 * @dev: DRM device
445 * @state: the driver state object
446 *
447 * Check the state object to see if the requested state is physically possible.
448 * This does all the crtc and connector related computations for an atomic
fc596660
ML
449 * update and adds any additional connectors needed for full modesets and calls
450 * down into ->mode_fixup functions of the driver backend.
451 *
452 * crtc_state->mode_changed is set when the input mode is changed.
453 * crtc_state->connectors_changed is set when a connector is added or
454 * removed from the crtc.
455 * crtc_state->active_changed is set when crtc_state->active changes,
456 * which is used for dpms.
d9b13620
DV
457 *
458 * IMPORTANT:
459 *
460 * Drivers which update ->mode_changed (e.g. in their ->atomic_check hooks if a
461 * plane update can't be done without a full modeset) _must_ call this function
462 * afterwards after that change. It is permitted to call this function multiple
463 * times for the same update, e.g. when the ->atomic_check functions depend upon
464 * the adjusted dotclock for fifo space allocation and watermark computation.
465 *
466 * RETURNS
467 * Zero for success or -errno
468 */
469int
934ce1c2 470drm_atomic_helper_check_modeset(struct drm_device *dev,
623369e5
DV
471 struct drm_atomic_state *state)
472{
623369e5
DV
473 struct drm_crtc *crtc;
474 struct drm_crtc_state *crtc_state;
df63b999
ACO
475 struct drm_connector *connector;
476 struct drm_connector_state *connector_state;
623369e5
DV
477 int i, ret;
478
df63b999 479 for_each_crtc_in_state(state, crtc, crtc_state, i) {
623369e5 480 if (!drm_mode_equal(&crtc->state->mode, &crtc_state->mode)) {
fa3ab4c2
VS
481 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] mode changed\n",
482 crtc->base.id, crtc->name);
623369e5
DV
483 crtc_state->mode_changed = true;
484 }
485
486 if (crtc->state->enable != crtc_state->enable) {
fa3ab4c2
VS
487 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] enable changed\n",
488 crtc->base.id, crtc->name);
fc596660
ML
489
490 /*
491 * For clarity this assignment is done here, but
492 * enable == 0 is only true when there are no
493 * connectors and a NULL mode.
494 *
495 * The other way around is true as well. enable != 0
496 * iff connectors are attached and a mode is set.
497 */
623369e5 498 crtc_state->mode_changed = true;
fc596660 499 crtc_state->connectors_changed = true;
623369e5
DV
500 }
501 }
502
8248b65d
ML
503 ret = handle_conflicting_encoders(state, state->legacy_set_config);
504 if (ret)
505 return ret;
40616a26 506
df63b999 507 for_each_connector_in_state(state, connector, connector_state, i) {
623369e5
DV
508 /*
509 * This only sets crtc->mode_changed for routing changes,
510 * drivers must set crtc->mode_changed themselves when connector
511 * properties need to be updated.
512 */
9459545b
ML
513 ret = update_connector_routing(state, connector,
514 connector_state);
623369e5
DV
515 if (ret)
516 return ret;
517 }
518
519 /*
520 * After all the routing has been prepared we need to add in any
521 * connector which is itself unchanged, but who's crtc changes it's
522 * configuration. This must be done before calling mode_fixup in case a
523 * crtc only changed its mode but has the same set of connectors.
524 */
df63b999 525 for_each_crtc_in_state(state, crtc, crtc_state, i) {
14de6c44
ML
526 bool has_connectors =
527 !!crtc_state->connector_mask;
623369e5 528
eab3bbef
DV
529 /*
530 * We must set ->active_changed after walking connectors for
531 * otherwise an update that only changes active would result in
532 * a full modeset because update_connector_routing force that.
533 */
534 if (crtc->state->active != crtc_state->active) {
fa3ab4c2
VS
535 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] active changed\n",
536 crtc->base.id, crtc->name);
eab3bbef
DV
537 crtc_state->active_changed = true;
538 }
539
2465ff62 540 if (!drm_atomic_crtc_needs_modeset(crtc_state))
623369e5
DV
541 continue;
542
fa3ab4c2
VS
543 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] needs all connectors, enable: %c, active: %c\n",
544 crtc->base.id, crtc->name,
17a38d9c 545 crtc_state->enable ? 'y' : 'n',
fa3ab4c2 546 crtc_state->active ? 'y' : 'n');
623369e5
DV
547
548 ret = drm_atomic_add_affected_connectors(state, crtc);
549 if (ret != 0)
550 return ret;
551
57744aa7
ML
552 ret = drm_atomic_add_affected_planes(state, crtc);
553 if (ret != 0)
554 return ret;
555
14de6c44 556 if (crtc_state->enable != has_connectors) {
fa3ab4c2
VS
557 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] enabled/connectors mismatch\n",
558 crtc->base.id, crtc->name);
623369e5
DV
559
560 return -EINVAL;
561 }
562 }
563
564 return mode_fixup(state);
565}
d9b13620 566EXPORT_SYMBOL(drm_atomic_helper_check_modeset);
623369e5 567
c2fcd274 568/**
f98bd3ef 569 * drm_atomic_helper_check_planes - validate state object for planes changes
c2fcd274
DV
570 * @dev: DRM device
571 * @state: the driver state object
572 *
573 * Check the state object to see if the requested state is physically possible.
d9b13620
DV
574 * This does all the plane update related checks using by calling into the
575 * ->atomic_check hooks provided by the driver.
c2fcd274 576 *
fc596660
ML
577 * It also sets crtc_state->planes_changed to indicate that a crtc has
578 * updated planes.
579 *
c2fcd274
DV
580 * RETURNS
581 * Zero for success or -errno
582 */
d9b13620
DV
583int
584drm_atomic_helper_check_planes(struct drm_device *dev,
585 struct drm_atomic_state *state)
c2fcd274 586{
df63b999
ACO
587 struct drm_crtc *crtc;
588 struct drm_crtc_state *crtc_state;
589 struct drm_plane *plane;
590 struct drm_plane_state *plane_state;
c2fcd274
DV
591 int i, ret = 0;
592
df63b999 593 for_each_plane_in_state(state, plane, plane_state, i) {
b5ceff20 594 const struct drm_plane_helper_funcs *funcs;
c2fcd274
DV
595
596 funcs = plane->helper_private;
597
598 drm_atomic_helper_plane_changed(state, plane_state, plane);
599
600 if (!funcs || !funcs->atomic_check)
601 continue;
602
603 ret = funcs->atomic_check(plane, plane_state);
604 if (ret) {
9f4c97a2
VS
605 DRM_DEBUG_ATOMIC("[PLANE:%d:%s] atomic driver check failed\n",
606 plane->base.id, plane->name);
c2fcd274
DV
607 return ret;
608 }
609 }
610
df63b999 611 for_each_crtc_in_state(state, crtc, crtc_state, i) {
b5ceff20 612 const struct drm_crtc_helper_funcs *funcs;
c2fcd274
DV
613
614 funcs = crtc->helper_private;
615
616 if (!funcs || !funcs->atomic_check)
617 continue;
618
619 ret = funcs->atomic_check(crtc, state->crtc_states[i]);
620 if (ret) {
fa3ab4c2
VS
621 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] atomic driver check failed\n",
622 crtc->base.id, crtc->name);
c2fcd274
DV
623 return ret;
624 }
625 }
626
d9b13620
DV
627 return ret;
628}
629EXPORT_SYMBOL(drm_atomic_helper_check_planes);
630
631/**
632 * drm_atomic_helper_check - validate state object
633 * @dev: DRM device
634 * @state: the driver state object
635 *
636 * Check the state object to see if the requested state is physically possible.
637 * Only crtcs and planes have check callbacks, so for any additional (global)
638 * checking that a driver needs it can simply wrap that around this function.
639 * Drivers without such needs can directly use this as their ->atomic_check()
640 * callback.
641 *
b4274fbe
DV
642 * This just wraps the two parts of the state checking for planes and modeset
643 * state in the default order: First it calls drm_atomic_helper_check_modeset()
644 * and then drm_atomic_helper_check_planes(). The assumption is that the
645 * ->atomic_check functions depend upon an updated adjusted_mode.clock to
646 * e.g. properly compute watermarks.
647 *
d9b13620
DV
648 * RETURNS
649 * Zero for success or -errno
650 */
651int drm_atomic_helper_check(struct drm_device *dev,
652 struct drm_atomic_state *state)
653{
654 int ret;
655
b4274fbe 656 ret = drm_atomic_helper_check_modeset(dev, state);
d9b13620
DV
657 if (ret)
658 return ret;
659
b4274fbe 660 ret = drm_atomic_helper_check_planes(dev, state);
934ce1c2
RC
661 if (ret)
662 return ret;
663
c2fcd274
DV
664 return ret;
665}
666EXPORT_SYMBOL(drm_atomic_helper_check);
667
623369e5
DV
668static void
669disable_outputs(struct drm_device *dev, struct drm_atomic_state *old_state)
670{
df63b999
ACO
671 struct drm_connector *connector;
672 struct drm_connector_state *old_conn_state;
673 struct drm_crtc *crtc;
674 struct drm_crtc_state *old_crtc_state;
623369e5
DV
675 int i;
676
df63b999 677 for_each_connector_in_state(old_state, connector, old_conn_state, i) {
b5ceff20 678 const struct drm_encoder_helper_funcs *funcs;
623369e5
DV
679 struct drm_encoder *encoder;
680
623369e5
DV
681 /* Shut down everything that's in the changeset and currently
682 * still on. So need to check the old, saved state. */
df63b999 683 if (!old_conn_state->crtc)
623369e5
DV
684 continue;
685
2943ef32
AH
686 old_crtc_state = drm_atomic_get_existing_crtc_state(old_state,
687 old_conn_state->crtc);
eab3bbef 688
4218a32f 689 if (!old_crtc_state->active ||
2465ff62 690 !drm_atomic_crtc_needs_modeset(old_conn_state->crtc->state))
eab3bbef
DV
691 continue;
692
46df9adb 693 encoder = old_conn_state->best_encoder;
623369e5 694
46df9adb
RC
695 /* We shouldn't get this far if we didn't previously have
696 * an encoder.. but WARN_ON() rather than explode.
697 */
698 if (WARN_ON(!encoder))
623369e5
DV
699 continue;
700
701 funcs = encoder->helper_private;
702
17a38d9c
DV
703 DRM_DEBUG_ATOMIC("disabling [ENCODER:%d:%s]\n",
704 encoder->base.id, encoder->name);
95d6eb3b 705
623369e5
DV
706 /*
707 * Each encoder has at most one connector (since we always steal
f98bd3ef 708 * it away), so we won't call disable hooks twice.
623369e5 709 */
862e686c 710 drm_bridge_disable(encoder->bridge);
623369e5
DV
711
712 /* Right function depends upon target state. */
2827635e
NT
713 if (funcs) {
714 if (connector->state->crtc && funcs->prepare)
715 funcs->prepare(encoder);
716 else if (funcs->disable)
717 funcs->disable(encoder);
718 else if (funcs->dpms)
719 funcs->dpms(encoder, DRM_MODE_DPMS_OFF);
720 }
623369e5 721
862e686c 722 drm_bridge_post_disable(encoder->bridge);
623369e5
DV
723 }
724
df63b999 725 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
b5ceff20 726 const struct drm_crtc_helper_funcs *funcs;
623369e5
DV
727
728 /* Shut down everything that needs a full modeset. */
2465ff62 729 if (!drm_atomic_crtc_needs_modeset(crtc->state))
eab3bbef
DV
730 continue;
731
732 if (!old_crtc_state->active)
623369e5
DV
733 continue;
734
735 funcs = crtc->helper_private;
736
fa3ab4c2
VS
737 DRM_DEBUG_ATOMIC("disabling [CRTC:%d:%s]\n",
738 crtc->base.id, crtc->name);
95d6eb3b
DV
739
740
623369e5 741 /* Right function depends upon target state. */
ee0a89cf 742 if (crtc->state->enable && funcs->prepare)
623369e5
DV
743 funcs->prepare(crtc);
744 else if (funcs->disable)
745 funcs->disable(crtc);
746 else
747 funcs->dpms(crtc, DRM_MODE_DPMS_OFF);
748 }
749}
750
4c18d301
DV
751/**
752 * drm_atomic_helper_update_legacy_modeset_state - update legacy modeset state
753 * @dev: DRM device
754 * @old_state: atomic state object with old state structures
755 *
756 * This function updates all the various legacy modeset state pointers in
757 * connectors, encoders and crtcs. It also updates the timestamping constants
758 * used for precise vblank timestamps by calling
759 * drm_calc_timestamping_constants().
760 *
761 * Drivers can use this for building their own atomic commit if they don't have
762 * a pure helper-based modeset implementation.
763 */
764void
765drm_atomic_helper_update_legacy_modeset_state(struct drm_device *dev,
766 struct drm_atomic_state *old_state)
623369e5 767{
df63b999
ACO
768 struct drm_connector *connector;
769 struct drm_connector_state *old_conn_state;
770 struct drm_crtc *crtc;
771 struct drm_crtc_state *old_crtc_state;
623369e5
DV
772 int i;
773
8c10342c 774 /* clear out existing links and update dpms */
df63b999 775 for_each_connector_in_state(old_state, connector, old_conn_state, i) {
8c10342c
ML
776 if (connector->encoder) {
777 WARN_ON(!connector->encoder->crtc);
778
779 connector->encoder->crtc = NULL;
780 connector->encoder = NULL;
781 }
623369e5 782
8c10342c
ML
783 crtc = connector->state->crtc;
784 if ((!crtc && old_conn_state->crtc) ||
785 (crtc && drm_atomic_crtc_needs_modeset(crtc->state))) {
786 struct drm_property *dpms_prop =
787 dev->mode_config.dpms_property;
788 int mode = DRM_MODE_DPMS_OFF;
623369e5 789
8c10342c
ML
790 if (crtc && crtc->state->active)
791 mode = DRM_MODE_DPMS_ON;
792
793 connector->dpms = mode;
794 drm_object_property_set_value(&connector->base,
795 dpms_prop, mode);
796 }
623369e5
DV
797 }
798
799 /* set new links */
df63b999
ACO
800 for_each_connector_in_state(old_state, connector, old_conn_state, i) {
801 if (!connector->state->crtc)
623369e5
DV
802 continue;
803
804 if (WARN_ON(!connector->state->best_encoder))
805 continue;
806
807 connector->encoder = connector->state->best_encoder;
808 connector->encoder->crtc = connector->state->crtc;
809 }
810
811 /* set legacy state in the crtc structure */
df63b999 812 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
2660801f
ML
813 struct drm_plane *primary = crtc->primary;
814
623369e5
DV
815 crtc->mode = crtc->state->mode;
816 crtc->enabled = crtc->state->enable;
2660801f
ML
817
818 if (drm_atomic_get_existing_plane_state(old_state, primary) &&
819 primary->state->crtc == crtc) {
820 crtc->x = primary->state->src_x >> 16;
821 crtc->y = primary->state->src_y >> 16;
822 }
3d51d2d2
DV
823
824 if (crtc->state->enable)
825 drm_calc_timestamping_constants(crtc,
826 &crtc->state->adjusted_mode);
623369e5
DV
827 }
828}
4c18d301 829EXPORT_SYMBOL(drm_atomic_helper_update_legacy_modeset_state);
623369e5
DV
830
831static void
832crtc_set_mode(struct drm_device *dev, struct drm_atomic_state *old_state)
833{
df63b999
ACO
834 struct drm_crtc *crtc;
835 struct drm_crtc_state *old_crtc_state;
836 struct drm_connector *connector;
837 struct drm_connector_state *old_conn_state;
623369e5
DV
838 int i;
839
df63b999 840 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
b5ceff20 841 const struct drm_crtc_helper_funcs *funcs;
623369e5 842
df63b999 843 if (!crtc->state->mode_changed)
623369e5
DV
844 continue;
845
846 funcs = crtc->helper_private;
847
c982bd90 848 if (crtc->state->enable && funcs->mode_set_nofb) {
fa3ab4c2
VS
849 DRM_DEBUG_ATOMIC("modeset on [CRTC:%d:%s]\n",
850 crtc->base.id, crtc->name);
95d6eb3b 851
623369e5 852 funcs->mode_set_nofb(crtc);
95d6eb3b 853 }
623369e5
DV
854 }
855
df63b999 856 for_each_connector_in_state(old_state, connector, old_conn_state, i) {
b5ceff20 857 const struct drm_encoder_helper_funcs *funcs;
623369e5 858 struct drm_crtc_state *new_crtc_state;
623369e5
DV
859 struct drm_encoder *encoder;
860 struct drm_display_mode *mode, *adjusted_mode;
861
df63b999 862 if (!connector->state->best_encoder)
623369e5
DV
863 continue;
864
865 encoder = connector->state->best_encoder;
866 funcs = encoder->helper_private;
867 new_crtc_state = connector->state->crtc->state;
868 mode = &new_crtc_state->mode;
869 adjusted_mode = &new_crtc_state->adjusted_mode;
870
eab3bbef
DV
871 if (!new_crtc_state->mode_changed)
872 continue;
873
17a38d9c
DV
874 DRM_DEBUG_ATOMIC("modeset on [ENCODER:%d:%s]\n",
875 encoder->base.id, encoder->name);
95d6eb3b 876
623369e5
DV
877 /*
878 * Each encoder has at most one connector (since we always steal
f98bd3ef 879 * it away), so we won't call mode_set hooks twice.
623369e5 880 */
2827635e 881 if (funcs && funcs->mode_set)
c982bd90 882 funcs->mode_set(encoder, mode, adjusted_mode);
623369e5 883
862e686c 884 drm_bridge_mode_set(encoder->bridge, mode, adjusted_mode);
623369e5
DV
885 }
886}
887
888/**
1af434a9 889 * drm_atomic_helper_commit_modeset_disables - modeset commit to disable outputs
623369e5 890 * @dev: DRM device
a072f809 891 * @old_state: atomic state object with old state structures
623369e5 892 *
1af434a9 893 * This function shuts down all the outputs that need to be shut down and
623369e5 894 * prepares them (if required) with the new mode.
1af434a9 895 *
60acc4eb 896 * For compatibility with legacy crtc helpers this should be called before
1af434a9
DV
897 * drm_atomic_helper_commit_planes(), which is what the default commit function
898 * does. But drivers with different needs can group the modeset commits together
899 * and do the plane commits at the end. This is useful for drivers doing runtime
900 * PM since planes updates then only happen when the CRTC is actually enabled.
623369e5 901 */
1af434a9
DV
902void drm_atomic_helper_commit_modeset_disables(struct drm_device *dev,
903 struct drm_atomic_state *old_state)
623369e5 904{
a072f809 905 disable_outputs(dev, old_state);
4c18d301
DV
906
907 drm_atomic_helper_update_legacy_modeset_state(dev, old_state);
908
a072f809 909 crtc_set_mode(dev, old_state);
623369e5 910}
1af434a9 911EXPORT_SYMBOL(drm_atomic_helper_commit_modeset_disables);
623369e5
DV
912
913/**
1af434a9 914 * drm_atomic_helper_commit_modeset_enables - modeset commit to enable outputs
623369e5
DV
915 * @dev: DRM device
916 * @old_state: atomic state object with old state structures
917 *
1af434a9
DV
918 * This function enables all the outputs with the new configuration which had to
919 * be turned off for the update.
920 *
60acc4eb 921 * For compatibility with legacy crtc helpers this should be called after
1af434a9
DV
922 * drm_atomic_helper_commit_planes(), which is what the default commit function
923 * does. But drivers with different needs can group the modeset commits together
924 * and do the plane commits at the end. This is useful for drivers doing runtime
925 * PM since planes updates then only happen when the CRTC is actually enabled.
623369e5 926 */
1af434a9
DV
927void drm_atomic_helper_commit_modeset_enables(struct drm_device *dev,
928 struct drm_atomic_state *old_state)
623369e5 929{
df63b999
ACO
930 struct drm_crtc *crtc;
931 struct drm_crtc_state *old_crtc_state;
932 struct drm_connector *connector;
933 struct drm_connector_state *old_conn_state;
623369e5
DV
934 int i;
935
df63b999 936 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
b5ceff20 937 const struct drm_crtc_helper_funcs *funcs;
623369e5
DV
938
939 /* Need to filter out CRTCs where only planes change. */
2465ff62 940 if (!drm_atomic_crtc_needs_modeset(crtc->state))
eab3bbef
DV
941 continue;
942
943 if (!crtc->state->active)
623369e5
DV
944 continue;
945
946 funcs = crtc->helper_private;
947
ee0a89cf 948 if (crtc->state->enable) {
fa3ab4c2
VS
949 DRM_DEBUG_ATOMIC("enabling [CRTC:%d:%s]\n",
950 crtc->base.id, crtc->name);
95d6eb3b 951
ee0a89cf
DV
952 if (funcs->enable)
953 funcs->enable(crtc);
954 else
955 funcs->commit(crtc);
956 }
623369e5
DV
957 }
958
df63b999 959 for_each_connector_in_state(old_state, connector, old_conn_state, i) {
b5ceff20 960 const struct drm_encoder_helper_funcs *funcs;
623369e5
DV
961 struct drm_encoder *encoder;
962
df63b999 963 if (!connector->state->best_encoder)
623369e5
DV
964 continue;
965
4218a32f 966 if (!connector->state->crtc->state->active ||
2465ff62 967 !drm_atomic_crtc_needs_modeset(connector->state->crtc->state))
eab3bbef
DV
968 continue;
969
623369e5
DV
970 encoder = connector->state->best_encoder;
971 funcs = encoder->helper_private;
972
17a38d9c
DV
973 DRM_DEBUG_ATOMIC("enabling [ENCODER:%d:%s]\n",
974 encoder->base.id, encoder->name);
95d6eb3b 975
623369e5
DV
976 /*
977 * Each encoder has at most one connector (since we always steal
f98bd3ef 978 * it away), so we won't call enable hooks twice.
623369e5 979 */
862e686c 980 drm_bridge_pre_enable(encoder->bridge);
623369e5 981
2827635e
NT
982 if (funcs) {
983 if (funcs->enable)
984 funcs->enable(encoder);
985 else if (funcs->commit)
986 funcs->commit(encoder);
987 }
623369e5 988
862e686c 989 drm_bridge_enable(encoder->bridge);
623369e5
DV
990 }
991}
1af434a9 992EXPORT_SYMBOL(drm_atomic_helper_commit_modeset_enables);
623369e5 993
4c5b7f3a
RC
994/**
995 * drm_atomic_helper_wait_for_fences - wait for fences stashed in plane state
996 * @dev: DRM device
997 * @state: atomic state object with old state structures
998 *
999 * For implicit sync, driver should fish the exclusive fence out from the
1000 * incoming fb's and stash it in the drm_plane_state. This is called after
1001 * drm_atomic_helper_swap_state() so it uses the current plane state (and
1002 * just uses the atomic state to find the changed planes)
1003 */
1004void drm_atomic_helper_wait_for_fences(struct drm_device *dev,
e2330f07
DV
1005 struct drm_atomic_state *state)
1006{
df63b999
ACO
1007 struct drm_plane *plane;
1008 struct drm_plane_state *plane_state;
e2330f07
DV
1009 int i;
1010
df63b999
ACO
1011 for_each_plane_in_state(state, plane, plane_state, i) {
1012 if (!plane->state->fence)
e2330f07
DV
1013 continue;
1014
1015 WARN_ON(!plane->state->fb);
1016
1017 fence_wait(plane->state->fence, false);
1018 fence_put(plane->state->fence);
1019 plane->state->fence = NULL;
1020 }
1021}
4c5b7f3a 1022EXPORT_SYMBOL(drm_atomic_helper_wait_for_fences);
e2330f07 1023
c240906d
JK
1024/**
1025 * drm_atomic_helper_framebuffer_changed - check if framebuffer has changed
1026 * @dev: DRM device
1027 * @old_state: atomic state object with old state structures
1028 * @crtc: DRM crtc
1029 *
1030 * Checks whether the framebuffer used for this CRTC changes as a result of
1031 * the atomic update. This is useful for drivers which cannot use
1032 * drm_atomic_helper_wait_for_vblanks() and need to reimplement its
1033 * functionality.
1034 *
1035 * Returns:
1036 * true if the framebuffer changed.
1037 */
1038bool drm_atomic_helper_framebuffer_changed(struct drm_device *dev,
1039 struct drm_atomic_state *old_state,
1040 struct drm_crtc *crtc)
ab58e338
DV
1041{
1042 struct drm_plane *plane;
1043 struct drm_plane_state *old_plane_state;
ab58e338
DV
1044 int i;
1045
df63b999 1046 for_each_plane_in_state(old_state, plane, old_plane_state, i) {
ab58e338
DV
1047 if (plane->state->crtc != crtc &&
1048 old_plane_state->crtc != crtc)
1049 continue;
1050
1051 if (plane->state->fb != old_plane_state->fb)
1052 return true;
1053 }
1054
1055 return false;
1056}
c240906d 1057EXPORT_SYMBOL(drm_atomic_helper_framebuffer_changed);
ab58e338 1058
5ee3229c
RC
1059/**
1060 * drm_atomic_helper_wait_for_vblanks - wait for vblank on crtcs
1061 * @dev: DRM device
1062 * @old_state: atomic state object with old state structures
1063 *
1064 * Helper to, after atomic commit, wait for vblanks on all effected
1065 * crtcs (ie. before cleaning up old framebuffers using
ab58e338
DV
1066 * drm_atomic_helper_cleanup_planes()). It will only wait on crtcs where the
1067 * framebuffers have actually changed to optimize for the legacy cursor and
1068 * plane update use-case.
5ee3229c
RC
1069 */
1070void
1071drm_atomic_helper_wait_for_vblanks(struct drm_device *dev,
1072 struct drm_atomic_state *old_state)
623369e5
DV
1073{
1074 struct drm_crtc *crtc;
1075 struct drm_crtc_state *old_crtc_state;
623369e5
DV
1076 int i, ret;
1077
df63b999 1078 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
623369e5
DV
1079 /* No one cares about the old state, so abuse it for tracking
1080 * and store whether we hold a vblank reference (and should do a
1081 * vblank wait) in the ->enable boolean. */
1082 old_crtc_state->enable = false;
1083
1084 if (!crtc->state->enable)
1085 continue;
1086
f02ad907
DV
1087 /* Legacy cursor ioctls are completely unsynced, and userspace
1088 * relies on that (by doing tons of cursor updates). */
1089 if (old_state->legacy_cursor_update)
1090 continue;
1091
c240906d
JK
1092 if (!drm_atomic_helper_framebuffer_changed(dev,
1093 old_state, crtc))
ab58e338
DV
1094 continue;
1095
623369e5
DV
1096 ret = drm_crtc_vblank_get(crtc);
1097 if (ret != 0)
1098 continue;
1099
1100 old_crtc_state->enable = true;
d4853630 1101 old_crtc_state->last_vblank_count = drm_crtc_vblank_count(crtc);
623369e5
DV
1102 }
1103
df63b999
ACO
1104 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
1105 if (!old_crtc_state->enable)
623369e5
DV
1106 continue;
1107
1108 ret = wait_event_timeout(dev->vblank[i].queue,
1109 old_crtc_state->last_vblank_count !=
d4853630 1110 drm_crtc_vblank_count(crtc),
623369e5
DV
1111 msecs_to_jiffies(50));
1112
8d4d0d70
VS
1113 WARN(!ret, "[CRTC:%d] vblank wait timed out\n", crtc->base.id);
1114
623369e5
DV
1115 drm_crtc_vblank_put(crtc);
1116 }
1117}
5ee3229c 1118EXPORT_SYMBOL(drm_atomic_helper_wait_for_vblanks);
623369e5
DV
1119
1120/**
1121 * drm_atomic_helper_commit - commit validated state object
1122 * @dev: DRM device
1123 * @state: the driver state object
286dbb8d 1124 * @nonblocking: whether nonblocking behavior is requested.
623369e5
DV
1125 *
1126 * This function commits a with drm_atomic_helper_check() pre-validated state
1127 * object. This can still fail when e.g. the framebuffer reservation fails. For
286dbb8d 1128 * now this doesn't implement nonblocking commits.
623369e5 1129 *
286dbb8d 1130 * Note that right now this function does not support nonblocking commits, hence
6e48ae32
DV
1131 * driver writers must implement their own version for now. Also note that the
1132 * default ordering of how the various stages are called is to match the legacy
1133 * modeset helper library closest. One peculiarity of that is that it doesn't
1134 * mesh well with runtime PM at all.
1135 *
1136 * For drivers supporting runtime PM the recommended sequence is
1137 *
1138 * drm_atomic_helper_commit_modeset_disables(dev, state);
1139 *
1140 * drm_atomic_helper_commit_modeset_enables(dev, state);
1141 *
1142 * drm_atomic_helper_commit_planes(dev, state, true);
1143 *
1144 * See the kerneldoc entries for these three functions for more details.
1145 *
623369e5
DV
1146 * RETURNS
1147 * Zero for success or -errno.
1148 */
1149int drm_atomic_helper_commit(struct drm_device *dev,
1150 struct drm_atomic_state *state,
286dbb8d 1151 bool nonblock)
623369e5
DV
1152{
1153 int ret;
1154
286dbb8d 1155 if (nonblock)
623369e5
DV
1156 return -EBUSY;
1157
1158 ret = drm_atomic_helper_prepare_planes(dev, state);
1159 if (ret)
1160 return ret;
1161
1162 /*
1163 * This is the point of no return - everything below never fails except
1164 * when the hw goes bonghits. Which means we can commit the new state on
1165 * the software side now.
1166 */
1167
1168 drm_atomic_helper_swap_state(dev, state);
1169
1170 /*
1171 * Everything below can be run asynchronously without the need to grab
f98bd3ef 1172 * any modeset locks at all under one condition: It must be guaranteed
623369e5
DV
1173 * that the asynchronous work has either been cancelled (if the driver
1174 * supports it, which at least requires that the framebuffers get
1175 * cleaned up with drm_atomic_helper_cleanup_planes()) or completed
1176 * before the new state gets committed on the software side with
1177 * drm_atomic_helper_swap_state().
1178 *
1179 * This scheme allows new atomic state updates to be prepared and
1180 * checked in parallel to the asynchronous completion of the previous
1181 * update. Which is important since compositors need to figure out the
1182 * composition of the next frame right after having submitted the
1183 * current layout.
1184 */
1185
4c5b7f3a 1186 drm_atomic_helper_wait_for_fences(dev, state);
e2330f07 1187
1af434a9 1188 drm_atomic_helper_commit_modeset_disables(dev, state);
623369e5 1189
aef9dbb8 1190 drm_atomic_helper_commit_planes(dev, state, false);
623369e5 1191
1af434a9 1192 drm_atomic_helper_commit_modeset_enables(dev, state);
623369e5 1193
5ee3229c 1194 drm_atomic_helper_wait_for_vblanks(dev, state);
623369e5
DV
1195
1196 drm_atomic_helper_cleanup_planes(dev, state);
1197
1198 drm_atomic_state_free(state);
1199
1200 return 0;
1201}
1202EXPORT_SYMBOL(drm_atomic_helper_commit);
1203
e8c833a7 1204/**
286dbb8d 1205 * DOC: implementing nonblocking commit
e8c833a7 1206 *
286dbb8d
ML
1207 * For now the atomic helpers don't support nonblocking commit directly. If
1208 * there is real need it could be added though, using the dma-buf fence
1209 * infrastructure for generic synchronization with outstanding rendering.
e8c833a7 1210 *
286dbb8d
ML
1211 * For now drivers have to implement nonblocking commit themselves, with the
1212 * following sequence being the recommended one:
e8c833a7
DV
1213 *
1214 * 1. Run drm_atomic_helper_prepare_planes() first. This is the only function
1215 * which commit needs to call which can fail, so we want to run it first and
1216 * synchronously.
1217 *
286dbb8d 1218 * 2. Synchronize with any outstanding nonblocking commit worker threads which
e8c833a7
DV
1219 * might be affected the new state update. This can be done by either cancelling
1220 * or flushing the work items, depending upon whether the driver can deal with
1221 * cancelled updates. Note that it is important to ensure that the framebuffer
1222 * cleanup is still done when cancelling.
1223 *
1224 * For sufficient parallelism it is recommended to have a work item per crtc
1225 * (for updates which don't touch global state) and a global one. Then we only
1226 * need to synchronize with the crtc work items for changed crtcs and the global
1227 * work item, which allows nice concurrent updates on disjoint sets of crtcs.
1228 *
1229 * 3. The software state is updated synchronously with
26196f7e 1230 * drm_atomic_helper_swap_state(). Doing this under the protection of all modeset
e8c833a7 1231 * locks means concurrent callers never see inconsistent state. And doing this
286dbb8d
ML
1232 * while it's guaranteed that no relevant nonblocking worker runs means that
1233 * nonblocking workers do not need grab any locks. Actually they must not grab
1234 * locks, for otherwise the work flushing will deadlock.
e8c833a7
DV
1235 *
1236 * 4. Schedule a work item to do all subsequent steps, using the split-out
1237 * commit helpers: a) pre-plane commit b) plane commit c) post-plane commit and
1238 * then cleaning up the framebuffers after the old framebuffer is no longer
1239 * being displayed.
1240 */
1241
c2fcd274 1242/**
2e3afd47 1243 * drm_atomic_helper_prepare_planes - prepare plane resources before commit
c2fcd274 1244 * @dev: DRM device
2e3afd47 1245 * @state: atomic state object with new state structures
c2fcd274
DV
1246 *
1247 * This function prepares plane state, specifically framebuffers, for the new
1248 * configuration. If any failure is encountered this function will call
1249 * ->cleanup_fb on any already successfully prepared framebuffer.
1250 *
1251 * Returns:
1252 * 0 on success, negative error code on failure.
1253 */
1254int drm_atomic_helper_prepare_planes(struct drm_device *dev,
1255 struct drm_atomic_state *state)
1256{
1257 int nplanes = dev->mode_config.num_total_plane;
1258 int ret, i;
1259
1260 for (i = 0; i < nplanes; i++) {
b5ceff20 1261 const struct drm_plane_helper_funcs *funcs;
c2fcd274 1262 struct drm_plane *plane = state->planes[i];
d136dfee 1263 struct drm_plane_state *plane_state = state->plane_states[i];
c2fcd274
DV
1264
1265 if (!plane)
1266 continue;
1267
1268 funcs = plane->helper_private;
1269
844f9111
ML
1270 if (funcs->prepare_fb) {
1271 ret = funcs->prepare_fb(plane, plane_state);
c2fcd274
DV
1272 if (ret)
1273 goto fail;
1274 }
1275 }
1276
1277 return 0;
1278
1279fail:
1280 for (i--; i >= 0; i--) {
b5ceff20 1281 const struct drm_plane_helper_funcs *funcs;
c2fcd274 1282 struct drm_plane *plane = state->planes[i];
d136dfee 1283 struct drm_plane_state *plane_state = state->plane_states[i];
c2fcd274
DV
1284
1285 if (!plane)
1286 continue;
1287
1288 funcs = plane->helper_private;
1289
844f9111
ML
1290 if (funcs->cleanup_fb)
1291 funcs->cleanup_fb(plane, plane_state);
c2fcd274
DV
1292
1293 }
1294
1295 return ret;
1296}
1297EXPORT_SYMBOL(drm_atomic_helper_prepare_planes);
1298
aef9dbb8
DV
1299bool plane_crtc_active(struct drm_plane_state *state)
1300{
1301 return state->crtc && state->crtc->state->active;
1302}
1303
c2fcd274
DV
1304/**
1305 * drm_atomic_helper_commit_planes - commit plane state
1306 * @dev: DRM device
b0fcfc89 1307 * @old_state: atomic state object with old state structures
aef9dbb8 1308 * @active_only: Only commit on active CRTC if set
c2fcd274
DV
1309 *
1310 * This function commits the new plane state using the plane and atomic helper
1311 * functions for planes and crtcs. It assumes that the atomic state has already
1312 * been pushed into the relevant object state pointers, since this step can no
1313 * longer fail.
1314 *
b0fcfc89 1315 * It still requires the global state object @old_state to know which planes and
c2fcd274 1316 * crtcs need to be updated though.
de28d021
ML
1317 *
1318 * Note that this function does all plane updates across all CRTCs in one step.
1319 * If the hardware can't support this approach look at
1320 * drm_atomic_helper_commit_planes_on_crtc() instead.
6e48ae32
DV
1321 *
1322 * Plane parameters can be updated by applications while the associated CRTC is
1323 * disabled. The DRM/KMS core will store the parameters in the plane state,
1324 * which will be available to the driver when the CRTC is turned on. As a result
1325 * most drivers don't need to be immediately notified of plane updates for a
1326 * disabled CRTC.
1327 *
1328 * Unless otherwise needed, drivers are advised to set the @active_only
1329 * parameters to true in order not to receive plane update notifications related
1330 * to a disabled CRTC. This avoids the need to manually ignore plane updates in
1331 * driver code when the driver and/or hardware can't or just don't need to deal
1332 * with updates on disabled CRTCs, for example when supporting runtime PM.
1333 *
1334 * The drm_atomic_helper_commit() default implementation only sets @active_only
1335 * to false to most closely match the behaviour of the legacy helpers. This should
1336 * not be copied blindly by drivers.
c2fcd274
DV
1337 */
1338void drm_atomic_helper_commit_planes(struct drm_device *dev,
aef9dbb8
DV
1339 struct drm_atomic_state *old_state,
1340 bool active_only)
c2fcd274 1341{
df63b999
ACO
1342 struct drm_crtc *crtc;
1343 struct drm_crtc_state *old_crtc_state;
1344 struct drm_plane *plane;
1345 struct drm_plane_state *old_plane_state;
c2fcd274
DV
1346 int i;
1347
df63b999 1348 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
b5ceff20 1349 const struct drm_crtc_helper_funcs *funcs;
c2fcd274
DV
1350
1351 funcs = crtc->helper_private;
1352
1353 if (!funcs || !funcs->atomic_begin)
1354 continue;
1355
aef9dbb8
DV
1356 if (active_only && !crtc->state->active)
1357 continue;
1358
613d2b27 1359 funcs->atomic_begin(crtc, old_crtc_state);
c2fcd274
DV
1360 }
1361
df63b999 1362 for_each_plane_in_state(old_state, plane, old_plane_state, i) {
b5ceff20 1363 const struct drm_plane_helper_funcs *funcs;
216c59d6 1364 bool disabling;
c2fcd274
DV
1365
1366 funcs = plane->helper_private;
1367
3cad4b68 1368 if (!funcs)
c2fcd274
DV
1369 continue;
1370
216c59d6
LP
1371 disabling = drm_atomic_plane_disabling(plane, old_plane_state);
1372
1373 if (active_only) {
1374 /*
1375 * Skip planes related to inactive CRTCs. If the plane
1376 * is enabled use the state of the current CRTC. If the
1377 * plane is being disabled use the state of the old
1378 * CRTC to avoid skipping planes being disabled on an
1379 * active CRTC.
1380 */
1381 if (!disabling && !plane_crtc_active(plane->state))
1382 continue;
1383 if (disabling && !plane_crtc_active(old_plane_state))
1384 continue;
1385 }
aef9dbb8 1386
407b8bd9
TR
1387 /*
1388 * Special-case disabling the plane if drivers support it.
1389 */
216c59d6 1390 if (disabling && funcs->atomic_disable)
407b8bd9 1391 funcs->atomic_disable(plane, old_plane_state);
216c59d6 1392 else if (plane->state->crtc || disabling)
407b8bd9 1393 funcs->atomic_update(plane, old_plane_state);
c2fcd274
DV
1394 }
1395
df63b999 1396 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
b5ceff20 1397 const struct drm_crtc_helper_funcs *funcs;
c2fcd274
DV
1398
1399 funcs = crtc->helper_private;
1400
1401 if (!funcs || !funcs->atomic_flush)
1402 continue;
1403
aef9dbb8
DV
1404 if (active_only && !crtc->state->active)
1405 continue;
1406
613d2b27 1407 funcs->atomic_flush(crtc, old_crtc_state);
c2fcd274
DV
1408 }
1409}
1410EXPORT_SYMBOL(drm_atomic_helper_commit_planes);
1411
de28d021
ML
1412/**
1413 * drm_atomic_helper_commit_planes_on_crtc - commit plane state for a crtc
1414 * @old_crtc_state: atomic state object with the old crtc state
1415 *
1416 * This function commits the new plane state using the plane and atomic helper
1417 * functions for planes on the specific crtc. It assumes that the atomic state
1418 * has already been pushed into the relevant object state pointers, since this
1419 * step can no longer fail.
1420 *
1421 * This function is useful when plane updates should be done crtc-by-crtc
1422 * instead of one global step like drm_atomic_helper_commit_planes() does.
1423 *
1424 * This function can only be savely used when planes are not allowed to move
1425 * between different CRTCs because this function doesn't handle inter-CRTC
1426 * depencies. Callers need to ensure that either no such depencies exist,
1427 * resolve them through ordering of commit calls or through some other means.
1428 */
1429void
1430drm_atomic_helper_commit_planes_on_crtc(struct drm_crtc_state *old_crtc_state)
1431{
1432 const struct drm_crtc_helper_funcs *crtc_funcs;
1433 struct drm_crtc *crtc = old_crtc_state->crtc;
1434 struct drm_atomic_state *old_state = old_crtc_state->state;
1435 struct drm_plane *plane;
1436 unsigned plane_mask;
1437
1438 plane_mask = old_crtc_state->plane_mask;
1439 plane_mask |= crtc->state->plane_mask;
1440
1441 crtc_funcs = crtc->helper_private;
1442 if (crtc_funcs && crtc_funcs->atomic_begin)
613d2b27 1443 crtc_funcs->atomic_begin(crtc, old_crtc_state);
de28d021
ML
1444
1445 drm_for_each_plane_mask(plane, crtc->dev, plane_mask) {
1446 struct drm_plane_state *old_plane_state =
1447 drm_atomic_get_existing_plane_state(old_state, plane);
1448 const struct drm_plane_helper_funcs *plane_funcs;
1449
1450 plane_funcs = plane->helper_private;
1451
1452 if (!old_plane_state || !plane_funcs)
1453 continue;
1454
1455 WARN_ON(plane->state->crtc && plane->state->crtc != crtc);
1456
1457 if (drm_atomic_plane_disabling(plane, old_plane_state) &&
1458 plane_funcs->atomic_disable)
1459 plane_funcs->atomic_disable(plane, old_plane_state);
1460 else if (plane->state->crtc ||
1461 drm_atomic_plane_disabling(plane, old_plane_state))
1462 plane_funcs->atomic_update(plane, old_plane_state);
1463 }
1464
1465 if (crtc_funcs && crtc_funcs->atomic_flush)
613d2b27 1466 crtc_funcs->atomic_flush(crtc, old_crtc_state);
de28d021
ML
1467}
1468EXPORT_SYMBOL(drm_atomic_helper_commit_planes_on_crtc);
1469
6753ba97
JS
1470/**
1471 * drm_atomic_helper_disable_planes_on_crtc - helper to disable CRTC's planes
1472 * @crtc: CRTC
1473 * @atomic: if set, synchronize with CRTC's atomic_begin/flush hooks
1474 *
1475 * Disables all planes associated with the given CRTC. This can be
1476 * used for instance in the CRTC helper disable callback to disable
1477 * all planes before shutting down the display pipeline.
1478 *
1479 * If the atomic-parameter is set the function calls the CRTC's
1480 * atomic_begin hook before and atomic_flush hook after disabling the
1481 * planes.
1482 *
1483 * It is a bug to call this function without having implemented the
1484 * ->atomic_disable() plane hook.
1485 */
1486void drm_atomic_helper_disable_planes_on_crtc(struct drm_crtc *crtc,
1487 bool atomic)
1488{
1489 const struct drm_crtc_helper_funcs *crtc_funcs =
1490 crtc->helper_private;
1491 struct drm_plane *plane;
1492
1493 if (atomic && crtc_funcs && crtc_funcs->atomic_begin)
1494 crtc_funcs->atomic_begin(crtc, NULL);
1495
1496 drm_for_each_plane(plane, crtc->dev) {
1497 const struct drm_plane_helper_funcs *plane_funcs =
1498 plane->helper_private;
1499
1500 if (plane->state->crtc != crtc || !plane_funcs)
1501 continue;
1502
1503 WARN_ON(!plane_funcs->atomic_disable);
1504 if (plane_funcs->atomic_disable)
1505 plane_funcs->atomic_disable(plane, NULL);
1506 }
1507
1508 if (atomic && crtc_funcs && crtc_funcs->atomic_flush)
1509 crtc_funcs->atomic_flush(crtc, NULL);
1510}
1511EXPORT_SYMBOL(drm_atomic_helper_disable_planes_on_crtc);
1512
c2fcd274
DV
1513/**
1514 * drm_atomic_helper_cleanup_planes - cleanup plane resources after commit
1515 * @dev: DRM device
1516 * @old_state: atomic state object with old state structures
1517 *
1518 * This function cleans up plane state, specifically framebuffers, from the old
1519 * configuration. Hence the old configuration must be perserved in @old_state to
1520 * be able to call this function.
1521 *
1522 * This function must also be called on the new state when the atomic update
1523 * fails at any point after calling drm_atomic_helper_prepare_planes().
1524 */
1525void drm_atomic_helper_cleanup_planes(struct drm_device *dev,
1526 struct drm_atomic_state *old_state)
1527{
df63b999
ACO
1528 struct drm_plane *plane;
1529 struct drm_plane_state *plane_state;
c2fcd274
DV
1530 int i;
1531
df63b999 1532 for_each_plane_in_state(old_state, plane, plane_state, i) {
b5ceff20 1533 const struct drm_plane_helper_funcs *funcs;
c2fcd274 1534
c2fcd274
DV
1535 funcs = plane->helper_private;
1536
844f9111
ML
1537 if (funcs->cleanup_fb)
1538 funcs->cleanup_fb(plane, plane_state);
c2fcd274
DV
1539 }
1540}
1541EXPORT_SYMBOL(drm_atomic_helper_cleanup_planes);
1542
1543/**
1544 * drm_atomic_helper_swap_state - store atomic state into current sw state
1545 * @dev: DRM device
1546 * @state: atomic state
1547 *
1548 * This function stores the atomic state into the current state pointers in all
1549 * driver objects. It should be called after all failing steps have been done
1550 * and succeeded, but before the actual hardware state is committed.
1551 *
1552 * For cleanup and error recovery the current state for all changed objects will
1553 * be swaped into @state.
1554 *
1555 * With that sequence it fits perfectly into the plane prepare/cleanup sequence:
1556 *
1557 * 1. Call drm_atomic_helper_prepare_planes() with the staged atomic state.
1558 *
1559 * 2. Do any other steps that might fail.
1560 *
1561 * 3. Put the staged state into the current state pointers with this function.
1562 *
1563 * 4. Actually commit the hardware state.
1564 *
26196f7e 1565 * 5. Call drm_atomic_helper_cleanup_planes() with @state, which since step 3
c2fcd274
DV
1566 * contains the old state. Also do any other cleanup required with that state.
1567 */
1568void drm_atomic_helper_swap_state(struct drm_device *dev,
1569 struct drm_atomic_state *state)
1570{
1571 int i;
1572
5fff80bb 1573 for (i = 0; i < state->num_connector; i++) {
c2fcd274
DV
1574 struct drm_connector *connector = state->connectors[i];
1575
1576 if (!connector)
1577 continue;
1578
1579 connector->state->state = state;
1580 swap(state->connector_states[i], connector->state);
1581 connector->state->state = NULL;
1582 }
1583
1584 for (i = 0; i < dev->mode_config.num_crtc; i++) {
1585 struct drm_crtc *crtc = state->crtcs[i];
1586
1587 if (!crtc)
1588 continue;
1589
1590 crtc->state->state = state;
1591 swap(state->crtc_states[i], crtc->state);
1592 crtc->state->state = NULL;
1593 }
1594
1595 for (i = 0; i < dev->mode_config.num_total_plane; i++) {
1596 struct drm_plane *plane = state->planes[i];
1597
1598 if (!plane)
1599 continue;
1600
1601 plane->state->state = state;
1602 swap(state->plane_states[i], plane->state);
1603 plane->state->state = NULL;
1604 }
1605}
1606EXPORT_SYMBOL(drm_atomic_helper_swap_state);
042652ed
DV
1607
1608/**
1609 * drm_atomic_helper_update_plane - Helper for primary plane update using atomic
1610 * @plane: plane object to update
1611 * @crtc: owning CRTC of owning plane
1612 * @fb: framebuffer to flip onto plane
1613 * @crtc_x: x offset of primary plane on crtc
1614 * @crtc_y: y offset of primary plane on crtc
1615 * @crtc_w: width of primary plane rectangle on crtc
1616 * @crtc_h: height of primary plane rectangle on crtc
1617 * @src_x: x offset of @fb for panning
1618 * @src_y: y offset of @fb for panning
1619 * @src_w: width of source rectangle in @fb
1620 * @src_h: height of source rectangle in @fb
1621 *
1622 * Provides a default plane update handler using the atomic driver interface.
1623 *
1624 * RETURNS:
1625 * Zero on success, error code on failure
1626 */
1627int drm_atomic_helper_update_plane(struct drm_plane *plane,
1628 struct drm_crtc *crtc,
1629 struct drm_framebuffer *fb,
1630 int crtc_x, int crtc_y,
1631 unsigned int crtc_w, unsigned int crtc_h,
1632 uint32_t src_x, uint32_t src_y,
1633 uint32_t src_w, uint32_t src_h)
1634{
1635 struct drm_atomic_state *state;
1636 struct drm_plane_state *plane_state;
1637 int ret = 0;
1638
1639 state = drm_atomic_state_alloc(plane->dev);
1640 if (!state)
1641 return -ENOMEM;
1642
1643 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
1644retry:
1645 plane_state = drm_atomic_get_plane_state(state, plane);
1646 if (IS_ERR(plane_state)) {
1647 ret = PTR_ERR(plane_state);
1648 goto fail;
1649 }
1650
07cc0ef6 1651 ret = drm_atomic_set_crtc_for_plane(plane_state, crtc);
042652ed
DV
1652 if (ret != 0)
1653 goto fail;
321ebf04 1654 drm_atomic_set_fb_for_plane(plane_state, fb);
042652ed
DV
1655 plane_state->crtc_x = crtc_x;
1656 plane_state->crtc_y = crtc_y;
042652ed 1657 plane_state->crtc_w = crtc_w;
02e6f379 1658 plane_state->crtc_h = crtc_h;
042652ed
DV
1659 plane_state->src_x = src_x;
1660 plane_state->src_y = src_y;
042652ed 1661 plane_state->src_w = src_w;
02e6f379 1662 plane_state->src_h = src_h;
042652ed 1663
3671c580
DV
1664 if (plane == crtc->cursor)
1665 state->legacy_cursor_update = true;
1666
042652ed
DV
1667 ret = drm_atomic_commit(state);
1668 if (ret != 0)
1669 goto fail;
1670
1671 /* Driver takes ownership of state on successful commit. */
1672 return 0;
1673fail:
1674 if (ret == -EDEADLK)
1675 goto backoff;
1676
1677 drm_atomic_state_free(state);
1678
1679 return ret;
1680backoff:
042652ed 1681 drm_atomic_state_clear(state);
6f75cea6 1682 drm_atomic_legacy_backoff(state);
042652ed
DV
1683
1684 /*
1685 * Someone might have exchanged the framebuffer while we dropped locks
1686 * in the backoff code. We need to fix up the fb refcount tracking the
1687 * core does for us.
1688 */
1689 plane->old_fb = plane->fb;
1690
1691 goto retry;
1692}
1693EXPORT_SYMBOL(drm_atomic_helper_update_plane);
1694
1695/**
1696 * drm_atomic_helper_disable_plane - Helper for primary plane disable using * atomic
1697 * @plane: plane to disable
1698 *
1699 * Provides a default plane disable handler using the atomic driver interface.
1700 *
1701 * RETURNS:
1702 * Zero on success, error code on failure
1703 */
1704int drm_atomic_helper_disable_plane(struct drm_plane *plane)
1705{
1706 struct drm_atomic_state *state;
1707 struct drm_plane_state *plane_state;
1708 int ret = 0;
1709
aa54e2ee
JSP
1710 /*
1711 * FIXME: Without plane->crtc set we can't get at the implicit legacy
1712 * acquire context. The real fix will be to wire the acquire ctx through
1713 * everywhere we need it, but meanwhile prevent chaos by just skipping
1714 * this noop. The critical case is the cursor ioctls which a) only grab
1715 * crtc/cursor-plane locks (so we need the crtc to get at the right
1716 * acquire context) and b) can try to disable the plane multiple times.
1717 */
1718 if (!plane->crtc)
1719 return 0;
1720
042652ed
DV
1721 state = drm_atomic_state_alloc(plane->dev);
1722 if (!state)
1723 return -ENOMEM;
1724
1725 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(plane->crtc);
1726retry:
1727 plane_state = drm_atomic_get_plane_state(state, plane);
1728 if (IS_ERR(plane_state)) {
1729 ret = PTR_ERR(plane_state);
1730 goto fail;
1731 }
1732
24e79d0d
ML
1733 if (plane_state->crtc && (plane == plane->crtc->cursor))
1734 plane_state->state->legacy_cursor_update = true;
1735
bbb1e524 1736 ret = __drm_atomic_helper_disable_plane(plane, plane_state);
042652ed
DV
1737 if (ret != 0)
1738 goto fail;
f02ad907 1739
042652ed
DV
1740 ret = drm_atomic_commit(state);
1741 if (ret != 0)
1742 goto fail;
1743
1744 /* Driver takes ownership of state on successful commit. */
1745 return 0;
1746fail:
1747 if (ret == -EDEADLK)
1748 goto backoff;
1749
1750 drm_atomic_state_free(state);
1751
1752 return ret;
1753backoff:
042652ed 1754 drm_atomic_state_clear(state);
6f75cea6 1755 drm_atomic_legacy_backoff(state);
042652ed
DV
1756
1757 /*
1758 * Someone might have exchanged the framebuffer while we dropped locks
1759 * in the backoff code. We need to fix up the fb refcount tracking the
1760 * core does for us.
1761 */
1762 plane->old_fb = plane->fb;
1763
1764 goto retry;
1765}
1766EXPORT_SYMBOL(drm_atomic_helper_disable_plane);
1767
bbb1e524
RC
1768/* just used from fb-helper and atomic-helper: */
1769int __drm_atomic_helper_disable_plane(struct drm_plane *plane,
1770 struct drm_plane_state *plane_state)
1771{
1772 int ret;
1773
1774 ret = drm_atomic_set_crtc_for_plane(plane_state, NULL);
1775 if (ret != 0)
1776 return ret;
1777
1778 drm_atomic_set_fb_for_plane(plane_state, NULL);
1779 plane_state->crtc_x = 0;
1780 plane_state->crtc_y = 0;
bbb1e524 1781 plane_state->crtc_w = 0;
02e6f379 1782 plane_state->crtc_h = 0;
bbb1e524
RC
1783 plane_state->src_x = 0;
1784 plane_state->src_y = 0;
bbb1e524 1785 plane_state->src_w = 0;
02e6f379 1786 plane_state->src_h = 0;
bbb1e524 1787
bbb1e524
RC
1788 return 0;
1789}
1790
042652ed
DV
1791static int update_output_state(struct drm_atomic_state *state,
1792 struct drm_mode_set *set)
1793{
1794 struct drm_device *dev = set->crtc->dev;
df63b999
ACO
1795 struct drm_crtc *crtc;
1796 struct drm_crtc_state *crtc_state;
1797 struct drm_connector *connector;
042652ed 1798 struct drm_connector_state *conn_state;
6ab520a2 1799 int ret, i;
042652ed
DV
1800
1801 ret = drm_modeset_lock(&dev->mode_config.connection_mutex,
1802 state->acquire_ctx);
1803 if (ret)
1804 return ret;
1805
6ab520a2
ML
1806 /* First disable all connectors on the target crtc. */
1807 ret = drm_atomic_add_affected_connectors(state, set->crtc);
1808 if (ret)
1809 return ret;
042652ed 1810
df63b999 1811 for_each_connector_in_state(state, connector, conn_state, i) {
042652ed
DV
1812 if (conn_state->crtc == set->crtc) {
1813 ret = drm_atomic_set_crtc_for_connector(conn_state,
1814 NULL);
1815 if (ret)
1816 return ret;
1817 }
6ab520a2 1818 }
042652ed 1819
6ab520a2
ML
1820 /* Then set all connectors from set->connectors on the target crtc */
1821 for (i = 0; i < set->num_connectors; i++) {
1822 conn_state = drm_atomic_get_connector_state(state,
1823 set->connectors[i]);
1824 if (IS_ERR(conn_state))
1825 return PTR_ERR(conn_state);
1826
1827 ret = drm_atomic_set_crtc_for_connector(conn_state,
1828 set->crtc);
1829 if (ret)
1830 return ret;
042652ed
DV
1831 }
1832
df63b999 1833 for_each_crtc_in_state(state, crtc, crtc_state, i) {
042652ed
DV
1834 /* Don't update ->enable for the CRTC in the set_config request,
1835 * since a mismatch would indicate a bug in the upper layers.
1836 * The actual modeset code later on will catch any
1837 * inconsistencies here. */
1838 if (crtc == set->crtc)
1839 continue;
1840
14de6c44 1841 if (!crtc_state->connector_mask) {
c30f55a7
LP
1842 ret = drm_atomic_set_mode_prop_for_crtc(crtc_state,
1843 NULL);
1844 if (ret < 0)
1845 return ret;
1846
9b5edbf7 1847 crtc_state->active = false;
c30f55a7 1848 }
042652ed
DV
1849 }
1850
1851 return 0;
1852}
1853
1854/**
1855 * drm_atomic_helper_set_config - set a new config from userspace
1856 * @set: mode set configuration
1857 *
1858 * Provides a default crtc set_config handler using the atomic driver interface.
1859 *
1860 * Returns:
1861 * Returns 0 on success, negative errno numbers on failure.
1862 */
1863int drm_atomic_helper_set_config(struct drm_mode_set *set)
1864{
1865 struct drm_atomic_state *state;
1866 struct drm_crtc *crtc = set->crtc;
042652ed
DV
1867 int ret = 0;
1868
1869 state = drm_atomic_state_alloc(crtc->dev);
1870 if (!state)
1871 return -ENOMEM;
1872
40616a26 1873 state->legacy_set_config = true;
042652ed
DV
1874 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
1875retry:
bbb1e524
RC
1876 ret = __drm_atomic_helper_set_config(set, state);
1877 if (ret != 0)
042652ed 1878 goto fail;
042652ed 1879
bbb1e524
RC
1880 ret = drm_atomic_commit(state);
1881 if (ret != 0)
e5b5341c 1882 goto fail;
bbb1e524
RC
1883
1884 /* Driver takes ownership of state on successful commit. */
1885 return 0;
1886fail:
1887 if (ret == -EDEADLK)
1888 goto backoff;
1889
1890 drm_atomic_state_free(state);
1891
1892 return ret;
1893backoff:
1894 drm_atomic_state_clear(state);
1895 drm_atomic_legacy_backoff(state);
1896
1897 /*
1898 * Someone might have exchanged the framebuffer while we dropped locks
1899 * in the backoff code. We need to fix up the fb refcount tracking the
1900 * core does for us.
1901 */
1902 crtc->primary->old_fb = crtc->primary->fb;
1903
1904 goto retry;
1905}
1906EXPORT_SYMBOL(drm_atomic_helper_set_config);
1907
1908/* just used from fb-helper and atomic-helper: */
1909int __drm_atomic_helper_set_config(struct drm_mode_set *set,
1910 struct drm_atomic_state *state)
1911{
1912 struct drm_crtc_state *crtc_state;
1913 struct drm_plane_state *primary_state;
1914 struct drm_crtc *crtc = set->crtc;
83926117 1915 int hdisplay, vdisplay;
bbb1e524
RC
1916 int ret;
1917
1918 crtc_state = drm_atomic_get_crtc_state(state, crtc);
1919 if (IS_ERR(crtc_state))
1920 return PTR_ERR(crtc_state);
1921
1922 primary_state = drm_atomic_get_plane_state(state, crtc->primary);
1923 if (IS_ERR(primary_state))
1924 return PTR_ERR(primary_state);
e5b5341c 1925
042652ed
DV
1926 if (!set->mode) {
1927 WARN_ON(set->fb);
1928 WARN_ON(set->num_connectors);
1929
819364da
DS
1930 ret = drm_atomic_set_mode_for_crtc(crtc_state, NULL);
1931 if (ret != 0)
bbb1e524 1932 return ret;
819364da 1933
eab3bbef 1934 crtc_state->active = false;
e5b5341c 1935
07cc0ef6 1936 ret = drm_atomic_set_crtc_for_plane(primary_state, NULL);
e5b5341c 1937 if (ret != 0)
bbb1e524 1938 return ret;
e5b5341c
RC
1939
1940 drm_atomic_set_fb_for_plane(primary_state, NULL);
1941
042652ed
DV
1942 goto commit;
1943 }
1944
1945 WARN_ON(!set->fb);
1946 WARN_ON(!set->num_connectors);
1947
819364da
DS
1948 ret = drm_atomic_set_mode_for_crtc(crtc_state, set->mode);
1949 if (ret != 0)
bbb1e524 1950 return ret;
819364da 1951
eab3bbef 1952 crtc_state->active = true;
042652ed 1953
07cc0ef6 1954 ret = drm_atomic_set_crtc_for_plane(primary_state, crtc);
042652ed 1955 if (ret != 0)
bbb1e524
RC
1956 return ret;
1957
83926117
VS
1958 drm_crtc_get_hv_timing(set->mode, &hdisplay, &vdisplay);
1959
321ebf04 1960 drm_atomic_set_fb_for_plane(primary_state, set->fb);
042652ed
DV
1961 primary_state->crtc_x = 0;
1962 primary_state->crtc_y = 0;
83926117 1963 primary_state->crtc_w = hdisplay;
02e6f379 1964 primary_state->crtc_h = vdisplay;
042652ed
DV
1965 primary_state->src_x = set->x << 16;
1966 primary_state->src_y = set->y << 16;
41121248 1967 if (primary_state->rotation & (BIT(DRM_ROTATE_90) | BIT(DRM_ROTATE_270))) {
83926117 1968 primary_state->src_w = vdisplay << 16;
02e6f379 1969 primary_state->src_h = hdisplay << 16;
41121248 1970 } else {
83926117 1971 primary_state->src_w = hdisplay << 16;
02e6f379 1972 primary_state->src_h = vdisplay << 16;
41121248 1973 }
042652ed
DV
1974
1975commit:
1976 ret = update_output_state(state, set);
1977 if (ret)
bbb1e524 1978 return ret;
042652ed 1979
042652ed 1980 return 0;
042652ed 1981}
042652ed 1982
14942760
TR
1983/**
1984 * drm_atomic_helper_disable_all - disable all currently active outputs
1985 * @dev: DRM device
1986 * @ctx: lock acquisition context
1987 *
1988 * Loops through all connectors, finding those that aren't turned off and then
1989 * turns them off by setting their DPMS mode to OFF and deactivating the CRTC
1990 * that they are connected to.
1991 *
1992 * This is used for example in suspend/resume to disable all currently active
1993 * functions when suspending.
1994 *
1995 * Note that if callers haven't already acquired all modeset locks this might
1996 * return -EDEADLK, which must be handled by calling drm_modeset_backoff().
1997 *
1998 * Returns:
1999 * 0 on success or a negative error code on failure.
2000 *
2001 * See also:
2002 * drm_atomic_helper_suspend(), drm_atomic_helper_resume()
2003 */
2004int drm_atomic_helper_disable_all(struct drm_device *dev,
2005 struct drm_modeset_acquire_ctx *ctx)
2006{
2007 struct drm_atomic_state *state;
2008 struct drm_connector *conn;
2009 int err;
2010
2011 state = drm_atomic_state_alloc(dev);
2012 if (!state)
2013 return -ENOMEM;
2014
2015 state->acquire_ctx = ctx;
2016
2017 drm_for_each_connector(conn, dev) {
2018 struct drm_crtc *crtc = conn->state->crtc;
2019 struct drm_crtc_state *crtc_state;
2020
2021 if (!crtc || conn->dpms != DRM_MODE_DPMS_ON)
2022 continue;
2023
2024 crtc_state = drm_atomic_get_crtc_state(state, crtc);
2025 if (IS_ERR(crtc_state)) {
2026 err = PTR_ERR(crtc_state);
2027 goto free;
2028 }
2029
2030 crtc_state->active = false;
2031 }
2032
2033 err = drm_atomic_commit(state);
2034
2035free:
2036 if (err < 0)
2037 drm_atomic_state_free(state);
2038
2039 return err;
2040}
2041EXPORT_SYMBOL(drm_atomic_helper_disable_all);
2042
2043/**
2044 * drm_atomic_helper_suspend - subsystem-level suspend helper
2045 * @dev: DRM device
2046 *
2047 * Duplicates the current atomic state, disables all active outputs and then
2048 * returns a pointer to the original atomic state to the caller. Drivers can
2049 * pass this pointer to the drm_atomic_helper_resume() helper upon resume to
2050 * restore the output configuration that was active at the time the system
2051 * entered suspend.
2052 *
2053 * Note that it is potentially unsafe to use this. The atomic state object
2054 * returned by this function is assumed to be persistent. Drivers must ensure
2055 * that this holds true. Before calling this function, drivers must make sure
2056 * to suspend fbdev emulation so that nothing can be using the device.
2057 *
2058 * Returns:
2059 * A pointer to a copy of the state before suspend on success or an ERR_PTR()-
2060 * encoded error code on failure. Drivers should store the returned atomic
2061 * state object and pass it to the drm_atomic_helper_resume() helper upon
2062 * resume.
2063 *
2064 * See also:
2065 * drm_atomic_helper_duplicate_state(), drm_atomic_helper_disable_all(),
2066 * drm_atomic_helper_resume()
2067 */
2068struct drm_atomic_state *drm_atomic_helper_suspend(struct drm_device *dev)
2069{
2070 struct drm_modeset_acquire_ctx ctx;
2071 struct drm_atomic_state *state;
2072 int err;
2073
2074 drm_modeset_acquire_init(&ctx, 0);
2075
2076retry:
2077 err = drm_modeset_lock_all_ctx(dev, &ctx);
2078 if (err < 0) {
2079 state = ERR_PTR(err);
2080 goto unlock;
2081 }
2082
2083 state = drm_atomic_helper_duplicate_state(dev, &ctx);
2084 if (IS_ERR(state))
2085 goto unlock;
2086
2087 err = drm_atomic_helper_disable_all(dev, &ctx);
2088 if (err < 0) {
2089 drm_atomic_state_free(state);
2090 state = ERR_PTR(err);
2091 goto unlock;
2092 }
2093
2094unlock:
2095 if (PTR_ERR(state) == -EDEADLK) {
2096 drm_modeset_backoff(&ctx);
2097 goto retry;
2098 }
2099
2100 drm_modeset_drop_locks(&ctx);
2101 drm_modeset_acquire_fini(&ctx);
2102 return state;
2103}
2104EXPORT_SYMBOL(drm_atomic_helper_suspend);
2105
2106/**
2107 * drm_atomic_helper_resume - subsystem-level resume helper
2108 * @dev: DRM device
2109 * @state: atomic state to resume to
2110 *
2111 * Calls drm_mode_config_reset() to synchronize hardware and software states,
2112 * grabs all modeset locks and commits the atomic state object. This can be
2113 * used in conjunction with the drm_atomic_helper_suspend() helper to
2114 * implement suspend/resume for drivers that support atomic mode-setting.
2115 *
2116 * Returns:
2117 * 0 on success or a negative error code on failure.
2118 *
2119 * See also:
2120 * drm_atomic_helper_suspend()
2121 */
2122int drm_atomic_helper_resume(struct drm_device *dev,
2123 struct drm_atomic_state *state)
2124{
2125 struct drm_mode_config *config = &dev->mode_config;
2126 int err;
2127
2128 drm_mode_config_reset(dev);
2129 drm_modeset_lock_all(dev);
2130 state->acquire_ctx = config->acquire_ctx;
2131 err = drm_atomic_commit(state);
2132 drm_modeset_unlock_all(dev);
2133
2134 return err;
2135}
2136EXPORT_SYMBOL(drm_atomic_helper_resume);
2137
042652ed 2138/**
7f50002f 2139 * drm_atomic_helper_crtc_set_property - helper for crtc properties
042652ed
DV
2140 * @crtc: DRM crtc
2141 * @property: DRM property
2142 * @val: value of property
2143 *
7f50002f
LP
2144 * Provides a default crtc set_property handler using the atomic driver
2145 * interface.
042652ed
DV
2146 *
2147 * RETURNS:
2148 * Zero on success, error code on failure
2149 */
2150int
2151drm_atomic_helper_crtc_set_property(struct drm_crtc *crtc,
2152 struct drm_property *property,
2153 uint64_t val)
2154{
2155 struct drm_atomic_state *state;
2156 struct drm_crtc_state *crtc_state;
2157 int ret = 0;
2158
2159 state = drm_atomic_state_alloc(crtc->dev);
2160 if (!state)
2161 return -ENOMEM;
2162
2163 /* ->set_property is always called with all locks held. */
2164 state->acquire_ctx = crtc->dev->mode_config.acquire_ctx;
2165retry:
2166 crtc_state = drm_atomic_get_crtc_state(state, crtc);
2167 if (IS_ERR(crtc_state)) {
2168 ret = PTR_ERR(crtc_state);
2169 goto fail;
2170 }
2171
40ecc694
RC
2172 ret = drm_atomic_crtc_set_property(crtc, crtc_state,
2173 property, val);
042652ed
DV
2174 if (ret)
2175 goto fail;
2176
2177 ret = drm_atomic_commit(state);
2178 if (ret != 0)
2179 goto fail;
2180
2181 /* Driver takes ownership of state on successful commit. */
2182 return 0;
2183fail:
2184 if (ret == -EDEADLK)
2185 goto backoff;
2186
2187 drm_atomic_state_free(state);
2188
2189 return ret;
2190backoff:
042652ed 2191 drm_atomic_state_clear(state);
6f75cea6 2192 drm_atomic_legacy_backoff(state);
042652ed
DV
2193
2194 goto retry;
2195}
2196EXPORT_SYMBOL(drm_atomic_helper_crtc_set_property);
2197
2198/**
7f50002f 2199 * drm_atomic_helper_plane_set_property - helper for plane properties
042652ed
DV
2200 * @plane: DRM plane
2201 * @property: DRM property
2202 * @val: value of property
2203 *
7f50002f
LP
2204 * Provides a default plane set_property handler using the atomic driver
2205 * interface.
042652ed
DV
2206 *
2207 * RETURNS:
2208 * Zero on success, error code on failure
2209 */
2210int
2211drm_atomic_helper_plane_set_property(struct drm_plane *plane,
2212 struct drm_property *property,
2213 uint64_t val)
2214{
2215 struct drm_atomic_state *state;
2216 struct drm_plane_state *plane_state;
2217 int ret = 0;
2218
2219 state = drm_atomic_state_alloc(plane->dev);
2220 if (!state)
2221 return -ENOMEM;
2222
2223 /* ->set_property is always called with all locks held. */
2224 state->acquire_ctx = plane->dev->mode_config.acquire_ctx;
2225retry:
2226 plane_state = drm_atomic_get_plane_state(state, plane);
2227 if (IS_ERR(plane_state)) {
2228 ret = PTR_ERR(plane_state);
2229 goto fail;
2230 }
2231
40ecc694
RC
2232 ret = drm_atomic_plane_set_property(plane, plane_state,
2233 property, val);
042652ed
DV
2234 if (ret)
2235 goto fail;
2236
2237 ret = drm_atomic_commit(state);
2238 if (ret != 0)
2239 goto fail;
2240
2241 /* Driver takes ownership of state on successful commit. */
2242 return 0;
2243fail:
2244 if (ret == -EDEADLK)
2245 goto backoff;
2246
2247 drm_atomic_state_free(state);
2248
2249 return ret;
2250backoff:
042652ed 2251 drm_atomic_state_clear(state);
6f75cea6 2252 drm_atomic_legacy_backoff(state);
042652ed
DV
2253
2254 goto retry;
2255}
2256EXPORT_SYMBOL(drm_atomic_helper_plane_set_property);
2257
2258/**
7f50002f 2259 * drm_atomic_helper_connector_set_property - helper for connector properties
042652ed
DV
2260 * @connector: DRM connector
2261 * @property: DRM property
2262 * @val: value of property
2263 *
7f50002f
LP
2264 * Provides a default connector set_property handler using the atomic driver
2265 * interface.
042652ed
DV
2266 *
2267 * RETURNS:
2268 * Zero on success, error code on failure
2269 */
2270int
2271drm_atomic_helper_connector_set_property(struct drm_connector *connector,
2272 struct drm_property *property,
2273 uint64_t val)
2274{
2275 struct drm_atomic_state *state;
2276 struct drm_connector_state *connector_state;
2277 int ret = 0;
2278
2279 state = drm_atomic_state_alloc(connector->dev);
2280 if (!state)
2281 return -ENOMEM;
2282
2283 /* ->set_property is always called with all locks held. */
2284 state->acquire_ctx = connector->dev->mode_config.acquire_ctx;
2285retry:
2286 connector_state = drm_atomic_get_connector_state(state, connector);
2287 if (IS_ERR(connector_state)) {
2288 ret = PTR_ERR(connector_state);
2289 goto fail;
2290 }
2291
40ecc694
RC
2292 ret = drm_atomic_connector_set_property(connector, connector_state,
2293 property, val);
042652ed
DV
2294 if (ret)
2295 goto fail;
2296
2297 ret = drm_atomic_commit(state);
2298 if (ret != 0)
2299 goto fail;
2300
2301 /* Driver takes ownership of state on successful commit. */
2302 return 0;
2303fail:
2304 if (ret == -EDEADLK)
2305 goto backoff;
2306
2307 drm_atomic_state_free(state);
2308
2309 return ret;
2310backoff:
042652ed 2311 drm_atomic_state_clear(state);
6f75cea6 2312 drm_atomic_legacy_backoff(state);
042652ed
DV
2313
2314 goto retry;
2315}
2316EXPORT_SYMBOL(drm_atomic_helper_connector_set_property);
8bc0f312
DV
2317
2318/**
2319 * drm_atomic_helper_page_flip - execute a legacy page flip
2320 * @crtc: DRM crtc
2321 * @fb: DRM framebuffer
2322 * @event: optional DRM event to signal upon completion
2323 * @flags: flip flags for non-vblank sync'ed updates
2324 *
2325 * Provides a default page flip implementation using the atomic driver interface.
2326 *
2327 * Note that for now so called async page flips (i.e. updates which are not
2328 * synchronized to vblank) are not supported, since the atomic interfaces have
2329 * no provisions for this yet.
2330 *
2331 * Returns:
2332 * Returns 0 on success, negative errno numbers on failure.
2333 */
2334int drm_atomic_helper_page_flip(struct drm_crtc *crtc,
2335 struct drm_framebuffer *fb,
2336 struct drm_pending_vblank_event *event,
2337 uint32_t flags)
2338{
2339 struct drm_plane *plane = crtc->primary;
2340 struct drm_atomic_state *state;
2341 struct drm_plane_state *plane_state;
2342 struct drm_crtc_state *crtc_state;
2343 int ret = 0;
2344
2345 if (flags & DRM_MODE_PAGE_FLIP_ASYNC)
2346 return -EINVAL;
2347
2348 state = drm_atomic_state_alloc(plane->dev);
2349 if (!state)
2350 return -ENOMEM;
2351
2352 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
2353retry:
2354 crtc_state = drm_atomic_get_crtc_state(state, crtc);
2355 if (IS_ERR(crtc_state)) {
2356 ret = PTR_ERR(crtc_state);
2357 goto fail;
2358 }
2359 crtc_state->event = event;
2360
2361 plane_state = drm_atomic_get_plane_state(state, plane);
2362 if (IS_ERR(plane_state)) {
2363 ret = PTR_ERR(plane_state);
2364 goto fail;
2365 }
2366
07cc0ef6 2367 ret = drm_atomic_set_crtc_for_plane(plane_state, crtc);
8bc0f312
DV
2368 if (ret != 0)
2369 goto fail;
321ebf04 2370 drm_atomic_set_fb_for_plane(plane_state, fb);
8bc0f312 2371
4cba6850
DV
2372 /* Make sure we don't accidentally do a full modeset. */
2373 state->allow_modeset = false;
2374 if (!crtc_state->active) {
2375 DRM_DEBUG_ATOMIC("[CRTC:%d] disabled, rejecting legacy flip\n",
2376 crtc->base.id);
2377 ret = -EINVAL;
2378 goto fail;
2379 }
2380
b837ba0a 2381 ret = drm_atomic_nonblocking_commit(state);
8bc0f312
DV
2382 if (ret != 0)
2383 goto fail;
2384
b837ba0a 2385 /* Driver takes ownership of state on successful commit. */
8bc0f312
DV
2386 return 0;
2387fail:
2388 if (ret == -EDEADLK)
2389 goto backoff;
2390
2391 drm_atomic_state_free(state);
2392
2393 return ret;
2394backoff:
8bc0f312 2395 drm_atomic_state_clear(state);
6f75cea6 2396 drm_atomic_legacy_backoff(state);
8bc0f312
DV
2397
2398 /*
2399 * Someone might have exchanged the framebuffer while we dropped locks
2400 * in the backoff code. We need to fix up the fb refcount tracking the
2401 * core does for us.
2402 */
2403 plane->old_fb = plane->fb;
2404
2405 goto retry;
2406}
2407EXPORT_SYMBOL(drm_atomic_helper_page_flip);
d461701c 2408
b486e0e6
DV
2409/**
2410 * drm_atomic_helper_connector_dpms() - connector dpms helper implementation
2411 * @connector: affected connector
2412 * @mode: DPMS mode
2413 *
2414 * This is the main helper function provided by the atomic helper framework for
2415 * implementing the legacy DPMS connector interface. It computes the new desired
2416 * ->active state for the corresponding CRTC (if the connector is enabled) and
2417 * updates it.
9a69a9ac
ML
2418 *
2419 * Returns:
2420 * Returns 0 on success, negative errno numbers on failure.
b486e0e6 2421 */
9a69a9ac
ML
2422int drm_atomic_helper_connector_dpms(struct drm_connector *connector,
2423 int mode)
b486e0e6
DV
2424{
2425 struct drm_mode_config *config = &connector->dev->mode_config;
2426 struct drm_atomic_state *state;
2427 struct drm_crtc_state *crtc_state;
2428 struct drm_crtc *crtc;
2429 struct drm_connector *tmp_connector;
2430 int ret;
2431 bool active = false;
9a69a9ac 2432 int old_mode = connector->dpms;
b486e0e6
DV
2433
2434 if (mode != DRM_MODE_DPMS_ON)
2435 mode = DRM_MODE_DPMS_OFF;
2436
2437 connector->dpms = mode;
2438 crtc = connector->state->crtc;
2439
2440 if (!crtc)
9a69a9ac 2441 return 0;
b486e0e6 2442
b486e0e6
DV
2443 state = drm_atomic_state_alloc(connector->dev);
2444 if (!state)
9a69a9ac 2445 return -ENOMEM;
b486e0e6
DV
2446
2447 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
2448retry:
2449 crtc_state = drm_atomic_get_crtc_state(state, crtc);
9a69a9ac
ML
2450 if (IS_ERR(crtc_state)) {
2451 ret = PTR_ERR(crtc_state);
2452 goto fail;
2453 }
b486e0e6
DV
2454
2455 WARN_ON(!drm_modeset_is_locked(&config->connection_mutex));
2456
9a9f5ce8 2457 drm_for_each_connector(tmp_connector, connector->dev) {
0388df05 2458 if (tmp_connector->state->crtc != crtc)
b486e0e6
DV
2459 continue;
2460
0388df05 2461 if (tmp_connector->dpms == DRM_MODE_DPMS_ON) {
b486e0e6
DV
2462 active = true;
2463 break;
2464 }
2465 }
2466 crtc_state->active = active;
2467
2468 ret = drm_atomic_commit(state);
2469 if (ret != 0)
2470 goto fail;
2471
9a69a9ac
ML
2472 /* Driver takes ownership of state on successful commit. */
2473 return 0;
b486e0e6
DV
2474fail:
2475 if (ret == -EDEADLK)
2476 goto backoff;
2477
9a69a9ac 2478 connector->dpms = old_mode;
b486e0e6
DV
2479 drm_atomic_state_free(state);
2480
9a69a9ac 2481 return ret;
b486e0e6
DV
2482backoff:
2483 drm_atomic_state_clear(state);
2484 drm_atomic_legacy_backoff(state);
2485
2486 goto retry;
2487}
2488EXPORT_SYMBOL(drm_atomic_helper_connector_dpms);
2489
9ecb5498
NT
2490/**
2491 * drm_atomic_helper_best_encoder - Helper for &drm_connector_helper_funcs
2492 * ->best_encoder callback
2493 * @connector: Connector control structure
2494 *
2495 * This is a &drm_connector_helper_funcs ->best_encoder callback helper for
2496 * connectors that support exactly 1 encoder, statically determined at driver
2497 * init time.
2498 */
2499struct drm_encoder *
2500drm_atomic_helper_best_encoder(struct drm_connector *connector)
2501{
2502 WARN_ON(connector->encoder_ids[1]);
2503 return drm_encoder_find(connector->dev, connector->encoder_ids[0]);
2504}
2505EXPORT_SYMBOL(drm_atomic_helper_best_encoder);
2506
3150c7d0
DV
2507/**
2508 * DOC: atomic state reset and initialization
2509 *
2510 * Both the drm core and the atomic helpers assume that there is always the full
2511 * and correct atomic software state for all connectors, CRTCs and planes
2512 * available. Which is a bit a problem on driver load and also after system
2513 * suspend. One way to solve this is to have a hardware state read-out
2514 * infrastructure which reconstructs the full software state (e.g. the i915
2515 * driver).
2516 *
2517 * The simpler solution is to just reset the software state to everything off,
2518 * which is easiest to do by calling drm_mode_config_reset(). To facilitate this
2519 * the atomic helpers provide default reset implementations for all hooks.
7f8ee3e5
DV
2520 *
2521 * On the upside the precise state tracking of atomic simplifies system suspend
2522 * and resume a lot. For drivers using drm_mode_config_reset() a complete recipe
2523 * is implemented in drm_atomic_helper_suspend() and drm_atomic_helper_resume().
2524 * For other drivers the building blocks are split out, see the documentation
2525 * for these functions.
3150c7d0
DV
2526 */
2527
d461701c
DV
2528/**
2529 * drm_atomic_helper_crtc_reset - default ->reset hook for CRTCs
2530 * @crtc: drm CRTC
2531 *
2532 * Resets the atomic state for @crtc by freeing the state pointer (which might
2533 * be NULL, e.g. at driver load time) and allocating a new empty state object.
2534 */
2535void drm_atomic_helper_crtc_reset(struct drm_crtc *crtc)
2536{
b0b5511b 2537 if (crtc->state)
ec2dc6a0 2538 __drm_atomic_helper_crtc_destroy_state(crtc->state);
b0b5511b 2539
d461701c
DV
2540 kfree(crtc->state);
2541 crtc->state = kzalloc(sizeof(*crtc->state), GFP_KERNEL);
07cc0ef6
DV
2542
2543 if (crtc->state)
2544 crtc->state->crtc = crtc;
d461701c
DV
2545}
2546EXPORT_SYMBOL(drm_atomic_helper_crtc_reset);
2547
f5e7840b
TR
2548/**
2549 * __drm_atomic_helper_crtc_duplicate_state - copy atomic CRTC state
2550 * @crtc: CRTC object
2551 * @state: atomic CRTC state
2552 *
2553 * Copies atomic state from a CRTC's current state and resets inferred values.
2554 * This is useful for drivers that subclass the CRTC state.
2555 */
2556void __drm_atomic_helper_crtc_duplicate_state(struct drm_crtc *crtc,
2557 struct drm_crtc_state *state)
2558{
2559 memcpy(state, crtc->state, sizeof(*state));
2560
99cf4a29
DS
2561 if (state->mode_blob)
2562 drm_property_reference_blob(state->mode_blob);
5488dc16
LL
2563 if (state->degamma_lut)
2564 drm_property_reference_blob(state->degamma_lut);
2565 if (state->ctm)
2566 drm_property_reference_blob(state->ctm);
2567 if (state->gamma_lut)
2568 drm_property_reference_blob(state->gamma_lut);
f5e7840b
TR
2569 state->mode_changed = false;
2570 state->active_changed = false;
2571 state->planes_changed = false;
fc596660 2572 state->connectors_changed = false;
5488dc16 2573 state->color_mgmt_changed = false;
f5e7840b
TR
2574 state->event = NULL;
2575}
2576EXPORT_SYMBOL(__drm_atomic_helper_crtc_duplicate_state);
2577
d461701c
DV
2578/**
2579 * drm_atomic_helper_crtc_duplicate_state - default state duplicate hook
2580 * @crtc: drm CRTC
2581 *
2582 * Default CRTC state duplicate hook for drivers which don't have their own
2583 * subclassed CRTC state structure.
2584 */
2585struct drm_crtc_state *
2586drm_atomic_helper_crtc_duplicate_state(struct drm_crtc *crtc)
2587{
2588 struct drm_crtc_state *state;
2589
2590 if (WARN_ON(!crtc->state))
2591 return NULL;
2592
f5e7840b
TR
2593 state = kmalloc(sizeof(*state), GFP_KERNEL);
2594 if (state)
2595 __drm_atomic_helper_crtc_duplicate_state(crtc, state);
d461701c
DV
2596
2597 return state;
2598}
2599EXPORT_SYMBOL(drm_atomic_helper_crtc_duplicate_state);
2600
f5e7840b
TR
2601/**
2602 * __drm_atomic_helper_crtc_destroy_state - release CRTC state
f5e7840b
TR
2603 * @state: CRTC state object to release
2604 *
2605 * Releases all resources stored in the CRTC state without actually freeing
2606 * the memory of the CRTC state. This is useful for drivers that subclass the
2607 * CRTC state.
2608 */
ec2dc6a0 2609void __drm_atomic_helper_crtc_destroy_state(struct drm_crtc_state *state)
f5e7840b 2610{
5f911905 2611 drm_property_unreference_blob(state->mode_blob);
5488dc16
LL
2612 drm_property_unreference_blob(state->degamma_lut);
2613 drm_property_unreference_blob(state->ctm);
2614 drm_property_unreference_blob(state->gamma_lut);
f5e7840b
TR
2615}
2616EXPORT_SYMBOL(__drm_atomic_helper_crtc_destroy_state);
2617
d461701c
DV
2618/**
2619 * drm_atomic_helper_crtc_destroy_state - default state destroy hook
2620 * @crtc: drm CRTC
2621 * @state: CRTC state object to release
2622 *
2623 * Default CRTC state destroy hook for drivers which don't have their own
2624 * subclassed CRTC state structure.
2625 */
2626void drm_atomic_helper_crtc_destroy_state(struct drm_crtc *crtc,
2627 struct drm_crtc_state *state)
2628{
ec2dc6a0 2629 __drm_atomic_helper_crtc_destroy_state(state);
d461701c
DV
2630 kfree(state);
2631}
2632EXPORT_SYMBOL(drm_atomic_helper_crtc_destroy_state);
2633
2634/**
2635 * drm_atomic_helper_plane_reset - default ->reset hook for planes
2636 * @plane: drm plane
2637 *
2638 * Resets the atomic state for @plane by freeing the state pointer (which might
2639 * be NULL, e.g. at driver load time) and allocating a new empty state object.
2640 */
2641void drm_atomic_helper_plane_reset(struct drm_plane *plane)
2642{
b0b5511b 2643 if (plane->state)
2f701695 2644 __drm_atomic_helper_plane_destroy_state(plane->state);
321ebf04 2645
d461701c
DV
2646 kfree(plane->state);
2647 plane->state = kzalloc(sizeof(*plane->state), GFP_KERNEL);
07cc0ef6 2648
25aaa3a1 2649 if (plane->state) {
07cc0ef6 2650 plane->state->plane = plane;
25aaa3a1
MS
2651 plane->state->rotation = BIT(DRM_ROTATE_0);
2652 }
d461701c
DV
2653}
2654EXPORT_SYMBOL(drm_atomic_helper_plane_reset);
2655
f5e7840b
TR
2656/**
2657 * __drm_atomic_helper_plane_duplicate_state - copy atomic plane state
2658 * @plane: plane object
2659 * @state: atomic plane state
2660 *
2661 * Copies atomic state from a plane's current state. This is useful for
2662 * drivers that subclass the plane state.
2663 */
2664void __drm_atomic_helper_plane_duplicate_state(struct drm_plane *plane,
2665 struct drm_plane_state *state)
2666{
2667 memcpy(state, plane->state, sizeof(*state));
2668
2669 if (state->fb)
2670 drm_framebuffer_reference(state->fb);
2671}
2672EXPORT_SYMBOL(__drm_atomic_helper_plane_duplicate_state);
2673
d461701c
DV
2674/**
2675 * drm_atomic_helper_plane_duplicate_state - default state duplicate hook
2676 * @plane: drm plane
2677 *
2678 * Default plane state duplicate hook for drivers which don't have their own
2679 * subclassed plane state structure.
2680 */
2681struct drm_plane_state *
2682drm_atomic_helper_plane_duplicate_state(struct drm_plane *plane)
2683{
321ebf04
DV
2684 struct drm_plane_state *state;
2685
d461701c
DV
2686 if (WARN_ON(!plane->state))
2687 return NULL;
2688
f5e7840b
TR
2689 state = kmalloc(sizeof(*state), GFP_KERNEL);
2690 if (state)
2691 __drm_atomic_helper_plane_duplicate_state(plane, state);
321ebf04
DV
2692
2693 return state;
d461701c
DV
2694}
2695EXPORT_SYMBOL(drm_atomic_helper_plane_duplicate_state);
2696
f5e7840b
TR
2697/**
2698 * __drm_atomic_helper_plane_destroy_state - release plane state
f5e7840b
TR
2699 * @state: plane state object to release
2700 *
2701 * Releases all resources stored in the plane state without actually freeing
2702 * the memory of the plane state. This is useful for drivers that subclass the
2703 * plane state.
2704 */
2f701695 2705void __drm_atomic_helper_plane_destroy_state(struct drm_plane_state *state)
f5e7840b
TR
2706{
2707 if (state->fb)
2708 drm_framebuffer_unreference(state->fb);
2709}
2710EXPORT_SYMBOL(__drm_atomic_helper_plane_destroy_state);
2711
d461701c
DV
2712/**
2713 * drm_atomic_helper_plane_destroy_state - default state destroy hook
2714 * @plane: drm plane
2715 * @state: plane state object to release
2716 *
2717 * Default plane state destroy hook for drivers which don't have their own
2718 * subclassed plane state structure.
2719 */
2720void drm_atomic_helper_plane_destroy_state(struct drm_plane *plane,
321ebf04 2721 struct drm_plane_state *state)
d461701c 2722{
2f701695 2723 __drm_atomic_helper_plane_destroy_state(state);
d461701c
DV
2724 kfree(state);
2725}
2726EXPORT_SYMBOL(drm_atomic_helper_plane_destroy_state);
2727
4cd39917
ML
2728/**
2729 * __drm_atomic_helper_connector_reset - reset state on connector
2730 * @connector: drm connector
2731 * @conn_state: connector state to assign
2732 *
2733 * Initializes the newly allocated @conn_state and assigns it to
2734 * #connector ->state, usually required when initializing the drivers
2735 * or when called from the ->reset hook.
2736 *
2737 * This is useful for drivers that subclass the connector state.
2738 */
2739void
2740__drm_atomic_helper_connector_reset(struct drm_connector *connector,
2741 struct drm_connector_state *conn_state)
2742{
2743 if (conn_state)
2744 conn_state->connector = connector;
2745
2746 connector->state = conn_state;
2747}
2748EXPORT_SYMBOL(__drm_atomic_helper_connector_reset);
2749
d461701c
DV
2750/**
2751 * drm_atomic_helper_connector_reset - default ->reset hook for connectors
2752 * @connector: drm connector
2753 *
2754 * Resets the atomic state for @connector by freeing the state pointer (which
2755 * might be NULL, e.g. at driver load time) and allocating a new empty state
2756 * object.
2757 */
2758void drm_atomic_helper_connector_reset(struct drm_connector *connector)
2759{
4cd39917
ML
2760 struct drm_connector_state *conn_state =
2761 kzalloc(sizeof(*conn_state), GFP_KERNEL);
07cc0ef6 2762
b0b5511b 2763 if (connector->state)
fabd9106 2764 __drm_atomic_helper_connector_destroy_state(connector->state);
b0b5511b 2765
4cd39917
ML
2766 kfree(connector->state);
2767 __drm_atomic_helper_connector_reset(connector, conn_state);
d461701c
DV
2768}
2769EXPORT_SYMBOL(drm_atomic_helper_connector_reset);
2770
f5e7840b
TR
2771/**
2772 * __drm_atomic_helper_connector_duplicate_state - copy atomic connector state
2773 * @connector: connector object
2774 * @state: atomic connector state
2775 *
2776 * Copies atomic state from a connector's current state. This is useful for
2777 * drivers that subclass the connector state.
2778 */
2779void
2780__drm_atomic_helper_connector_duplicate_state(struct drm_connector *connector,
2781 struct drm_connector_state *state)
2782{
2783 memcpy(state, connector->state, sizeof(*state));
d2307dea
DA
2784 if (state->crtc)
2785 drm_connector_reference(connector);
f5e7840b
TR
2786}
2787EXPORT_SYMBOL(__drm_atomic_helper_connector_duplicate_state);
2788
d461701c
DV
2789/**
2790 * drm_atomic_helper_connector_duplicate_state - default state duplicate hook
2791 * @connector: drm connector
2792 *
2793 * Default connector state duplicate hook for drivers which don't have their own
2794 * subclassed connector state structure.
2795 */
2796struct drm_connector_state *
2797drm_atomic_helper_connector_duplicate_state(struct drm_connector *connector)
2798{
f5e7840b
TR
2799 struct drm_connector_state *state;
2800
d461701c
DV
2801 if (WARN_ON(!connector->state))
2802 return NULL;
2803
f5e7840b
TR
2804 state = kmalloc(sizeof(*state), GFP_KERNEL);
2805 if (state)
2806 __drm_atomic_helper_connector_duplicate_state(connector, state);
2807
2808 return state;
d461701c
DV
2809}
2810EXPORT_SYMBOL(drm_atomic_helper_connector_duplicate_state);
2811
397fd77c
TR
2812/**
2813 * drm_atomic_helper_duplicate_state - duplicate an atomic state object
2814 * @dev: DRM device
2815 * @ctx: lock acquisition context
2816 *
2817 * Makes a copy of the current atomic state by looping over all objects and
14942760
TR
2818 * duplicating their respective states. This is used for example by suspend/
2819 * resume support code to save the state prior to suspend such that it can
2820 * be restored upon resume.
397fd77c
TR
2821 *
2822 * Note that this treats atomic state as persistent between save and restore.
2823 * Drivers must make sure that this is possible and won't result in confusion
2824 * or erroneous behaviour.
2825 *
2826 * Note that if callers haven't already acquired all modeset locks this might
2827 * return -EDEADLK, which must be handled by calling drm_modeset_backoff().
2828 *
2829 * Returns:
2830 * A pointer to the copy of the atomic state object on success or an
2831 * ERR_PTR()-encoded error code on failure.
14942760
TR
2832 *
2833 * See also:
2834 * drm_atomic_helper_suspend(), drm_atomic_helper_resume()
397fd77c
TR
2835 */
2836struct drm_atomic_state *
2837drm_atomic_helper_duplicate_state(struct drm_device *dev,
2838 struct drm_modeset_acquire_ctx *ctx)
2839{
2840 struct drm_atomic_state *state;
2841 struct drm_connector *conn;
2842 struct drm_plane *plane;
2843 struct drm_crtc *crtc;
2844 int err = 0;
2845
2846 state = drm_atomic_state_alloc(dev);
2847 if (!state)
2848 return ERR_PTR(-ENOMEM);
2849
2850 state->acquire_ctx = ctx;
2851
2852 drm_for_each_crtc(crtc, dev) {
2853 struct drm_crtc_state *crtc_state;
2854
2855 crtc_state = drm_atomic_get_crtc_state(state, crtc);
2856 if (IS_ERR(crtc_state)) {
2857 err = PTR_ERR(crtc_state);
2858 goto free;
2859 }
2860 }
2861
2862 drm_for_each_plane(plane, dev) {
2863 struct drm_plane_state *plane_state;
2864
2865 plane_state = drm_atomic_get_plane_state(state, plane);
2866 if (IS_ERR(plane_state)) {
2867 err = PTR_ERR(plane_state);
2868 goto free;
2869 }
2870 }
2871
2872 drm_for_each_connector(conn, dev) {
2873 struct drm_connector_state *conn_state;
2874
2875 conn_state = drm_atomic_get_connector_state(state, conn);
2876 if (IS_ERR(conn_state)) {
2877 err = PTR_ERR(conn_state);
2878 goto free;
2879 }
2880 }
2881
2882 /* clear the acquire context so that it isn't accidentally reused */
2883 state->acquire_ctx = NULL;
2884
2885free:
2886 if (err < 0) {
2887 drm_atomic_state_free(state);
2888 state = ERR_PTR(err);
2889 }
2890
2891 return state;
2892}
2893EXPORT_SYMBOL(drm_atomic_helper_duplicate_state);
2894
f5e7840b
TR
2895/**
2896 * __drm_atomic_helper_connector_destroy_state - release connector state
f5e7840b
TR
2897 * @state: connector state object to release
2898 *
2899 * Releases all resources stored in the connector state without actually
2900 * freeing the memory of the connector state. This is useful for drivers that
2901 * subclass the connector state.
2902 */
2903void
fabd9106 2904__drm_atomic_helper_connector_destroy_state(struct drm_connector_state *state)
f5e7840b
TR
2905{
2906 /*
2907 * This is currently a placeholder so that drivers that subclass the
2908 * state will automatically do the right thing if code is ever added
2909 * to this function.
2910 */
d2307dea
DA
2911 if (state->crtc)
2912 drm_connector_unreference(state->connector);
f5e7840b
TR
2913}
2914EXPORT_SYMBOL(__drm_atomic_helper_connector_destroy_state);
2915
d461701c
DV
2916/**
2917 * drm_atomic_helper_connector_destroy_state - default state destroy hook
2918 * @connector: drm connector
2919 * @state: connector state object to release
2920 *
2921 * Default connector state destroy hook for drivers which don't have their own
2922 * subclassed connector state structure.
2923 */
2924void drm_atomic_helper_connector_destroy_state(struct drm_connector *connector,
2925 struct drm_connector_state *state)
2926{
fabd9106 2927 __drm_atomic_helper_connector_destroy_state(state);
d461701c
DV
2928 kfree(state);
2929}
2930EXPORT_SYMBOL(drm_atomic_helper_connector_destroy_state);
5488dc16
LL
2931
2932/**
2933 * drm_atomic_helper_legacy_gamma_set - set the legacy gamma correction table
2934 * @crtc: CRTC object
2935 * @red: red correction table
2936 * @green: green correction table
2937 * @blue: green correction table
2938 * @start:
2939 * @size: size of the tables
2940 *
2941 * Implements support for legacy gamma correction table for drivers
2942 * that support color management through the DEGAMMA_LUT/GAMMA_LUT
2943 * properties.
2944 */
2945void drm_atomic_helper_legacy_gamma_set(struct drm_crtc *crtc,
2946 u16 *red, u16 *green, u16 *blue,
2947 uint32_t start, uint32_t size)
2948{
2949 struct drm_device *dev = crtc->dev;
2950 struct drm_mode_config *config = &dev->mode_config;
2951 struct drm_atomic_state *state;
2952 struct drm_crtc_state *crtc_state;
2953 struct drm_property_blob *blob = NULL;
2954 struct drm_color_lut *blob_data;
2955 int i, ret = 0;
2956
2957 state = drm_atomic_state_alloc(crtc->dev);
2958 if (!state)
2959 return;
2960
2961 blob = drm_property_create_blob(dev,
2962 sizeof(struct drm_color_lut) * size,
2963 NULL);
562c5b4d
LL
2964 if (IS_ERR(blob)) {
2965 ret = PTR_ERR(blob);
c1f415c9 2966 blob = NULL;
5488dc16
LL
2967 goto fail;
2968 }
2969
2970 /* Prepare GAMMA_LUT with the legacy values. */
2971 blob_data = (struct drm_color_lut *) blob->data;
2972 for (i = 0; i < size; i++) {
2973 blob_data[i].red = red[i];
2974 blob_data[i].green = green[i];
2975 blob_data[i].blue = blue[i];
2976 }
2977
2978 state->acquire_ctx = crtc->dev->mode_config.acquire_ctx;
2979retry:
2980 crtc_state = drm_atomic_get_crtc_state(state, crtc);
2981 if (IS_ERR(crtc_state)) {
2982 ret = PTR_ERR(crtc_state);
2983 goto fail;
2984 }
2985
2986 /* Reset DEGAMMA_LUT and CTM properties. */
2987 ret = drm_atomic_crtc_set_property(crtc, crtc_state,
2988 config->degamma_lut_property, 0);
2989 if (ret)
2990 goto fail;
2991
2992 ret = drm_atomic_crtc_set_property(crtc, crtc_state,
2993 config->ctm_property, 0);
2994 if (ret)
2995 goto fail;
2996
2997 ret = drm_atomic_crtc_set_property(crtc, crtc_state,
2998 config->gamma_lut_property, blob->base.id);
2999 if (ret)
3000 goto fail;
3001
3002 ret = drm_atomic_commit(state);
3003 if (ret)
3004 goto fail;
3005
3006 /* Driver takes ownership of state on successful commit. */
3007
3008 drm_property_unreference_blob(blob);
3009
3010 return;
3011fail:
3012 if (ret == -EDEADLK)
3013 goto backoff;
3014
3015 drm_atomic_state_free(state);
3016 drm_property_unreference_blob(blob);
3017
3018 return;
3019backoff:
3020 drm_atomic_state_clear(state);
3021 drm_atomic_legacy_backoff(state);
3022
3023 goto retry;
3024}
3025EXPORT_SYMBOL(drm_atomic_helper_legacy_gamma_set);