]> asedeno.scripts.mit.edu Git - linux.git/blob - drivers/gpu/drm/drm_atomic_uapi.c
drm: writeback: Add job prepare and cleanup operations
[linux.git] / drivers / gpu / drm / drm_atomic_uapi.c
1 /*
2  * Copyright (C) 2014 Red Hat
3  * Copyright (C) 2014 Intel Corp.
4  * Copyright (C) 2018 Intel Corp.
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a
7  * copy of this software and associated documentation files (the "Software"),
8  * to deal in the Software without restriction, including without limitation
9  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10  * and/or sell copies of the Software, and to permit persons to whom the
11  * Software is furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
19  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
20  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22  * OTHER DEALINGS IN THE SOFTWARE.
23  *
24  * Authors:
25  * Rob Clark <robdclark@gmail.com>
26  * Daniel Vetter <daniel.vetter@ffwll.ch>
27  */
28
29 #include <drm/drm_atomic_uapi.h>
30 #include <drm/drm_atomic.h>
31 #include <drm/drm_print.h>
32 #include <drm/drm_drv.h>
33 #include <drm/drm_writeback.h>
34 #include <drm/drm_vblank.h>
35
36 #include <linux/dma-fence.h>
37 #include <linux/uaccess.h>
38 #include <linux/sync_file.h>
39 #include <linux/file.h>
40
41 #include "drm_crtc_internal.h"
42
43 /**
44  * DOC: overview
45  *
46  * This file contains the marshalling and demarshalling glue for the atomic UAPI
47  * in all its forms: The monster ATOMIC IOCTL itself, code for GET_PROPERTY and
48  * SET_PROPERTY IOCTLs. Plus interface functions for compatibility helpers and
49  * drivers which have special needs to construct their own atomic updates, e.g.
50  * for load detect or similiar.
51  */
52
53 /**
54  * drm_atomic_set_mode_for_crtc - set mode for CRTC
55  * @state: the CRTC whose incoming state to update
56  * @mode: kernel-internal mode to use for the CRTC, or NULL to disable
57  *
58  * Set a mode (originating from the kernel) on the desired CRTC state and update
59  * the enable property.
60  *
61  * RETURNS:
62  * Zero on success, error code on failure. Cannot return -EDEADLK.
63  */
64 int drm_atomic_set_mode_for_crtc(struct drm_crtc_state *state,
65                                  const struct drm_display_mode *mode)
66 {
67         struct drm_crtc *crtc = state->crtc;
68         struct drm_mode_modeinfo umode;
69
70         /* Early return for no change. */
71         if (mode && memcmp(&state->mode, mode, sizeof(*mode)) == 0)
72                 return 0;
73
74         drm_property_blob_put(state->mode_blob);
75         state->mode_blob = NULL;
76
77         if (mode) {
78                 drm_mode_convert_to_umode(&umode, mode);
79                 state->mode_blob =
80                         drm_property_create_blob(state->crtc->dev,
81                                                  sizeof(umode),
82                                                  &umode);
83                 if (IS_ERR(state->mode_blob))
84                         return PTR_ERR(state->mode_blob);
85
86                 drm_mode_copy(&state->mode, mode);
87                 state->enable = true;
88                 DRM_DEBUG_ATOMIC("Set [MODE:%s] for [CRTC:%d:%s] state %p\n",
89                                  mode->name, crtc->base.id, crtc->name, state);
90         } else {
91                 memset(&state->mode, 0, sizeof(state->mode));
92                 state->enable = false;
93                 DRM_DEBUG_ATOMIC("Set [NOMODE] for [CRTC:%d:%s] state %p\n",
94                                  crtc->base.id, crtc->name, state);
95         }
96
97         return 0;
98 }
99 EXPORT_SYMBOL(drm_atomic_set_mode_for_crtc);
100
101 /**
102  * drm_atomic_set_mode_prop_for_crtc - set mode for CRTC
103  * @state: the CRTC whose incoming state to update
104  * @blob: pointer to blob property to use for mode
105  *
106  * Set a mode (originating from a blob property) on the desired CRTC state.
107  * This function will take a reference on the blob property for the CRTC state,
108  * and release the reference held on the state's existing mode property, if any
109  * was set.
110  *
111  * RETURNS:
112  * Zero on success, error code on failure. Cannot return -EDEADLK.
113  */
114 int drm_atomic_set_mode_prop_for_crtc(struct drm_crtc_state *state,
115                                       struct drm_property_blob *blob)
116 {
117         struct drm_crtc *crtc = state->crtc;
118
119         if (blob == state->mode_blob)
120                 return 0;
121
122         drm_property_blob_put(state->mode_blob);
123         state->mode_blob = NULL;
124
125         memset(&state->mode, 0, sizeof(state->mode));
126
127         if (blob) {
128                 int ret;
129
130                 if (blob->length != sizeof(struct drm_mode_modeinfo)) {
131                         DRM_DEBUG_ATOMIC("[CRTC:%d:%s] bad mode blob length: %zu\n",
132                                          crtc->base.id, crtc->name,
133                                          blob->length);
134                         return -EINVAL;
135                 }
136
137                 ret = drm_mode_convert_umode(crtc->dev,
138                                              &state->mode, blob->data);
139                 if (ret) {
140                         DRM_DEBUG_ATOMIC("[CRTC:%d:%s] invalid mode (ret=%d, status=%s):\n",
141                                          crtc->base.id, crtc->name,
142                                          ret, drm_get_mode_status_name(state->mode.status));
143                         drm_mode_debug_printmodeline(&state->mode);
144                         return -EINVAL;
145                 }
146
147                 state->mode_blob = drm_property_blob_get(blob);
148                 state->enable = true;
149                 DRM_DEBUG_ATOMIC("Set [MODE:%s] for [CRTC:%d:%s] state %p\n",
150                                  state->mode.name, crtc->base.id, crtc->name,
151                                  state);
152         } else {
153                 state->enable = false;
154                 DRM_DEBUG_ATOMIC("Set [NOMODE] for [CRTC:%d:%s] state %p\n",
155                                  crtc->base.id, crtc->name, state);
156         }
157
158         return 0;
159 }
160 EXPORT_SYMBOL(drm_atomic_set_mode_prop_for_crtc);
161
162 /**
163  * drm_atomic_set_crtc_for_plane - set crtc for plane
164  * @plane_state: the plane whose incoming state to update
165  * @crtc: crtc to use for the plane
166  *
167  * Changing the assigned crtc for a plane requires us to grab the lock and state
168  * for the new crtc, as needed. This function takes care of all these details
169  * besides updating the pointer in the state object itself.
170  *
171  * Returns:
172  * 0 on success or can fail with -EDEADLK or -ENOMEM. When the error is EDEADLK
173  * then the w/w mutex code has detected a deadlock and the entire atomic
174  * sequence must be restarted. All other errors are fatal.
175  */
176 int
177 drm_atomic_set_crtc_for_plane(struct drm_plane_state *plane_state,
178                               struct drm_crtc *crtc)
179 {
180         struct drm_plane *plane = plane_state->plane;
181         struct drm_crtc_state *crtc_state;
182         /* Nothing to do for same crtc*/
183         if (plane_state->crtc == crtc)
184                 return 0;
185         if (plane_state->crtc) {
186                 crtc_state = drm_atomic_get_crtc_state(plane_state->state,
187                                                        plane_state->crtc);
188                 if (WARN_ON(IS_ERR(crtc_state)))
189                         return PTR_ERR(crtc_state);
190
191                 crtc_state->plane_mask &= ~drm_plane_mask(plane);
192         }
193
194         plane_state->crtc = crtc;
195
196         if (crtc) {
197                 crtc_state = drm_atomic_get_crtc_state(plane_state->state,
198                                                        crtc);
199                 if (IS_ERR(crtc_state))
200                         return PTR_ERR(crtc_state);
201                 crtc_state->plane_mask |= drm_plane_mask(plane);
202         }
203
204         if (crtc)
205                 DRM_DEBUG_ATOMIC("Link [PLANE:%d:%s] state %p to [CRTC:%d:%s]\n",
206                                  plane->base.id, plane->name, plane_state,
207                                  crtc->base.id, crtc->name);
208         else
209                 DRM_DEBUG_ATOMIC("Link [PLANE:%d:%s] state %p to [NOCRTC]\n",
210                                  plane->base.id, plane->name, plane_state);
211
212         return 0;
213 }
214 EXPORT_SYMBOL(drm_atomic_set_crtc_for_plane);
215
216 /**
217  * drm_atomic_set_fb_for_plane - set framebuffer for plane
218  * @plane_state: atomic state object for the plane
219  * @fb: fb to use for the plane
220  *
221  * Changing the assigned framebuffer for a plane requires us to grab a reference
222  * to the new fb and drop the reference to the old fb, if there is one. This
223  * function takes care of all these details besides updating the pointer in the
224  * state object itself.
225  */
226 void
227 drm_atomic_set_fb_for_plane(struct drm_plane_state *plane_state,
228                             struct drm_framebuffer *fb)
229 {
230         struct drm_plane *plane = plane_state->plane;
231
232         if (fb)
233                 DRM_DEBUG_ATOMIC("Set [FB:%d] for [PLANE:%d:%s] state %p\n",
234                                  fb->base.id, plane->base.id, plane->name,
235                                  plane_state);
236         else
237                 DRM_DEBUG_ATOMIC("Set [NOFB] for [PLANE:%d:%s] state %p\n",
238                                  plane->base.id, plane->name, plane_state);
239
240         drm_framebuffer_assign(&plane_state->fb, fb);
241 }
242 EXPORT_SYMBOL(drm_atomic_set_fb_for_plane);
243
244 /**
245  * drm_atomic_set_fence_for_plane - set fence for plane
246  * @plane_state: atomic state object for the plane
247  * @fence: dma_fence to use for the plane
248  *
249  * Helper to setup the plane_state fence in case it is not set yet.
250  * By using this drivers doesn't need to worry if the user choose
251  * implicit or explicit fencing.
252  *
253  * This function will not set the fence to the state if it was set
254  * via explicit fencing interfaces on the atomic ioctl. In that case it will
255  * drop the reference to the fence as we are not storing it anywhere.
256  * Otherwise, if &drm_plane_state.fence is not set this function we just set it
257  * with the received implicit fence. In both cases this function consumes a
258  * reference for @fence.
259  *
260  * This way explicit fencing can be used to overrule implicit fencing, which is
261  * important to make explicit fencing use-cases work: One example is using one
262  * buffer for 2 screens with different refresh rates. Implicit fencing will
263  * clamp rendering to the refresh rate of the slower screen, whereas explicit
264  * fence allows 2 independent render and display loops on a single buffer. If a
265  * driver allows obeys both implicit and explicit fences for plane updates, then
266  * it will break all the benefits of explicit fencing.
267  */
268 void
269 drm_atomic_set_fence_for_plane(struct drm_plane_state *plane_state,
270                                struct dma_fence *fence)
271 {
272         if (plane_state->fence) {
273                 dma_fence_put(fence);
274                 return;
275         }
276
277         plane_state->fence = fence;
278 }
279 EXPORT_SYMBOL(drm_atomic_set_fence_for_plane);
280
281 /**
282  * drm_atomic_set_crtc_for_connector - set crtc for connector
283  * @conn_state: atomic state object for the connector
284  * @crtc: crtc to use for the connector
285  *
286  * Changing the assigned crtc for a connector requires us to grab the lock and
287  * state for the new crtc, as needed. This function takes care of all these
288  * details besides updating the pointer in the state object itself.
289  *
290  * Returns:
291  * 0 on success or can fail with -EDEADLK or -ENOMEM. When the error is EDEADLK
292  * then the w/w mutex code has detected a deadlock and the entire atomic
293  * sequence must be restarted. All other errors are fatal.
294  */
295 int
296 drm_atomic_set_crtc_for_connector(struct drm_connector_state *conn_state,
297                                   struct drm_crtc *crtc)
298 {
299         struct drm_connector *connector = conn_state->connector;
300         struct drm_crtc_state *crtc_state;
301
302         if (conn_state->crtc == crtc)
303                 return 0;
304
305         if (conn_state->crtc) {
306                 crtc_state = drm_atomic_get_new_crtc_state(conn_state->state,
307                                                            conn_state->crtc);
308
309                 crtc_state->connector_mask &=
310                         ~drm_connector_mask(conn_state->connector);
311
312                 drm_connector_put(conn_state->connector);
313                 conn_state->crtc = NULL;
314         }
315
316         if (crtc) {
317                 crtc_state = drm_atomic_get_crtc_state(conn_state->state, crtc);
318                 if (IS_ERR(crtc_state))
319                         return PTR_ERR(crtc_state);
320
321                 crtc_state->connector_mask |=
322                         drm_connector_mask(conn_state->connector);
323
324                 drm_connector_get(conn_state->connector);
325                 conn_state->crtc = crtc;
326
327                 DRM_DEBUG_ATOMIC("Link [CONNECTOR:%d:%s] state %p to [CRTC:%d:%s]\n",
328                                  connector->base.id, connector->name,
329                                  conn_state, crtc->base.id, crtc->name);
330         } else {
331                 DRM_DEBUG_ATOMIC("Link [CONNECTOR:%d:%s] state %p to [NOCRTC]\n",
332                                  connector->base.id, connector->name,
333                                  conn_state);
334         }
335
336         return 0;
337 }
338 EXPORT_SYMBOL(drm_atomic_set_crtc_for_connector);
339
340 static void set_out_fence_for_crtc(struct drm_atomic_state *state,
341                                    struct drm_crtc *crtc, s32 __user *fence_ptr)
342 {
343         state->crtcs[drm_crtc_index(crtc)].out_fence_ptr = fence_ptr;
344 }
345
346 static s32 __user *get_out_fence_for_crtc(struct drm_atomic_state *state,
347                                           struct drm_crtc *crtc)
348 {
349         s32 __user *fence_ptr;
350
351         fence_ptr = state->crtcs[drm_crtc_index(crtc)].out_fence_ptr;
352         state->crtcs[drm_crtc_index(crtc)].out_fence_ptr = NULL;
353
354         return fence_ptr;
355 }
356
357 static int set_out_fence_for_connector(struct drm_atomic_state *state,
358                                         struct drm_connector *connector,
359                                         s32 __user *fence_ptr)
360 {
361         unsigned int index = drm_connector_index(connector);
362
363         if (!fence_ptr)
364                 return 0;
365
366         if (put_user(-1, fence_ptr))
367                 return -EFAULT;
368
369         state->connectors[index].out_fence_ptr = fence_ptr;
370
371         return 0;
372 }
373
374 static s32 __user *get_out_fence_for_connector(struct drm_atomic_state *state,
375                                                struct drm_connector *connector)
376 {
377         unsigned int index = drm_connector_index(connector);
378         s32 __user *fence_ptr;
379
380         fence_ptr = state->connectors[index].out_fence_ptr;
381         state->connectors[index].out_fence_ptr = NULL;
382
383         return fence_ptr;
384 }
385
386 static int
387 drm_atomic_replace_property_blob_from_id(struct drm_device *dev,
388                                          struct drm_property_blob **blob,
389                                          uint64_t blob_id,
390                                          ssize_t expected_size,
391                                          ssize_t expected_elem_size,
392                                          bool *replaced)
393 {
394         struct drm_property_blob *new_blob = NULL;
395
396         if (blob_id != 0) {
397                 new_blob = drm_property_lookup_blob(dev, blob_id);
398                 if (new_blob == NULL)
399                         return -EINVAL;
400
401                 if (expected_size > 0 &&
402                     new_blob->length != expected_size) {
403                         drm_property_blob_put(new_blob);
404                         return -EINVAL;
405                 }
406                 if (expected_elem_size > 0 &&
407                     new_blob->length % expected_elem_size != 0) {
408                         drm_property_blob_put(new_blob);
409                         return -EINVAL;
410                 }
411         }
412
413         *replaced |= drm_property_replace_blob(blob, new_blob);
414         drm_property_blob_put(new_blob);
415
416         return 0;
417 }
418
419 static int drm_atomic_crtc_set_property(struct drm_crtc *crtc,
420                 struct drm_crtc_state *state, struct drm_property *property,
421                 uint64_t val)
422 {
423         struct drm_device *dev = crtc->dev;
424         struct drm_mode_config *config = &dev->mode_config;
425         bool replaced = false;
426         int ret;
427
428         if (property == config->prop_active)
429                 state->active = val;
430         else if (property == config->prop_mode_id) {
431                 struct drm_property_blob *mode =
432                         drm_property_lookup_blob(dev, val);
433                 ret = drm_atomic_set_mode_prop_for_crtc(state, mode);
434                 drm_property_blob_put(mode);
435                 return ret;
436         } else if (property == config->prop_vrr_enabled) {
437                 state->vrr_enabled = val;
438         } else if (property == config->degamma_lut_property) {
439                 ret = drm_atomic_replace_property_blob_from_id(dev,
440                                         &state->degamma_lut,
441                                         val,
442                                         -1, sizeof(struct drm_color_lut),
443                                         &replaced);
444                 state->color_mgmt_changed |= replaced;
445                 return ret;
446         } else if (property == config->ctm_property) {
447                 ret = drm_atomic_replace_property_blob_from_id(dev,
448                                         &state->ctm,
449                                         val,
450                                         sizeof(struct drm_color_ctm), -1,
451                                         &replaced);
452                 state->color_mgmt_changed |= replaced;
453                 return ret;
454         } else if (property == config->gamma_lut_property) {
455                 ret = drm_atomic_replace_property_blob_from_id(dev,
456                                         &state->gamma_lut,
457                                         val,
458                                         -1, sizeof(struct drm_color_lut),
459                                         &replaced);
460                 state->color_mgmt_changed |= replaced;
461                 return ret;
462         } else if (property == config->prop_out_fence_ptr) {
463                 s32 __user *fence_ptr = u64_to_user_ptr(val);
464
465                 if (!fence_ptr)
466                         return 0;
467
468                 if (put_user(-1, fence_ptr))
469                         return -EFAULT;
470
471                 set_out_fence_for_crtc(state->state, crtc, fence_ptr);
472         } else if (crtc->funcs->atomic_set_property) {
473                 return crtc->funcs->atomic_set_property(crtc, state, property, val);
474         } else {
475                 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] unknown property [PROP:%d:%s]]\n",
476                                  crtc->base.id, crtc->name,
477                                  property->base.id, property->name);
478                 return -EINVAL;
479         }
480
481         return 0;
482 }
483
484 static int
485 drm_atomic_crtc_get_property(struct drm_crtc *crtc,
486                 const struct drm_crtc_state *state,
487                 struct drm_property *property, uint64_t *val)
488 {
489         struct drm_device *dev = crtc->dev;
490         struct drm_mode_config *config = &dev->mode_config;
491
492         if (property == config->prop_active)
493                 *val = state->active;
494         else if (property == config->prop_mode_id)
495                 *val = (state->mode_blob) ? state->mode_blob->base.id : 0;
496         else if (property == config->prop_vrr_enabled)
497                 *val = state->vrr_enabled;
498         else if (property == config->degamma_lut_property)
499                 *val = (state->degamma_lut) ? state->degamma_lut->base.id : 0;
500         else if (property == config->ctm_property)
501                 *val = (state->ctm) ? state->ctm->base.id : 0;
502         else if (property == config->gamma_lut_property)
503                 *val = (state->gamma_lut) ? state->gamma_lut->base.id : 0;
504         else if (property == config->prop_out_fence_ptr)
505                 *val = 0;
506         else if (crtc->funcs->atomic_get_property)
507                 return crtc->funcs->atomic_get_property(crtc, state, property, val);
508         else
509                 return -EINVAL;
510
511         return 0;
512 }
513
514 static int drm_atomic_plane_set_property(struct drm_plane *plane,
515                 struct drm_plane_state *state, struct drm_property *property,
516                 uint64_t val)
517 {
518         struct drm_device *dev = plane->dev;
519         struct drm_mode_config *config = &dev->mode_config;
520         bool replaced = false;
521         int ret;
522
523         if (property == config->prop_fb_id) {
524                 struct drm_framebuffer *fb = drm_framebuffer_lookup(dev, NULL, val);
525                 drm_atomic_set_fb_for_plane(state, fb);
526                 if (fb)
527                         drm_framebuffer_put(fb);
528         } else if (property == config->prop_in_fence_fd) {
529                 if (state->fence)
530                         return -EINVAL;
531
532                 if (U642I64(val) == -1)
533                         return 0;
534
535                 state->fence = sync_file_get_fence(val);
536                 if (!state->fence)
537                         return -EINVAL;
538
539         } else if (property == config->prop_crtc_id) {
540                 struct drm_crtc *crtc = drm_crtc_find(dev, NULL, val);
541                 return drm_atomic_set_crtc_for_plane(state, crtc);
542         } else if (property == config->prop_crtc_x) {
543                 state->crtc_x = U642I64(val);
544         } else if (property == config->prop_crtc_y) {
545                 state->crtc_y = U642I64(val);
546         } else if (property == config->prop_crtc_w) {
547                 state->crtc_w = val;
548         } else if (property == config->prop_crtc_h) {
549                 state->crtc_h = val;
550         } else if (property == config->prop_src_x) {
551                 state->src_x = val;
552         } else if (property == config->prop_src_y) {
553                 state->src_y = val;
554         } else if (property == config->prop_src_w) {
555                 state->src_w = val;
556         } else if (property == config->prop_src_h) {
557                 state->src_h = val;
558         } else if (property == plane->alpha_property) {
559                 state->alpha = val;
560         } else if (property == plane->blend_mode_property) {
561                 state->pixel_blend_mode = val;
562         } else if (property == plane->rotation_property) {
563                 if (!is_power_of_2(val & DRM_MODE_ROTATE_MASK)) {
564                         DRM_DEBUG_ATOMIC("[PLANE:%d:%s] bad rotation bitmask: 0x%llx\n",
565                                          plane->base.id, plane->name, val);
566                         return -EINVAL;
567                 }
568                 state->rotation = val;
569         } else if (property == plane->zpos_property) {
570                 state->zpos = val;
571         } else if (property == plane->color_encoding_property) {
572                 state->color_encoding = val;
573         } else if (property == plane->color_range_property) {
574                 state->color_range = val;
575         } else if (property == config->prop_fb_damage_clips) {
576                 ret = drm_atomic_replace_property_blob_from_id(dev,
577                                         &state->fb_damage_clips,
578                                         val,
579                                         -1,
580                                         sizeof(struct drm_rect),
581                                         &replaced);
582                 return ret;
583         } else if (plane->funcs->atomic_set_property) {
584                 return plane->funcs->atomic_set_property(plane, state,
585                                 property, val);
586         } else {
587                 DRM_DEBUG_ATOMIC("[PLANE:%d:%s] unknown property [PROP:%d:%s]]\n",
588                                  plane->base.id, plane->name,
589                                  property->base.id, property->name);
590                 return -EINVAL;
591         }
592
593         return 0;
594 }
595
596 static int
597 drm_atomic_plane_get_property(struct drm_plane *plane,
598                 const struct drm_plane_state *state,
599                 struct drm_property *property, uint64_t *val)
600 {
601         struct drm_device *dev = plane->dev;
602         struct drm_mode_config *config = &dev->mode_config;
603
604         if (property == config->prop_fb_id) {
605                 *val = (state->fb) ? state->fb->base.id : 0;
606         } else if (property == config->prop_in_fence_fd) {
607                 *val = -1;
608         } else if (property == config->prop_crtc_id) {
609                 *val = (state->crtc) ? state->crtc->base.id : 0;
610         } else if (property == config->prop_crtc_x) {
611                 *val = I642U64(state->crtc_x);
612         } else if (property == config->prop_crtc_y) {
613                 *val = I642U64(state->crtc_y);
614         } else if (property == config->prop_crtc_w) {
615                 *val = state->crtc_w;
616         } else if (property == config->prop_crtc_h) {
617                 *val = state->crtc_h;
618         } else if (property == config->prop_src_x) {
619                 *val = state->src_x;
620         } else if (property == config->prop_src_y) {
621                 *val = state->src_y;
622         } else if (property == config->prop_src_w) {
623                 *val = state->src_w;
624         } else if (property == config->prop_src_h) {
625                 *val = state->src_h;
626         } else if (property == plane->alpha_property) {
627                 *val = state->alpha;
628         } else if (property == plane->blend_mode_property) {
629                 *val = state->pixel_blend_mode;
630         } else if (property == plane->rotation_property) {
631                 *val = state->rotation;
632         } else if (property == plane->zpos_property) {
633                 *val = state->zpos;
634         } else if (property == plane->color_encoding_property) {
635                 *val = state->color_encoding;
636         } else if (property == plane->color_range_property) {
637                 *val = state->color_range;
638         } else if (property == config->prop_fb_damage_clips) {
639                 *val = (state->fb_damage_clips) ?
640                         state->fb_damage_clips->base.id : 0;
641         } else if (plane->funcs->atomic_get_property) {
642                 return plane->funcs->atomic_get_property(plane, state, property, val);
643         } else {
644                 return -EINVAL;
645         }
646
647         return 0;
648 }
649
650 static int drm_atomic_set_writeback_fb_for_connector(
651                 struct drm_connector_state *conn_state,
652                 struct drm_framebuffer *fb)
653 {
654         int ret;
655
656         ret = drm_writeback_set_fb(conn_state, fb);
657         if (ret < 0)
658                 return ret;
659
660         if (fb)
661                 DRM_DEBUG_ATOMIC("Set [FB:%d] for connector state %p\n",
662                                  fb->base.id, conn_state);
663         else
664                 DRM_DEBUG_ATOMIC("Set [NOFB] for connector state %p\n",
665                                  conn_state);
666
667         return 0;
668 }
669
670 static int drm_atomic_connector_set_property(struct drm_connector *connector,
671                 struct drm_connector_state *state, struct drm_property *property,
672                 uint64_t val)
673 {
674         struct drm_device *dev = connector->dev;
675         struct drm_mode_config *config = &dev->mode_config;
676
677         if (property == config->prop_crtc_id) {
678                 struct drm_crtc *crtc = drm_crtc_find(dev, NULL, val);
679                 return drm_atomic_set_crtc_for_connector(state, crtc);
680         } else if (property == config->dpms_property) {
681                 /* setting DPMS property requires special handling, which
682                  * is done in legacy setprop path for us.  Disallow (for
683                  * now?) atomic writes to DPMS property:
684                  */
685                 return -EINVAL;
686         } else if (property == config->tv_select_subconnector_property) {
687                 state->tv.subconnector = val;
688         } else if (property == config->tv_left_margin_property) {
689                 state->tv.margins.left = val;
690         } else if (property == config->tv_right_margin_property) {
691                 state->tv.margins.right = val;
692         } else if (property == config->tv_top_margin_property) {
693                 state->tv.margins.top = val;
694         } else if (property == config->tv_bottom_margin_property) {
695                 state->tv.margins.bottom = val;
696         } else if (property == config->tv_mode_property) {
697                 state->tv.mode = val;
698         } else if (property == config->tv_brightness_property) {
699                 state->tv.brightness = val;
700         } else if (property == config->tv_contrast_property) {
701                 state->tv.contrast = val;
702         } else if (property == config->tv_flicker_reduction_property) {
703                 state->tv.flicker_reduction = val;
704         } else if (property == config->tv_overscan_property) {
705                 state->tv.overscan = val;
706         } else if (property == config->tv_saturation_property) {
707                 state->tv.saturation = val;
708         } else if (property == config->tv_hue_property) {
709                 state->tv.hue = val;
710         } else if (property == config->link_status_property) {
711                 /* Never downgrade from GOOD to BAD on userspace's request here,
712                  * only hw issues can do that.
713                  *
714                  * For an atomic property the userspace doesn't need to be able
715                  * to understand all the properties, but needs to be able to
716                  * restore the state it wants on VT switch. So if the userspace
717                  * tries to change the link_status from GOOD to BAD, driver
718                  * silently rejects it and returns a 0. This prevents userspace
719                  * from accidently breaking  the display when it restores the
720                  * state.
721                  */
722                 if (state->link_status != DRM_LINK_STATUS_GOOD)
723                         state->link_status = val;
724         } else if (property == config->aspect_ratio_property) {
725                 state->picture_aspect_ratio = val;
726         } else if (property == config->content_type_property) {
727                 state->content_type = val;
728         } else if (property == connector->scaling_mode_property) {
729                 state->scaling_mode = val;
730         } else if (property == connector->content_protection_property) {
731                 if (val == DRM_MODE_CONTENT_PROTECTION_ENABLED) {
732                         DRM_DEBUG_KMS("only drivers can set CP Enabled\n");
733                         return -EINVAL;
734                 }
735                 state->content_protection = val;
736         } else if (property == config->writeback_fb_id_property) {
737                 struct drm_framebuffer *fb = drm_framebuffer_lookup(dev, NULL, val);
738                 int ret = drm_atomic_set_writeback_fb_for_connector(state, fb);
739                 if (fb)
740                         drm_framebuffer_put(fb);
741                 return ret;
742         } else if (property == config->writeback_out_fence_ptr_property) {
743                 s32 __user *fence_ptr = u64_to_user_ptr(val);
744
745                 return set_out_fence_for_connector(state->state, connector,
746                                                    fence_ptr);
747         } else if (property == connector->max_bpc_property) {
748                 state->max_requested_bpc = val;
749         } else if (connector->funcs->atomic_set_property) {
750                 return connector->funcs->atomic_set_property(connector,
751                                 state, property, val);
752         } else {
753                 DRM_DEBUG_ATOMIC("[CONNECTOR:%d:%s] unknown property [PROP:%d:%s]]\n",
754                                  connector->base.id, connector->name,
755                                  property->base.id, property->name);
756                 return -EINVAL;
757         }
758
759         return 0;
760 }
761
762 static int
763 drm_atomic_connector_get_property(struct drm_connector *connector,
764                 const struct drm_connector_state *state,
765                 struct drm_property *property, uint64_t *val)
766 {
767         struct drm_device *dev = connector->dev;
768         struct drm_mode_config *config = &dev->mode_config;
769
770         if (property == config->prop_crtc_id) {
771                 *val = (state->crtc) ? state->crtc->base.id : 0;
772         } else if (property == config->dpms_property) {
773                 *val = connector->dpms;
774         } else if (property == config->tv_select_subconnector_property) {
775                 *val = state->tv.subconnector;
776         } else if (property == config->tv_left_margin_property) {
777                 *val = state->tv.margins.left;
778         } else if (property == config->tv_right_margin_property) {
779                 *val = state->tv.margins.right;
780         } else if (property == config->tv_top_margin_property) {
781                 *val = state->tv.margins.top;
782         } else if (property == config->tv_bottom_margin_property) {
783                 *val = state->tv.margins.bottom;
784         } else if (property == config->tv_mode_property) {
785                 *val = state->tv.mode;
786         } else if (property == config->tv_brightness_property) {
787                 *val = state->tv.brightness;
788         } else if (property == config->tv_contrast_property) {
789                 *val = state->tv.contrast;
790         } else if (property == config->tv_flicker_reduction_property) {
791                 *val = state->tv.flicker_reduction;
792         } else if (property == config->tv_overscan_property) {
793                 *val = state->tv.overscan;
794         } else if (property == config->tv_saturation_property) {
795                 *val = state->tv.saturation;
796         } else if (property == config->tv_hue_property) {
797                 *val = state->tv.hue;
798         } else if (property == config->link_status_property) {
799                 *val = state->link_status;
800         } else if (property == config->aspect_ratio_property) {
801                 *val = state->picture_aspect_ratio;
802         } else if (property == config->content_type_property) {
803                 *val = state->content_type;
804         } else if (property == connector->scaling_mode_property) {
805                 *val = state->scaling_mode;
806         } else if (property == connector->content_protection_property) {
807                 *val = state->content_protection;
808         } else if (property == config->writeback_fb_id_property) {
809                 /* Writeback framebuffer is one-shot, write and forget */
810                 *val = 0;
811         } else if (property == config->writeback_out_fence_ptr_property) {
812                 *val = 0;
813         } else if (property == connector->max_bpc_property) {
814                 *val = state->max_requested_bpc;
815         } else if (connector->funcs->atomic_get_property) {
816                 return connector->funcs->atomic_get_property(connector,
817                                 state, property, val);
818         } else {
819                 return -EINVAL;
820         }
821
822         return 0;
823 }
824
825 int drm_atomic_get_property(struct drm_mode_object *obj,
826                 struct drm_property *property, uint64_t *val)
827 {
828         struct drm_device *dev = property->dev;
829         int ret;
830
831         switch (obj->type) {
832         case DRM_MODE_OBJECT_CONNECTOR: {
833                 struct drm_connector *connector = obj_to_connector(obj);
834                 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
835                 ret = drm_atomic_connector_get_property(connector,
836                                 connector->state, property, val);
837                 break;
838         }
839         case DRM_MODE_OBJECT_CRTC: {
840                 struct drm_crtc *crtc = obj_to_crtc(obj);
841                 WARN_ON(!drm_modeset_is_locked(&crtc->mutex));
842                 ret = drm_atomic_crtc_get_property(crtc,
843                                 crtc->state, property, val);
844                 break;
845         }
846         case DRM_MODE_OBJECT_PLANE: {
847                 struct drm_plane *plane = obj_to_plane(obj);
848                 WARN_ON(!drm_modeset_is_locked(&plane->mutex));
849                 ret = drm_atomic_plane_get_property(plane,
850                                 plane->state, property, val);
851                 break;
852         }
853         default:
854                 ret = -EINVAL;
855                 break;
856         }
857
858         return ret;
859 }
860
861 /*
862  * The big monster ioctl
863  */
864
865 static struct drm_pending_vblank_event *create_vblank_event(
866                 struct drm_crtc *crtc, uint64_t user_data)
867 {
868         struct drm_pending_vblank_event *e = NULL;
869
870         e = kzalloc(sizeof *e, GFP_KERNEL);
871         if (!e)
872                 return NULL;
873
874         e->event.base.type = DRM_EVENT_FLIP_COMPLETE;
875         e->event.base.length = sizeof(e->event);
876         e->event.vbl.crtc_id = crtc->base.id;
877         e->event.vbl.user_data = user_data;
878
879         return e;
880 }
881
882 int drm_atomic_connector_commit_dpms(struct drm_atomic_state *state,
883                                      struct drm_connector *connector,
884                                      int mode)
885 {
886         struct drm_connector *tmp_connector;
887         struct drm_connector_state *new_conn_state;
888         struct drm_crtc *crtc;
889         struct drm_crtc_state *crtc_state;
890         int i, ret, old_mode = connector->dpms;
891         bool active = false;
892
893         ret = drm_modeset_lock(&state->dev->mode_config.connection_mutex,
894                                state->acquire_ctx);
895         if (ret)
896                 return ret;
897
898         if (mode != DRM_MODE_DPMS_ON)
899                 mode = DRM_MODE_DPMS_OFF;
900         connector->dpms = mode;
901
902         crtc = connector->state->crtc;
903         if (!crtc)
904                 goto out;
905         ret = drm_atomic_add_affected_connectors(state, crtc);
906         if (ret)
907                 goto out;
908
909         crtc_state = drm_atomic_get_crtc_state(state, crtc);
910         if (IS_ERR(crtc_state)) {
911                 ret = PTR_ERR(crtc_state);
912                 goto out;
913         }
914
915         for_each_new_connector_in_state(state, tmp_connector, new_conn_state, i) {
916                 if (new_conn_state->crtc != crtc)
917                         continue;
918                 if (tmp_connector->dpms == DRM_MODE_DPMS_ON) {
919                         active = true;
920                         break;
921                 }
922         }
923
924         crtc_state->active = active;
925         ret = drm_atomic_commit(state);
926 out:
927         if (ret != 0)
928                 connector->dpms = old_mode;
929         return ret;
930 }
931
932 int drm_atomic_set_property(struct drm_atomic_state *state,
933                             struct drm_mode_object *obj,
934                             struct drm_property *prop,
935                             uint64_t prop_value)
936 {
937         struct drm_mode_object *ref;
938         int ret;
939
940         if (!drm_property_change_valid_get(prop, prop_value, &ref))
941                 return -EINVAL;
942
943         switch (obj->type) {
944         case DRM_MODE_OBJECT_CONNECTOR: {
945                 struct drm_connector *connector = obj_to_connector(obj);
946                 struct drm_connector_state *connector_state;
947
948                 connector_state = drm_atomic_get_connector_state(state, connector);
949                 if (IS_ERR(connector_state)) {
950                         ret = PTR_ERR(connector_state);
951                         break;
952                 }
953
954                 ret = drm_atomic_connector_set_property(connector,
955                                 connector_state, prop, prop_value);
956                 break;
957         }
958         case DRM_MODE_OBJECT_CRTC: {
959                 struct drm_crtc *crtc = obj_to_crtc(obj);
960                 struct drm_crtc_state *crtc_state;
961
962                 crtc_state = drm_atomic_get_crtc_state(state, crtc);
963                 if (IS_ERR(crtc_state)) {
964                         ret = PTR_ERR(crtc_state);
965                         break;
966                 }
967
968                 ret = drm_atomic_crtc_set_property(crtc,
969                                 crtc_state, prop, prop_value);
970                 break;
971         }
972         case DRM_MODE_OBJECT_PLANE: {
973                 struct drm_plane *plane = obj_to_plane(obj);
974                 struct drm_plane_state *plane_state;
975
976                 plane_state = drm_atomic_get_plane_state(state, plane);
977                 if (IS_ERR(plane_state)) {
978                         ret = PTR_ERR(plane_state);
979                         break;
980                 }
981
982                 ret = drm_atomic_plane_set_property(plane,
983                                 plane_state, prop, prop_value);
984                 break;
985         }
986         default:
987                 ret = -EINVAL;
988                 break;
989         }
990
991         drm_property_change_valid_put(prop, ref);
992         return ret;
993 }
994
995 /**
996  * DOC: explicit fencing properties
997  *
998  * Explicit fencing allows userspace to control the buffer synchronization
999  * between devices. A Fence or a group of fences are transfered to/from
1000  * userspace using Sync File fds and there are two DRM properties for that.
1001  * IN_FENCE_FD on each DRM Plane to send fences to the kernel and
1002  * OUT_FENCE_PTR on each DRM CRTC to receive fences from the kernel.
1003  *
1004  * As a contrast, with implicit fencing the kernel keeps track of any
1005  * ongoing rendering, and automatically ensures that the atomic update waits
1006  * for any pending rendering to complete. For shared buffers represented with
1007  * a &struct dma_buf this is tracked in &struct reservation_object.
1008  * Implicit syncing is how Linux traditionally worked (e.g. DRI2/3 on X.org),
1009  * whereas explicit fencing is what Android wants.
1010  *
1011  * "IN_FENCE_FD”:
1012  *      Use this property to pass a fence that DRM should wait on before
1013  *      proceeding with the Atomic Commit request and show the framebuffer for
1014  *      the plane on the screen. The fence can be either a normal fence or a
1015  *      merged one, the sync_file framework will handle both cases and use a
1016  *      fence_array if a merged fence is received. Passing -1 here means no
1017  *      fences to wait on.
1018  *
1019  *      If the Atomic Commit request has the DRM_MODE_ATOMIC_TEST_ONLY flag
1020  *      it will only check if the Sync File is a valid one.
1021  *
1022  *      On the driver side the fence is stored on the @fence parameter of
1023  *      &struct drm_plane_state. Drivers which also support implicit fencing
1024  *      should set the implicit fence using drm_atomic_set_fence_for_plane(),
1025  *      to make sure there's consistent behaviour between drivers in precedence
1026  *      of implicit vs. explicit fencing.
1027  *
1028  * "OUT_FENCE_PTR”:
1029  *      Use this property to pass a file descriptor pointer to DRM. Once the
1030  *      Atomic Commit request call returns OUT_FENCE_PTR will be filled with
1031  *      the file descriptor number of a Sync File. This Sync File contains the
1032  *      CRTC fence that will be signaled when all framebuffers present on the
1033  *      Atomic Commit * request for that given CRTC are scanned out on the
1034  *      screen.
1035  *
1036  *      The Atomic Commit request fails if a invalid pointer is passed. If the
1037  *      Atomic Commit request fails for any other reason the out fence fd
1038  *      returned will be -1. On a Atomic Commit with the
1039  *      DRM_MODE_ATOMIC_TEST_ONLY flag the out fence will also be set to -1.
1040  *
1041  *      Note that out-fences don't have a special interface to drivers and are
1042  *      internally represented by a &struct drm_pending_vblank_event in struct
1043  *      &drm_crtc_state, which is also used by the nonblocking atomic commit
1044  *      helpers and for the DRM event handling for existing userspace.
1045  */
1046
1047 struct drm_out_fence_state {
1048         s32 __user *out_fence_ptr;
1049         struct sync_file *sync_file;
1050         int fd;
1051 };
1052
1053 static int setup_out_fence(struct drm_out_fence_state *fence_state,
1054                            struct dma_fence *fence)
1055 {
1056         fence_state->fd = get_unused_fd_flags(O_CLOEXEC);
1057         if (fence_state->fd < 0)
1058                 return fence_state->fd;
1059
1060         if (put_user(fence_state->fd, fence_state->out_fence_ptr))
1061                 return -EFAULT;
1062
1063         fence_state->sync_file = sync_file_create(fence);
1064         if (!fence_state->sync_file)
1065                 return -ENOMEM;
1066
1067         return 0;
1068 }
1069
1070 static int prepare_signaling(struct drm_device *dev,
1071                                   struct drm_atomic_state *state,
1072                                   struct drm_mode_atomic *arg,
1073                                   struct drm_file *file_priv,
1074                                   struct drm_out_fence_state **fence_state,
1075                                   unsigned int *num_fences)
1076 {
1077         struct drm_crtc *crtc;
1078         struct drm_crtc_state *crtc_state;
1079         struct drm_connector *conn;
1080         struct drm_connector_state *conn_state;
1081         int i, c = 0, ret;
1082
1083         if (arg->flags & DRM_MODE_ATOMIC_TEST_ONLY)
1084                 return 0;
1085
1086         for_each_new_crtc_in_state(state, crtc, crtc_state, i) {
1087                 s32 __user *fence_ptr;
1088
1089                 fence_ptr = get_out_fence_for_crtc(crtc_state->state, crtc);
1090
1091                 if (arg->flags & DRM_MODE_PAGE_FLIP_EVENT || fence_ptr) {
1092                         struct drm_pending_vblank_event *e;
1093
1094                         e = create_vblank_event(crtc, arg->user_data);
1095                         if (!e)
1096                                 return -ENOMEM;
1097
1098                         crtc_state->event = e;
1099                 }
1100
1101                 if (arg->flags & DRM_MODE_PAGE_FLIP_EVENT) {
1102                         struct drm_pending_vblank_event *e = crtc_state->event;
1103
1104                         if (!file_priv)
1105                                 continue;
1106
1107                         ret = drm_event_reserve_init(dev, file_priv, &e->base,
1108                                                      &e->event.base);
1109                         if (ret) {
1110                                 kfree(e);
1111                                 crtc_state->event = NULL;
1112                                 return ret;
1113                         }
1114                 }
1115
1116                 if (fence_ptr) {
1117                         struct dma_fence *fence;
1118                         struct drm_out_fence_state *f;
1119
1120                         f = krealloc(*fence_state, sizeof(**fence_state) *
1121                                      (*num_fences + 1), GFP_KERNEL);
1122                         if (!f)
1123                                 return -ENOMEM;
1124
1125                         memset(&f[*num_fences], 0, sizeof(*f));
1126
1127                         f[*num_fences].out_fence_ptr = fence_ptr;
1128                         *fence_state = f;
1129
1130                         fence = drm_crtc_create_fence(crtc);
1131                         if (!fence)
1132                                 return -ENOMEM;
1133
1134                         ret = setup_out_fence(&f[(*num_fences)++], fence);
1135                         if (ret) {
1136                                 dma_fence_put(fence);
1137                                 return ret;
1138                         }
1139
1140                         crtc_state->event->base.fence = fence;
1141                 }
1142
1143                 c++;
1144         }
1145
1146         for_each_new_connector_in_state(state, conn, conn_state, i) {
1147                 struct drm_writeback_connector *wb_conn;
1148                 struct drm_out_fence_state *f;
1149                 struct dma_fence *fence;
1150                 s32 __user *fence_ptr;
1151
1152                 if (!conn_state->writeback_job)
1153                         continue;
1154
1155                 fence_ptr = get_out_fence_for_connector(state, conn);
1156                 if (!fence_ptr)
1157                         continue;
1158
1159                 f = krealloc(*fence_state, sizeof(**fence_state) *
1160                              (*num_fences + 1), GFP_KERNEL);
1161                 if (!f)
1162                         return -ENOMEM;
1163
1164                 memset(&f[*num_fences], 0, sizeof(*f));
1165
1166                 f[*num_fences].out_fence_ptr = fence_ptr;
1167                 *fence_state = f;
1168
1169                 wb_conn = drm_connector_to_writeback(conn);
1170                 fence = drm_writeback_get_out_fence(wb_conn);
1171                 if (!fence)
1172                         return -ENOMEM;
1173
1174                 ret = setup_out_fence(&f[(*num_fences)++], fence);
1175                 if (ret) {
1176                         dma_fence_put(fence);
1177                         return ret;
1178                 }
1179
1180                 conn_state->writeback_job->out_fence = fence;
1181         }
1182
1183         /*
1184          * Having this flag means user mode pends on event which will never
1185          * reach due to lack of at least one CRTC for signaling
1186          */
1187         if (c == 0 && (arg->flags & DRM_MODE_PAGE_FLIP_EVENT))
1188                 return -EINVAL;
1189
1190         return 0;
1191 }
1192
1193 static void complete_signaling(struct drm_device *dev,
1194                                struct drm_atomic_state *state,
1195                                struct drm_out_fence_state *fence_state,
1196                                unsigned int num_fences,
1197                                bool install_fds)
1198 {
1199         struct drm_crtc *crtc;
1200         struct drm_crtc_state *crtc_state;
1201         int i;
1202
1203         if (install_fds) {
1204                 for (i = 0; i < num_fences; i++)
1205                         fd_install(fence_state[i].fd,
1206                                    fence_state[i].sync_file->file);
1207
1208                 kfree(fence_state);
1209                 return;
1210         }
1211
1212         for_each_new_crtc_in_state(state, crtc, crtc_state, i) {
1213                 struct drm_pending_vblank_event *event = crtc_state->event;
1214                 /*
1215                  * Free the allocated event. drm_atomic_helper_setup_commit
1216                  * can allocate an event too, so only free it if it's ours
1217                  * to prevent a double free in drm_atomic_state_clear.
1218                  */
1219                 if (event && (event->base.fence || event->base.file_priv)) {
1220                         drm_event_cancel_free(dev, &event->base);
1221                         crtc_state->event = NULL;
1222                 }
1223         }
1224
1225         if (!fence_state)
1226                 return;
1227
1228         for (i = 0; i < num_fences; i++) {
1229                 if (fence_state[i].sync_file)
1230                         fput(fence_state[i].sync_file->file);
1231                 if (fence_state[i].fd >= 0)
1232                         put_unused_fd(fence_state[i].fd);
1233
1234                 /* If this fails log error to the user */
1235                 if (fence_state[i].out_fence_ptr &&
1236                     put_user(-1, fence_state[i].out_fence_ptr))
1237                         DRM_DEBUG_ATOMIC("Couldn't clear out_fence_ptr\n");
1238         }
1239
1240         kfree(fence_state);
1241 }
1242
1243 int drm_mode_atomic_ioctl(struct drm_device *dev,
1244                           void *data, struct drm_file *file_priv)
1245 {
1246         struct drm_mode_atomic *arg = data;
1247         uint32_t __user *objs_ptr = (uint32_t __user *)(unsigned long)(arg->objs_ptr);
1248         uint32_t __user *count_props_ptr = (uint32_t __user *)(unsigned long)(arg->count_props_ptr);
1249         uint32_t __user *props_ptr = (uint32_t __user *)(unsigned long)(arg->props_ptr);
1250         uint64_t __user *prop_values_ptr = (uint64_t __user *)(unsigned long)(arg->prop_values_ptr);
1251         unsigned int copied_objs, copied_props;
1252         struct drm_atomic_state *state;
1253         struct drm_modeset_acquire_ctx ctx;
1254         struct drm_out_fence_state *fence_state;
1255         int ret = 0;
1256         unsigned int i, j, num_fences;
1257
1258         /* disallow for drivers not supporting atomic: */
1259         if (!drm_core_check_feature(dev, DRIVER_ATOMIC))
1260                 return -EOPNOTSUPP;
1261
1262         /* disallow for userspace that has not enabled atomic cap (even
1263          * though this may be a bit overkill, since legacy userspace
1264          * wouldn't know how to call this ioctl)
1265          */
1266         if (!file_priv->atomic)
1267                 return -EINVAL;
1268
1269         if (arg->flags & ~DRM_MODE_ATOMIC_FLAGS)
1270                 return -EINVAL;
1271
1272         if (arg->reserved)
1273                 return -EINVAL;
1274
1275         if ((arg->flags & DRM_MODE_PAGE_FLIP_ASYNC) &&
1276                         !dev->mode_config.async_page_flip)
1277                 return -EINVAL;
1278
1279         /* can't test and expect an event at the same time. */
1280         if ((arg->flags & DRM_MODE_ATOMIC_TEST_ONLY) &&
1281                         (arg->flags & DRM_MODE_PAGE_FLIP_EVENT))
1282                 return -EINVAL;
1283
1284         state = drm_atomic_state_alloc(dev);
1285         if (!state)
1286                 return -ENOMEM;
1287
1288         drm_modeset_acquire_init(&ctx, DRM_MODESET_ACQUIRE_INTERRUPTIBLE);
1289         state->acquire_ctx = &ctx;
1290         state->allow_modeset = !!(arg->flags & DRM_MODE_ATOMIC_ALLOW_MODESET);
1291
1292 retry:
1293         copied_objs = 0;
1294         copied_props = 0;
1295         fence_state = NULL;
1296         num_fences = 0;
1297
1298         for (i = 0; i < arg->count_objs; i++) {
1299                 uint32_t obj_id, count_props;
1300                 struct drm_mode_object *obj;
1301
1302                 if (get_user(obj_id, objs_ptr + copied_objs)) {
1303                         ret = -EFAULT;
1304                         goto out;
1305                 }
1306
1307                 obj = drm_mode_object_find(dev, file_priv, obj_id, DRM_MODE_OBJECT_ANY);
1308                 if (!obj) {
1309                         ret = -ENOENT;
1310                         goto out;
1311                 }
1312
1313                 if (!obj->properties) {
1314                         drm_mode_object_put(obj);
1315                         ret = -ENOENT;
1316                         goto out;
1317                 }
1318
1319                 if (get_user(count_props, count_props_ptr + copied_objs)) {
1320                         drm_mode_object_put(obj);
1321                         ret = -EFAULT;
1322                         goto out;
1323                 }
1324
1325                 copied_objs++;
1326
1327                 for (j = 0; j < count_props; j++) {
1328                         uint32_t prop_id;
1329                         uint64_t prop_value;
1330                         struct drm_property *prop;
1331
1332                         if (get_user(prop_id, props_ptr + copied_props)) {
1333                                 drm_mode_object_put(obj);
1334                                 ret = -EFAULT;
1335                                 goto out;
1336                         }
1337
1338                         prop = drm_mode_obj_find_prop_id(obj, prop_id);
1339                         if (!prop) {
1340                                 drm_mode_object_put(obj);
1341                                 ret = -ENOENT;
1342                                 goto out;
1343                         }
1344
1345                         if (copy_from_user(&prop_value,
1346                                            prop_values_ptr + copied_props,
1347                                            sizeof(prop_value))) {
1348                                 drm_mode_object_put(obj);
1349                                 ret = -EFAULT;
1350                                 goto out;
1351                         }
1352
1353                         ret = drm_atomic_set_property(state, obj, prop,
1354                                                       prop_value);
1355                         if (ret) {
1356                                 drm_mode_object_put(obj);
1357                                 goto out;
1358                         }
1359
1360                         copied_props++;
1361                 }
1362
1363                 drm_mode_object_put(obj);
1364         }
1365
1366         ret = prepare_signaling(dev, state, arg, file_priv, &fence_state,
1367                                 &num_fences);
1368         if (ret)
1369                 goto out;
1370
1371         if (arg->flags & DRM_MODE_ATOMIC_TEST_ONLY) {
1372                 ret = drm_atomic_check_only(state);
1373         } else if (arg->flags & DRM_MODE_ATOMIC_NONBLOCK) {
1374                 ret = drm_atomic_nonblocking_commit(state);
1375         } else {
1376                 if (unlikely(drm_debug & DRM_UT_STATE))
1377                         drm_atomic_print_state(state);
1378
1379                 ret = drm_atomic_commit(state);
1380         }
1381
1382 out:
1383         complete_signaling(dev, state, fence_state, num_fences, !ret);
1384
1385         if (ret == -EDEADLK) {
1386                 drm_atomic_state_clear(state);
1387                 ret = drm_modeset_backoff(&ctx);
1388                 if (!ret)
1389                         goto retry;
1390         }
1391
1392         drm_atomic_state_put(state);
1393
1394         drm_modeset_drop_locks(&ctx);
1395         drm_modeset_acquire_fini(&ctx);
1396
1397         return ret;
1398 }