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