]> Git Repo - linux.git/blob - drivers/gpu/drm/drm_atomic.c
Merge branch 'drm-etnaviv-next' of https://git.pengutronix.de/git/lst/linux into...
[linux.git] / drivers / gpu / drm / drm_atomic.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 <[email protected]>
25  * Daniel Vetter <[email protected]>
26  */
27
28
29 #include <drm/drmP.h>
30 #include <drm/drm_atomic.h>
31 #include <drm/drm_mode.h>
32 #include <drm/drm_plane_helper.h>
33 #include <drm/drm_print.h>
34 #include <linux/sync_file.h>
35
36 #include "drm_crtc_internal.h"
37
38 void __drm_crtc_commit_free(struct kref *kref)
39 {
40         struct drm_crtc_commit *commit =
41                 container_of(kref, struct drm_crtc_commit, ref);
42
43         kfree(commit);
44 }
45 EXPORT_SYMBOL(__drm_crtc_commit_free);
46
47 /**
48  * drm_atomic_state_default_release -
49  * release memory initialized by drm_atomic_state_init
50  * @state: atomic state
51  *
52  * Free all the memory allocated by drm_atomic_state_init.
53  * This is useful for drivers that subclass the atomic state.
54  */
55 void drm_atomic_state_default_release(struct drm_atomic_state *state)
56 {
57         kfree(state->connectors);
58         kfree(state->crtcs);
59         kfree(state->planes);
60 }
61 EXPORT_SYMBOL(drm_atomic_state_default_release);
62
63 /**
64  * drm_atomic_state_init - init new atomic state
65  * @dev: DRM device
66  * @state: atomic state
67  *
68  * Default implementation for filling in a new atomic state.
69  * This is useful for drivers that subclass the atomic state.
70  */
71 int
72 drm_atomic_state_init(struct drm_device *dev, struct drm_atomic_state *state)
73 {
74         kref_init(&state->ref);
75
76         /* TODO legacy paths should maybe do a better job about
77          * setting this appropriately?
78          */
79         state->allow_modeset = true;
80
81         state->crtcs = kcalloc(dev->mode_config.num_crtc,
82                                sizeof(*state->crtcs), GFP_KERNEL);
83         if (!state->crtcs)
84                 goto fail;
85         state->planes = kcalloc(dev->mode_config.num_total_plane,
86                                 sizeof(*state->planes), GFP_KERNEL);
87         if (!state->planes)
88                 goto fail;
89
90         state->dev = dev;
91
92         DRM_DEBUG_ATOMIC("Allocated atomic state %p\n", state);
93
94         return 0;
95 fail:
96         drm_atomic_state_default_release(state);
97         return -ENOMEM;
98 }
99 EXPORT_SYMBOL(drm_atomic_state_init);
100
101 /**
102  * drm_atomic_state_alloc - allocate atomic state
103  * @dev: DRM device
104  *
105  * This allocates an empty atomic state to track updates.
106  */
107 struct drm_atomic_state *
108 drm_atomic_state_alloc(struct drm_device *dev)
109 {
110         struct drm_mode_config *config = &dev->mode_config;
111         struct drm_atomic_state *state;
112
113         if (!config->funcs->atomic_state_alloc) {
114                 state = kzalloc(sizeof(*state), GFP_KERNEL);
115                 if (!state)
116                         return NULL;
117                 if (drm_atomic_state_init(dev, state) < 0) {
118                         kfree(state);
119                         return NULL;
120                 }
121                 return state;
122         }
123
124         return config->funcs->atomic_state_alloc(dev);
125 }
126 EXPORT_SYMBOL(drm_atomic_state_alloc);
127
128 /**
129  * drm_atomic_state_default_clear - clear base atomic state
130  * @state: atomic state
131  *
132  * Default implementation for clearing atomic state.
133  * This is useful for drivers that subclass the atomic state.
134  */
135 void drm_atomic_state_default_clear(struct drm_atomic_state *state)
136 {
137         struct drm_device *dev = state->dev;
138         struct drm_mode_config *config = &dev->mode_config;
139         int i;
140
141         DRM_DEBUG_ATOMIC("Clearing atomic state %p\n", state);
142
143         for (i = 0; i < state->num_connector; i++) {
144                 struct drm_connector *connector = state->connectors[i].ptr;
145
146                 if (!connector)
147                         continue;
148
149                 connector->funcs->atomic_destroy_state(connector,
150                                                        state->connectors[i].state);
151                 state->connectors[i].ptr = NULL;
152                 state->connectors[i].state = NULL;
153                 drm_connector_unreference(connector);
154         }
155
156         for (i = 0; i < config->num_crtc; i++) {
157                 struct drm_crtc *crtc = state->crtcs[i].ptr;
158
159                 if (!crtc)
160                         continue;
161
162                 crtc->funcs->atomic_destroy_state(crtc,
163                                                   state->crtcs[i].state);
164
165                 if (state->crtcs[i].commit) {
166                         kfree(state->crtcs[i].commit->event);
167                         state->crtcs[i].commit->event = NULL;
168                         drm_crtc_commit_put(state->crtcs[i].commit);
169                 }
170
171                 state->crtcs[i].commit = NULL;
172                 state->crtcs[i].ptr = NULL;
173                 state->crtcs[i].state = NULL;
174         }
175
176         for (i = 0; i < config->num_total_plane; i++) {
177                 struct drm_plane *plane = state->planes[i].ptr;
178
179                 if (!plane)
180                         continue;
181
182                 plane->funcs->atomic_destroy_state(plane,
183                                                    state->planes[i].state);
184                 state->planes[i].ptr = NULL;
185                 state->planes[i].state = NULL;
186         }
187 }
188 EXPORT_SYMBOL(drm_atomic_state_default_clear);
189
190 /**
191  * drm_atomic_state_clear - clear state object
192  * @state: atomic state
193  *
194  * When the w/w mutex algorithm detects a deadlock we need to back off and drop
195  * all locks. So someone else could sneak in and change the current modeset
196  * configuration. Which means that all the state assembled in @state is no
197  * longer an atomic update to the current state, but to some arbitrary earlier
198  * state. Which could break assumptions the driver's
199  * &drm_mode_config_funcs.atomic_check likely relies on.
200  *
201  * Hence we must clear all cached state and completely start over, using this
202  * function.
203  */
204 void drm_atomic_state_clear(struct drm_atomic_state *state)
205 {
206         struct drm_device *dev = state->dev;
207         struct drm_mode_config *config = &dev->mode_config;
208
209         if (config->funcs->atomic_state_clear)
210                 config->funcs->atomic_state_clear(state);
211         else
212                 drm_atomic_state_default_clear(state);
213 }
214 EXPORT_SYMBOL(drm_atomic_state_clear);
215
216 /**
217  * __drm_atomic_state_free - free all memory for an atomic state
218  * @ref: This atomic state to deallocate
219  *
220  * This frees all memory associated with an atomic state, including all the
221  * per-object state for planes, crtcs and connectors.
222  */
223 void __drm_atomic_state_free(struct kref *ref)
224 {
225         struct drm_atomic_state *state = container_of(ref, typeof(*state), ref);
226         struct drm_mode_config *config = &state->dev->mode_config;
227
228         drm_atomic_state_clear(state);
229
230         DRM_DEBUG_ATOMIC("Freeing atomic state %p\n", state);
231
232         if (config->funcs->atomic_state_free) {
233                 config->funcs->atomic_state_free(state);
234         } else {
235                 drm_atomic_state_default_release(state);
236                 kfree(state);
237         }
238 }
239 EXPORT_SYMBOL(__drm_atomic_state_free);
240
241 /**
242  * drm_atomic_get_crtc_state - get crtc state
243  * @state: global atomic state object
244  * @crtc: crtc to get state object for
245  *
246  * This function returns the crtc state for the given crtc, allocating it if
247  * needed. It will also grab the relevant crtc lock to make sure that the state
248  * is consistent.
249  *
250  * Returns:
251  *
252  * Either the allocated state or the error code encoded into the pointer. When
253  * the error is EDEADLK then the w/w mutex code has detected a deadlock and the
254  * entire atomic sequence must be restarted. All other errors are fatal.
255  */
256 struct drm_crtc_state *
257 drm_atomic_get_crtc_state(struct drm_atomic_state *state,
258                           struct drm_crtc *crtc)
259 {
260         int ret, index = drm_crtc_index(crtc);
261         struct drm_crtc_state *crtc_state;
262
263         WARN_ON(!state->acquire_ctx);
264
265         crtc_state = drm_atomic_get_existing_crtc_state(state, crtc);
266         if (crtc_state)
267                 return crtc_state;
268
269         ret = drm_modeset_lock(&crtc->mutex, state->acquire_ctx);
270         if (ret)
271                 return ERR_PTR(ret);
272
273         crtc_state = crtc->funcs->atomic_duplicate_state(crtc);
274         if (!crtc_state)
275                 return ERR_PTR(-ENOMEM);
276
277         state->crtcs[index].state = crtc_state;
278         state->crtcs[index].ptr = crtc;
279         crtc_state->state = state;
280
281         DRM_DEBUG_ATOMIC("Added [CRTC:%d:%s] %p state to %p\n",
282                          crtc->base.id, crtc->name, crtc_state, state);
283
284         return crtc_state;
285 }
286 EXPORT_SYMBOL(drm_atomic_get_crtc_state);
287
288 static void set_out_fence_for_crtc(struct drm_atomic_state *state,
289                                    struct drm_crtc *crtc, s64 __user *fence_ptr)
290 {
291         state->crtcs[drm_crtc_index(crtc)].out_fence_ptr = fence_ptr;
292 }
293
294 static s64 __user *get_out_fence_for_crtc(struct drm_atomic_state *state,
295                                           struct drm_crtc *crtc)
296 {
297         s64 __user *fence_ptr;
298
299         fence_ptr = state->crtcs[drm_crtc_index(crtc)].out_fence_ptr;
300         state->crtcs[drm_crtc_index(crtc)].out_fence_ptr = NULL;
301
302         return fence_ptr;
303 }
304
305 /**
306  * drm_atomic_set_mode_for_crtc - set mode for CRTC
307  * @state: the CRTC whose incoming state to update
308  * @mode: kernel-internal mode to use for the CRTC, or NULL to disable
309  *
310  * Set a mode (originating from the kernel) on the desired CRTC state. Does
311  * not change any other state properties, including enable, active, or
312  * mode_changed.
313  *
314  * RETURNS:
315  * Zero on success, error code on failure. Cannot return -EDEADLK.
316  */
317 int drm_atomic_set_mode_for_crtc(struct drm_crtc_state *state,
318                                  struct drm_display_mode *mode)
319 {
320         struct drm_mode_modeinfo umode;
321
322         /* Early return for no change. */
323         if (mode && memcmp(&state->mode, mode, sizeof(*mode)) == 0)
324                 return 0;
325
326         drm_property_unreference_blob(state->mode_blob);
327         state->mode_blob = NULL;
328
329         if (mode) {
330                 drm_mode_convert_to_umode(&umode, mode);
331                 state->mode_blob =
332                         drm_property_create_blob(state->crtc->dev,
333                                                  sizeof(umode),
334                                                  &umode);
335                 if (IS_ERR(state->mode_blob))
336                         return PTR_ERR(state->mode_blob);
337
338                 drm_mode_copy(&state->mode, mode);
339                 state->enable = true;
340                 DRM_DEBUG_ATOMIC("Set [MODE:%s] for CRTC state %p\n",
341                                  mode->name, state);
342         } else {
343                 memset(&state->mode, 0, sizeof(state->mode));
344                 state->enable = false;
345                 DRM_DEBUG_ATOMIC("Set [NOMODE] for CRTC state %p\n",
346                                  state);
347         }
348
349         return 0;
350 }
351 EXPORT_SYMBOL(drm_atomic_set_mode_for_crtc);
352
353 /**
354  * drm_atomic_set_mode_prop_for_crtc - set mode for CRTC
355  * @state: the CRTC whose incoming state to update
356  * @blob: pointer to blob property to use for mode
357  *
358  * Set a mode (originating from a blob property) on the desired CRTC state.
359  * This function will take a reference on the blob property for the CRTC state,
360  * and release the reference held on the state's existing mode property, if any
361  * was set.
362  *
363  * RETURNS:
364  * Zero on success, error code on failure. Cannot return -EDEADLK.
365  */
366 int drm_atomic_set_mode_prop_for_crtc(struct drm_crtc_state *state,
367                                       struct drm_property_blob *blob)
368 {
369         if (blob == state->mode_blob)
370                 return 0;
371
372         drm_property_unreference_blob(state->mode_blob);
373         state->mode_blob = NULL;
374
375         memset(&state->mode, 0, sizeof(state->mode));
376
377         if (blob) {
378                 if (blob->length != sizeof(struct drm_mode_modeinfo) ||
379                     drm_mode_convert_umode(&state->mode,
380                                            (const struct drm_mode_modeinfo *)
381                                             blob->data))
382                         return -EINVAL;
383
384                 state->mode_blob = drm_property_reference_blob(blob);
385                 state->enable = true;
386                 DRM_DEBUG_ATOMIC("Set [MODE:%s] for CRTC state %p\n",
387                                  state->mode.name, state);
388         } else {
389                 state->enable = false;
390                 DRM_DEBUG_ATOMIC("Set [NOMODE] for CRTC state %p\n",
391                                  state);
392         }
393
394         return 0;
395 }
396 EXPORT_SYMBOL(drm_atomic_set_mode_prop_for_crtc);
397
398 /**
399  * drm_atomic_replace_property_blob - replace a blob property
400  * @blob: a pointer to the member blob to be replaced
401  * @new_blob: the new blob to replace with
402  * @replaced: whether the blob has been replaced
403  *
404  * RETURNS:
405  * Zero on success, error code on failure
406  */
407 static void
408 drm_atomic_replace_property_blob(struct drm_property_blob **blob,
409                                  struct drm_property_blob *new_blob,
410                                  bool *replaced)
411 {
412         struct drm_property_blob *old_blob = *blob;
413
414         if (old_blob == new_blob)
415                 return;
416
417         drm_property_unreference_blob(old_blob);
418         if (new_blob)
419                 drm_property_reference_blob(new_blob);
420         *blob = new_blob;
421         *replaced = true;
422
423         return;
424 }
425
426 static int
427 drm_atomic_replace_property_blob_from_id(struct drm_crtc *crtc,
428                                          struct drm_property_blob **blob,
429                                          uint64_t blob_id,
430                                          ssize_t expected_size,
431                                          bool *replaced)
432 {
433         struct drm_property_blob *new_blob = NULL;
434
435         if (blob_id != 0) {
436                 new_blob = drm_property_lookup_blob(crtc->dev, blob_id);
437                 if (new_blob == NULL)
438                         return -EINVAL;
439
440                 if (expected_size > 0 && expected_size != new_blob->length) {
441                         drm_property_unreference_blob(new_blob);
442                         return -EINVAL;
443                 }
444         }
445
446         drm_atomic_replace_property_blob(blob, new_blob, replaced);
447         drm_property_unreference_blob(new_blob);
448
449         return 0;
450 }
451
452 /**
453  * drm_atomic_crtc_set_property - set property on CRTC
454  * @crtc: the drm CRTC to set a property on
455  * @state: the state object to update with the new property value
456  * @property: the property to set
457  * @val: the new property value
458  *
459  * This function handles generic/core properties and calls out to driver's
460  * &drm_crtc_funcs.atomic_set_property for driver properties. To ensure
461  * consistent behavior you must call this function rather than the driver hook
462  * directly.
463  *
464  * RETURNS:
465  * Zero on success, error code on failure
466  */
467 int drm_atomic_crtc_set_property(struct drm_crtc *crtc,
468                 struct drm_crtc_state *state, struct drm_property *property,
469                 uint64_t val)
470 {
471         struct drm_device *dev = crtc->dev;
472         struct drm_mode_config *config = &dev->mode_config;
473         bool replaced = false;
474         int ret;
475
476         if (property == config->prop_active)
477                 state->active = val;
478         else if (property == config->prop_mode_id) {
479                 struct drm_property_blob *mode =
480                         drm_property_lookup_blob(dev, val);
481                 ret = drm_atomic_set_mode_prop_for_crtc(state, mode);
482                 drm_property_unreference_blob(mode);
483                 return ret;
484         } else if (property == config->degamma_lut_property) {
485                 ret = drm_atomic_replace_property_blob_from_id(crtc,
486                                         &state->degamma_lut,
487                                         val,
488                                         -1,
489                                         &replaced);
490                 state->color_mgmt_changed |= replaced;
491                 return ret;
492         } else if (property == config->ctm_property) {
493                 ret = drm_atomic_replace_property_blob_from_id(crtc,
494                                         &state->ctm,
495                                         val,
496                                         sizeof(struct drm_color_ctm),
497                                         &replaced);
498                 state->color_mgmt_changed |= replaced;
499                 return ret;
500         } else if (property == config->gamma_lut_property) {
501                 ret = drm_atomic_replace_property_blob_from_id(crtc,
502                                         &state->gamma_lut,
503                                         val,
504                                         -1,
505                                         &replaced);
506                 state->color_mgmt_changed |= replaced;
507                 return ret;
508         } else if (property == config->prop_out_fence_ptr) {
509                 s64 __user *fence_ptr = u64_to_user_ptr(val);
510
511                 if (!fence_ptr)
512                         return 0;
513
514                 if (put_user(-1, fence_ptr))
515                         return -EFAULT;
516
517                 set_out_fence_for_crtc(state->state, crtc, fence_ptr);
518         } else if (crtc->funcs->atomic_set_property)
519                 return crtc->funcs->atomic_set_property(crtc, state, property, val);
520         else
521                 return -EINVAL;
522
523         return 0;
524 }
525 EXPORT_SYMBOL(drm_atomic_crtc_set_property);
526
527 /**
528  * drm_atomic_crtc_get_property - get property value from CRTC state
529  * @crtc: the drm CRTC to set a property on
530  * @state: the state object to get the property value from
531  * @property: the property to set
532  * @val: return location for the property value
533  *
534  * This function handles generic/core properties and calls out to driver's
535  * &drm_crtc_funcs.atomic_get_property for driver properties. To ensure
536  * consistent behavior you must call this function rather than the driver hook
537  * directly.
538  *
539  * RETURNS:
540  * Zero on success, error code on failure
541  */
542 static int
543 drm_atomic_crtc_get_property(struct drm_crtc *crtc,
544                 const struct drm_crtc_state *state,
545                 struct drm_property *property, uint64_t *val)
546 {
547         struct drm_device *dev = crtc->dev;
548         struct drm_mode_config *config = &dev->mode_config;
549
550         if (property == config->prop_active)
551                 *val = state->active;
552         else if (property == config->prop_mode_id)
553                 *val = (state->mode_blob) ? state->mode_blob->base.id : 0;
554         else if (property == config->degamma_lut_property)
555                 *val = (state->degamma_lut) ? state->degamma_lut->base.id : 0;
556         else if (property == config->ctm_property)
557                 *val = (state->ctm) ? state->ctm->base.id : 0;
558         else if (property == config->gamma_lut_property)
559                 *val = (state->gamma_lut) ? state->gamma_lut->base.id : 0;
560         else if (property == config->prop_out_fence_ptr)
561                 *val = 0;
562         else if (crtc->funcs->atomic_get_property)
563                 return crtc->funcs->atomic_get_property(crtc, state, property, val);
564         else
565                 return -EINVAL;
566
567         return 0;
568 }
569
570 /**
571  * drm_atomic_crtc_check - check crtc state
572  * @crtc: crtc to check
573  * @state: crtc state to check
574  *
575  * Provides core sanity checks for crtc state.
576  *
577  * RETURNS:
578  * Zero on success, error code on failure
579  */
580 static int drm_atomic_crtc_check(struct drm_crtc *crtc,
581                 struct drm_crtc_state *state)
582 {
583         /* NOTE: we explicitly don't enforce constraints such as primary
584          * layer covering entire screen, since that is something we want
585          * to allow (on hw that supports it).  For hw that does not, it
586          * should be checked in driver's crtc->atomic_check() vfunc.
587          *
588          * TODO: Add generic modeset state checks once we support those.
589          */
590
591         if (state->active && !state->enable) {
592                 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] active without enabled\n",
593                                  crtc->base.id, crtc->name);
594                 return -EINVAL;
595         }
596
597         /* The state->enable vs. state->mode_blob checks can be WARN_ON,
598          * as this is a kernel-internal detail that userspace should never
599          * be able to trigger. */
600         if (drm_core_check_feature(crtc->dev, DRIVER_ATOMIC) &&
601             WARN_ON(state->enable && !state->mode_blob)) {
602                 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] enabled without mode blob\n",
603                                  crtc->base.id, crtc->name);
604                 return -EINVAL;
605         }
606
607         if (drm_core_check_feature(crtc->dev, DRIVER_ATOMIC) &&
608             WARN_ON(!state->enable && state->mode_blob)) {
609                 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] disabled with mode blob\n",
610                                  crtc->base.id, crtc->name);
611                 return -EINVAL;
612         }
613
614         /*
615          * Reject event generation for when a CRTC is off and stays off.
616          * It wouldn't be hard to implement this, but userspace has a track
617          * record of happily burning through 100% cpu (or worse, crash) when the
618          * display pipe is suspended. To avoid all that fun just reject updates
619          * that ask for events since likely that indicates a bug in the
620          * compositor's drawing loop. This is consistent with the vblank IOCTL
621          * and legacy page_flip IOCTL which also reject service on a disabled
622          * pipe.
623          */
624         if (state->event && !state->active && !crtc->state->active) {
625                 DRM_DEBUG_ATOMIC("[CRTC:%d] requesting event but off\n",
626                                  crtc->base.id);
627                 return -EINVAL;
628         }
629
630         return 0;
631 }
632
633 static void drm_atomic_crtc_print_state(struct drm_printer *p,
634                 const struct drm_crtc_state *state)
635 {
636         struct drm_crtc *crtc = state->crtc;
637
638         drm_printf(p, "crtc[%u]: %s\n", crtc->base.id, crtc->name);
639         drm_printf(p, "\tenable=%d\n", state->enable);
640         drm_printf(p, "\tactive=%d\n", state->active);
641         drm_printf(p, "\tplanes_changed=%d\n", state->planes_changed);
642         drm_printf(p, "\tmode_changed=%d\n", state->mode_changed);
643         drm_printf(p, "\tactive_changed=%d\n", state->active_changed);
644         drm_printf(p, "\tconnectors_changed=%d\n", state->connectors_changed);
645         drm_printf(p, "\tcolor_mgmt_changed=%d\n", state->color_mgmt_changed);
646         drm_printf(p, "\tplane_mask=%x\n", state->plane_mask);
647         drm_printf(p, "\tconnector_mask=%x\n", state->connector_mask);
648         drm_printf(p, "\tencoder_mask=%x\n", state->encoder_mask);
649         drm_printf(p, "\tmode: " DRM_MODE_FMT "\n", DRM_MODE_ARG(&state->mode));
650
651         if (crtc->funcs->atomic_print_state)
652                 crtc->funcs->atomic_print_state(p, state);
653 }
654
655 /**
656  * drm_atomic_get_plane_state - get plane state
657  * @state: global atomic state object
658  * @plane: plane to get state object for
659  *
660  * This function returns the plane state for the given plane, allocating it if
661  * needed. It will also grab the relevant plane lock to make sure that the state
662  * is consistent.
663  *
664  * Returns:
665  *
666  * Either the allocated state or the error code encoded into the pointer. When
667  * the error is EDEADLK then the w/w mutex code has detected a deadlock and the
668  * entire atomic sequence must be restarted. All other errors are fatal.
669  */
670 struct drm_plane_state *
671 drm_atomic_get_plane_state(struct drm_atomic_state *state,
672                           struct drm_plane *plane)
673 {
674         int ret, index = drm_plane_index(plane);
675         struct drm_plane_state *plane_state;
676
677         WARN_ON(!state->acquire_ctx);
678
679         plane_state = drm_atomic_get_existing_plane_state(state, plane);
680         if (plane_state)
681                 return plane_state;
682
683         ret = drm_modeset_lock(&plane->mutex, state->acquire_ctx);
684         if (ret)
685                 return ERR_PTR(ret);
686
687         plane_state = plane->funcs->atomic_duplicate_state(plane);
688         if (!plane_state)
689                 return ERR_PTR(-ENOMEM);
690
691         state->planes[index].state = plane_state;
692         state->planes[index].ptr = plane;
693         plane_state->state = state;
694
695         DRM_DEBUG_ATOMIC("Added [PLANE:%d:%s] %p state to %p\n",
696                          plane->base.id, plane->name, plane_state, state);
697
698         if (plane_state->crtc) {
699                 struct drm_crtc_state *crtc_state;
700
701                 crtc_state = drm_atomic_get_crtc_state(state,
702                                                        plane_state->crtc);
703                 if (IS_ERR(crtc_state))
704                         return ERR_CAST(crtc_state);
705         }
706
707         return plane_state;
708 }
709 EXPORT_SYMBOL(drm_atomic_get_plane_state);
710
711 /**
712  * drm_atomic_plane_set_property - set property on plane
713  * @plane: the drm plane to set a property on
714  * @state: the state object to update with the new property value
715  * @property: the property to set
716  * @val: the new property value
717  *
718  * This function handles generic/core properties and calls out to driver's
719  * &drm_plane_funcs.atomic_set_property for driver properties.  To ensure
720  * consistent behavior you must call this function rather than the driver hook
721  * directly.
722  *
723  * RETURNS:
724  * Zero on success, error code on failure
725  */
726 int drm_atomic_plane_set_property(struct drm_plane *plane,
727                 struct drm_plane_state *state, struct drm_property *property,
728                 uint64_t val)
729 {
730         struct drm_device *dev = plane->dev;
731         struct drm_mode_config *config = &dev->mode_config;
732
733         if (property == config->prop_fb_id) {
734                 struct drm_framebuffer *fb = drm_framebuffer_lookup(dev, val);
735                 drm_atomic_set_fb_for_plane(state, fb);
736                 if (fb)
737                         drm_framebuffer_unreference(fb);
738         } else if (property == config->prop_in_fence_fd) {
739                 if (state->fence)
740                         return -EINVAL;
741
742                 if (U642I64(val) == -1)
743                         return 0;
744
745                 state->fence = sync_file_get_fence(val);
746                 if (!state->fence)
747                         return -EINVAL;
748
749         } else if (property == config->prop_crtc_id) {
750                 struct drm_crtc *crtc = drm_crtc_find(dev, val);
751                 return drm_atomic_set_crtc_for_plane(state, crtc);
752         } else if (property == config->prop_crtc_x) {
753                 state->crtc_x = U642I64(val);
754         } else if (property == config->prop_crtc_y) {
755                 state->crtc_y = U642I64(val);
756         } else if (property == config->prop_crtc_w) {
757                 state->crtc_w = val;
758         } else if (property == config->prop_crtc_h) {
759                 state->crtc_h = val;
760         } else if (property == config->prop_src_x) {
761                 state->src_x = val;
762         } else if (property == config->prop_src_y) {
763                 state->src_y = val;
764         } else if (property == config->prop_src_w) {
765                 state->src_w = val;
766         } else if (property == config->prop_src_h) {
767                 state->src_h = val;
768         } else if (property == plane->rotation_property) {
769                 if (!is_power_of_2(val & DRM_ROTATE_MASK))
770                         return -EINVAL;
771                 state->rotation = val;
772         } else if (property == plane->zpos_property) {
773                 state->zpos = val;
774         } else if (plane->funcs->atomic_set_property) {
775                 return plane->funcs->atomic_set_property(plane, state,
776                                 property, val);
777         } else {
778                 return -EINVAL;
779         }
780
781         return 0;
782 }
783 EXPORT_SYMBOL(drm_atomic_plane_set_property);
784
785 /**
786  * drm_atomic_plane_get_property - get property value from plane state
787  * @plane: the drm plane to set a property on
788  * @state: the state object to get the property value from
789  * @property: the property to set
790  * @val: return location for the property value
791  *
792  * This function handles generic/core properties and calls out to driver's
793  * &drm_plane_funcs.atomic_get_property for driver properties.  To ensure
794  * consistent behavior you must call this function rather than the driver hook
795  * directly.
796  *
797  * RETURNS:
798  * Zero on success, error code on failure
799  */
800 static int
801 drm_atomic_plane_get_property(struct drm_plane *plane,
802                 const struct drm_plane_state *state,
803                 struct drm_property *property, uint64_t *val)
804 {
805         struct drm_device *dev = plane->dev;
806         struct drm_mode_config *config = &dev->mode_config;
807
808         if (property == config->prop_fb_id) {
809                 *val = (state->fb) ? state->fb->base.id : 0;
810         } else if (property == config->prop_in_fence_fd) {
811                 *val = -1;
812         } else if (property == config->prop_crtc_id) {
813                 *val = (state->crtc) ? state->crtc->base.id : 0;
814         } else if (property == config->prop_crtc_x) {
815                 *val = I642U64(state->crtc_x);
816         } else if (property == config->prop_crtc_y) {
817                 *val = I642U64(state->crtc_y);
818         } else if (property == config->prop_crtc_w) {
819                 *val = state->crtc_w;
820         } else if (property == config->prop_crtc_h) {
821                 *val = state->crtc_h;
822         } else if (property == config->prop_src_x) {
823                 *val = state->src_x;
824         } else if (property == config->prop_src_y) {
825                 *val = state->src_y;
826         } else if (property == config->prop_src_w) {
827                 *val = state->src_w;
828         } else if (property == config->prop_src_h) {
829                 *val = state->src_h;
830         } else if (property == plane->rotation_property) {
831                 *val = state->rotation;
832         } else if (property == plane->zpos_property) {
833                 *val = state->zpos;
834         } else if (plane->funcs->atomic_get_property) {
835                 return plane->funcs->atomic_get_property(plane, state, property, val);
836         } else {
837                 return -EINVAL;
838         }
839
840         return 0;
841 }
842
843 static bool
844 plane_switching_crtc(struct drm_atomic_state *state,
845                      struct drm_plane *plane,
846                      struct drm_plane_state *plane_state)
847 {
848         if (!plane->state->crtc || !plane_state->crtc)
849                 return false;
850
851         if (plane->state->crtc == plane_state->crtc)
852                 return false;
853
854         /* This could be refined, but currently there's no helper or driver code
855          * to implement direct switching of active planes nor userspace to take
856          * advantage of more direct plane switching without the intermediate
857          * full OFF state.
858          */
859         return true;
860 }
861
862 /**
863  * drm_atomic_plane_check - check plane state
864  * @plane: plane to check
865  * @state: plane state to check
866  *
867  * Provides core sanity checks for plane state.
868  *
869  * RETURNS:
870  * Zero on success, error code on failure
871  */
872 static int drm_atomic_plane_check(struct drm_plane *plane,
873                 struct drm_plane_state *state)
874 {
875         unsigned int fb_width, fb_height;
876         int ret;
877
878         /* either *both* CRTC and FB must be set, or neither */
879         if (WARN_ON(state->crtc && !state->fb)) {
880                 DRM_DEBUG_ATOMIC("CRTC set but no FB\n");
881                 return -EINVAL;
882         } else if (WARN_ON(state->fb && !state->crtc)) {
883                 DRM_DEBUG_ATOMIC("FB set but no CRTC\n");
884                 return -EINVAL;
885         }
886
887         /* if disabled, we don't care about the rest of the state: */
888         if (!state->crtc)
889                 return 0;
890
891         /* Check whether this plane is usable on this CRTC */
892         if (!(plane->possible_crtcs & drm_crtc_mask(state->crtc))) {
893                 DRM_DEBUG_ATOMIC("Invalid crtc for plane\n");
894                 return -EINVAL;
895         }
896
897         /* Check whether this plane supports the fb pixel format. */
898         ret = drm_plane_check_pixel_format(plane, state->fb->format->format);
899         if (ret) {
900                 struct drm_format_name_buf format_name;
901                 DRM_DEBUG_ATOMIC("Invalid pixel format %s\n",
902                                  drm_get_format_name(state->fb->format->format,
903                                                      &format_name));
904                 return ret;
905         }
906
907         /* Give drivers some help against integer overflows */
908         if (state->crtc_w > INT_MAX ||
909             state->crtc_x > INT_MAX - (int32_t) state->crtc_w ||
910             state->crtc_h > INT_MAX ||
911             state->crtc_y > INT_MAX - (int32_t) state->crtc_h) {
912                 DRM_DEBUG_ATOMIC("Invalid CRTC coordinates %ux%u+%d+%d\n",
913                                  state->crtc_w, state->crtc_h,
914                                  state->crtc_x, state->crtc_y);
915                 return -ERANGE;
916         }
917
918         fb_width = state->fb->width << 16;
919         fb_height = state->fb->height << 16;
920
921         /* Make sure source coordinates are inside the fb. */
922         if (state->src_w > fb_width ||
923             state->src_x > fb_width - state->src_w ||
924             state->src_h > fb_height ||
925             state->src_y > fb_height - state->src_h) {
926                 DRM_DEBUG_ATOMIC("Invalid source coordinates "
927                                  "%u.%06ux%u.%06u+%u.%06u+%u.%06u\n",
928                                  state->src_w >> 16, ((state->src_w & 0xffff) * 15625) >> 10,
929                                  state->src_h >> 16, ((state->src_h & 0xffff) * 15625) >> 10,
930                                  state->src_x >> 16, ((state->src_x & 0xffff) * 15625) >> 10,
931                                  state->src_y >> 16, ((state->src_y & 0xffff) * 15625) >> 10);
932                 return -ENOSPC;
933         }
934
935         if (plane_switching_crtc(state->state, plane, state)) {
936                 DRM_DEBUG_ATOMIC("[PLANE:%d:%s] switching CRTC directly\n",
937                                  plane->base.id, plane->name);
938                 return -EINVAL;
939         }
940
941         return 0;
942 }
943
944 static void drm_atomic_plane_print_state(struct drm_printer *p,
945                 const struct drm_plane_state *state)
946 {
947         struct drm_plane *plane = state->plane;
948         struct drm_rect src  = drm_plane_state_src(state);
949         struct drm_rect dest = drm_plane_state_dest(state);
950
951         drm_printf(p, "plane[%u]: %s\n", plane->base.id, plane->name);
952         drm_printf(p, "\tcrtc=%s\n", state->crtc ? state->crtc->name : "(null)");
953         drm_printf(p, "\tfb=%u\n", state->fb ? state->fb->base.id : 0);
954         if (state->fb) {
955                 struct drm_framebuffer *fb = state->fb;
956                 int i, n = fb->format->num_planes;
957                 struct drm_format_name_buf format_name;
958
959                 drm_printf(p, "\t\tformat=%s\n",
960                               drm_get_format_name(fb->format->format, &format_name));
961                 drm_printf(p, "\t\t\tmodifier=0x%llx\n", fb->modifier);
962                 drm_printf(p, "\t\tsize=%dx%d\n", fb->width, fb->height);
963                 drm_printf(p, "\t\tlayers:\n");
964                 for (i = 0; i < n; i++) {
965                         drm_printf(p, "\t\t\tpitch[%d]=%u\n", i, fb->pitches[i]);
966                         drm_printf(p, "\t\t\toffset[%d]=%u\n", i, fb->offsets[i]);
967                 }
968         }
969         drm_printf(p, "\tcrtc-pos=" DRM_RECT_FMT "\n", DRM_RECT_ARG(&dest));
970         drm_printf(p, "\tsrc-pos=" DRM_RECT_FP_FMT "\n", DRM_RECT_FP_ARG(&src));
971         drm_printf(p, "\trotation=%x\n", state->rotation);
972
973         if (plane->funcs->atomic_print_state)
974                 plane->funcs->atomic_print_state(p, state);
975 }
976
977 /**
978  * drm_atomic_get_connector_state - get connector state
979  * @state: global atomic state object
980  * @connector: connector to get state object for
981  *
982  * This function returns the connector state for the given connector,
983  * allocating it if needed. It will also grab the relevant connector lock to
984  * make sure that the state is consistent.
985  *
986  * Returns:
987  *
988  * Either the allocated state or the error code encoded into the pointer. When
989  * the error is EDEADLK then the w/w mutex code has detected a deadlock and the
990  * entire atomic sequence must be restarted. All other errors are fatal.
991  */
992 struct drm_connector_state *
993 drm_atomic_get_connector_state(struct drm_atomic_state *state,
994                           struct drm_connector *connector)
995 {
996         int ret, index;
997         struct drm_mode_config *config = &connector->dev->mode_config;
998         struct drm_connector_state *connector_state;
999
1000         WARN_ON(!state->acquire_ctx);
1001
1002         ret = drm_modeset_lock(&config->connection_mutex, state->acquire_ctx);
1003         if (ret)
1004                 return ERR_PTR(ret);
1005
1006         index = drm_connector_index(connector);
1007
1008         if (index >= state->num_connector) {
1009                 struct __drm_connnectors_state *c;
1010                 int alloc = max(index + 1, config->num_connector);
1011
1012                 c = krealloc(state->connectors, alloc * sizeof(*state->connectors), GFP_KERNEL);
1013                 if (!c)
1014                         return ERR_PTR(-ENOMEM);
1015
1016                 state->connectors = c;
1017                 memset(&state->connectors[state->num_connector], 0,
1018                        sizeof(*state->connectors) * (alloc - state->num_connector));
1019
1020                 state->num_connector = alloc;
1021         }
1022
1023         if (state->connectors[index].state)
1024                 return state->connectors[index].state;
1025
1026         connector_state = connector->funcs->atomic_duplicate_state(connector);
1027         if (!connector_state)
1028                 return ERR_PTR(-ENOMEM);
1029
1030         drm_connector_reference(connector);
1031         state->connectors[index].state = connector_state;
1032         state->connectors[index].ptr = connector;
1033         connector_state->state = state;
1034
1035         DRM_DEBUG_ATOMIC("Added [CONNECTOR:%d] %p state to %p\n",
1036                          connector->base.id, connector_state, state);
1037
1038         if (connector_state->crtc) {
1039                 struct drm_crtc_state *crtc_state;
1040
1041                 crtc_state = drm_atomic_get_crtc_state(state,
1042                                                        connector_state->crtc);
1043                 if (IS_ERR(crtc_state))
1044                         return ERR_CAST(crtc_state);
1045         }
1046
1047         return connector_state;
1048 }
1049 EXPORT_SYMBOL(drm_atomic_get_connector_state);
1050
1051 /**
1052  * drm_atomic_connector_set_property - set property on connector.
1053  * @connector: the drm connector to set a property on
1054  * @state: the state object to update with the new property value
1055  * @property: the property to set
1056  * @val: the new property value
1057  *
1058  * This function handles generic/core properties and calls out to driver's
1059  * &drm_connector_funcs.atomic_set_property for driver properties.  To ensure
1060  * consistent behavior you must call this function rather than the driver hook
1061  * directly.
1062  *
1063  * RETURNS:
1064  * Zero on success, error code on failure
1065  */
1066 int drm_atomic_connector_set_property(struct drm_connector *connector,
1067                 struct drm_connector_state *state, struct drm_property *property,
1068                 uint64_t val)
1069 {
1070         struct drm_device *dev = connector->dev;
1071         struct drm_mode_config *config = &dev->mode_config;
1072
1073         if (property == config->prop_crtc_id) {
1074                 struct drm_crtc *crtc = drm_crtc_find(dev, val);
1075                 return drm_atomic_set_crtc_for_connector(state, crtc);
1076         } else if (property == config->dpms_property) {
1077                 /* setting DPMS property requires special handling, which
1078                  * is done in legacy setprop path for us.  Disallow (for
1079                  * now?) atomic writes to DPMS property:
1080                  */
1081                 return -EINVAL;
1082         } else if (property == config->tv_select_subconnector_property) {
1083                 state->tv.subconnector = val;
1084         } else if (property == config->tv_left_margin_property) {
1085                 state->tv.margins.left = val;
1086         } else if (property == config->tv_right_margin_property) {
1087                 state->tv.margins.right = val;
1088         } else if (property == config->tv_top_margin_property) {
1089                 state->tv.margins.top = val;
1090         } else if (property == config->tv_bottom_margin_property) {
1091                 state->tv.margins.bottom = val;
1092         } else if (property == config->tv_mode_property) {
1093                 state->tv.mode = val;
1094         } else if (property == config->tv_brightness_property) {
1095                 state->tv.brightness = val;
1096         } else if (property == config->tv_contrast_property) {
1097                 state->tv.contrast = val;
1098         } else if (property == config->tv_flicker_reduction_property) {
1099                 state->tv.flicker_reduction = val;
1100         } else if (property == config->tv_overscan_property) {
1101                 state->tv.overscan = val;
1102         } else if (property == config->tv_saturation_property) {
1103                 state->tv.saturation = val;
1104         } else if (property == config->tv_hue_property) {
1105                 state->tv.hue = val;
1106         } else if (connector->funcs->atomic_set_property) {
1107                 return connector->funcs->atomic_set_property(connector,
1108                                 state, property, val);
1109         } else {
1110                 return -EINVAL;
1111         }
1112
1113         return 0;
1114 }
1115 EXPORT_SYMBOL(drm_atomic_connector_set_property);
1116
1117 static void drm_atomic_connector_print_state(struct drm_printer *p,
1118                 const struct drm_connector_state *state)
1119 {
1120         struct drm_connector *connector = state->connector;
1121
1122         drm_printf(p, "connector[%u]: %s\n", connector->base.id, connector->name);
1123         drm_printf(p, "\tcrtc=%s\n", state->crtc ? state->crtc->name : "(null)");
1124
1125         if (connector->funcs->atomic_print_state)
1126                 connector->funcs->atomic_print_state(p, state);
1127 }
1128
1129 /**
1130  * drm_atomic_connector_get_property - get property value from connector state
1131  * @connector: the drm connector to set a property on
1132  * @state: the state object to get the property value from
1133  * @property: the property to set
1134  * @val: return location for the property value
1135  *
1136  * This function handles generic/core properties and calls out to driver's
1137  * &drm_connector_funcs.atomic_get_property for driver properties.  To ensure
1138  * consistent behavior you must call this function rather than the driver hook
1139  * directly.
1140  *
1141  * RETURNS:
1142  * Zero on success, error code on failure
1143  */
1144 static int
1145 drm_atomic_connector_get_property(struct drm_connector *connector,
1146                 const struct drm_connector_state *state,
1147                 struct drm_property *property, uint64_t *val)
1148 {
1149         struct drm_device *dev = connector->dev;
1150         struct drm_mode_config *config = &dev->mode_config;
1151
1152         if (property == config->prop_crtc_id) {
1153                 *val = (state->crtc) ? state->crtc->base.id : 0;
1154         } else if (property == config->dpms_property) {
1155                 *val = connector->dpms;
1156         } else if (property == config->tv_select_subconnector_property) {
1157                 *val = state->tv.subconnector;
1158         } else if (property == config->tv_left_margin_property) {
1159                 *val = state->tv.margins.left;
1160         } else if (property == config->tv_right_margin_property) {
1161                 *val = state->tv.margins.right;
1162         } else if (property == config->tv_top_margin_property) {
1163                 *val = state->tv.margins.top;
1164         } else if (property == config->tv_bottom_margin_property) {
1165                 *val = state->tv.margins.bottom;
1166         } else if (property == config->tv_mode_property) {
1167                 *val = state->tv.mode;
1168         } else if (property == config->tv_brightness_property) {
1169                 *val = state->tv.brightness;
1170         } else if (property == config->tv_contrast_property) {
1171                 *val = state->tv.contrast;
1172         } else if (property == config->tv_flicker_reduction_property) {
1173                 *val = state->tv.flicker_reduction;
1174         } else if (property == config->tv_overscan_property) {
1175                 *val = state->tv.overscan;
1176         } else if (property == config->tv_saturation_property) {
1177                 *val = state->tv.saturation;
1178         } else if (property == config->tv_hue_property) {
1179                 *val = state->tv.hue;
1180         } else if (connector->funcs->atomic_get_property) {
1181                 return connector->funcs->atomic_get_property(connector,
1182                                 state, property, val);
1183         } else {
1184                 return -EINVAL;
1185         }
1186
1187         return 0;
1188 }
1189
1190 int drm_atomic_get_property(struct drm_mode_object *obj,
1191                 struct drm_property *property, uint64_t *val)
1192 {
1193         struct drm_device *dev = property->dev;
1194         int ret;
1195
1196         switch (obj->type) {
1197         case DRM_MODE_OBJECT_CONNECTOR: {
1198                 struct drm_connector *connector = obj_to_connector(obj);
1199                 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
1200                 ret = drm_atomic_connector_get_property(connector,
1201                                 connector->state, property, val);
1202                 break;
1203         }
1204         case DRM_MODE_OBJECT_CRTC: {
1205                 struct drm_crtc *crtc = obj_to_crtc(obj);
1206                 WARN_ON(!drm_modeset_is_locked(&crtc->mutex));
1207                 ret = drm_atomic_crtc_get_property(crtc,
1208                                 crtc->state, property, val);
1209                 break;
1210         }
1211         case DRM_MODE_OBJECT_PLANE: {
1212                 struct drm_plane *plane = obj_to_plane(obj);
1213                 WARN_ON(!drm_modeset_is_locked(&plane->mutex));
1214                 ret = drm_atomic_plane_get_property(plane,
1215                                 plane->state, property, val);
1216                 break;
1217         }
1218         default:
1219                 ret = -EINVAL;
1220                 break;
1221         }
1222
1223         return ret;
1224 }
1225
1226 /**
1227  * drm_atomic_set_crtc_for_plane - set crtc for plane
1228  * @plane_state: the plane whose incoming state to update
1229  * @crtc: crtc to use for the plane
1230  *
1231  * Changing the assigned crtc for a plane requires us to grab the lock and state
1232  * for the new crtc, as needed. This function takes care of all these details
1233  * besides updating the pointer in the state object itself.
1234  *
1235  * Returns:
1236  * 0 on success or can fail with -EDEADLK or -ENOMEM. When the error is EDEADLK
1237  * then the w/w mutex code has detected a deadlock and the entire atomic
1238  * sequence must be restarted. All other errors are fatal.
1239  */
1240 int
1241 drm_atomic_set_crtc_for_plane(struct drm_plane_state *plane_state,
1242                               struct drm_crtc *crtc)
1243 {
1244         struct drm_plane *plane = plane_state->plane;
1245         struct drm_crtc_state *crtc_state;
1246
1247         if (plane_state->crtc) {
1248                 crtc_state = drm_atomic_get_crtc_state(plane_state->state,
1249                                                        plane_state->crtc);
1250                 if (WARN_ON(IS_ERR(crtc_state)))
1251                         return PTR_ERR(crtc_state);
1252
1253                 crtc_state->plane_mask &= ~(1 << drm_plane_index(plane));
1254         }
1255
1256         plane_state->crtc = crtc;
1257
1258         if (crtc) {
1259                 crtc_state = drm_atomic_get_crtc_state(plane_state->state,
1260                                                        crtc);
1261                 if (IS_ERR(crtc_state))
1262                         return PTR_ERR(crtc_state);
1263                 crtc_state->plane_mask |= (1 << drm_plane_index(plane));
1264         }
1265
1266         if (crtc)
1267                 DRM_DEBUG_ATOMIC("Link plane state %p to [CRTC:%d:%s]\n",
1268                                  plane_state, crtc->base.id, crtc->name);
1269         else
1270                 DRM_DEBUG_ATOMIC("Link plane state %p to [NOCRTC]\n",
1271                                  plane_state);
1272
1273         return 0;
1274 }
1275 EXPORT_SYMBOL(drm_atomic_set_crtc_for_plane);
1276
1277 /**
1278  * drm_atomic_set_fb_for_plane - set framebuffer for plane
1279  * @plane_state: atomic state object for the plane
1280  * @fb: fb to use for the plane
1281  *
1282  * Changing the assigned framebuffer for a plane requires us to grab a reference
1283  * to the new fb and drop the reference to the old fb, if there is one. This
1284  * function takes care of all these details besides updating the pointer in the
1285  * state object itself.
1286  */
1287 void
1288 drm_atomic_set_fb_for_plane(struct drm_plane_state *plane_state,
1289                             struct drm_framebuffer *fb)
1290 {
1291         if (fb)
1292                 DRM_DEBUG_ATOMIC("Set [FB:%d] for plane state %p\n",
1293                                  fb->base.id, plane_state);
1294         else
1295                 DRM_DEBUG_ATOMIC("Set [NOFB] for plane state %p\n",
1296                                  plane_state);
1297
1298         drm_framebuffer_assign(&plane_state->fb, fb);
1299 }
1300 EXPORT_SYMBOL(drm_atomic_set_fb_for_plane);
1301
1302 /**
1303  * drm_atomic_set_fence_for_plane - set fence for plane
1304  * @plane_state: atomic state object for the plane
1305  * @fence: dma_fence to use for the plane
1306  *
1307  * Helper to setup the plane_state fence in case it is not set yet.
1308  * By using this drivers doesn't need to worry if the user choose
1309  * implicit or explicit fencing.
1310  *
1311  * This function will not set the fence to the state if it was set
1312  * via explicit fencing interfaces on the atomic ioctl. In that case it will
1313  * drop the reference to the fence as we are not storing it anywhere.
1314  * Otherwise, if &drm_plane_state.fence is not set this function we just set it
1315  * with the received implicit fence. In both cases this function consumes a
1316  * reference for @fence.
1317  */
1318 void
1319 drm_atomic_set_fence_for_plane(struct drm_plane_state *plane_state,
1320                                struct dma_fence *fence)
1321 {
1322         if (plane_state->fence) {
1323                 dma_fence_put(fence);
1324                 return;
1325         }
1326
1327         plane_state->fence = fence;
1328 }
1329 EXPORT_SYMBOL(drm_atomic_set_fence_for_plane);
1330
1331 /**
1332  * drm_atomic_set_crtc_for_connector - set crtc for connector
1333  * @conn_state: atomic state object for the connector
1334  * @crtc: crtc to use for the connector
1335  *
1336  * Changing the assigned crtc for a connector requires us to grab the lock and
1337  * state for the new crtc, as needed. This function takes care of all these
1338  * details besides updating the pointer in the state object itself.
1339  *
1340  * Returns:
1341  * 0 on success or can fail with -EDEADLK or -ENOMEM. When the error is EDEADLK
1342  * then the w/w mutex code has detected a deadlock and the entire atomic
1343  * sequence must be restarted. All other errors are fatal.
1344  */
1345 int
1346 drm_atomic_set_crtc_for_connector(struct drm_connector_state *conn_state,
1347                                   struct drm_crtc *crtc)
1348 {
1349         struct drm_crtc_state *crtc_state;
1350
1351         if (conn_state->crtc == crtc)
1352                 return 0;
1353
1354         if (conn_state->crtc) {
1355                 crtc_state = drm_atomic_get_existing_crtc_state(conn_state->state,
1356                                                                 conn_state->crtc);
1357
1358                 crtc_state->connector_mask &=
1359                         ~(1 << drm_connector_index(conn_state->connector));
1360
1361                 drm_connector_unreference(conn_state->connector);
1362                 conn_state->crtc = NULL;
1363         }
1364
1365         if (crtc) {
1366                 crtc_state = drm_atomic_get_crtc_state(conn_state->state, crtc);
1367                 if (IS_ERR(crtc_state))
1368                         return PTR_ERR(crtc_state);
1369
1370                 crtc_state->connector_mask |=
1371                         1 << drm_connector_index(conn_state->connector);
1372
1373                 drm_connector_reference(conn_state->connector);
1374                 conn_state->crtc = crtc;
1375
1376                 DRM_DEBUG_ATOMIC("Link connector state %p to [CRTC:%d:%s]\n",
1377                                  conn_state, crtc->base.id, crtc->name);
1378         } else {
1379                 DRM_DEBUG_ATOMIC("Link connector state %p to [NOCRTC]\n",
1380                                  conn_state);
1381         }
1382
1383         return 0;
1384 }
1385 EXPORT_SYMBOL(drm_atomic_set_crtc_for_connector);
1386
1387 /**
1388  * drm_atomic_add_affected_connectors - add connectors for crtc
1389  * @state: atomic state
1390  * @crtc: DRM crtc
1391  *
1392  * This function walks the current configuration and adds all connectors
1393  * currently using @crtc to the atomic configuration @state. Note that this
1394  * function must acquire the connection mutex. This can potentially cause
1395  * unneeded seralization if the update is just for the planes on one crtc. Hence
1396  * drivers and helpers should only call this when really needed (e.g. when a
1397  * full modeset needs to happen due to some change).
1398  *
1399  * Returns:
1400  * 0 on success or can fail with -EDEADLK or -ENOMEM. When the error is EDEADLK
1401  * then the w/w mutex code has detected a deadlock and the entire atomic
1402  * sequence must be restarted. All other errors are fatal.
1403  */
1404 int
1405 drm_atomic_add_affected_connectors(struct drm_atomic_state *state,
1406                                    struct drm_crtc *crtc)
1407 {
1408         struct drm_mode_config *config = &state->dev->mode_config;
1409         struct drm_connector *connector;
1410         struct drm_connector_state *conn_state;
1411         struct drm_connector_list_iter conn_iter;
1412         int ret;
1413
1414         ret = drm_modeset_lock(&config->connection_mutex, state->acquire_ctx);
1415         if (ret)
1416                 return ret;
1417
1418         DRM_DEBUG_ATOMIC("Adding all current connectors for [CRTC:%d:%s] to %p\n",
1419                          crtc->base.id, crtc->name, state);
1420
1421         /*
1422          * Changed connectors are already in @state, so only need to look at the
1423          * current configuration.
1424          */
1425         drm_connector_list_iter_get(state->dev, &conn_iter);
1426         drm_for_each_connector_iter(connector, &conn_iter) {
1427                 if (connector->state->crtc != crtc)
1428                         continue;
1429
1430                 conn_state = drm_atomic_get_connector_state(state, connector);
1431                 if (IS_ERR(conn_state)) {
1432                         drm_connector_list_iter_put(&conn_iter);
1433                         return PTR_ERR(conn_state);
1434                 }
1435         }
1436         drm_connector_list_iter_put(&conn_iter);
1437
1438         return 0;
1439 }
1440 EXPORT_SYMBOL(drm_atomic_add_affected_connectors);
1441
1442 /**
1443  * drm_atomic_add_affected_planes - add planes for crtc
1444  * @state: atomic state
1445  * @crtc: DRM crtc
1446  *
1447  * This function walks the current configuration and adds all planes
1448  * currently used by @crtc to the atomic configuration @state. This is useful
1449  * when an atomic commit also needs to check all currently enabled plane on
1450  * @crtc, e.g. when changing the mode. It's also useful when re-enabling a CRTC
1451  * to avoid special code to force-enable all planes.
1452  *
1453  * Since acquiring a plane state will always also acquire the w/w mutex of the
1454  * current CRTC for that plane (if there is any) adding all the plane states for
1455  * a CRTC will not reduce parallism of atomic updates.
1456  *
1457  * Returns:
1458  * 0 on success or can fail with -EDEADLK or -ENOMEM. When the error is EDEADLK
1459  * then the w/w mutex code has detected a deadlock and the entire atomic
1460  * sequence must be restarted. All other errors are fatal.
1461  */
1462 int
1463 drm_atomic_add_affected_planes(struct drm_atomic_state *state,
1464                                struct drm_crtc *crtc)
1465 {
1466         struct drm_plane *plane;
1467
1468         WARN_ON(!drm_atomic_get_existing_crtc_state(state, crtc));
1469
1470         drm_for_each_plane_mask(plane, state->dev, crtc->state->plane_mask) {
1471                 struct drm_plane_state *plane_state =
1472                         drm_atomic_get_plane_state(state, plane);
1473
1474                 if (IS_ERR(plane_state))
1475                         return PTR_ERR(plane_state);
1476         }
1477         return 0;
1478 }
1479 EXPORT_SYMBOL(drm_atomic_add_affected_planes);
1480
1481 /**
1482  * drm_atomic_legacy_backoff - locking backoff for legacy ioctls
1483  * @state: atomic state
1484  *
1485  * This function should be used by legacy entry points which don't understand
1486  * -EDEADLK semantics. For simplicity this one will grab all modeset locks after
1487  * the slowpath completed.
1488  */
1489 void drm_atomic_legacy_backoff(struct drm_atomic_state *state)
1490 {
1491         struct drm_device *dev = state->dev;
1492         unsigned crtc_mask = 0;
1493         struct drm_crtc *crtc;
1494         int ret;
1495         bool global = false;
1496
1497         drm_for_each_crtc(crtc, dev) {
1498                 if (crtc->acquire_ctx != state->acquire_ctx)
1499                         continue;
1500
1501                 crtc_mask |= drm_crtc_mask(crtc);
1502                 crtc->acquire_ctx = NULL;
1503         }
1504
1505         if (WARN_ON(dev->mode_config.acquire_ctx == state->acquire_ctx)) {
1506                 global = true;
1507
1508                 dev->mode_config.acquire_ctx = NULL;
1509         }
1510
1511 retry:
1512         drm_modeset_backoff(state->acquire_ctx);
1513
1514         ret = drm_modeset_lock_all_ctx(dev, state->acquire_ctx);
1515         if (ret)
1516                 goto retry;
1517
1518         drm_for_each_crtc(crtc, dev)
1519                 if (drm_crtc_mask(crtc) & crtc_mask)
1520                         crtc->acquire_ctx = state->acquire_ctx;
1521
1522         if (global)
1523                 dev->mode_config.acquire_ctx = state->acquire_ctx;
1524 }
1525 EXPORT_SYMBOL(drm_atomic_legacy_backoff);
1526
1527 /**
1528  * drm_atomic_check_only - check whether a given config would work
1529  * @state: atomic configuration to check
1530  *
1531  * Note that this function can return -EDEADLK if the driver needed to acquire
1532  * more locks but encountered a deadlock. The caller must then do the usual w/w
1533  * backoff dance and restart. All other errors are fatal.
1534  *
1535  * Returns:
1536  * 0 on success, negative error code on failure.
1537  */
1538 int drm_atomic_check_only(struct drm_atomic_state *state)
1539 {
1540         struct drm_device *dev = state->dev;
1541         struct drm_mode_config *config = &dev->mode_config;
1542         struct drm_plane *plane;
1543         struct drm_plane_state *plane_state;
1544         struct drm_crtc *crtc;
1545         struct drm_crtc_state *crtc_state;
1546         int i, ret = 0;
1547
1548         DRM_DEBUG_ATOMIC("checking %p\n", state);
1549
1550         for_each_plane_in_state(state, plane, plane_state, i) {
1551                 ret = drm_atomic_plane_check(plane, plane_state);
1552                 if (ret) {
1553                         DRM_DEBUG_ATOMIC("[PLANE:%d:%s] atomic core check failed\n",
1554                                          plane->base.id, plane->name);
1555                         return ret;
1556                 }
1557         }
1558
1559         for_each_crtc_in_state(state, crtc, crtc_state, i) {
1560                 ret = drm_atomic_crtc_check(crtc, crtc_state);
1561                 if (ret) {
1562                         DRM_DEBUG_ATOMIC("[CRTC:%d:%s] atomic core check failed\n",
1563                                          crtc->base.id, crtc->name);
1564                         return ret;
1565                 }
1566         }
1567
1568         if (config->funcs->atomic_check)
1569                 ret = config->funcs->atomic_check(state->dev, state);
1570
1571         if (!state->allow_modeset) {
1572                 for_each_crtc_in_state(state, crtc, crtc_state, i) {
1573                         if (drm_atomic_crtc_needs_modeset(crtc_state)) {
1574                                 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] requires full modeset\n",
1575                                                  crtc->base.id, crtc->name);
1576                                 return -EINVAL;
1577                         }
1578                 }
1579         }
1580
1581         return ret;
1582 }
1583 EXPORT_SYMBOL(drm_atomic_check_only);
1584
1585 /**
1586  * drm_atomic_commit - commit configuration atomically
1587  * @state: atomic configuration to check
1588  *
1589  * Note that this function can return -EDEADLK if the driver needed to acquire
1590  * more locks but encountered a deadlock. The caller must then do the usual w/w
1591  * backoff dance and restart. All other errors are fatal.
1592  *
1593  * This function will take its own reference on @state.
1594  * Callers should always release their reference with drm_atomic_state_put().
1595  *
1596  * Returns:
1597  * 0 on success, negative error code on failure.
1598  */
1599 int drm_atomic_commit(struct drm_atomic_state *state)
1600 {
1601         struct drm_mode_config *config = &state->dev->mode_config;
1602         int ret;
1603
1604         ret = drm_atomic_check_only(state);
1605         if (ret)
1606                 return ret;
1607
1608         DRM_DEBUG_ATOMIC("commiting %p\n", state);
1609
1610         return config->funcs->atomic_commit(state->dev, state, false);
1611 }
1612 EXPORT_SYMBOL(drm_atomic_commit);
1613
1614 /**
1615  * drm_atomic_nonblocking_commit - atomic nonblocking commit
1616  * @state: atomic configuration to check
1617  *
1618  * Note that this function can return -EDEADLK if the driver needed to acquire
1619  * more locks but encountered a deadlock. The caller must then do the usual w/w
1620  * backoff dance and restart. All other errors are fatal.
1621  *
1622  * This function will take its own reference on @state.
1623  * Callers should always release their reference with drm_atomic_state_put().
1624  *
1625  * Returns:
1626  * 0 on success, negative error code on failure.
1627  */
1628 int drm_atomic_nonblocking_commit(struct drm_atomic_state *state)
1629 {
1630         struct drm_mode_config *config = &state->dev->mode_config;
1631         int ret;
1632
1633         ret = drm_atomic_check_only(state);
1634         if (ret)
1635                 return ret;
1636
1637         DRM_DEBUG_ATOMIC("commiting %p nonblocking\n", state);
1638
1639         return config->funcs->atomic_commit(state->dev, state, true);
1640 }
1641 EXPORT_SYMBOL(drm_atomic_nonblocking_commit);
1642
1643 static void drm_atomic_print_state(const struct drm_atomic_state *state)
1644 {
1645         struct drm_printer p = drm_info_printer(state->dev->dev);
1646         struct drm_plane *plane;
1647         struct drm_plane_state *plane_state;
1648         struct drm_crtc *crtc;
1649         struct drm_crtc_state *crtc_state;
1650         struct drm_connector *connector;
1651         struct drm_connector_state *connector_state;
1652         int i;
1653
1654         DRM_DEBUG_ATOMIC("checking %p\n", state);
1655
1656         for_each_plane_in_state(state, plane, plane_state, i)
1657                 drm_atomic_plane_print_state(&p, plane_state);
1658
1659         for_each_crtc_in_state(state, crtc, crtc_state, i)
1660                 drm_atomic_crtc_print_state(&p, crtc_state);
1661
1662         for_each_connector_in_state(state, connector, connector_state, i)
1663                 drm_atomic_connector_print_state(&p, connector_state);
1664 }
1665
1666 /**
1667  * drm_state_dump - dump entire device atomic state
1668  * @dev: the drm device
1669  * @p: where to print the state to
1670  *
1671  * Just for debugging.  Drivers might want an option to dump state
1672  * to dmesg in case of error irq's.  (Hint, you probably want to
1673  * ratelimit this!)
1674  *
1675  * The caller must drm_modeset_lock_all(), or if this is called
1676  * from error irq handler, it should not be enabled by default.
1677  * (Ie. if you are debugging errors you might not care that this
1678  * is racey.  But calling this without all modeset locks held is
1679  * not inherently safe.)
1680  */
1681 void drm_state_dump(struct drm_device *dev, struct drm_printer *p)
1682 {
1683         struct drm_mode_config *config = &dev->mode_config;
1684         struct drm_plane *plane;
1685         struct drm_crtc *crtc;
1686         struct drm_connector *connector;
1687         struct drm_connector_list_iter conn_iter;
1688
1689         if (!drm_core_check_feature(dev, DRIVER_ATOMIC))
1690                 return;
1691
1692         list_for_each_entry(plane, &config->plane_list, head)
1693                 drm_atomic_plane_print_state(p, plane->state);
1694
1695         list_for_each_entry(crtc, &config->crtc_list, head)
1696                 drm_atomic_crtc_print_state(p, crtc->state);
1697
1698         drm_connector_list_iter_get(dev, &conn_iter);
1699         drm_for_each_connector_iter(connector, &conn_iter)
1700                 drm_atomic_connector_print_state(p, connector->state);
1701         drm_connector_list_iter_put(&conn_iter);
1702 }
1703 EXPORT_SYMBOL(drm_state_dump);
1704
1705 #ifdef CONFIG_DEBUG_FS
1706 static int drm_state_info(struct seq_file *m, void *data)
1707 {
1708         struct drm_info_node *node = (struct drm_info_node *) m->private;
1709         struct drm_device *dev = node->minor->dev;
1710         struct drm_printer p = drm_seq_file_printer(m);
1711
1712         drm_modeset_lock_all(dev);
1713         drm_state_dump(dev, &p);
1714         drm_modeset_unlock_all(dev);
1715
1716         return 0;
1717 }
1718
1719 /* any use in debugfs files to dump individual planes/crtc/etc? */
1720 static const struct drm_info_list drm_atomic_debugfs_list[] = {
1721         {"state", drm_state_info, 0},
1722 };
1723
1724 int drm_atomic_debugfs_init(struct drm_minor *minor)
1725 {
1726         return drm_debugfs_create_files(drm_atomic_debugfs_list,
1727                         ARRAY_SIZE(drm_atomic_debugfs_list),
1728                         minor->debugfs_root, minor);
1729 }
1730 #endif
1731
1732 /*
1733  * The big monstor ioctl
1734  */
1735
1736 static struct drm_pending_vblank_event *create_vblank_event(
1737                 struct drm_device *dev, uint64_t user_data)
1738 {
1739         struct drm_pending_vblank_event *e = NULL;
1740
1741         e = kzalloc(sizeof *e, GFP_KERNEL);
1742         if (!e)
1743                 return NULL;
1744
1745         e->event.base.type = DRM_EVENT_FLIP_COMPLETE;
1746         e->event.base.length = sizeof(e->event);
1747         e->event.user_data = user_data;
1748
1749         return e;
1750 }
1751
1752 static int atomic_set_prop(struct drm_atomic_state *state,
1753                 struct drm_mode_object *obj, struct drm_property *prop,
1754                 uint64_t prop_value)
1755 {
1756         struct drm_mode_object *ref;
1757         int ret;
1758
1759         if (!drm_property_change_valid_get(prop, prop_value, &ref))
1760                 return -EINVAL;
1761
1762         switch (obj->type) {
1763         case DRM_MODE_OBJECT_CONNECTOR: {
1764                 struct drm_connector *connector = obj_to_connector(obj);
1765                 struct drm_connector_state *connector_state;
1766
1767                 connector_state = drm_atomic_get_connector_state(state, connector);
1768                 if (IS_ERR(connector_state)) {
1769                         ret = PTR_ERR(connector_state);
1770                         break;
1771                 }
1772
1773                 ret = drm_atomic_connector_set_property(connector,
1774                                 connector_state, prop, prop_value);
1775                 break;
1776         }
1777         case DRM_MODE_OBJECT_CRTC: {
1778                 struct drm_crtc *crtc = obj_to_crtc(obj);
1779                 struct drm_crtc_state *crtc_state;
1780
1781                 crtc_state = drm_atomic_get_crtc_state(state, crtc);
1782                 if (IS_ERR(crtc_state)) {
1783                         ret = PTR_ERR(crtc_state);
1784                         break;
1785                 }
1786
1787                 ret = drm_atomic_crtc_set_property(crtc,
1788                                 crtc_state, prop, prop_value);
1789                 break;
1790         }
1791         case DRM_MODE_OBJECT_PLANE: {
1792                 struct drm_plane *plane = obj_to_plane(obj);
1793                 struct drm_plane_state *plane_state;
1794
1795                 plane_state = drm_atomic_get_plane_state(state, plane);
1796                 if (IS_ERR(plane_state)) {
1797                         ret = PTR_ERR(plane_state);
1798                         break;
1799                 }
1800
1801                 ret = drm_atomic_plane_set_property(plane,
1802                                 plane_state, prop, prop_value);
1803                 break;
1804         }
1805         default:
1806                 ret = -EINVAL;
1807                 break;
1808         }
1809
1810         drm_property_change_valid_put(prop, ref);
1811         return ret;
1812 }
1813
1814 /**
1815  * drm_atomic_clean_old_fb -- Unset old_fb pointers and set plane->fb pointers.
1816  *
1817  * @dev: drm device to check.
1818  * @plane_mask: plane mask for planes that were updated.
1819  * @ret: return value, can be -EDEADLK for a retry.
1820  *
1821  * Before doing an update &drm_plane.old_fb is set to &drm_plane.fb, but before
1822  * dropping the locks old_fb needs to be set to NULL and plane->fb updated. This
1823  * is a common operation for each atomic update, so this call is split off as a
1824  * helper.
1825  */
1826 void drm_atomic_clean_old_fb(struct drm_device *dev,
1827                              unsigned plane_mask,
1828                              int ret)
1829 {
1830         struct drm_plane *plane;
1831
1832         /* if succeeded, fixup legacy plane crtc/fb ptrs before dropping
1833          * locks (ie. while it is still safe to deref plane->state).  We
1834          * need to do this here because the driver entry points cannot
1835          * distinguish between legacy and atomic ioctls.
1836          */
1837         drm_for_each_plane_mask(plane, dev, plane_mask) {
1838                 if (ret == 0) {
1839                         struct drm_framebuffer *new_fb = plane->state->fb;
1840                         if (new_fb)
1841                                 drm_framebuffer_reference(new_fb);
1842                         plane->fb = new_fb;
1843                         plane->crtc = plane->state->crtc;
1844
1845                         if (plane->old_fb)
1846                                 drm_framebuffer_unreference(plane->old_fb);
1847                 }
1848                 plane->old_fb = NULL;
1849         }
1850 }
1851 EXPORT_SYMBOL(drm_atomic_clean_old_fb);
1852
1853 /**
1854  * DOC: explicit fencing properties
1855  *
1856  * Explicit fencing allows userspace to control the buffer synchronization
1857  * between devices. A Fence or a group of fences are transfered to/from
1858  * userspace using Sync File fds and there are two DRM properties for that.
1859  * IN_FENCE_FD on each DRM Plane to send fences to the kernel and
1860  * OUT_FENCE_PTR on each DRM CRTC to receive fences from the kernel.
1861  *
1862  * As a contrast, with implicit fencing the kernel keeps track of any
1863  * ongoing rendering, and automatically ensures that the atomic update waits
1864  * for any pending rendering to complete. For shared buffers represented with
1865  * a &struct dma_buf this is tracked in &struct reservation_object.
1866  * Implicit syncing is how Linux traditionally worked (e.g. DRI2/3 on X.org),
1867  * whereas explicit fencing is what Android wants.
1868  *
1869  * "IN_FENCE_FD”:
1870  *      Use this property to pass a fence that DRM should wait on before
1871  *      proceeding with the Atomic Commit request and show the framebuffer for
1872  *      the plane on the screen. The fence can be either a normal fence or a
1873  *      merged one, the sync_file framework will handle both cases and use a
1874  *      fence_array if a merged fence is received. Passing -1 here means no
1875  *      fences to wait on.
1876  *
1877  *      If the Atomic Commit request has the DRM_MODE_ATOMIC_TEST_ONLY flag
1878  *      it will only check if the Sync File is a valid one.
1879  *
1880  *      On the driver side the fence is stored on the @fence parameter of
1881  *      &struct drm_plane_state. Drivers which also support implicit fencing
1882  *      should set the implicit fence using drm_atomic_set_fence_for_plane(),
1883  *      to make sure there's consistent behaviour between drivers in precedence
1884  *      of implicit vs. explicit fencing.
1885  *
1886  * "OUT_FENCE_PTR”:
1887  *      Use this property to pass a file descriptor pointer to DRM. Once the
1888  *      Atomic Commit request call returns OUT_FENCE_PTR will be filled with
1889  *      the file descriptor number of a Sync File. This Sync File contains the
1890  *      CRTC fence that will be signaled when all framebuffers present on the
1891  *      Atomic Commit * request for that given CRTC are scanned out on the
1892  *      screen.
1893  *
1894  *      The Atomic Commit request fails if a invalid pointer is passed. If the
1895  *      Atomic Commit request fails for any other reason the out fence fd
1896  *      returned will be -1. On a Atomic Commit with the
1897  *      DRM_MODE_ATOMIC_TEST_ONLY flag the out fence will also be set to -1.
1898  *
1899  *      Note that out-fences don't have a special interface to drivers and are
1900  *      internally represented by a &struct drm_pending_vblank_event in struct
1901  *      &drm_crtc_state, which is also used by the nonblocking atomic commit
1902  *      helpers and for the DRM event handling for existing userspace.
1903  */
1904
1905 struct drm_out_fence_state {
1906         s64 __user *out_fence_ptr;
1907         struct sync_file *sync_file;
1908         int fd;
1909 };
1910
1911 static int setup_out_fence(struct drm_out_fence_state *fence_state,
1912                            struct dma_fence *fence)
1913 {
1914         fence_state->fd = get_unused_fd_flags(O_CLOEXEC);
1915         if (fence_state->fd < 0)
1916                 return fence_state->fd;
1917
1918         if (put_user(fence_state->fd, fence_state->out_fence_ptr))
1919                 return -EFAULT;
1920
1921         fence_state->sync_file = sync_file_create(fence);
1922         if (!fence_state->sync_file)
1923                 return -ENOMEM;
1924
1925         return 0;
1926 }
1927
1928 static int prepare_crtc_signaling(struct drm_device *dev,
1929                                   struct drm_atomic_state *state,
1930                                   struct drm_mode_atomic *arg,
1931                                   struct drm_file *file_priv,
1932                                   struct drm_out_fence_state **fence_state,
1933                                   unsigned int *num_fences)
1934 {
1935         struct drm_crtc *crtc;
1936         struct drm_crtc_state *crtc_state;
1937         int i, ret;
1938
1939         if (arg->flags & DRM_MODE_ATOMIC_TEST_ONLY)
1940                 return 0;
1941
1942         for_each_crtc_in_state(state, crtc, crtc_state, i) {
1943                 u64 __user *fence_ptr;
1944
1945                 fence_ptr = get_out_fence_for_crtc(crtc_state->state, crtc);
1946
1947                 if (arg->flags & DRM_MODE_PAGE_FLIP_EVENT || fence_ptr) {
1948                         struct drm_pending_vblank_event *e;
1949
1950                         e = create_vblank_event(dev, arg->user_data);
1951                         if (!e)
1952                                 return -ENOMEM;
1953
1954                         crtc_state->event = e;
1955                 }
1956
1957                 if (arg->flags & DRM_MODE_PAGE_FLIP_EVENT) {
1958                         struct drm_pending_vblank_event *e = crtc_state->event;
1959
1960                         if (!file_priv)
1961                                 continue;
1962
1963                         ret = drm_event_reserve_init(dev, file_priv, &e->base,
1964                                                      &e->event.base);
1965                         if (ret) {
1966                                 kfree(e);
1967                                 crtc_state->event = NULL;
1968                                 return ret;
1969                         }
1970                 }
1971
1972                 if (fence_ptr) {
1973                         struct dma_fence *fence;
1974                         struct drm_out_fence_state *f;
1975
1976                         f = krealloc(*fence_state, sizeof(**fence_state) *
1977                                      (*num_fences + 1), GFP_KERNEL);
1978                         if (!f)
1979                                 return -ENOMEM;
1980
1981                         memset(&f[*num_fences], 0, sizeof(*f));
1982
1983                         f[*num_fences].out_fence_ptr = fence_ptr;
1984                         *fence_state = f;
1985
1986                         fence = drm_crtc_create_fence(crtc);
1987                         if (!fence)
1988                                 return -ENOMEM;
1989
1990                         ret = setup_out_fence(&f[(*num_fences)++], fence);
1991                         if (ret) {
1992                                 dma_fence_put(fence);
1993                                 return ret;
1994                         }
1995
1996                         crtc_state->event->base.fence = fence;
1997                 }
1998         }
1999
2000         return 0;
2001 }
2002
2003 static void complete_crtc_signaling(struct drm_device *dev,
2004                                     struct drm_atomic_state *state,
2005                                     struct drm_out_fence_state *fence_state,
2006                                     unsigned int num_fences,
2007                                     bool install_fds)
2008 {
2009         struct drm_crtc *crtc;
2010         struct drm_crtc_state *crtc_state;
2011         int i;
2012
2013         if (install_fds) {
2014                 for (i = 0; i < num_fences; i++)
2015                         fd_install(fence_state[i].fd,
2016                                    fence_state[i].sync_file->file);
2017
2018                 kfree(fence_state);
2019                 return;
2020         }
2021
2022         for_each_crtc_in_state(state, crtc, crtc_state, i) {
2023                 /*
2024                  * TEST_ONLY and PAGE_FLIP_EVENT are mutually
2025                  * exclusive, if they weren't, this code should be
2026                  * called on success for TEST_ONLY too.
2027                  */
2028                 if (crtc_state->event)
2029                         drm_event_cancel_free(dev, &crtc_state->event->base);
2030         }
2031
2032         if (!fence_state)
2033                 return;
2034
2035         for (i = 0; i < num_fences; i++) {
2036                 if (fence_state[i].sync_file)
2037                         fput(fence_state[i].sync_file->file);
2038                 if (fence_state[i].fd >= 0)
2039                         put_unused_fd(fence_state[i].fd);
2040
2041                 /* If this fails log error to the user */
2042                 if (fence_state[i].out_fence_ptr &&
2043                     put_user(-1, fence_state[i].out_fence_ptr))
2044                         DRM_DEBUG_ATOMIC("Couldn't clear out_fence_ptr\n");
2045         }
2046
2047         kfree(fence_state);
2048 }
2049
2050 int drm_mode_atomic_ioctl(struct drm_device *dev,
2051                           void *data, struct drm_file *file_priv)
2052 {
2053         struct drm_mode_atomic *arg = data;
2054         uint32_t __user *objs_ptr = (uint32_t __user *)(unsigned long)(arg->objs_ptr);
2055         uint32_t __user *count_props_ptr = (uint32_t __user *)(unsigned long)(arg->count_props_ptr);
2056         uint32_t __user *props_ptr = (uint32_t __user *)(unsigned long)(arg->props_ptr);
2057         uint64_t __user *prop_values_ptr = (uint64_t __user *)(unsigned long)(arg->prop_values_ptr);
2058         unsigned int copied_objs, copied_props;
2059         struct drm_atomic_state *state;
2060         struct drm_modeset_acquire_ctx ctx;
2061         struct drm_plane *plane;
2062         struct drm_out_fence_state *fence_state = NULL;
2063         unsigned plane_mask;
2064         int ret = 0;
2065         unsigned int i, j, num_fences = 0;
2066
2067         /* disallow for drivers not supporting atomic: */
2068         if (!drm_core_check_feature(dev, DRIVER_ATOMIC))
2069                 return -EINVAL;
2070
2071         /* disallow for userspace that has not enabled atomic cap (even
2072          * though this may be a bit overkill, since legacy userspace
2073          * wouldn't know how to call this ioctl)
2074          */
2075         if (!file_priv->atomic)
2076                 return -EINVAL;
2077
2078         if (arg->flags & ~DRM_MODE_ATOMIC_FLAGS)
2079                 return -EINVAL;
2080
2081         if (arg->reserved)
2082                 return -EINVAL;
2083
2084         if ((arg->flags & DRM_MODE_PAGE_FLIP_ASYNC) &&
2085                         !dev->mode_config.async_page_flip)
2086                 return -EINVAL;
2087
2088         /* can't test and expect an event at the same time. */
2089         if ((arg->flags & DRM_MODE_ATOMIC_TEST_ONLY) &&
2090                         (arg->flags & DRM_MODE_PAGE_FLIP_EVENT))
2091                 return -EINVAL;
2092
2093         drm_modeset_acquire_init(&ctx, 0);
2094
2095         state = drm_atomic_state_alloc(dev);
2096         if (!state)
2097                 return -ENOMEM;
2098
2099         state->acquire_ctx = &ctx;
2100         state->allow_modeset = !!(arg->flags & DRM_MODE_ATOMIC_ALLOW_MODESET);
2101
2102 retry:
2103         plane_mask = 0;
2104         copied_objs = 0;
2105         copied_props = 0;
2106
2107         for (i = 0; i < arg->count_objs; i++) {
2108                 uint32_t obj_id, count_props;
2109                 struct drm_mode_object *obj;
2110
2111                 if (get_user(obj_id, objs_ptr + copied_objs)) {
2112                         ret = -EFAULT;
2113                         goto out;
2114                 }
2115
2116                 obj = drm_mode_object_find(dev, obj_id, DRM_MODE_OBJECT_ANY);
2117                 if (!obj) {
2118                         ret = -ENOENT;
2119                         goto out;
2120                 }
2121
2122                 if (!obj->properties) {
2123                         drm_mode_object_unreference(obj);
2124                         ret = -ENOENT;
2125                         goto out;
2126                 }
2127
2128                 if (get_user(count_props, count_props_ptr + copied_objs)) {
2129                         drm_mode_object_unreference(obj);
2130                         ret = -EFAULT;
2131                         goto out;
2132                 }
2133
2134                 copied_objs++;
2135
2136                 for (j = 0; j < count_props; j++) {
2137                         uint32_t prop_id;
2138                         uint64_t prop_value;
2139                         struct drm_property *prop;
2140
2141                         if (get_user(prop_id, props_ptr + copied_props)) {
2142                                 drm_mode_object_unreference(obj);
2143                                 ret = -EFAULT;
2144                                 goto out;
2145                         }
2146
2147                         prop = drm_mode_obj_find_prop_id(obj, prop_id);
2148                         if (!prop) {
2149                                 drm_mode_object_unreference(obj);
2150                                 ret = -ENOENT;
2151                                 goto out;
2152                         }
2153
2154                         if (copy_from_user(&prop_value,
2155                                            prop_values_ptr + copied_props,
2156                                            sizeof(prop_value))) {
2157                                 drm_mode_object_unreference(obj);
2158                                 ret = -EFAULT;
2159                                 goto out;
2160                         }
2161
2162                         ret = atomic_set_prop(state, obj, prop, prop_value);
2163                         if (ret) {
2164                                 drm_mode_object_unreference(obj);
2165                                 goto out;
2166                         }
2167
2168                         copied_props++;
2169                 }
2170
2171                 if (obj->type == DRM_MODE_OBJECT_PLANE && count_props &&
2172                     !(arg->flags & DRM_MODE_ATOMIC_TEST_ONLY)) {
2173                         plane = obj_to_plane(obj);
2174                         plane_mask |= (1 << drm_plane_index(plane));
2175                         plane->old_fb = plane->fb;
2176                 }
2177                 drm_mode_object_unreference(obj);
2178         }
2179
2180         ret = prepare_crtc_signaling(dev, state, arg, file_priv, &fence_state,
2181                                      &num_fences);
2182         if (ret)
2183                 goto out;
2184
2185         if (arg->flags & DRM_MODE_ATOMIC_TEST_ONLY) {
2186                 ret = drm_atomic_check_only(state);
2187         } else if (arg->flags & DRM_MODE_ATOMIC_NONBLOCK) {
2188                 ret = drm_atomic_nonblocking_commit(state);
2189         } else {
2190                 if (unlikely(drm_debug & DRM_UT_STATE))
2191                         drm_atomic_print_state(state);
2192
2193                 ret = drm_atomic_commit(state);
2194         }
2195
2196 out:
2197         drm_atomic_clean_old_fb(dev, plane_mask, ret);
2198
2199         complete_crtc_signaling(dev, state, fence_state, num_fences, !ret);
2200
2201         if (ret == -EDEADLK) {
2202                 drm_atomic_state_clear(state);
2203                 drm_modeset_backoff(&ctx);
2204                 goto retry;
2205         }
2206
2207         drm_atomic_state_put(state);
2208
2209         drm_modeset_drop_locks(&ctx);
2210         drm_modeset_acquire_fini(&ctx);
2211
2212         return ret;
2213 }
This page took 0.165862 seconds and 4 git commands to generate.