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