drm/atomic: add drm_atomic_add_affected_planes
[deliverable/linux.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
45 * drm_atomic_helper_check and for the commit callback with
46 * drm_atomic_helper_commit. But the individual stages and callbacks are expose
47 * to allow drivers to mix and match and e.g. use the plane helpers only
48 * together with a driver private modeset implementation.
49 *
50 * This library also provides implementations for all the legacy driver
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
53 * various functions to implement set_property callbacks. New drivers must not
54 * implement these functions themselves but must use the provided helpers.
55 */
c2fcd274
DV
56static void
57drm_atomic_helper_plane_changed(struct drm_atomic_state *state,
58 struct drm_plane_state *plane_state,
59 struct drm_plane *plane)
60{
61 struct drm_crtc_state *crtc_state;
62
63 if (plane->state->crtc) {
4b08eae5 64 crtc_state = state->crtc_states[drm_crtc_index(plane->state->crtc)];
c2fcd274
DV
65
66 if (WARN_ON(!crtc_state))
67 return;
68
69 crtc_state->planes_changed = true;
70 }
71
72 if (plane_state->crtc) {
73 crtc_state =
74 state->crtc_states[drm_crtc_index(plane_state->crtc)];
75
76 if (WARN_ON(!crtc_state))
77 return;
78
79 crtc_state->planes_changed = true;
80 }
81}
82
623369e5
DV
83static struct drm_crtc *
84get_current_crtc_for_encoder(struct drm_device *dev,
85 struct drm_encoder *encoder)
86{
87 struct drm_mode_config *config = &dev->mode_config;
88 struct drm_connector *connector;
89
90 WARN_ON(!drm_modeset_is_locked(&config->connection_mutex));
91
92 list_for_each_entry(connector, &config->connector_list, head) {
93 if (connector->state->best_encoder != encoder)
94 continue;
95
96 return connector->state->crtc;
97 }
98
99 return NULL;
100}
101
102static int
103steal_encoder(struct drm_atomic_state *state,
104 struct drm_encoder *encoder,
105 struct drm_crtc *encoder_crtc)
106{
107 struct drm_mode_config *config = &state->dev->mode_config;
108 struct drm_crtc_state *crtc_state;
109 struct drm_connector *connector;
110 struct drm_connector_state *connector_state;
042652ed 111 int ret;
623369e5
DV
112
113 /*
114 * We can only steal an encoder coming from a connector, which means we
115 * must already hold the connection_mutex.
116 */
117 WARN_ON(!drm_modeset_is_locked(&config->connection_mutex));
118
17a38d9c
DV
119 DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] in use on [CRTC:%d], stealing it\n",
120 encoder->base.id, encoder->name,
121 encoder_crtc->base.id);
623369e5
DV
122
123 crtc_state = drm_atomic_get_crtc_state(state, encoder_crtc);
124 if (IS_ERR(crtc_state))
125 return PTR_ERR(crtc_state);
126
127 crtc_state->mode_changed = true;
128
129 list_for_each_entry(connector, &config->connector_list, head) {
130 if (connector->state->best_encoder != encoder)
131 continue;
132
17a38d9c
DV
133 DRM_DEBUG_ATOMIC("Stealing encoder from [CONNECTOR:%d:%s]\n",
134 connector->base.id,
135 connector->name);
623369e5
DV
136
137 connector_state = drm_atomic_get_connector_state(state,
138 connector);
139 if (IS_ERR(connector_state))
140 return PTR_ERR(connector_state);
141
042652ed
DV
142 ret = drm_atomic_set_crtc_for_connector(connector_state, NULL);
143 if (ret)
144 return ret;
623369e5
DV
145 connector_state->best_encoder = NULL;
146 }
147
148 return 0;
149}
150
151static int
152update_connector_routing(struct drm_atomic_state *state, int conn_idx)
153{
b5ceff20 154 const struct drm_connector_helper_funcs *funcs;
623369e5
DV
155 struct drm_encoder *new_encoder;
156 struct drm_crtc *encoder_crtc;
157 struct drm_connector *connector;
158 struct drm_connector_state *connector_state;
159 struct drm_crtc_state *crtc_state;
160 int idx, ret;
161
162 connector = state->connectors[conn_idx];
163 connector_state = state->connector_states[conn_idx];
164
165 if (!connector)
166 return 0;
167
17a38d9c
DV
168 DRM_DEBUG_ATOMIC("Updating routing for [CONNECTOR:%d:%s]\n",
169 connector->base.id,
170 connector->name);
623369e5
DV
171
172 if (connector->state->crtc != connector_state->crtc) {
173 if (connector->state->crtc) {
174 idx = drm_crtc_index(connector->state->crtc);
175
176 crtc_state = state->crtc_states[idx];
177 crtc_state->mode_changed = true;
178 }
179
180 if (connector_state->crtc) {
181 idx = drm_crtc_index(connector_state->crtc);
182
183 crtc_state = state->crtc_states[idx];
184 crtc_state->mode_changed = true;
185 }
186 }
187
188 if (!connector_state->crtc) {
17a38d9c 189 DRM_DEBUG_ATOMIC("Disabling [CONNECTOR:%d:%s]\n",
623369e5
DV
190 connector->base.id,
191 connector->name);
192
193 connector_state->best_encoder = NULL;
194
195 return 0;
196 }
197
198 funcs = connector->helper_private;
199 new_encoder = funcs->best_encoder(connector);
200
201 if (!new_encoder) {
17a38d9c
DV
202 DRM_DEBUG_ATOMIC("No suitable encoder found for [CONNECTOR:%d:%s]\n",
203 connector->base.id,
204 connector->name);
623369e5
DV
205 return -EINVAL;
206 }
207
208 if (new_encoder == connector_state->best_encoder) {
17a38d9c
DV
209 DRM_DEBUG_ATOMIC("[CONNECTOR:%d:%s] keeps [ENCODER:%d:%s], now on [CRTC:%d]\n",
210 connector->base.id,
211 connector->name,
212 new_encoder->base.id,
213 new_encoder->name,
214 connector_state->crtc->base.id);
623369e5
DV
215
216 return 0;
217 }
218
219 encoder_crtc = get_current_crtc_for_encoder(state->dev,
220 new_encoder);
221
222 if (encoder_crtc) {
223 ret = steal_encoder(state, new_encoder, encoder_crtc);
224 if (ret) {
17a38d9c
DV
225 DRM_DEBUG_ATOMIC("Encoder stealing failed for [CONNECTOR:%d:%s]\n",
226 connector->base.id,
227 connector->name);
623369e5
DV
228 return ret;
229 }
230 }
231
232 connector_state->best_encoder = new_encoder;
233 idx = drm_crtc_index(connector_state->crtc);
234
235 crtc_state = state->crtc_states[idx];
236 crtc_state->mode_changed = true;
237
17a38d9c
DV
238 DRM_DEBUG_ATOMIC("[CONNECTOR:%d:%s] using [ENCODER:%d:%s] on [CRTC:%d]\n",
239 connector->base.id,
240 connector->name,
241 new_encoder->base.id,
242 new_encoder->name,
243 connector_state->crtc->base.id);
623369e5
DV
244
245 return 0;
246}
247
248static int
249mode_fixup(struct drm_atomic_state *state)
250{
df63b999 251 struct drm_crtc *crtc;
623369e5 252 struct drm_crtc_state *crtc_state;
df63b999 253 struct drm_connector *connector;
623369e5
DV
254 struct drm_connector_state *conn_state;
255 int i;
256 bool ret;
257
df63b999
ACO
258 for_each_crtc_in_state(state, crtc, crtc_state, i) {
259 if (!crtc_state->mode_changed)
623369e5
DV
260 continue;
261
262 drm_mode_copy(&crtc_state->adjusted_mode, &crtc_state->mode);
263 }
264
df63b999 265 for_each_connector_in_state(state, connector, conn_state, i) {
b5ceff20 266 const struct drm_encoder_helper_funcs *funcs;
623369e5
DV
267 struct drm_encoder *encoder;
268
623369e5
DV
269 WARN_ON(!!conn_state->best_encoder != !!conn_state->crtc);
270
271 if (!conn_state->crtc || !conn_state->best_encoder)
272 continue;
273
274 crtc_state =
275 state->crtc_states[drm_crtc_index(conn_state->crtc)];
276
277 /*
278 * Each encoder has at most one connector (since we always steal
279 * it away), so we won't call ->mode_fixup twice.
280 */
281 encoder = conn_state->best_encoder;
282 funcs = encoder->helper_private;
840bfe95
ACO
283 if (!funcs)
284 continue;
623369e5
DV
285
286 if (encoder->bridge && encoder->bridge->funcs->mode_fixup) {
287 ret = encoder->bridge->funcs->mode_fixup(
288 encoder->bridge, &crtc_state->mode,
289 &crtc_state->adjusted_mode);
290 if (!ret) {
17a38d9c 291 DRM_DEBUG_ATOMIC("Bridge fixup failed\n");
623369e5
DV
292 return -EINVAL;
293 }
294 }
295
4cd4df80
TR
296 if (funcs->atomic_check) {
297 ret = funcs->atomic_check(encoder, crtc_state,
298 conn_state);
299 if (ret) {
17a38d9c
DV
300 DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] check failed\n",
301 encoder->base.id, encoder->name);
4cd4df80
TR
302 return ret;
303 }
304 } else {
305 ret = funcs->mode_fixup(encoder, &crtc_state->mode,
306 &crtc_state->adjusted_mode);
307 if (!ret) {
17a38d9c
DV
308 DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] fixup failed\n",
309 encoder->base.id, encoder->name);
4cd4df80
TR
310 return -EINVAL;
311 }
623369e5
DV
312 }
313 }
314
df63b999 315 for_each_crtc_in_state(state, crtc, crtc_state, i) {
b5ceff20 316 const struct drm_crtc_helper_funcs *funcs;
623369e5 317
df63b999 318 if (!crtc_state->mode_changed)
623369e5
DV
319 continue;
320
321 funcs = crtc->helper_private;
840bfe95
ACO
322 if (!funcs->mode_fixup)
323 continue;
324
623369e5
DV
325 ret = funcs->mode_fixup(crtc, &crtc_state->mode,
326 &crtc_state->adjusted_mode);
327 if (!ret) {
17a38d9c
DV
328 DRM_DEBUG_ATOMIC("[CRTC:%d] fixup failed\n",
329 crtc->base.id);
623369e5
DV
330 return -EINVAL;
331 }
332 }
333
334 return 0;
335}
336
eab3bbef
DV
337static bool
338needs_modeset(struct drm_crtc_state *state)
339{
340 return state->mode_changed || state->active_changed;
341}
342
d9b13620 343/**
f98bd3ef 344 * drm_atomic_helper_check_modeset - validate state object for modeset changes
d9b13620
DV
345 * @dev: DRM device
346 * @state: the driver state object
347 *
348 * Check the state object to see if the requested state is physically possible.
349 * This does all the crtc and connector related computations for an atomic
350 * update. It computes and updates crtc_state->mode_changed, adds any additional
351 * connectors needed for full modesets and calls down into ->mode_fixup
352 * functions of the driver backend.
353 *
354 * IMPORTANT:
355 *
356 * Drivers which update ->mode_changed (e.g. in their ->atomic_check hooks if a
357 * plane update can't be done without a full modeset) _must_ call this function
358 * afterwards after that change. It is permitted to call this function multiple
359 * times for the same update, e.g. when the ->atomic_check functions depend upon
360 * the adjusted dotclock for fifo space allocation and watermark computation.
361 *
362 * RETURNS
363 * Zero for success or -errno
364 */
365int
934ce1c2 366drm_atomic_helper_check_modeset(struct drm_device *dev,
623369e5
DV
367 struct drm_atomic_state *state)
368{
623369e5
DV
369 struct drm_crtc *crtc;
370 struct drm_crtc_state *crtc_state;
df63b999
ACO
371 struct drm_connector *connector;
372 struct drm_connector_state *connector_state;
623369e5
DV
373 int i, ret;
374
df63b999 375 for_each_crtc_in_state(state, crtc, crtc_state, i) {
623369e5 376 if (!drm_mode_equal(&crtc->state->mode, &crtc_state->mode)) {
17a38d9c
DV
377 DRM_DEBUG_ATOMIC("[CRTC:%d] mode changed\n",
378 crtc->base.id);
623369e5
DV
379 crtc_state->mode_changed = true;
380 }
381
382 if (crtc->state->enable != crtc_state->enable) {
17a38d9c
DV
383 DRM_DEBUG_ATOMIC("[CRTC:%d] enable changed\n",
384 crtc->base.id);
623369e5
DV
385 crtc_state->mode_changed = true;
386 }
387 }
388
df63b999 389 for_each_connector_in_state(state, connector, connector_state, i) {
623369e5
DV
390 /*
391 * This only sets crtc->mode_changed for routing changes,
392 * drivers must set crtc->mode_changed themselves when connector
393 * properties need to be updated.
394 */
395 ret = update_connector_routing(state, i);
396 if (ret)
397 return ret;
398 }
399
400 /*
401 * After all the routing has been prepared we need to add in any
402 * connector which is itself unchanged, but who's crtc changes it's
403 * configuration. This must be done before calling mode_fixup in case a
404 * crtc only changed its mode but has the same set of connectors.
405 */
df63b999 406 for_each_crtc_in_state(state, crtc, crtc_state, i) {
623369e5
DV
407 int num_connectors;
408
eab3bbef
DV
409 /*
410 * We must set ->active_changed after walking connectors for
411 * otherwise an update that only changes active would result in
412 * a full modeset because update_connector_routing force that.
413 */
414 if (crtc->state->active != crtc_state->active) {
17a38d9c
DV
415 DRM_DEBUG_ATOMIC("[CRTC:%d] active changed\n",
416 crtc->base.id);
eab3bbef
DV
417 crtc_state->active_changed = true;
418 }
419
420 if (!needs_modeset(crtc_state))
623369e5
DV
421 continue;
422
17a38d9c
DV
423 DRM_DEBUG_ATOMIC("[CRTC:%d] needs all connectors, enable: %c, active: %c\n",
424 crtc->base.id,
425 crtc_state->enable ? 'y' : 'n',
eab3bbef 426 crtc_state->active ? 'y' : 'n');
623369e5
DV
427
428 ret = drm_atomic_add_affected_connectors(state, crtc);
429 if (ret != 0)
430 return ret;
431
432 num_connectors = drm_atomic_connectors_for_crtc(state,
433 crtc);
434
435 if (crtc_state->enable != !!num_connectors) {
17a38d9c
DV
436 DRM_DEBUG_ATOMIC("[CRTC:%d] enabled/connectors mismatch\n",
437 crtc->base.id);
623369e5
DV
438
439 return -EINVAL;
440 }
441 }
442
443 return mode_fixup(state);
444}
d9b13620 445EXPORT_SYMBOL(drm_atomic_helper_check_modeset);
623369e5 446
c2fcd274 447/**
f98bd3ef 448 * drm_atomic_helper_check_planes - validate state object for planes changes
c2fcd274
DV
449 * @dev: DRM device
450 * @state: the driver state object
451 *
452 * Check the state object to see if the requested state is physically possible.
d9b13620
DV
453 * This does all the plane update related checks using by calling into the
454 * ->atomic_check hooks provided by the driver.
c2fcd274
DV
455 *
456 * RETURNS
457 * Zero for success or -errno
458 */
d9b13620
DV
459int
460drm_atomic_helper_check_planes(struct drm_device *dev,
461 struct drm_atomic_state *state)
c2fcd274 462{
df63b999
ACO
463 struct drm_crtc *crtc;
464 struct drm_crtc_state *crtc_state;
465 struct drm_plane *plane;
466 struct drm_plane_state *plane_state;
c2fcd274
DV
467 int i, ret = 0;
468
df63b999 469 for_each_plane_in_state(state, plane, plane_state, i) {
b5ceff20 470 const struct drm_plane_helper_funcs *funcs;
c2fcd274
DV
471
472 funcs = plane->helper_private;
473
474 drm_atomic_helper_plane_changed(state, plane_state, plane);
475
476 if (!funcs || !funcs->atomic_check)
477 continue;
478
479 ret = funcs->atomic_check(plane, plane_state);
480 if (ret) {
17a38d9c
DV
481 DRM_DEBUG_ATOMIC("[PLANE:%d] atomic driver check failed\n",
482 plane->base.id);
c2fcd274
DV
483 return ret;
484 }
485 }
486
df63b999 487 for_each_crtc_in_state(state, crtc, crtc_state, i) {
b5ceff20 488 const struct drm_crtc_helper_funcs *funcs;
c2fcd274
DV
489
490 funcs = crtc->helper_private;
491
492 if (!funcs || !funcs->atomic_check)
493 continue;
494
495 ret = funcs->atomic_check(crtc, state->crtc_states[i]);
496 if (ret) {
17a38d9c
DV
497 DRM_DEBUG_ATOMIC("[CRTC:%d] atomic driver check failed\n",
498 crtc->base.id);
c2fcd274
DV
499 return ret;
500 }
501 }
502
d9b13620
DV
503 return ret;
504}
505EXPORT_SYMBOL(drm_atomic_helper_check_planes);
506
507/**
508 * drm_atomic_helper_check - validate state object
509 * @dev: DRM device
510 * @state: the driver state object
511 *
512 * Check the state object to see if the requested state is physically possible.
513 * Only crtcs and planes have check callbacks, so for any additional (global)
514 * checking that a driver needs it can simply wrap that around this function.
515 * Drivers without such needs can directly use this as their ->atomic_check()
516 * callback.
517 *
b4274fbe
DV
518 * This just wraps the two parts of the state checking for planes and modeset
519 * state in the default order: First it calls drm_atomic_helper_check_modeset()
520 * and then drm_atomic_helper_check_planes(). The assumption is that the
521 * ->atomic_check functions depend upon an updated adjusted_mode.clock to
522 * e.g. properly compute watermarks.
523 *
d9b13620
DV
524 * RETURNS
525 * Zero for success or -errno
526 */
527int drm_atomic_helper_check(struct drm_device *dev,
528 struct drm_atomic_state *state)
529{
530 int ret;
531
b4274fbe 532 ret = drm_atomic_helper_check_modeset(dev, state);
d9b13620
DV
533 if (ret)
534 return ret;
535
b4274fbe 536 ret = drm_atomic_helper_check_planes(dev, state);
934ce1c2
RC
537 if (ret)
538 return ret;
539
c2fcd274
DV
540 return ret;
541}
542EXPORT_SYMBOL(drm_atomic_helper_check);
543
623369e5
DV
544static void
545disable_outputs(struct drm_device *dev, struct drm_atomic_state *old_state)
546{
df63b999
ACO
547 struct drm_connector *connector;
548 struct drm_connector_state *old_conn_state;
549 struct drm_crtc *crtc;
550 struct drm_crtc_state *old_crtc_state;
623369e5
DV
551 int i;
552
df63b999 553 for_each_connector_in_state(old_state, connector, old_conn_state, i) {
b5ceff20 554 const struct drm_encoder_helper_funcs *funcs;
623369e5 555 struct drm_encoder *encoder;
eab3bbef 556 struct drm_crtc_state *old_crtc_state;
623369e5 557
623369e5
DV
558 /* Shut down everything that's in the changeset and currently
559 * still on. So need to check the old, saved state. */
df63b999 560 if (!old_conn_state->crtc)
623369e5
DV
561 continue;
562
eab3bbef
DV
563 old_crtc_state = old_state->crtc_states[drm_crtc_index(old_conn_state->crtc)];
564
4218a32f
DV
565 if (!old_crtc_state->active ||
566 !needs_modeset(old_conn_state->crtc->state))
eab3bbef
DV
567 continue;
568
46df9adb 569 encoder = old_conn_state->best_encoder;
623369e5 570
46df9adb
RC
571 /* We shouldn't get this far if we didn't previously have
572 * an encoder.. but WARN_ON() rather than explode.
573 */
574 if (WARN_ON(!encoder))
623369e5
DV
575 continue;
576
577 funcs = encoder->helper_private;
578
17a38d9c
DV
579 DRM_DEBUG_ATOMIC("disabling [ENCODER:%d:%s]\n",
580 encoder->base.id, encoder->name);
95d6eb3b 581
623369e5
DV
582 /*
583 * Each encoder has at most one connector (since we always steal
f98bd3ef 584 * it away), so we won't call disable hooks twice.
623369e5
DV
585 */
586 if (encoder->bridge)
587 encoder->bridge->funcs->disable(encoder->bridge);
588
589 /* Right function depends upon target state. */
ee0a89cf 590 if (connector->state->crtc && funcs->prepare)
623369e5
DV
591 funcs->prepare(encoder);
592 else if (funcs->disable)
593 funcs->disable(encoder);
594 else
595 funcs->dpms(encoder, DRM_MODE_DPMS_OFF);
596
597 if (encoder->bridge)
598 encoder->bridge->funcs->post_disable(encoder->bridge);
599 }
600
df63b999 601 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
b5ceff20 602 const struct drm_crtc_helper_funcs *funcs;
623369e5
DV
603
604 /* Shut down everything that needs a full modeset. */
df63b999 605 if (!needs_modeset(crtc->state))
eab3bbef
DV
606 continue;
607
608 if (!old_crtc_state->active)
623369e5
DV
609 continue;
610
611 funcs = crtc->helper_private;
612
17a38d9c
DV
613 DRM_DEBUG_ATOMIC("disabling [CRTC:%d]\n",
614 crtc->base.id);
95d6eb3b
DV
615
616
623369e5 617 /* Right function depends upon target state. */
ee0a89cf 618 if (crtc->state->enable && funcs->prepare)
623369e5
DV
619 funcs->prepare(crtc);
620 else if (funcs->disable)
621 funcs->disable(crtc);
622 else
623 funcs->dpms(crtc, DRM_MODE_DPMS_OFF);
624 }
625}
626
4c18d301
DV
627/**
628 * drm_atomic_helper_update_legacy_modeset_state - update legacy modeset state
629 * @dev: DRM device
630 * @old_state: atomic state object with old state structures
631 *
632 * This function updates all the various legacy modeset state pointers in
633 * connectors, encoders and crtcs. It also updates the timestamping constants
634 * used for precise vblank timestamps by calling
635 * drm_calc_timestamping_constants().
636 *
637 * Drivers can use this for building their own atomic commit if they don't have
638 * a pure helper-based modeset implementation.
639 */
640void
641drm_atomic_helper_update_legacy_modeset_state(struct drm_device *dev,
642 struct drm_atomic_state *old_state)
623369e5 643{
df63b999
ACO
644 struct drm_connector *connector;
645 struct drm_connector_state *old_conn_state;
646 struct drm_crtc *crtc;
647 struct drm_crtc_state *old_crtc_state;
623369e5
DV
648 int i;
649
650 /* clear out existing links */
df63b999
ACO
651 for_each_connector_in_state(old_state, connector, old_conn_state, i) {
652 if (!connector->encoder)
623369e5
DV
653 continue;
654
655 WARN_ON(!connector->encoder->crtc);
656
657 connector->encoder->crtc = NULL;
658 connector->encoder = NULL;
659 }
660
661 /* set new links */
df63b999
ACO
662 for_each_connector_in_state(old_state, connector, old_conn_state, i) {
663 if (!connector->state->crtc)
623369e5
DV
664 continue;
665
666 if (WARN_ON(!connector->state->best_encoder))
667 continue;
668
669 connector->encoder = connector->state->best_encoder;
670 connector->encoder->crtc = connector->state->crtc;
671 }
672
673 /* set legacy state in the crtc structure */
df63b999 674 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
623369e5
DV
675 crtc->mode = crtc->state->mode;
676 crtc->enabled = crtc->state->enable;
677 crtc->x = crtc->primary->state->src_x >> 16;
678 crtc->y = crtc->primary->state->src_y >> 16;
3d51d2d2
DV
679
680 if (crtc->state->enable)
681 drm_calc_timestamping_constants(crtc,
682 &crtc->state->adjusted_mode);
623369e5
DV
683 }
684}
4c18d301 685EXPORT_SYMBOL(drm_atomic_helper_update_legacy_modeset_state);
623369e5
DV
686
687static void
688crtc_set_mode(struct drm_device *dev, struct drm_atomic_state *old_state)
689{
df63b999
ACO
690 struct drm_crtc *crtc;
691 struct drm_crtc_state *old_crtc_state;
692 struct drm_connector *connector;
693 struct drm_connector_state *old_conn_state;
623369e5
DV
694 int i;
695
df63b999 696 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
b5ceff20 697 const struct drm_crtc_helper_funcs *funcs;
623369e5 698
df63b999 699 if (!crtc->state->mode_changed)
623369e5
DV
700 continue;
701
702 funcs = crtc->helper_private;
703
c982bd90 704 if (crtc->state->enable && funcs->mode_set_nofb) {
17a38d9c
DV
705 DRM_DEBUG_ATOMIC("modeset on [CRTC:%d]\n",
706 crtc->base.id);
95d6eb3b 707
623369e5 708 funcs->mode_set_nofb(crtc);
95d6eb3b 709 }
623369e5
DV
710 }
711
df63b999 712 for_each_connector_in_state(old_state, connector, old_conn_state, i) {
b5ceff20 713 const struct drm_encoder_helper_funcs *funcs;
623369e5 714 struct drm_crtc_state *new_crtc_state;
623369e5
DV
715 struct drm_encoder *encoder;
716 struct drm_display_mode *mode, *adjusted_mode;
717
df63b999 718 if (!connector->state->best_encoder)
623369e5
DV
719 continue;
720
721 encoder = connector->state->best_encoder;
722 funcs = encoder->helper_private;
723 new_crtc_state = connector->state->crtc->state;
724 mode = &new_crtc_state->mode;
725 adjusted_mode = &new_crtc_state->adjusted_mode;
726
eab3bbef
DV
727 if (!new_crtc_state->mode_changed)
728 continue;
729
17a38d9c
DV
730 DRM_DEBUG_ATOMIC("modeset on [ENCODER:%d:%s]\n",
731 encoder->base.id, encoder->name);
95d6eb3b 732
623369e5
DV
733 /*
734 * Each encoder has at most one connector (since we always steal
f98bd3ef 735 * it away), so we won't call mode_set hooks twice.
623369e5 736 */
c982bd90
DV
737 if (funcs->mode_set)
738 funcs->mode_set(encoder, mode, adjusted_mode);
623369e5
DV
739
740 if (encoder->bridge && encoder->bridge->funcs->mode_set)
741 encoder->bridge->funcs->mode_set(encoder->bridge,
742 mode, adjusted_mode);
743 }
744}
745
746/**
1af434a9 747 * drm_atomic_helper_commit_modeset_disables - modeset commit to disable outputs
623369e5 748 * @dev: DRM device
a072f809 749 * @old_state: atomic state object with old state structures
623369e5 750 *
1af434a9 751 * This function shuts down all the outputs that need to be shut down and
623369e5 752 * prepares them (if required) with the new mode.
1af434a9
DV
753 *
754 * For compatability with legacy crtc helpers this should be called before
755 * drm_atomic_helper_commit_planes(), which is what the default commit function
756 * does. But drivers with different needs can group the modeset commits together
757 * and do the plane commits at the end. This is useful for drivers doing runtime
758 * PM since planes updates then only happen when the CRTC is actually enabled.
623369e5 759 */
1af434a9
DV
760void drm_atomic_helper_commit_modeset_disables(struct drm_device *dev,
761 struct drm_atomic_state *old_state)
623369e5 762{
a072f809 763 disable_outputs(dev, old_state);
4c18d301
DV
764
765 drm_atomic_helper_update_legacy_modeset_state(dev, old_state);
766
a072f809 767 crtc_set_mode(dev, old_state);
623369e5 768}
1af434a9 769EXPORT_SYMBOL(drm_atomic_helper_commit_modeset_disables);
623369e5
DV
770
771/**
1af434a9 772 * drm_atomic_helper_commit_modeset_enables - modeset commit to enable outputs
623369e5
DV
773 * @dev: DRM device
774 * @old_state: atomic state object with old state structures
775 *
1af434a9
DV
776 * This function enables all the outputs with the new configuration which had to
777 * be turned off for the update.
778 *
779 * For compatability with legacy crtc helpers this should be called after
780 * drm_atomic_helper_commit_planes(), which is what the default commit function
781 * does. But drivers with different needs can group the modeset commits together
782 * and do the plane commits at the end. This is useful for drivers doing runtime
783 * PM since planes updates then only happen when the CRTC is actually enabled.
623369e5 784 */
1af434a9
DV
785void drm_atomic_helper_commit_modeset_enables(struct drm_device *dev,
786 struct drm_atomic_state *old_state)
623369e5 787{
df63b999
ACO
788 struct drm_crtc *crtc;
789 struct drm_crtc_state *old_crtc_state;
790 struct drm_connector *connector;
791 struct drm_connector_state *old_conn_state;
623369e5
DV
792 int i;
793
df63b999 794 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
b5ceff20 795 const struct drm_crtc_helper_funcs *funcs;
623369e5
DV
796
797 /* Need to filter out CRTCs where only planes change. */
df63b999 798 if (!needs_modeset(crtc->state))
eab3bbef
DV
799 continue;
800
801 if (!crtc->state->active)
623369e5
DV
802 continue;
803
804 funcs = crtc->helper_private;
805
ee0a89cf 806 if (crtc->state->enable) {
17a38d9c
DV
807 DRM_DEBUG_ATOMIC("enabling [CRTC:%d]\n",
808 crtc->base.id);
95d6eb3b 809
ee0a89cf
DV
810 if (funcs->enable)
811 funcs->enable(crtc);
812 else
813 funcs->commit(crtc);
814 }
623369e5
DV
815 }
816
df63b999 817 for_each_connector_in_state(old_state, connector, old_conn_state, i) {
b5ceff20 818 const struct drm_encoder_helper_funcs *funcs;
623369e5
DV
819 struct drm_encoder *encoder;
820
df63b999 821 if (!connector->state->best_encoder)
623369e5
DV
822 continue;
823
4218a32f
DV
824 if (!connector->state->crtc->state->active ||
825 !needs_modeset(connector->state->crtc->state))
eab3bbef
DV
826 continue;
827
623369e5
DV
828 encoder = connector->state->best_encoder;
829 funcs = encoder->helper_private;
830
17a38d9c
DV
831 DRM_DEBUG_ATOMIC("enabling [ENCODER:%d:%s]\n",
832 encoder->base.id, encoder->name);
95d6eb3b 833
623369e5
DV
834 /*
835 * Each encoder has at most one connector (since we always steal
f98bd3ef 836 * it away), so we won't call enable hooks twice.
623369e5
DV
837 */
838 if (encoder->bridge)
839 encoder->bridge->funcs->pre_enable(encoder->bridge);
840
ee0a89cf
DV
841 if (funcs->enable)
842 funcs->enable(encoder);
843 else
844 funcs->commit(encoder);
623369e5
DV
845
846 if (encoder->bridge)
847 encoder->bridge->funcs->enable(encoder->bridge);
848 }
849}
1af434a9 850EXPORT_SYMBOL(drm_atomic_helper_commit_modeset_enables);
623369e5 851
e2330f07
DV
852static void wait_for_fences(struct drm_device *dev,
853 struct drm_atomic_state *state)
854{
df63b999
ACO
855 struct drm_plane *plane;
856 struct drm_plane_state *plane_state;
e2330f07
DV
857 int i;
858
df63b999
ACO
859 for_each_plane_in_state(state, plane, plane_state, i) {
860 if (!plane->state->fence)
e2330f07
DV
861 continue;
862
863 WARN_ON(!plane->state->fb);
864
865 fence_wait(plane->state->fence, false);
866 fence_put(plane->state->fence);
867 plane->state->fence = NULL;
868 }
869}
870
ab58e338
DV
871static bool framebuffer_changed(struct drm_device *dev,
872 struct drm_atomic_state *old_state,
873 struct drm_crtc *crtc)
874{
875 struct drm_plane *plane;
876 struct drm_plane_state *old_plane_state;
ab58e338
DV
877 int i;
878
df63b999 879 for_each_plane_in_state(old_state, plane, old_plane_state, i) {
ab58e338
DV
880 if (plane->state->crtc != crtc &&
881 old_plane_state->crtc != crtc)
882 continue;
883
884 if (plane->state->fb != old_plane_state->fb)
885 return true;
886 }
887
888 return false;
889}
890
5ee3229c
RC
891/**
892 * drm_atomic_helper_wait_for_vblanks - wait for vblank on crtcs
893 * @dev: DRM device
894 * @old_state: atomic state object with old state structures
895 *
896 * Helper to, after atomic commit, wait for vblanks on all effected
897 * crtcs (ie. before cleaning up old framebuffers using
ab58e338
DV
898 * drm_atomic_helper_cleanup_planes()). It will only wait on crtcs where the
899 * framebuffers have actually changed to optimize for the legacy cursor and
900 * plane update use-case.
5ee3229c
RC
901 */
902void
903drm_atomic_helper_wait_for_vblanks(struct drm_device *dev,
904 struct drm_atomic_state *old_state)
623369e5
DV
905{
906 struct drm_crtc *crtc;
907 struct drm_crtc_state *old_crtc_state;
623369e5
DV
908 int i, ret;
909
df63b999 910 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
623369e5
DV
911 /* No one cares about the old state, so abuse it for tracking
912 * and store whether we hold a vblank reference (and should do a
913 * vblank wait) in the ->enable boolean. */
914 old_crtc_state->enable = false;
915
916 if (!crtc->state->enable)
917 continue;
918
f02ad907
DV
919 /* Legacy cursor ioctls are completely unsynced, and userspace
920 * relies on that (by doing tons of cursor updates). */
921 if (old_state->legacy_cursor_update)
922 continue;
923
ab58e338
DV
924 if (!framebuffer_changed(dev, old_state, crtc))
925 continue;
926
623369e5
DV
927 ret = drm_crtc_vblank_get(crtc);
928 if (ret != 0)
929 continue;
930
931 old_crtc_state->enable = true;
932 old_crtc_state->last_vblank_count = drm_vblank_count(dev, i);
933 }
934
df63b999
ACO
935 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
936 if (!old_crtc_state->enable)
623369e5
DV
937 continue;
938
939 ret = wait_event_timeout(dev->vblank[i].queue,
940 old_crtc_state->last_vblank_count !=
941 drm_vblank_count(dev, i),
942 msecs_to_jiffies(50));
943
944 drm_crtc_vblank_put(crtc);
945 }
946}
5ee3229c 947EXPORT_SYMBOL(drm_atomic_helper_wait_for_vblanks);
623369e5
DV
948
949/**
950 * drm_atomic_helper_commit - commit validated state object
951 * @dev: DRM device
952 * @state: the driver state object
953 * @async: asynchronous commit
954 *
955 * This function commits a with drm_atomic_helper_check() pre-validated state
956 * object. This can still fail when e.g. the framebuffer reservation fails. For
957 * now this doesn't implement asynchronous commits.
958 *
959 * RETURNS
960 * Zero for success or -errno.
961 */
962int drm_atomic_helper_commit(struct drm_device *dev,
963 struct drm_atomic_state *state,
964 bool async)
965{
966 int ret;
967
968 if (async)
969 return -EBUSY;
970
971 ret = drm_atomic_helper_prepare_planes(dev, state);
972 if (ret)
973 return ret;
974
975 /*
976 * This is the point of no return - everything below never fails except
977 * when the hw goes bonghits. Which means we can commit the new state on
978 * the software side now.
979 */
980
981 drm_atomic_helper_swap_state(dev, state);
982
983 /*
984 * Everything below can be run asynchronously without the need to grab
f98bd3ef 985 * any modeset locks at all under one condition: It must be guaranteed
623369e5
DV
986 * that the asynchronous work has either been cancelled (if the driver
987 * supports it, which at least requires that the framebuffers get
988 * cleaned up with drm_atomic_helper_cleanup_planes()) or completed
989 * before the new state gets committed on the software side with
990 * drm_atomic_helper_swap_state().
991 *
992 * This scheme allows new atomic state updates to be prepared and
993 * checked in parallel to the asynchronous completion of the previous
994 * update. Which is important since compositors need to figure out the
995 * composition of the next frame right after having submitted the
996 * current layout.
997 */
998
e2330f07
DV
999 wait_for_fences(dev, state);
1000
1af434a9 1001 drm_atomic_helper_commit_modeset_disables(dev, state);
623369e5
DV
1002
1003 drm_atomic_helper_commit_planes(dev, state);
1004
1af434a9 1005 drm_atomic_helper_commit_modeset_enables(dev, state);
623369e5 1006
5ee3229c 1007 drm_atomic_helper_wait_for_vblanks(dev, state);
623369e5
DV
1008
1009 drm_atomic_helper_cleanup_planes(dev, state);
1010
1011 drm_atomic_state_free(state);
1012
1013 return 0;
1014}
1015EXPORT_SYMBOL(drm_atomic_helper_commit);
1016
e8c833a7
DV
1017/**
1018 * DOC: implementing async commit
1019 *
1020 * For now the atomic helpers don't support async commit directly. If there is
1021 * real need it could be added though, using the dma-buf fence infrastructure
1022 * for generic synchronization with outstanding rendering.
1023 *
1024 * For now drivers have to implement async commit themselves, with the following
1025 * sequence being the recommended one:
1026 *
1027 * 1. Run drm_atomic_helper_prepare_planes() first. This is the only function
1028 * which commit needs to call which can fail, so we want to run it first and
1029 * synchronously.
1030 *
1031 * 2. Synchronize with any outstanding asynchronous commit worker threads which
1032 * might be affected the new state update. This can be done by either cancelling
1033 * or flushing the work items, depending upon whether the driver can deal with
1034 * cancelled updates. Note that it is important to ensure that the framebuffer
1035 * cleanup is still done when cancelling.
1036 *
1037 * For sufficient parallelism it is recommended to have a work item per crtc
1038 * (for updates which don't touch global state) and a global one. Then we only
1039 * need to synchronize with the crtc work items for changed crtcs and the global
1040 * work item, which allows nice concurrent updates on disjoint sets of crtcs.
1041 *
1042 * 3. The software state is updated synchronously with
1043 * drm_atomic_helper_swap_state. Doing this under the protection of all modeset
1044 * locks means concurrent callers never see inconsistent state. And doing this
1045 * while it's guaranteed that no relevant async worker runs means that async
1046 * workers do not need grab any locks. Actually they must not grab locks, for
1047 * otherwise the work flushing will deadlock.
1048 *
1049 * 4. Schedule a work item to do all subsequent steps, using the split-out
1050 * commit helpers: a) pre-plane commit b) plane commit c) post-plane commit and
1051 * then cleaning up the framebuffers after the old framebuffer is no longer
1052 * being displayed.
1053 */
1054
c2fcd274 1055/**
2e3afd47 1056 * drm_atomic_helper_prepare_planes - prepare plane resources before commit
c2fcd274 1057 * @dev: DRM device
2e3afd47 1058 * @state: atomic state object with new state structures
c2fcd274
DV
1059 *
1060 * This function prepares plane state, specifically framebuffers, for the new
1061 * configuration. If any failure is encountered this function will call
1062 * ->cleanup_fb on any already successfully prepared framebuffer.
1063 *
1064 * Returns:
1065 * 0 on success, negative error code on failure.
1066 */
1067int drm_atomic_helper_prepare_planes(struct drm_device *dev,
1068 struct drm_atomic_state *state)
1069{
1070 int nplanes = dev->mode_config.num_total_plane;
1071 int ret, i;
1072
1073 for (i = 0; i < nplanes; i++) {
b5ceff20 1074 const struct drm_plane_helper_funcs *funcs;
c2fcd274 1075 struct drm_plane *plane = state->planes[i];
d136dfee 1076 struct drm_plane_state *plane_state = state->plane_states[i];
c2fcd274
DV
1077 struct drm_framebuffer *fb;
1078
1079 if (!plane)
1080 continue;
1081
1082 funcs = plane->helper_private;
1083
d136dfee 1084 fb = plane_state->fb;
c2fcd274
DV
1085
1086 if (fb && funcs->prepare_fb) {
d136dfee 1087 ret = funcs->prepare_fb(plane, fb, plane_state);
c2fcd274
DV
1088 if (ret)
1089 goto fail;
1090 }
1091 }
1092
1093 return 0;
1094
1095fail:
1096 for (i--; i >= 0; i--) {
b5ceff20 1097 const struct drm_plane_helper_funcs *funcs;
c2fcd274 1098 struct drm_plane *plane = state->planes[i];
d136dfee 1099 struct drm_plane_state *plane_state = state->plane_states[i];
c2fcd274
DV
1100 struct drm_framebuffer *fb;
1101
1102 if (!plane)
1103 continue;
1104
1105 funcs = plane->helper_private;
1106
1107 fb = state->plane_states[i]->fb;
1108
1109 if (fb && funcs->cleanup_fb)
d136dfee 1110 funcs->cleanup_fb(plane, fb, plane_state);
c2fcd274
DV
1111
1112 }
1113
1114 return ret;
1115}
1116EXPORT_SYMBOL(drm_atomic_helper_prepare_planes);
1117
1118/**
1119 * drm_atomic_helper_commit_planes - commit plane state
1120 * @dev: DRM device
b0fcfc89 1121 * @old_state: atomic state object with old state structures
c2fcd274
DV
1122 *
1123 * This function commits the new plane state using the plane and atomic helper
1124 * functions for planes and crtcs. It assumes that the atomic state has already
1125 * been pushed into the relevant object state pointers, since this step can no
1126 * longer fail.
1127 *
b0fcfc89 1128 * It still requires the global state object @old_state to know which planes and
c2fcd274 1129 * crtcs need to be updated though.
de28d021
ML
1130 *
1131 * Note that this function does all plane updates across all CRTCs in one step.
1132 * If the hardware can't support this approach look at
1133 * drm_atomic_helper_commit_planes_on_crtc() instead.
c2fcd274
DV
1134 */
1135void drm_atomic_helper_commit_planes(struct drm_device *dev,
b0fcfc89 1136 struct drm_atomic_state *old_state)
c2fcd274 1137{
df63b999
ACO
1138 struct drm_crtc *crtc;
1139 struct drm_crtc_state *old_crtc_state;
1140 struct drm_plane *plane;
1141 struct drm_plane_state *old_plane_state;
c2fcd274
DV
1142 int i;
1143
df63b999 1144 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
b5ceff20 1145 const struct drm_crtc_helper_funcs *funcs;
c2fcd274
DV
1146
1147 funcs = crtc->helper_private;
1148
1149 if (!funcs || !funcs->atomic_begin)
1150 continue;
1151
1152 funcs->atomic_begin(crtc);
1153 }
1154
df63b999 1155 for_each_plane_in_state(old_state, plane, old_plane_state, i) {
b5ceff20 1156 const struct drm_plane_helper_funcs *funcs;
c2fcd274
DV
1157
1158 funcs = plane->helper_private;
1159
3cad4b68 1160 if (!funcs)
c2fcd274
DV
1161 continue;
1162
407b8bd9
TR
1163 /*
1164 * Special-case disabling the plane if drivers support it.
1165 */
1166 if (drm_atomic_plane_disabling(plane, old_plane_state) &&
1167 funcs->atomic_disable)
1168 funcs->atomic_disable(plane, old_plane_state);
475d231b
DV
1169 else if (plane->state->crtc ||
1170 drm_atomic_plane_disabling(plane, old_plane_state))
407b8bd9 1171 funcs->atomic_update(plane, old_plane_state);
c2fcd274
DV
1172 }
1173
df63b999 1174 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
b5ceff20 1175 const struct drm_crtc_helper_funcs *funcs;
c2fcd274
DV
1176
1177 funcs = crtc->helper_private;
1178
1179 if (!funcs || !funcs->atomic_flush)
1180 continue;
1181
1182 funcs->atomic_flush(crtc);
1183 }
1184}
1185EXPORT_SYMBOL(drm_atomic_helper_commit_planes);
1186
de28d021
ML
1187/**
1188 * drm_atomic_helper_commit_planes_on_crtc - commit plane state for a crtc
1189 * @old_crtc_state: atomic state object with the old crtc state
1190 *
1191 * This function commits the new plane state using the plane and atomic helper
1192 * functions for planes on the specific crtc. It assumes that the atomic state
1193 * has already been pushed into the relevant object state pointers, since this
1194 * step can no longer fail.
1195 *
1196 * This function is useful when plane updates should be done crtc-by-crtc
1197 * instead of one global step like drm_atomic_helper_commit_planes() does.
1198 *
1199 * This function can only be savely used when planes are not allowed to move
1200 * between different CRTCs because this function doesn't handle inter-CRTC
1201 * depencies. Callers need to ensure that either no such depencies exist,
1202 * resolve them through ordering of commit calls or through some other means.
1203 */
1204void
1205drm_atomic_helper_commit_planes_on_crtc(struct drm_crtc_state *old_crtc_state)
1206{
1207 const struct drm_crtc_helper_funcs *crtc_funcs;
1208 struct drm_crtc *crtc = old_crtc_state->crtc;
1209 struct drm_atomic_state *old_state = old_crtc_state->state;
1210 struct drm_plane *plane;
1211 unsigned plane_mask;
1212
1213 plane_mask = old_crtc_state->plane_mask;
1214 plane_mask |= crtc->state->plane_mask;
1215
1216 crtc_funcs = crtc->helper_private;
1217 if (crtc_funcs && crtc_funcs->atomic_begin)
1218 crtc_funcs->atomic_begin(crtc);
1219
1220 drm_for_each_plane_mask(plane, crtc->dev, plane_mask) {
1221 struct drm_plane_state *old_plane_state =
1222 drm_atomic_get_existing_plane_state(old_state, plane);
1223 const struct drm_plane_helper_funcs *plane_funcs;
1224
1225 plane_funcs = plane->helper_private;
1226
1227 if (!old_plane_state || !plane_funcs)
1228 continue;
1229
1230 WARN_ON(plane->state->crtc && plane->state->crtc != crtc);
1231
1232 if (drm_atomic_plane_disabling(plane, old_plane_state) &&
1233 plane_funcs->atomic_disable)
1234 plane_funcs->atomic_disable(plane, old_plane_state);
1235 else if (plane->state->crtc ||
1236 drm_atomic_plane_disabling(plane, old_plane_state))
1237 plane_funcs->atomic_update(plane, old_plane_state);
1238 }
1239
1240 if (crtc_funcs && crtc_funcs->atomic_flush)
1241 crtc_funcs->atomic_flush(crtc);
1242}
1243EXPORT_SYMBOL(drm_atomic_helper_commit_planes_on_crtc);
1244
c2fcd274
DV
1245/**
1246 * drm_atomic_helper_cleanup_planes - cleanup plane resources after commit
1247 * @dev: DRM device
1248 * @old_state: atomic state object with old state structures
1249 *
1250 * This function cleans up plane state, specifically framebuffers, from the old
1251 * configuration. Hence the old configuration must be perserved in @old_state to
1252 * be able to call this function.
1253 *
1254 * This function must also be called on the new state when the atomic update
1255 * fails at any point after calling drm_atomic_helper_prepare_planes().
1256 */
1257void drm_atomic_helper_cleanup_planes(struct drm_device *dev,
1258 struct drm_atomic_state *old_state)
1259{
df63b999
ACO
1260 struct drm_plane *plane;
1261 struct drm_plane_state *plane_state;
c2fcd274
DV
1262 int i;
1263
df63b999 1264 for_each_plane_in_state(old_state, plane, plane_state, i) {
b5ceff20 1265 const struct drm_plane_helper_funcs *funcs;
c2fcd274
DV
1266 struct drm_framebuffer *old_fb;
1267
c2fcd274
DV
1268 funcs = plane->helper_private;
1269
d136dfee 1270 old_fb = plane_state->fb;
c2fcd274
DV
1271
1272 if (old_fb && funcs->cleanup_fb)
d136dfee 1273 funcs->cleanup_fb(plane, old_fb, plane_state);
c2fcd274
DV
1274 }
1275}
1276EXPORT_SYMBOL(drm_atomic_helper_cleanup_planes);
1277
1278/**
1279 * drm_atomic_helper_swap_state - store atomic state into current sw state
1280 * @dev: DRM device
1281 * @state: atomic state
1282 *
1283 * This function stores the atomic state into the current state pointers in all
1284 * driver objects. It should be called after all failing steps have been done
1285 * and succeeded, but before the actual hardware state is committed.
1286 *
1287 * For cleanup and error recovery the current state for all changed objects will
1288 * be swaped into @state.
1289 *
1290 * With that sequence it fits perfectly into the plane prepare/cleanup sequence:
1291 *
1292 * 1. Call drm_atomic_helper_prepare_planes() with the staged atomic state.
1293 *
1294 * 2. Do any other steps that might fail.
1295 *
1296 * 3. Put the staged state into the current state pointers with this function.
1297 *
1298 * 4. Actually commit the hardware state.
1299 *
1300 * 5. Call drm_atomic_helper_cleanup_planes with @state, which since step 3
1301 * contains the old state. Also do any other cleanup required with that state.
1302 */
1303void drm_atomic_helper_swap_state(struct drm_device *dev,
1304 struct drm_atomic_state *state)
1305{
1306 int i;
1307
1308 for (i = 0; i < dev->mode_config.num_connector; i++) {
1309 struct drm_connector *connector = state->connectors[i];
1310
1311 if (!connector)
1312 continue;
1313
1314 connector->state->state = state;
1315 swap(state->connector_states[i], connector->state);
1316 connector->state->state = NULL;
1317 }
1318
1319 for (i = 0; i < dev->mode_config.num_crtc; i++) {
1320 struct drm_crtc *crtc = state->crtcs[i];
1321
1322 if (!crtc)
1323 continue;
1324
1325 crtc->state->state = state;
1326 swap(state->crtc_states[i], crtc->state);
1327 crtc->state->state = NULL;
1328 }
1329
1330 for (i = 0; i < dev->mode_config.num_total_plane; i++) {
1331 struct drm_plane *plane = state->planes[i];
1332
1333 if (!plane)
1334 continue;
1335
1336 plane->state->state = state;
1337 swap(state->plane_states[i], plane->state);
1338 plane->state->state = NULL;
1339 }
1340}
1341EXPORT_SYMBOL(drm_atomic_helper_swap_state);
042652ed
DV
1342
1343/**
1344 * drm_atomic_helper_update_plane - Helper for primary plane update using atomic
1345 * @plane: plane object to update
1346 * @crtc: owning CRTC of owning plane
1347 * @fb: framebuffer to flip onto plane
1348 * @crtc_x: x offset of primary plane on crtc
1349 * @crtc_y: y offset of primary plane on crtc
1350 * @crtc_w: width of primary plane rectangle on crtc
1351 * @crtc_h: height of primary plane rectangle on crtc
1352 * @src_x: x offset of @fb for panning
1353 * @src_y: y offset of @fb for panning
1354 * @src_w: width of source rectangle in @fb
1355 * @src_h: height of source rectangle in @fb
1356 *
1357 * Provides a default plane update handler using the atomic driver interface.
1358 *
1359 * RETURNS:
1360 * Zero on success, error code on failure
1361 */
1362int drm_atomic_helper_update_plane(struct drm_plane *plane,
1363 struct drm_crtc *crtc,
1364 struct drm_framebuffer *fb,
1365 int crtc_x, int crtc_y,
1366 unsigned int crtc_w, unsigned int crtc_h,
1367 uint32_t src_x, uint32_t src_y,
1368 uint32_t src_w, uint32_t src_h)
1369{
1370 struct drm_atomic_state *state;
1371 struct drm_plane_state *plane_state;
1372 int ret = 0;
1373
1374 state = drm_atomic_state_alloc(plane->dev);
1375 if (!state)
1376 return -ENOMEM;
1377
1378 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
1379retry:
1380 plane_state = drm_atomic_get_plane_state(state, plane);
1381 if (IS_ERR(plane_state)) {
1382 ret = PTR_ERR(plane_state);
1383 goto fail;
1384 }
1385
07cc0ef6 1386 ret = drm_atomic_set_crtc_for_plane(plane_state, crtc);
042652ed
DV
1387 if (ret != 0)
1388 goto fail;
321ebf04 1389 drm_atomic_set_fb_for_plane(plane_state, fb);
042652ed
DV
1390 plane_state->crtc_x = crtc_x;
1391 plane_state->crtc_y = crtc_y;
1392 plane_state->crtc_h = crtc_h;
1393 plane_state->crtc_w = crtc_w;
1394 plane_state->src_x = src_x;
1395 plane_state->src_y = src_y;
1396 plane_state->src_h = src_h;
1397 plane_state->src_w = src_w;
1398
3671c580
DV
1399 if (plane == crtc->cursor)
1400 state->legacy_cursor_update = true;
1401
042652ed
DV
1402 ret = drm_atomic_commit(state);
1403 if (ret != 0)
1404 goto fail;
1405
1406 /* Driver takes ownership of state on successful commit. */
1407 return 0;
1408fail:
1409 if (ret == -EDEADLK)
1410 goto backoff;
1411
1412 drm_atomic_state_free(state);
1413
1414 return ret;
1415backoff:
042652ed 1416 drm_atomic_state_clear(state);
6f75cea6 1417 drm_atomic_legacy_backoff(state);
042652ed
DV
1418
1419 /*
1420 * Someone might have exchanged the framebuffer while we dropped locks
1421 * in the backoff code. We need to fix up the fb refcount tracking the
1422 * core does for us.
1423 */
1424 plane->old_fb = plane->fb;
1425
1426 goto retry;
1427}
1428EXPORT_SYMBOL(drm_atomic_helper_update_plane);
1429
1430/**
1431 * drm_atomic_helper_disable_plane - Helper for primary plane disable using * atomic
1432 * @plane: plane to disable
1433 *
1434 * Provides a default plane disable handler using the atomic driver interface.
1435 *
1436 * RETURNS:
1437 * Zero on success, error code on failure
1438 */
1439int drm_atomic_helper_disable_plane(struct drm_plane *plane)
1440{
1441 struct drm_atomic_state *state;
1442 struct drm_plane_state *plane_state;
1443 int ret = 0;
1444
aa54e2ee
JSP
1445 /*
1446 * FIXME: Without plane->crtc set we can't get at the implicit legacy
1447 * acquire context. The real fix will be to wire the acquire ctx through
1448 * everywhere we need it, but meanwhile prevent chaos by just skipping
1449 * this noop. The critical case is the cursor ioctls which a) only grab
1450 * crtc/cursor-plane locks (so we need the crtc to get at the right
1451 * acquire context) and b) can try to disable the plane multiple times.
1452 */
1453 if (!plane->crtc)
1454 return 0;
1455
042652ed
DV
1456 state = drm_atomic_state_alloc(plane->dev);
1457 if (!state)
1458 return -ENOMEM;
1459
1460 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(plane->crtc);
1461retry:
1462 plane_state = drm_atomic_get_plane_state(state, plane);
1463 if (IS_ERR(plane_state)) {
1464 ret = PTR_ERR(plane_state);
1465 goto fail;
1466 }
1467
07cc0ef6 1468 ret = drm_atomic_set_crtc_for_plane(plane_state, NULL);
042652ed
DV
1469 if (ret != 0)
1470 goto fail;
321ebf04 1471 drm_atomic_set_fb_for_plane(plane_state, NULL);
042652ed
DV
1472 plane_state->crtc_x = 0;
1473 plane_state->crtc_y = 0;
1474 plane_state->crtc_h = 0;
1475 plane_state->crtc_w = 0;
1476 plane_state->src_x = 0;
1477 plane_state->src_y = 0;
1478 plane_state->src_h = 0;
1479 plane_state->src_w = 0;
1480
f02ad907
DV
1481 if (plane == plane->crtc->cursor)
1482 state->legacy_cursor_update = true;
1483
042652ed
DV
1484 ret = drm_atomic_commit(state);
1485 if (ret != 0)
1486 goto fail;
1487
1488 /* Driver takes ownership of state on successful commit. */
1489 return 0;
1490fail:
1491 if (ret == -EDEADLK)
1492 goto backoff;
1493
1494 drm_atomic_state_free(state);
1495
1496 return ret;
1497backoff:
042652ed 1498 drm_atomic_state_clear(state);
6f75cea6 1499 drm_atomic_legacy_backoff(state);
042652ed
DV
1500
1501 /*
1502 * Someone might have exchanged the framebuffer while we dropped locks
1503 * in the backoff code. We need to fix up the fb refcount tracking the
1504 * core does for us.
1505 */
1506 plane->old_fb = plane->fb;
1507
1508 goto retry;
1509}
1510EXPORT_SYMBOL(drm_atomic_helper_disable_plane);
1511
1512static int update_output_state(struct drm_atomic_state *state,
1513 struct drm_mode_set *set)
1514{
1515 struct drm_device *dev = set->crtc->dev;
df63b999
ACO
1516 struct drm_crtc *crtc;
1517 struct drm_crtc_state *crtc_state;
1518 struct drm_connector *connector;
042652ed 1519 struct drm_connector_state *conn_state;
042652ed
DV
1520 int ret, i, j;
1521
1522 ret = drm_modeset_lock(&dev->mode_config.connection_mutex,
1523 state->acquire_ctx);
1524 if (ret)
1525 return ret;
1526
1527 /* First grab all affected connector/crtc states. */
1528 for (i = 0; i < set->num_connectors; i++) {
1529 conn_state = drm_atomic_get_connector_state(state,
1530 set->connectors[i]);
1531 if (IS_ERR(conn_state))
1532 return PTR_ERR(conn_state);
1533 }
1534
df63b999 1535 for_each_crtc_in_state(state, crtc, crtc_state, i) {
042652ed
DV
1536 ret = drm_atomic_add_affected_connectors(state, crtc);
1537 if (ret)
1538 return ret;
1539 }
1540
1541 /* Then recompute connector->crtc links and crtc enabling state. */
df63b999 1542 for_each_connector_in_state(state, connector, conn_state, i) {
042652ed
DV
1543 if (conn_state->crtc == set->crtc) {
1544 ret = drm_atomic_set_crtc_for_connector(conn_state,
1545 NULL);
1546 if (ret)
1547 return ret;
1548 }
1549
1550 for (j = 0; j < set->num_connectors; j++) {
1551 if (set->connectors[j] == connector) {
1552 ret = drm_atomic_set_crtc_for_connector(conn_state,
1553 set->crtc);
1554 if (ret)
1555 return ret;
1556 break;
1557 }
1558 }
1559 }
1560
df63b999 1561 for_each_crtc_in_state(state, crtc, crtc_state, i) {
042652ed
DV
1562 /* Don't update ->enable for the CRTC in the set_config request,
1563 * since a mismatch would indicate a bug in the upper layers.
1564 * The actual modeset code later on will catch any
1565 * inconsistencies here. */
1566 if (crtc == set->crtc)
1567 continue;
1568
1569 crtc_state->enable =
1570 drm_atomic_connectors_for_crtc(state, crtc);
1571 }
1572
1573 return 0;
1574}
1575
1576/**
1577 * drm_atomic_helper_set_config - set a new config from userspace
1578 * @set: mode set configuration
1579 *
1580 * Provides a default crtc set_config handler using the atomic driver interface.
1581 *
1582 * Returns:
1583 * Returns 0 on success, negative errno numbers on failure.
1584 */
1585int drm_atomic_helper_set_config(struct drm_mode_set *set)
1586{
1587 struct drm_atomic_state *state;
1588 struct drm_crtc *crtc = set->crtc;
1589 struct drm_crtc_state *crtc_state;
1590 struct drm_plane_state *primary_state;
1591 int ret = 0;
1592
1593 state = drm_atomic_state_alloc(crtc->dev);
1594 if (!state)
1595 return -ENOMEM;
1596
1597 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
1598retry:
1599 crtc_state = drm_atomic_get_crtc_state(state, crtc);
1600 if (IS_ERR(crtc_state)) {
1601 ret = PTR_ERR(crtc_state);
1602 goto fail;
1603 }
1604
e5b5341c
RC
1605 primary_state = drm_atomic_get_plane_state(state, crtc->primary);
1606 if (IS_ERR(primary_state)) {
1607 ret = PTR_ERR(primary_state);
1608 goto fail;
1609 }
1610
042652ed
DV
1611 if (!set->mode) {
1612 WARN_ON(set->fb);
1613 WARN_ON(set->num_connectors);
1614
1615 crtc_state->enable = false;
eab3bbef 1616 crtc_state->active = false;
e5b5341c 1617
07cc0ef6 1618 ret = drm_atomic_set_crtc_for_plane(primary_state, NULL);
e5b5341c
RC
1619 if (ret != 0)
1620 goto fail;
1621
1622 drm_atomic_set_fb_for_plane(primary_state, NULL);
1623
042652ed
DV
1624 goto commit;
1625 }
1626
1627 WARN_ON(!set->fb);
1628 WARN_ON(!set->num_connectors);
1629
1630 crtc_state->enable = true;
eab3bbef 1631 crtc_state->active = true;
042652ed
DV
1632 drm_mode_copy(&crtc_state->mode, set->mode);
1633
07cc0ef6 1634 ret = drm_atomic_set_crtc_for_plane(primary_state, crtc);
042652ed
DV
1635 if (ret != 0)
1636 goto fail;
321ebf04 1637 drm_atomic_set_fb_for_plane(primary_state, set->fb);
042652ed
DV
1638 primary_state->crtc_x = 0;
1639 primary_state->crtc_y = 0;
1640 primary_state->crtc_h = set->mode->vdisplay;
1641 primary_state->crtc_w = set->mode->hdisplay;
1642 primary_state->src_x = set->x << 16;
1643 primary_state->src_y = set->y << 16;
1644 primary_state->src_h = set->mode->vdisplay << 16;
1645 primary_state->src_w = set->mode->hdisplay << 16;
1646
1647commit:
1648 ret = update_output_state(state, set);
1649 if (ret)
1650 goto fail;
1651
1652 ret = drm_atomic_commit(state);
1653 if (ret != 0)
1654 goto fail;
1655
1656 /* Driver takes ownership of state on successful commit. */
1657 return 0;
1658fail:
1659 if (ret == -EDEADLK)
1660 goto backoff;
1661
1662 drm_atomic_state_free(state);
1663
1664 return ret;
1665backoff:
042652ed 1666 drm_atomic_state_clear(state);
6f75cea6 1667 drm_atomic_legacy_backoff(state);
042652ed
DV
1668
1669 /*
1670 * Someone might have exchanged the framebuffer while we dropped locks
1671 * in the backoff code. We need to fix up the fb refcount tracking the
1672 * core does for us.
1673 */
1674 crtc->primary->old_fb = crtc->primary->fb;
1675
1676 goto retry;
1677}
1678EXPORT_SYMBOL(drm_atomic_helper_set_config);
1679
1680/**
7f50002f 1681 * drm_atomic_helper_crtc_set_property - helper for crtc properties
042652ed
DV
1682 * @crtc: DRM crtc
1683 * @property: DRM property
1684 * @val: value of property
1685 *
7f50002f
LP
1686 * Provides a default crtc set_property handler using the atomic driver
1687 * interface.
042652ed
DV
1688 *
1689 * RETURNS:
1690 * Zero on success, error code on failure
1691 */
1692int
1693drm_atomic_helper_crtc_set_property(struct drm_crtc *crtc,
1694 struct drm_property *property,
1695 uint64_t val)
1696{
1697 struct drm_atomic_state *state;
1698 struct drm_crtc_state *crtc_state;
1699 int ret = 0;
1700
1701 state = drm_atomic_state_alloc(crtc->dev);
1702 if (!state)
1703 return -ENOMEM;
1704
1705 /* ->set_property is always called with all locks held. */
1706 state->acquire_ctx = crtc->dev->mode_config.acquire_ctx;
1707retry:
1708 crtc_state = drm_atomic_get_crtc_state(state, crtc);
1709 if (IS_ERR(crtc_state)) {
1710 ret = PTR_ERR(crtc_state);
1711 goto fail;
1712 }
1713
40ecc694
RC
1714 ret = drm_atomic_crtc_set_property(crtc, crtc_state,
1715 property, val);
042652ed
DV
1716 if (ret)
1717 goto fail;
1718
1719 ret = drm_atomic_commit(state);
1720 if (ret != 0)
1721 goto fail;
1722
1723 /* Driver takes ownership of state on successful commit. */
1724 return 0;
1725fail:
1726 if (ret == -EDEADLK)
1727 goto backoff;
1728
1729 drm_atomic_state_free(state);
1730
1731 return ret;
1732backoff:
042652ed 1733 drm_atomic_state_clear(state);
6f75cea6 1734 drm_atomic_legacy_backoff(state);
042652ed
DV
1735
1736 goto retry;
1737}
1738EXPORT_SYMBOL(drm_atomic_helper_crtc_set_property);
1739
1740/**
7f50002f 1741 * drm_atomic_helper_plane_set_property - helper for plane properties
042652ed
DV
1742 * @plane: DRM plane
1743 * @property: DRM property
1744 * @val: value of property
1745 *
7f50002f
LP
1746 * Provides a default plane set_property handler using the atomic driver
1747 * interface.
042652ed
DV
1748 *
1749 * RETURNS:
1750 * Zero on success, error code on failure
1751 */
1752int
1753drm_atomic_helper_plane_set_property(struct drm_plane *plane,
1754 struct drm_property *property,
1755 uint64_t val)
1756{
1757 struct drm_atomic_state *state;
1758 struct drm_plane_state *plane_state;
1759 int ret = 0;
1760
1761 state = drm_atomic_state_alloc(plane->dev);
1762 if (!state)
1763 return -ENOMEM;
1764
1765 /* ->set_property is always called with all locks held. */
1766 state->acquire_ctx = plane->dev->mode_config.acquire_ctx;
1767retry:
1768 plane_state = drm_atomic_get_plane_state(state, plane);
1769 if (IS_ERR(plane_state)) {
1770 ret = PTR_ERR(plane_state);
1771 goto fail;
1772 }
1773
40ecc694
RC
1774 ret = drm_atomic_plane_set_property(plane, plane_state,
1775 property, val);
042652ed
DV
1776 if (ret)
1777 goto fail;
1778
1779 ret = drm_atomic_commit(state);
1780 if (ret != 0)
1781 goto fail;
1782
1783 /* Driver takes ownership of state on successful commit. */
1784 return 0;
1785fail:
1786 if (ret == -EDEADLK)
1787 goto backoff;
1788
1789 drm_atomic_state_free(state);
1790
1791 return ret;
1792backoff:
042652ed 1793 drm_atomic_state_clear(state);
6f75cea6 1794 drm_atomic_legacy_backoff(state);
042652ed
DV
1795
1796 goto retry;
1797}
1798EXPORT_SYMBOL(drm_atomic_helper_plane_set_property);
1799
1800/**
7f50002f 1801 * drm_atomic_helper_connector_set_property - helper for connector properties
042652ed
DV
1802 * @connector: DRM connector
1803 * @property: DRM property
1804 * @val: value of property
1805 *
7f50002f
LP
1806 * Provides a default connector set_property handler using the atomic driver
1807 * interface.
042652ed
DV
1808 *
1809 * RETURNS:
1810 * Zero on success, error code on failure
1811 */
1812int
1813drm_atomic_helper_connector_set_property(struct drm_connector *connector,
1814 struct drm_property *property,
1815 uint64_t val)
1816{
1817 struct drm_atomic_state *state;
1818 struct drm_connector_state *connector_state;
1819 int ret = 0;
1820
1821 state = drm_atomic_state_alloc(connector->dev);
1822 if (!state)
1823 return -ENOMEM;
1824
1825 /* ->set_property is always called with all locks held. */
1826 state->acquire_ctx = connector->dev->mode_config.acquire_ctx;
1827retry:
1828 connector_state = drm_atomic_get_connector_state(state, connector);
1829 if (IS_ERR(connector_state)) {
1830 ret = PTR_ERR(connector_state);
1831 goto fail;
1832 }
1833
40ecc694
RC
1834 ret = drm_atomic_connector_set_property(connector, connector_state,
1835 property, val);
042652ed
DV
1836 if (ret)
1837 goto fail;
1838
1839 ret = drm_atomic_commit(state);
1840 if (ret != 0)
1841 goto fail;
1842
1843 /* Driver takes ownership of state on successful commit. */
1844 return 0;
1845fail:
1846 if (ret == -EDEADLK)
1847 goto backoff;
1848
1849 drm_atomic_state_free(state);
1850
1851 return ret;
1852backoff:
042652ed 1853 drm_atomic_state_clear(state);
6f75cea6 1854 drm_atomic_legacy_backoff(state);
042652ed
DV
1855
1856 goto retry;
1857}
1858EXPORT_SYMBOL(drm_atomic_helper_connector_set_property);
8bc0f312
DV
1859
1860/**
1861 * drm_atomic_helper_page_flip - execute a legacy page flip
1862 * @crtc: DRM crtc
1863 * @fb: DRM framebuffer
1864 * @event: optional DRM event to signal upon completion
1865 * @flags: flip flags for non-vblank sync'ed updates
1866 *
1867 * Provides a default page flip implementation using the atomic driver interface.
1868 *
1869 * Note that for now so called async page flips (i.e. updates which are not
1870 * synchronized to vblank) are not supported, since the atomic interfaces have
1871 * no provisions for this yet.
1872 *
1873 * Returns:
1874 * Returns 0 on success, negative errno numbers on failure.
1875 */
1876int drm_atomic_helper_page_flip(struct drm_crtc *crtc,
1877 struct drm_framebuffer *fb,
1878 struct drm_pending_vblank_event *event,
1879 uint32_t flags)
1880{
1881 struct drm_plane *plane = crtc->primary;
1882 struct drm_atomic_state *state;
1883 struct drm_plane_state *plane_state;
1884 struct drm_crtc_state *crtc_state;
1885 int ret = 0;
1886
1887 if (flags & DRM_MODE_PAGE_FLIP_ASYNC)
1888 return -EINVAL;
1889
1890 state = drm_atomic_state_alloc(plane->dev);
1891 if (!state)
1892 return -ENOMEM;
1893
1894 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
1895retry:
1896 crtc_state = drm_atomic_get_crtc_state(state, crtc);
1897 if (IS_ERR(crtc_state)) {
1898 ret = PTR_ERR(crtc_state);
1899 goto fail;
1900 }
1901 crtc_state->event = event;
1902
1903 plane_state = drm_atomic_get_plane_state(state, plane);
1904 if (IS_ERR(plane_state)) {
1905 ret = PTR_ERR(plane_state);
1906 goto fail;
1907 }
1908
07cc0ef6 1909 ret = drm_atomic_set_crtc_for_plane(plane_state, crtc);
8bc0f312
DV
1910 if (ret != 0)
1911 goto fail;
321ebf04 1912 drm_atomic_set_fb_for_plane(plane_state, fb);
8bc0f312
DV
1913
1914 ret = drm_atomic_async_commit(state);
1915 if (ret != 0)
1916 goto fail;
1917
1918 /* TODO: ->page_flip is the only driver callback where the core
1919 * doesn't update plane->fb. For now patch it up here. */
1920 plane->fb = plane->state->fb;
1921
1922 /* Driver takes ownership of state on successful async commit. */
1923 return 0;
1924fail:
1925 if (ret == -EDEADLK)
1926 goto backoff;
1927
1928 drm_atomic_state_free(state);
1929
1930 return ret;
1931backoff:
8bc0f312 1932 drm_atomic_state_clear(state);
6f75cea6 1933 drm_atomic_legacy_backoff(state);
8bc0f312
DV
1934
1935 /*
1936 * Someone might have exchanged the framebuffer while we dropped locks
1937 * in the backoff code. We need to fix up the fb refcount tracking the
1938 * core does for us.
1939 */
1940 plane->old_fb = plane->fb;
1941
1942 goto retry;
1943}
1944EXPORT_SYMBOL(drm_atomic_helper_page_flip);
d461701c 1945
b486e0e6
DV
1946/**
1947 * drm_atomic_helper_connector_dpms() - connector dpms helper implementation
1948 * @connector: affected connector
1949 * @mode: DPMS mode
1950 *
1951 * This is the main helper function provided by the atomic helper framework for
1952 * implementing the legacy DPMS connector interface. It computes the new desired
1953 * ->active state for the corresponding CRTC (if the connector is enabled) and
1954 * updates it.
1955 */
1956void drm_atomic_helper_connector_dpms(struct drm_connector *connector,
1957 int mode)
1958{
1959 struct drm_mode_config *config = &connector->dev->mode_config;
1960 struct drm_atomic_state *state;
1961 struct drm_crtc_state *crtc_state;
1962 struct drm_crtc *crtc;
1963 struct drm_connector *tmp_connector;
1964 int ret;
1965 bool active = false;
1966
1967 if (mode != DRM_MODE_DPMS_ON)
1968 mode = DRM_MODE_DPMS_OFF;
1969
1970 connector->dpms = mode;
1971 crtc = connector->state->crtc;
1972
1973 if (!crtc)
1974 return;
1975
1976 /* FIXME: ->dpms has no return value so can't forward the -ENOMEM. */
1977 state = drm_atomic_state_alloc(connector->dev);
1978 if (!state)
1979 return;
1980
1981 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
1982retry:
1983 crtc_state = drm_atomic_get_crtc_state(state, crtc);
1984 if (IS_ERR(crtc_state))
1985 return;
1986
1987 WARN_ON(!drm_modeset_is_locked(&config->connection_mutex));
1988
1989 list_for_each_entry(tmp_connector, &config->connector_list, head) {
0388df05 1990 if (tmp_connector->state->crtc != crtc)
b486e0e6
DV
1991 continue;
1992
0388df05 1993 if (tmp_connector->dpms == DRM_MODE_DPMS_ON) {
b486e0e6
DV
1994 active = true;
1995 break;
1996 }
1997 }
1998 crtc_state->active = active;
1999
2000 ret = drm_atomic_commit(state);
2001 if (ret != 0)
2002 goto fail;
2003
2004 /* Driver takes ownership of state on successful async commit. */
2005 return;
2006fail:
2007 if (ret == -EDEADLK)
2008 goto backoff;
2009
2010 drm_atomic_state_free(state);
2011
2012 WARN(1, "Driver bug: Changing ->active failed with ret=%i\n", ret);
2013
2014 return;
2015backoff:
2016 drm_atomic_state_clear(state);
2017 drm_atomic_legacy_backoff(state);
2018
2019 goto retry;
2020}
2021EXPORT_SYMBOL(drm_atomic_helper_connector_dpms);
2022
3150c7d0
DV
2023/**
2024 * DOC: atomic state reset and initialization
2025 *
2026 * Both the drm core and the atomic helpers assume that there is always the full
2027 * and correct atomic software state for all connectors, CRTCs and planes
2028 * available. Which is a bit a problem on driver load and also after system
2029 * suspend. One way to solve this is to have a hardware state read-out
2030 * infrastructure which reconstructs the full software state (e.g. the i915
2031 * driver).
2032 *
2033 * The simpler solution is to just reset the software state to everything off,
2034 * which is easiest to do by calling drm_mode_config_reset(). To facilitate this
2035 * the atomic helpers provide default reset implementations for all hooks.
2036 */
2037
d461701c
DV
2038/**
2039 * drm_atomic_helper_crtc_reset - default ->reset hook for CRTCs
2040 * @crtc: drm CRTC
2041 *
2042 * Resets the atomic state for @crtc by freeing the state pointer (which might
2043 * be NULL, e.g. at driver load time) and allocating a new empty state object.
2044 */
2045void drm_atomic_helper_crtc_reset(struct drm_crtc *crtc)
2046{
2047 kfree(crtc->state);
2048 crtc->state = kzalloc(sizeof(*crtc->state), GFP_KERNEL);
07cc0ef6
DV
2049
2050 if (crtc->state)
2051 crtc->state->crtc = crtc;
d461701c
DV
2052}
2053EXPORT_SYMBOL(drm_atomic_helper_crtc_reset);
2054
f5e7840b
TR
2055/**
2056 * __drm_atomic_helper_crtc_duplicate_state - copy atomic CRTC state
2057 * @crtc: CRTC object
2058 * @state: atomic CRTC state
2059 *
2060 * Copies atomic state from a CRTC's current state and resets inferred values.
2061 * This is useful for drivers that subclass the CRTC state.
2062 */
2063void __drm_atomic_helper_crtc_duplicate_state(struct drm_crtc *crtc,
2064 struct drm_crtc_state *state)
2065{
2066 memcpy(state, crtc->state, sizeof(*state));
2067
2068 state->mode_changed = false;
2069 state->active_changed = false;
2070 state->planes_changed = false;
2071 state->event = NULL;
2072}
2073EXPORT_SYMBOL(__drm_atomic_helper_crtc_duplicate_state);
2074
d461701c
DV
2075/**
2076 * drm_atomic_helper_crtc_duplicate_state - default state duplicate hook
2077 * @crtc: drm CRTC
2078 *
2079 * Default CRTC state duplicate hook for drivers which don't have their own
2080 * subclassed CRTC state structure.
2081 */
2082struct drm_crtc_state *
2083drm_atomic_helper_crtc_duplicate_state(struct drm_crtc *crtc)
2084{
2085 struct drm_crtc_state *state;
2086
2087 if (WARN_ON(!crtc->state))
2088 return NULL;
2089
f5e7840b
TR
2090 state = kmalloc(sizeof(*state), GFP_KERNEL);
2091 if (state)
2092 __drm_atomic_helper_crtc_duplicate_state(crtc, state);
d461701c
DV
2093
2094 return state;
2095}
2096EXPORT_SYMBOL(drm_atomic_helper_crtc_duplicate_state);
2097
f5e7840b
TR
2098/**
2099 * __drm_atomic_helper_crtc_destroy_state - release CRTC state
2100 * @crtc: CRTC object
2101 * @state: CRTC state object to release
2102 *
2103 * Releases all resources stored in the CRTC state without actually freeing
2104 * the memory of the CRTC state. This is useful for drivers that subclass the
2105 * CRTC state.
2106 */
2107void __drm_atomic_helper_crtc_destroy_state(struct drm_crtc *crtc,
2108 struct drm_crtc_state *state)
2109{
2110 /*
2111 * This is currently a placeholder so that drivers that subclass the
2112 * state will automatically do the right thing if code is ever added
2113 * to this function.
2114 */
2115}
2116EXPORT_SYMBOL(__drm_atomic_helper_crtc_destroy_state);
2117
d461701c
DV
2118/**
2119 * drm_atomic_helper_crtc_destroy_state - default state destroy hook
2120 * @crtc: drm CRTC
2121 * @state: CRTC state object to release
2122 *
2123 * Default CRTC state destroy hook for drivers which don't have their own
2124 * subclassed CRTC state structure.
2125 */
2126void drm_atomic_helper_crtc_destroy_state(struct drm_crtc *crtc,
2127 struct drm_crtc_state *state)
2128{
f5e7840b 2129 __drm_atomic_helper_crtc_destroy_state(crtc, state);
d461701c
DV
2130 kfree(state);
2131}
2132EXPORT_SYMBOL(drm_atomic_helper_crtc_destroy_state);
2133
2134/**
2135 * drm_atomic_helper_plane_reset - default ->reset hook for planes
2136 * @plane: drm plane
2137 *
2138 * Resets the atomic state for @plane by freeing the state pointer (which might
2139 * be NULL, e.g. at driver load time) and allocating a new empty state object.
2140 */
2141void drm_atomic_helper_plane_reset(struct drm_plane *plane)
2142{
321ebf04
DV
2143 if (plane->state && plane->state->fb)
2144 drm_framebuffer_unreference(plane->state->fb);
2145
d461701c
DV
2146 kfree(plane->state);
2147 plane->state = kzalloc(sizeof(*plane->state), GFP_KERNEL);
07cc0ef6
DV
2148
2149 if (plane->state)
2150 plane->state->plane = plane;
d461701c
DV
2151}
2152EXPORT_SYMBOL(drm_atomic_helper_plane_reset);
2153
f5e7840b
TR
2154/**
2155 * __drm_atomic_helper_plane_duplicate_state - copy atomic plane state
2156 * @plane: plane object
2157 * @state: atomic plane state
2158 *
2159 * Copies atomic state from a plane's current state. This is useful for
2160 * drivers that subclass the plane state.
2161 */
2162void __drm_atomic_helper_plane_duplicate_state(struct drm_plane *plane,
2163 struct drm_plane_state *state)
2164{
2165 memcpy(state, plane->state, sizeof(*state));
2166
2167 if (state->fb)
2168 drm_framebuffer_reference(state->fb);
2169}
2170EXPORT_SYMBOL(__drm_atomic_helper_plane_duplicate_state);
2171
d461701c
DV
2172/**
2173 * drm_atomic_helper_plane_duplicate_state - default state duplicate hook
2174 * @plane: drm plane
2175 *
2176 * Default plane state duplicate hook for drivers which don't have their own
2177 * subclassed plane state structure.
2178 */
2179struct drm_plane_state *
2180drm_atomic_helper_plane_duplicate_state(struct drm_plane *plane)
2181{
321ebf04
DV
2182 struct drm_plane_state *state;
2183
d461701c
DV
2184 if (WARN_ON(!plane->state))
2185 return NULL;
2186
f5e7840b
TR
2187 state = kmalloc(sizeof(*state), GFP_KERNEL);
2188 if (state)
2189 __drm_atomic_helper_plane_duplicate_state(plane, state);
321ebf04
DV
2190
2191 return state;
d461701c
DV
2192}
2193EXPORT_SYMBOL(drm_atomic_helper_plane_duplicate_state);
2194
f5e7840b
TR
2195/**
2196 * __drm_atomic_helper_plane_destroy_state - release plane state
2197 * @plane: plane object
2198 * @state: plane state object to release
2199 *
2200 * Releases all resources stored in the plane state without actually freeing
2201 * the memory of the plane state. This is useful for drivers that subclass the
2202 * plane state.
2203 */
2204void __drm_atomic_helper_plane_destroy_state(struct drm_plane *plane,
2205 struct drm_plane_state *state)
2206{
2207 if (state->fb)
2208 drm_framebuffer_unreference(state->fb);
2209}
2210EXPORT_SYMBOL(__drm_atomic_helper_plane_destroy_state);
2211
d461701c
DV
2212/**
2213 * drm_atomic_helper_plane_destroy_state - default state destroy hook
2214 * @plane: drm plane
2215 * @state: plane state object to release
2216 *
2217 * Default plane state destroy hook for drivers which don't have their own
2218 * subclassed plane state structure.
2219 */
2220void drm_atomic_helper_plane_destroy_state(struct drm_plane *plane,
321ebf04 2221 struct drm_plane_state *state)
d461701c 2222{
f5e7840b 2223 __drm_atomic_helper_plane_destroy_state(plane, state);
d461701c
DV
2224 kfree(state);
2225}
2226EXPORT_SYMBOL(drm_atomic_helper_plane_destroy_state);
2227
2228/**
2229 * drm_atomic_helper_connector_reset - default ->reset hook for connectors
2230 * @connector: drm connector
2231 *
2232 * Resets the atomic state for @connector by freeing the state pointer (which
2233 * might be NULL, e.g. at driver load time) and allocating a new empty state
2234 * object.
2235 */
2236void drm_atomic_helper_connector_reset(struct drm_connector *connector)
2237{
2238 kfree(connector->state);
2239 connector->state = kzalloc(sizeof(*connector->state), GFP_KERNEL);
07cc0ef6
DV
2240
2241 if (connector->state)
2242 connector->state->connector = connector;
d461701c
DV
2243}
2244EXPORT_SYMBOL(drm_atomic_helper_connector_reset);
2245
f5e7840b
TR
2246/**
2247 * __drm_atomic_helper_connector_duplicate_state - copy atomic connector state
2248 * @connector: connector object
2249 * @state: atomic connector state
2250 *
2251 * Copies atomic state from a connector's current state. This is useful for
2252 * drivers that subclass the connector state.
2253 */
2254void
2255__drm_atomic_helper_connector_duplicate_state(struct drm_connector *connector,
2256 struct drm_connector_state *state)
2257{
2258 memcpy(state, connector->state, sizeof(*state));
2259}
2260EXPORT_SYMBOL(__drm_atomic_helper_connector_duplicate_state);
2261
d461701c
DV
2262/**
2263 * drm_atomic_helper_connector_duplicate_state - default state duplicate hook
2264 * @connector: drm connector
2265 *
2266 * Default connector state duplicate hook for drivers which don't have their own
2267 * subclassed connector state structure.
2268 */
2269struct drm_connector_state *
2270drm_atomic_helper_connector_duplicate_state(struct drm_connector *connector)
2271{
f5e7840b
TR
2272 struct drm_connector_state *state;
2273
d461701c
DV
2274 if (WARN_ON(!connector->state))
2275 return NULL;
2276
f5e7840b
TR
2277 state = kmalloc(sizeof(*state), GFP_KERNEL);
2278 if (state)
2279 __drm_atomic_helper_connector_duplicate_state(connector, state);
2280
2281 return state;
d461701c
DV
2282}
2283EXPORT_SYMBOL(drm_atomic_helper_connector_duplicate_state);
2284
f5e7840b
TR
2285/**
2286 * __drm_atomic_helper_connector_destroy_state - release connector state
2287 * @connector: connector object
2288 * @state: connector state object to release
2289 *
2290 * Releases all resources stored in the connector state without actually
2291 * freeing the memory of the connector state. This is useful for drivers that
2292 * subclass the connector state.
2293 */
2294void
2295__drm_atomic_helper_connector_destroy_state(struct drm_connector *connector,
2296 struct drm_connector_state *state)
2297{
2298 /*
2299 * This is currently a placeholder so that drivers that subclass the
2300 * state will automatically do the right thing if code is ever added
2301 * to this function.
2302 */
2303}
2304EXPORT_SYMBOL(__drm_atomic_helper_connector_destroy_state);
2305
d461701c
DV
2306/**
2307 * drm_atomic_helper_connector_destroy_state - default state destroy hook
2308 * @connector: drm connector
2309 * @state: connector state object to release
2310 *
2311 * Default connector state destroy hook for drivers which don't have their own
2312 * subclassed connector state structure.
2313 */
2314void drm_atomic_helper_connector_destroy_state(struct drm_connector *connector,
2315 struct drm_connector_state *state)
2316{
f5e7840b 2317 __drm_atomic_helper_connector_destroy_state(connector, state);
d461701c
DV
2318 kfree(state);
2319}
2320EXPORT_SYMBOL(drm_atomic_helper_connector_destroy_state);
This page took 0.156648 seconds and 5 git commands to generate.