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