xref: /linux/drivers/gpu/drm/drm_atomic.c (revision f88cb2660bd09fd76b54e6bd2e62f3d7501147b6)
1 /*
2  * Copyright (C) 2014 Red Hat
3  * Copyright (C) 2014 Intel Corp.
4  * Copyright (c) 2020-2021, The Linux Foundation. All rights reserved.
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 <linux/export.h>
30 #include <linux/sync_file.h>
31 
32 #include <drm/drm_atomic.h>
33 #include <drm/drm_atomic_uapi.h>
34 #include <drm/drm_blend.h>
35 #include <drm/drm_bridge.h>
36 #include <drm/drm_debugfs.h>
37 #include <drm/drm_device.h>
38 #include <drm/drm_drv.h>
39 #include <drm/drm_file.h>
40 #include <drm/drm_fourcc.h>
41 #include <drm/drm_framebuffer.h>
42 #include <drm/drm_mode.h>
43 #include <drm/drm_print.h>
44 #include <drm/drm_writeback.h>
45 #include <drm/drm_colorop.h>
46 
47 #include "drm_crtc_internal.h"
48 #include "drm_internal.h"
49 
50 void __drm_crtc_commit_free(struct kref *kref)
51 {
52 	struct drm_crtc_commit *commit =
53 		container_of(kref, struct drm_crtc_commit, ref);
54 
55 	kfree(commit);
56 }
57 EXPORT_SYMBOL(__drm_crtc_commit_free);
58 
59 /**
60  * drm_crtc_commit_wait - Waits for a commit to complete
61  * @commit: &drm_crtc_commit to wait for
62  *
63  * Waits for a given &drm_crtc_commit to be programmed into the
64  * hardware and flipped to.
65  *
66  * Returns:
67  * 0 on success, a negative error code otherwise.
68  */
69 int drm_crtc_commit_wait(struct drm_crtc_commit *commit)
70 {
71 	unsigned long timeout = 10 * HZ;
72 	int ret;
73 
74 	if (!commit)
75 		return 0;
76 
77 	ret = wait_for_completion_timeout(&commit->hw_done, timeout);
78 	if (!ret) {
79 		drm_err(commit->crtc->dev, "hw_done timed out\n");
80 		return -ETIMEDOUT;
81 	}
82 
83 	/*
84 	 * Currently no support for overwriting flips, hence
85 	 * stall for previous one to execute completely.
86 	 */
87 	ret = wait_for_completion_timeout(&commit->flip_done, timeout);
88 	if (!ret) {
89 		drm_err(commit->crtc->dev, "flip_done timed out\n");
90 		return -ETIMEDOUT;
91 	}
92 
93 	return 0;
94 }
95 EXPORT_SYMBOL(drm_crtc_commit_wait);
96 
97 /**
98  * drm_atomic_state_default_release -
99  * release memory initialized by drm_atomic_state_init
100  * @state: atomic state
101  *
102  * Free all the memory allocated by drm_atomic_state_init.
103  * This should only be used by drivers which are still subclassing
104  * &drm_atomic_state and haven't switched to &drm_private_state yet.
105  */
106 void drm_atomic_state_default_release(struct drm_atomic_state *state)
107 {
108 	kfree(state->connectors);
109 	kfree(state->crtcs);
110 	kfree(state->planes);
111 	kfree(state->colorops);
112 	kfree(state->private_objs);
113 }
114 EXPORT_SYMBOL(drm_atomic_state_default_release);
115 
116 /**
117  * drm_atomic_state_init - init new atomic state
118  * @dev: DRM device
119  * @state: atomic state
120  *
121  * Default implementation for filling in a new atomic state.
122  * This should only be used by drivers which are still subclassing
123  * &drm_atomic_state and haven't switched to &drm_private_state yet.
124  */
125 int
126 drm_atomic_state_init(struct drm_device *dev, struct drm_atomic_state *state)
127 {
128 	kref_init(&state->ref);
129 
130 	/* TODO legacy paths should maybe do a better job about
131 	 * setting this appropriately?
132 	 */
133 	state->allow_modeset = true;
134 
135 	state->crtcs = kcalloc(dev->mode_config.num_crtc,
136 			       sizeof(*state->crtcs), GFP_KERNEL);
137 	if (!state->crtcs)
138 		goto fail;
139 	state->planes = kcalloc(dev->mode_config.num_total_plane,
140 				sizeof(*state->planes), GFP_KERNEL);
141 	if (!state->planes)
142 		goto fail;
143 	state->colorops = kcalloc(dev->mode_config.num_colorop,
144 				  sizeof(*state->colorops), GFP_KERNEL);
145 	if (!state->colorops)
146 		goto fail;
147 
148 	/*
149 	 * Because drm_atomic_state can be committed asynchronously we need our
150 	 * own reference and cannot rely on the on implied by drm_file in the
151 	 * ioctl call.
152 	 */
153 	drm_dev_get(dev);
154 	state->dev = dev;
155 
156 	drm_dbg_atomic(dev, "Allocated atomic state %p\n", state);
157 
158 	return 0;
159 fail:
160 	drm_atomic_state_default_release(state);
161 	return -ENOMEM;
162 }
163 EXPORT_SYMBOL(drm_atomic_state_init);
164 
165 /**
166  * drm_atomic_state_alloc - allocate atomic state
167  * @dev: DRM device
168  *
169  * This allocates an empty atomic state to track updates.
170  */
171 struct drm_atomic_state *
172 drm_atomic_state_alloc(struct drm_device *dev)
173 {
174 	struct drm_mode_config *config = &dev->mode_config;
175 
176 	if (!config->funcs->atomic_state_alloc) {
177 		struct drm_atomic_state *state;
178 
179 		state = kzalloc(sizeof(*state), GFP_KERNEL);
180 		if (!state)
181 			return NULL;
182 		if (drm_atomic_state_init(dev, state) < 0) {
183 			kfree(state);
184 			return NULL;
185 		}
186 		return state;
187 	}
188 
189 	return config->funcs->atomic_state_alloc(dev);
190 }
191 EXPORT_SYMBOL(drm_atomic_state_alloc);
192 
193 /**
194  * drm_atomic_state_default_clear - clear base atomic state
195  * @state: atomic state
196  *
197  * Default implementation for clearing atomic state.
198  * This should only be used by drivers which are still subclassing
199  * &drm_atomic_state and haven't switched to &drm_private_state yet.
200  */
201 void drm_atomic_state_default_clear(struct drm_atomic_state *state)
202 {
203 	struct drm_device *dev = state->dev;
204 	struct drm_mode_config *config = &dev->mode_config;
205 	int i;
206 
207 	drm_dbg_atomic(dev, "Clearing atomic state %p\n", state);
208 
209 	state->checked = false;
210 
211 	for (i = 0; i < state->num_connector; i++) {
212 		struct drm_connector *connector = state->connectors[i].ptr;
213 
214 		if (!connector)
215 			continue;
216 
217 		connector->funcs->atomic_destroy_state(connector,
218 						       state->connectors[i].state_to_destroy);
219 		state->connectors[i].ptr = NULL;
220 		state->connectors[i].state_to_destroy = NULL;
221 		state->connectors[i].old_state = NULL;
222 		state->connectors[i].new_state = NULL;
223 		drm_connector_put(connector);
224 	}
225 
226 	for (i = 0; i < config->num_crtc; i++) {
227 		struct drm_crtc *crtc = state->crtcs[i].ptr;
228 
229 		if (!crtc)
230 			continue;
231 
232 		crtc->funcs->atomic_destroy_state(crtc,
233 						  state->crtcs[i].state_to_destroy);
234 
235 		state->crtcs[i].ptr = NULL;
236 		state->crtcs[i].state_to_destroy = NULL;
237 		state->crtcs[i].old_state = NULL;
238 		state->crtcs[i].new_state = NULL;
239 
240 		if (state->crtcs[i].commit) {
241 			drm_crtc_commit_put(state->crtcs[i].commit);
242 			state->crtcs[i].commit = NULL;
243 		}
244 	}
245 
246 	for (i = 0; i < config->num_total_plane; i++) {
247 		struct drm_plane *plane = state->planes[i].ptr;
248 
249 		if (!plane)
250 			continue;
251 
252 		plane->funcs->atomic_destroy_state(plane,
253 						   state->planes[i].state_to_destroy);
254 		state->planes[i].ptr = NULL;
255 		state->planes[i].state_to_destroy = NULL;
256 		state->planes[i].old_state = NULL;
257 		state->planes[i].new_state = NULL;
258 	}
259 
260 	for (i = 0; i < config->num_colorop; i++) {
261 		struct drm_colorop *colorop = state->colorops[i].ptr;
262 
263 		if (!colorop)
264 			continue;
265 
266 		drm_colorop_atomic_destroy_state(colorop,
267 						 state->colorops[i].state);
268 		state->colorops[i].ptr = NULL;
269 		state->colorops[i].state = NULL;
270 		state->colorops[i].old_state = NULL;
271 		state->colorops[i].new_state = NULL;
272 	}
273 
274 	for (i = 0; i < state->num_private_objs; i++) {
275 		struct drm_private_obj *obj = state->private_objs[i].ptr;
276 
277 		obj->funcs->atomic_destroy_state(obj,
278 						 state->private_objs[i].state_to_destroy);
279 		state->private_objs[i].ptr = NULL;
280 		state->private_objs[i].state_to_destroy = NULL;
281 		state->private_objs[i].old_state = NULL;
282 		state->private_objs[i].new_state = NULL;
283 	}
284 	state->num_private_objs = 0;
285 
286 	if (state->fake_commit) {
287 		drm_crtc_commit_put(state->fake_commit);
288 		state->fake_commit = NULL;
289 	}
290 }
291 EXPORT_SYMBOL(drm_atomic_state_default_clear);
292 
293 /**
294  * drm_atomic_state_clear - clear state object
295  * @state: atomic state
296  *
297  * When the w/w mutex algorithm detects a deadlock we need to back off and drop
298  * all locks. So someone else could sneak in and change the current modeset
299  * configuration. Which means that all the state assembled in @state is no
300  * longer an atomic update to the current state, but to some arbitrary earlier
301  * state. Which could break assumptions the driver's
302  * &drm_mode_config_funcs.atomic_check likely relies on.
303  *
304  * Hence we must clear all cached state and completely start over, using this
305  * function.
306  */
307 void drm_atomic_state_clear(struct drm_atomic_state *state)
308 {
309 	struct drm_device *dev = state->dev;
310 	struct drm_mode_config *config = &dev->mode_config;
311 
312 	if (config->funcs->atomic_state_clear)
313 		config->funcs->atomic_state_clear(state);
314 	else
315 		drm_atomic_state_default_clear(state);
316 }
317 EXPORT_SYMBOL(drm_atomic_state_clear);
318 
319 /**
320  * __drm_atomic_state_free - free all memory for an atomic state
321  * @ref: This atomic state to deallocate
322  *
323  * This frees all memory associated with an atomic state, including all the
324  * per-object state for planes, CRTCs and connectors.
325  */
326 void __drm_atomic_state_free(struct kref *ref)
327 {
328 	struct drm_atomic_state *state = container_of(ref, typeof(*state), ref);
329 	struct drm_device *dev = state->dev;
330 	struct drm_mode_config *config = &dev->mode_config;
331 
332 	drm_atomic_state_clear(state);
333 
334 	drm_dbg_atomic(state->dev, "Freeing atomic state %p\n", state);
335 
336 	if (config->funcs->atomic_state_free) {
337 		config->funcs->atomic_state_free(state);
338 	} else {
339 		drm_atomic_state_default_release(state);
340 		kfree(state);
341 	}
342 
343 	drm_dev_put(dev);
344 }
345 EXPORT_SYMBOL(__drm_atomic_state_free);
346 
347 /**
348  * drm_atomic_get_crtc_state - get CRTC state
349  * @state: global atomic state object
350  * @crtc: CRTC to get state object for
351  *
352  * This function returns the CRTC state for the given CRTC, allocating it if
353  * needed. It will also grab the relevant CRTC lock to make sure that the state
354  * is consistent.
355  *
356  * WARNING: Drivers may only add new CRTC states to a @state if
357  * drm_atomic_state.allow_modeset is set, or if it's a driver-internal commit
358  * not created by userspace through an IOCTL call.
359  *
360  * Returns:
361  * Either the allocated state or the error code encoded into the pointer. When
362  * the error is EDEADLK then the w/w mutex code has detected a deadlock and the
363  * entire atomic sequence must be restarted. All other errors are fatal.
364  */
365 struct drm_crtc_state *
366 drm_atomic_get_crtc_state(struct drm_atomic_state *state,
367 			  struct drm_crtc *crtc)
368 {
369 	int ret, index = drm_crtc_index(crtc);
370 	struct drm_crtc_state *crtc_state;
371 
372 	WARN_ON(!state->acquire_ctx);
373 	drm_WARN_ON(state->dev, state->checked);
374 
375 	crtc_state = drm_atomic_get_new_crtc_state(state, crtc);
376 	if (crtc_state)
377 		return crtc_state;
378 
379 	ret = drm_modeset_lock(&crtc->mutex, state->acquire_ctx);
380 	if (ret)
381 		return ERR_PTR(ret);
382 
383 	crtc_state = crtc->funcs->atomic_duplicate_state(crtc);
384 	if (!crtc_state)
385 		return ERR_PTR(-ENOMEM);
386 
387 	state->crtcs[index].state_to_destroy = crtc_state;
388 	state->crtcs[index].old_state = crtc->state;
389 	state->crtcs[index].new_state = crtc_state;
390 	state->crtcs[index].ptr = crtc;
391 	crtc_state->state = state;
392 
393 	drm_dbg_atomic(state->dev, "Added [CRTC:%d:%s] %p state to %p\n",
394 		       crtc->base.id, crtc->name, crtc_state, state);
395 
396 	return crtc_state;
397 }
398 EXPORT_SYMBOL(drm_atomic_get_crtc_state);
399 
400 static int drm_atomic_crtc_check(const struct drm_crtc_state *old_crtc_state,
401 				 const struct drm_crtc_state *new_crtc_state)
402 {
403 	struct drm_crtc *crtc = new_crtc_state->crtc;
404 
405 	/* NOTE: we explicitly don't enforce constraints such as primary
406 	 * layer covering entire screen, since that is something we want
407 	 * to allow (on hw that supports it).  For hw that does not, it
408 	 * should be checked in driver's crtc->atomic_check() vfunc.
409 	 *
410 	 * TODO: Add generic modeset state checks once we support those.
411 	 */
412 
413 	if (new_crtc_state->active && !new_crtc_state->enable) {
414 		drm_dbg_atomic(crtc->dev,
415 			       "[CRTC:%d:%s] active without enabled\n",
416 			       crtc->base.id, crtc->name);
417 		return -EINVAL;
418 	}
419 
420 	/* The state->enable vs. state->mode_blob checks can be WARN_ON,
421 	 * as this is a kernel-internal detail that userspace should never
422 	 * be able to trigger.
423 	 */
424 	if (drm_core_check_feature(crtc->dev, DRIVER_ATOMIC) &&
425 	    WARN_ON(new_crtc_state->enable && !new_crtc_state->mode_blob)) {
426 		drm_dbg_atomic(crtc->dev,
427 			       "[CRTC:%d:%s] enabled without mode blob\n",
428 			       crtc->base.id, crtc->name);
429 		return -EINVAL;
430 	}
431 
432 	if (drm_core_check_feature(crtc->dev, DRIVER_ATOMIC) &&
433 	    WARN_ON(!new_crtc_state->enable && new_crtc_state->mode_blob)) {
434 		drm_dbg_atomic(crtc->dev,
435 			       "[CRTC:%d:%s] disabled with mode blob\n",
436 			       crtc->base.id, crtc->name);
437 		return -EINVAL;
438 	}
439 
440 	/*
441 	 * Reject event generation for when a CRTC is off and stays off.
442 	 * It wouldn't be hard to implement this, but userspace has a track
443 	 * record of happily burning through 100% cpu (or worse, crash) when the
444 	 * display pipe is suspended. To avoid all that fun just reject updates
445 	 * that ask for events since likely that indicates a bug in the
446 	 * compositor's drawing loop. This is consistent with the vblank IOCTL
447 	 * and legacy page_flip IOCTL which also reject service on a disabled
448 	 * pipe.
449 	 */
450 	if (new_crtc_state->event &&
451 	    !new_crtc_state->active && !old_crtc_state->active) {
452 		drm_dbg_atomic(crtc->dev,
453 			       "[CRTC:%d:%s] requesting event but off\n",
454 			       crtc->base.id, crtc->name);
455 		return -EINVAL;
456 	}
457 
458 	return 0;
459 }
460 
461 static void drm_atomic_crtc_print_state(struct drm_printer *p,
462 		const struct drm_crtc_state *state)
463 {
464 	struct drm_crtc *crtc = state->crtc;
465 
466 	drm_printf(p, "crtc[%u]: %s\n", crtc->base.id, crtc->name);
467 	drm_printf(p, "\tenable=%d\n", state->enable);
468 	drm_printf(p, "\tactive=%d\n", state->active);
469 	drm_printf(p, "\tself_refresh_active=%d\n", state->self_refresh_active);
470 	drm_printf(p, "\tplanes_changed=%d\n", state->planes_changed);
471 	drm_printf(p, "\tmode_changed=%d\n", state->mode_changed);
472 	drm_printf(p, "\tactive_changed=%d\n", state->active_changed);
473 	drm_printf(p, "\tconnectors_changed=%d\n", state->connectors_changed);
474 	drm_printf(p, "\tcolor_mgmt_changed=%d\n", state->color_mgmt_changed);
475 	drm_printf(p, "\tplane_mask=%x\n", state->plane_mask);
476 	drm_printf(p, "\tconnector_mask=%x\n", state->connector_mask);
477 	drm_printf(p, "\tencoder_mask=%x\n", state->encoder_mask);
478 	drm_printf(p, "\tmode: " DRM_MODE_FMT "\n", DRM_MODE_ARG(&state->mode));
479 
480 	if (crtc->funcs->atomic_print_state)
481 		crtc->funcs->atomic_print_state(p, state);
482 }
483 
484 static int drm_atomic_connector_check(struct drm_connector *connector,
485 		struct drm_connector_state *state)
486 {
487 	struct drm_crtc_state *crtc_state;
488 	struct drm_writeback_job *writeback_job = state->writeback_job;
489 	const struct drm_display_info *info = &connector->display_info;
490 
491 	state->max_bpc = info->bpc ? info->bpc : 8;
492 	if (connector->max_bpc_property)
493 		state->max_bpc = min(state->max_bpc, state->max_requested_bpc);
494 
495 	if ((connector->connector_type != DRM_MODE_CONNECTOR_WRITEBACK) || !writeback_job)
496 		return 0;
497 
498 	if (writeback_job->fb && !state->crtc) {
499 		drm_dbg_atomic(connector->dev,
500 			       "[CONNECTOR:%d:%s] framebuffer without CRTC\n",
501 			       connector->base.id, connector->name);
502 		return -EINVAL;
503 	}
504 
505 	if (state->crtc)
506 		crtc_state = drm_atomic_get_new_crtc_state(state->state,
507 							   state->crtc);
508 
509 	if (writeback_job->fb && !crtc_state->active) {
510 		drm_dbg_atomic(connector->dev,
511 			       "[CONNECTOR:%d:%s] has framebuffer, but [CRTC:%d] is off\n",
512 			       connector->base.id, connector->name,
513 			       state->crtc->base.id);
514 		return -EINVAL;
515 	}
516 
517 	if (!writeback_job->fb) {
518 		if (writeback_job->out_fence) {
519 			drm_dbg_atomic(connector->dev,
520 				       "[CONNECTOR:%d:%s] requesting out-fence without framebuffer\n",
521 				       connector->base.id, connector->name);
522 			return -EINVAL;
523 		}
524 
525 		drm_writeback_cleanup_job(writeback_job);
526 		state->writeback_job = NULL;
527 	}
528 
529 	return 0;
530 }
531 
532 /**
533  * drm_atomic_get_plane_state - get plane state
534  * @state: global atomic state object
535  * @plane: plane to get state object for
536  *
537  * This function returns the plane state for the given plane, allocating it if
538  * needed. It will also grab the relevant plane lock to make sure that the state
539  * is consistent.
540  *
541  * Returns:
542  * Either the allocated state or the error code encoded into the pointer. When
543  * the error is EDEADLK then the w/w mutex code has detected a deadlock and the
544  * entire atomic sequence must be restarted. All other errors are fatal.
545  */
546 struct drm_plane_state *
547 drm_atomic_get_plane_state(struct drm_atomic_state *state,
548 			  struct drm_plane *plane)
549 {
550 	int ret, index = drm_plane_index(plane);
551 	struct drm_plane_state *plane_state;
552 
553 	WARN_ON(!state->acquire_ctx);
554 	drm_WARN_ON(state->dev, state->checked);
555 
556 	/* the legacy pointers should never be set */
557 	WARN_ON(plane->fb);
558 	WARN_ON(plane->old_fb);
559 	WARN_ON(plane->crtc);
560 
561 	plane_state = drm_atomic_get_new_plane_state(state, plane);
562 	if (plane_state)
563 		return plane_state;
564 
565 	ret = drm_modeset_lock(&plane->mutex, state->acquire_ctx);
566 	if (ret)
567 		return ERR_PTR(ret);
568 
569 	plane_state = plane->funcs->atomic_duplicate_state(plane);
570 	if (!plane_state)
571 		return ERR_PTR(-ENOMEM);
572 
573 	state->planes[index].state_to_destroy = plane_state;
574 	state->planes[index].ptr = plane;
575 	state->planes[index].old_state = plane->state;
576 	state->planes[index].new_state = plane_state;
577 	plane_state->state = state;
578 
579 	drm_dbg_atomic(plane->dev, "Added [PLANE:%d:%s] %p state to %p\n",
580 		       plane->base.id, plane->name, plane_state, state);
581 
582 	if (plane_state->crtc) {
583 		struct drm_crtc_state *crtc_state;
584 
585 		crtc_state = drm_atomic_get_crtc_state(state,
586 						       plane_state->crtc);
587 		if (IS_ERR(crtc_state))
588 			return ERR_CAST(crtc_state);
589 	}
590 
591 	return plane_state;
592 }
593 EXPORT_SYMBOL(drm_atomic_get_plane_state);
594 
595 /**
596  * drm_atomic_get_colorop_state - get colorop state
597  * @state: global atomic state object
598  * @colorop: colorop to get state object for
599  *
600  * This function returns the colorop state for the given colorop, allocating it
601  * if needed. It will also grab the relevant plane lock to make sure that the
602  * state is consistent.
603  *
604  * Returns:
605  *
606  * Either the allocated state or the error code encoded into the pointer. When
607  * the error is EDEADLK then the w/w mutex code has detected a deadlock and the
608  * entire atomic sequence must be restarted. All other errors are fatal.
609  */
610 struct drm_colorop_state *
611 drm_atomic_get_colorop_state(struct drm_atomic_state *state,
612 			     struct drm_colorop *colorop)
613 {
614 	int ret, index = drm_colorop_index(colorop);
615 	struct drm_colorop_state *colorop_state;
616 
617 	WARN_ON(!state->acquire_ctx);
618 
619 	colorop_state = drm_atomic_get_new_colorop_state(state, colorop);
620 	if (colorop_state)
621 		return colorop_state;
622 
623 	ret = drm_modeset_lock(&colorop->plane->mutex, state->acquire_ctx);
624 	if (ret)
625 		return ERR_PTR(ret);
626 
627 	colorop_state = drm_atomic_helper_colorop_duplicate_state(colorop);
628 	if (!colorop_state)
629 		return ERR_PTR(-ENOMEM);
630 
631 	state->colorops[index].state = colorop_state;
632 	state->colorops[index].ptr = colorop;
633 	state->colorops[index].old_state = colorop->state;
634 	state->colorops[index].new_state = colorop_state;
635 	colorop_state->state = state;
636 
637 	drm_dbg_atomic(colorop->dev, "Added [COLOROP:%d:%d] %p state to %p\n",
638 		       colorop->base.id, colorop->type, colorop_state, state);
639 
640 	return colorop_state;
641 }
642 EXPORT_SYMBOL(drm_atomic_get_colorop_state);
643 
644 static bool
645 plane_switching_crtc(const struct drm_plane_state *old_plane_state,
646 		     const struct drm_plane_state *new_plane_state)
647 {
648 	if (!old_plane_state->crtc || !new_plane_state->crtc)
649 		return false;
650 
651 	if (old_plane_state->crtc == new_plane_state->crtc)
652 		return false;
653 
654 	/* This could be refined, but currently there's no helper or driver code
655 	 * to implement direct switching of active planes nor userspace to take
656 	 * advantage of more direct plane switching without the intermediate
657 	 * full OFF state.
658 	 */
659 	return true;
660 }
661 
662 /**
663  * drm_atomic_plane_check - check plane state
664  * @old_plane_state: old plane state to check
665  * @new_plane_state: new plane state to check
666  *
667  * Provides core sanity checks for plane state.
668  *
669  * RETURNS:
670  * Zero on success, error code on failure
671  */
672 static int drm_atomic_plane_check(const struct drm_plane_state *old_plane_state,
673 				  const struct drm_plane_state *new_plane_state)
674 {
675 	struct drm_plane *plane = new_plane_state->plane;
676 	struct drm_crtc *crtc = new_plane_state->crtc;
677 	const struct drm_framebuffer *fb = new_plane_state->fb;
678 	unsigned int fb_width, fb_height;
679 	struct drm_mode_rect *clips;
680 	uint32_t num_clips;
681 
682 	/* either *both* CRTC and FB must be set, or neither */
683 	if (crtc && !fb) {
684 		drm_dbg_atomic(plane->dev, "[PLANE:%d:%s] CRTC set but no FB\n",
685 			       plane->base.id, plane->name);
686 		return -EINVAL;
687 	} else if (fb && !crtc) {
688 		drm_dbg_atomic(plane->dev, "[PLANE:%d:%s] FB set but no CRTC\n",
689 			       plane->base.id, plane->name);
690 		return -EINVAL;
691 	}
692 
693 	/* if disabled, we don't care about the rest of the state: */
694 	if (!crtc)
695 		return 0;
696 
697 	/* Check whether this plane is usable on this CRTC */
698 	if (!(plane->possible_crtcs & drm_crtc_mask(crtc))) {
699 		drm_dbg_atomic(plane->dev,
700 			       "Invalid [CRTC:%d:%s] for [PLANE:%d:%s]\n",
701 			       crtc->base.id, crtc->name,
702 			       plane->base.id, plane->name);
703 		return -EINVAL;
704 	}
705 
706 	/* Check whether this plane supports the fb pixel format. */
707 	if (!drm_plane_has_format(plane, fb->format->format, fb->modifier)) {
708 		drm_dbg_atomic(plane->dev,
709 			       "[PLANE:%d:%s] invalid pixel format %p4cc, modifier 0x%llx\n",
710 			       plane->base.id, plane->name,
711 			       &fb->format->format, fb->modifier);
712 		return -EINVAL;
713 	}
714 
715 	/* Give drivers some help against integer overflows */
716 	if (new_plane_state->crtc_w > INT_MAX ||
717 	    new_plane_state->crtc_x > INT_MAX - (int32_t) new_plane_state->crtc_w ||
718 	    new_plane_state->crtc_h > INT_MAX ||
719 	    new_plane_state->crtc_y > INT_MAX - (int32_t) new_plane_state->crtc_h) {
720 		drm_dbg_atomic(plane->dev,
721 			       "[PLANE:%d:%s] invalid CRTC coordinates %ux%u+%d+%d\n",
722 			       plane->base.id, plane->name,
723 			       new_plane_state->crtc_w, new_plane_state->crtc_h,
724 			       new_plane_state->crtc_x, new_plane_state->crtc_y);
725 		return -ERANGE;
726 	}
727 
728 	fb_width = fb->width << 16;
729 	fb_height = fb->height << 16;
730 
731 	/* Make sure source coordinates are inside the fb. */
732 	if (new_plane_state->src_w > fb_width ||
733 	    new_plane_state->src_x > fb_width - new_plane_state->src_w ||
734 	    new_plane_state->src_h > fb_height ||
735 	    new_plane_state->src_y > fb_height - new_plane_state->src_h) {
736 		drm_dbg_atomic(plane->dev,
737 			       "[PLANE:%d:%s] invalid source coordinates "
738 			       "%u.%06ux%u.%06u+%u.%06u+%u.%06u (fb %ux%u)\n",
739 			       plane->base.id, plane->name,
740 			       new_plane_state->src_w >> 16,
741 			       ((new_plane_state->src_w & 0xffff) * 15625) >> 10,
742 			       new_plane_state->src_h >> 16,
743 			       ((new_plane_state->src_h & 0xffff) * 15625) >> 10,
744 			       new_plane_state->src_x >> 16,
745 			       ((new_plane_state->src_x & 0xffff) * 15625) >> 10,
746 			       new_plane_state->src_y >> 16,
747 			       ((new_plane_state->src_y & 0xffff) * 15625) >> 10,
748 			       fb->width, fb->height);
749 		return -ENOSPC;
750 	}
751 
752 	clips = __drm_plane_get_damage_clips(new_plane_state);
753 	num_clips = drm_plane_get_damage_clips_count(new_plane_state);
754 
755 	/* Make sure damage clips are valid and inside the fb. */
756 	while (num_clips > 0) {
757 		if (clips->x1 >= clips->x2 ||
758 		    clips->y1 >= clips->y2 ||
759 		    clips->x1 < 0 ||
760 		    clips->y1 < 0 ||
761 		    clips->x2 > fb_width ||
762 		    clips->y2 > fb_height) {
763 			drm_dbg_atomic(plane->dev,
764 				       "[PLANE:%d:%s] invalid damage clip %d %d %d %d\n",
765 				       plane->base.id, plane->name, clips->x1,
766 				       clips->y1, clips->x2, clips->y2);
767 			return -EINVAL;
768 		}
769 		clips++;
770 		num_clips--;
771 	}
772 
773 	if (plane_switching_crtc(old_plane_state, new_plane_state)) {
774 		drm_dbg_atomic(plane->dev,
775 			       "[PLANE:%d:%s] switching CRTC directly\n",
776 			       plane->base.id, plane->name);
777 		return -EINVAL;
778 	}
779 
780 	return 0;
781 }
782 
783 static void drm_atomic_colorop_print_state(struct drm_printer *p,
784 					   const struct drm_colorop_state *state)
785 {
786 	struct drm_colorop *colorop = state->colorop;
787 
788 	drm_printf(p, "colorop[%u]:\n", colorop->base.id);
789 	drm_printf(p, "\ttype=%s\n", drm_get_colorop_type_name(colorop->type));
790 	if (colorop->bypass_property)
791 		drm_printf(p, "\tbypass=%u\n", state->bypass);
792 
793 	switch (colorop->type) {
794 	case DRM_COLOROP_1D_CURVE:
795 		drm_printf(p, "\tcurve_1d_type=%s\n",
796 			   drm_get_colorop_curve_1d_type_name(state->curve_1d_type));
797 		break;
798 	case DRM_COLOROP_1D_LUT:
799 		drm_printf(p, "\tsize=%d\n", colorop->size);
800 		drm_printf(p, "\tinterpolation=%s\n",
801 			   drm_get_colorop_lut1d_interpolation_name(colorop->lut1d_interpolation));
802 		drm_printf(p, "\tdata blob id=%d\n", state->data ? state->data->base.id : 0);
803 		break;
804 	case DRM_COLOROP_CTM_3X4:
805 		drm_printf(p, "\tdata blob id=%d\n", state->data ? state->data->base.id : 0);
806 		break;
807 	case DRM_COLOROP_MULTIPLIER:
808 		drm_printf(p, "\tmultiplier=%llu\n", state->multiplier);
809 		break;
810 	case DRM_COLOROP_3D_LUT:
811 		drm_printf(p, "\tsize=%d\n", colorop->size);
812 		drm_printf(p, "\tinterpolation=%s\n",
813 			   drm_get_colorop_lut3d_interpolation_name(colorop->lut3d_interpolation));
814 		drm_printf(p, "\tdata blob id=%d\n", state->data ? state->data->base.id : 0);
815 		break;
816 	default:
817 		break;
818 	}
819 
820 	drm_printf(p, "\tnext=%d\n", colorop->next ? colorop->next->base.id : 0);
821 }
822 
823 static void drm_atomic_plane_print_state(struct drm_printer *p,
824 		const struct drm_plane_state *state)
825 {
826 	struct drm_plane *plane = state->plane;
827 	struct drm_rect src  = drm_plane_state_src(state);
828 	struct drm_rect dest = drm_plane_state_dest(state);
829 
830 	drm_printf(p, "plane[%u]: %s\n", plane->base.id, plane->name);
831 	drm_printf(p, "\tcrtc=%s\n", state->crtc ? state->crtc->name : "(null)");
832 	drm_printf(p, "\tfb=%u\n", state->fb ? state->fb->base.id : 0);
833 	if (state->fb)
834 		drm_framebuffer_print_info(p, 2, state->fb);
835 	drm_printf(p, "\tcrtc-pos=" DRM_RECT_FMT "\n", DRM_RECT_ARG(&dest));
836 	drm_printf(p, "\tsrc-pos=" DRM_RECT_FP_FMT "\n", DRM_RECT_FP_ARG(&src));
837 	drm_printf(p, "\trotation=%x\n", state->rotation);
838 	drm_printf(p, "\tnormalized-zpos=%x\n", state->normalized_zpos);
839 	drm_printf(p, "\tcolor-encoding=%s\n",
840 		   drm_get_color_encoding_name(state->color_encoding));
841 	drm_printf(p, "\tcolor-range=%s\n",
842 		   drm_get_color_range_name(state->color_range));
843 	drm_printf(p, "\tcolor_mgmt_changed=%d\n", state->color_mgmt_changed);
844 	drm_printf(p, "\tcolor-pipeline=%d\n",
845 		   state->color_pipeline ? state->color_pipeline->base.id : 0);
846 	if (plane->funcs->atomic_print_state)
847 		plane->funcs->atomic_print_state(p, state);
848 }
849 
850 /**
851  * DOC: handling driver private state
852  *
853  * Very often the DRM objects exposed to userspace in the atomic modeset api
854  * (&drm_connector, &drm_crtc and &drm_plane) do not map neatly to the
855  * underlying hardware. Especially for any kind of shared resources (e.g. shared
856  * clocks, scaler units, bandwidth and fifo limits shared among a group of
857  * planes or CRTCs, and so on) it makes sense to model these as independent
858  * objects. Drivers then need to do similar state tracking and commit ordering for
859  * such private (since not exposed to userspace) objects as the atomic core and
860  * helpers already provide for connectors, planes and CRTCs.
861  *
862  * To make this easier on drivers the atomic core provides some support to track
863  * driver private state objects using struct &drm_private_obj, with the
864  * associated state struct &drm_private_state.
865  *
866  * Similar to userspace-exposed objects, private state structures can be
867  * acquired by calling drm_atomic_get_private_obj_state(). This also takes care
868  * of locking, hence drivers should not have a need to call drm_modeset_lock()
869  * directly. Sequence of the actual hardware state commit is not handled,
870  * drivers might need to keep track of struct drm_crtc_commit within subclassed
871  * structure of &drm_private_state as necessary, e.g. similar to
872  * &drm_plane_state.commit. See also &drm_atomic_state.fake_commit.
873  *
874  * All private state structures contained in a &drm_atomic_state update can be
875  * iterated using for_each_oldnew_private_obj_in_state(),
876  * for_each_new_private_obj_in_state() and for_each_old_private_obj_in_state().
877  * Drivers are recommended to wrap these for each type of driver private state
878  * object they have, filtering on &drm_private_obj.funcs using for_each_if(), at
879  * least if they want to iterate over all objects of a given type.
880  *
881  * An earlier way to handle driver private state was by subclassing struct
882  * &drm_atomic_state. But since that encourages non-standard ways to implement
883  * the check/commit split atomic requires (by using e.g. "check and rollback or
884  * commit instead" of "duplicate state, check, then either commit or release
885  * duplicated state) it is deprecated in favour of using &drm_private_state.
886  */
887 
888 /**
889  * drm_atomic_private_obj_init - initialize private object
890  * @dev: DRM device this object will be attached to
891  * @obj: private object
892  * @state: initial private object state
893  * @funcs: pointer to the struct of function pointers that identify the object
894  * type
895  *
896  * Initialize the private object, which can be embedded into any
897  * driver private object that needs its own atomic state.
898  */
899 void
900 drm_atomic_private_obj_init(struct drm_device *dev,
901 			    struct drm_private_obj *obj,
902 			    struct drm_private_state *state,
903 			    const struct drm_private_state_funcs *funcs)
904 {
905 	memset(obj, 0, sizeof(*obj));
906 
907 	drm_modeset_lock_init(&obj->lock);
908 
909 	obj->dev = dev;
910 	obj->state = state;
911 	obj->funcs = funcs;
912 	list_add_tail(&obj->head, &dev->mode_config.privobj_list);
913 
914 	state->obj = obj;
915 }
916 EXPORT_SYMBOL(drm_atomic_private_obj_init);
917 
918 /**
919  * drm_atomic_private_obj_fini - finalize private object
920  * @obj: private object
921  *
922  * Finalize the private object.
923  */
924 void
925 drm_atomic_private_obj_fini(struct drm_private_obj *obj)
926 {
927 	list_del(&obj->head);
928 	obj->funcs->atomic_destroy_state(obj, obj->state);
929 	drm_modeset_lock_fini(&obj->lock);
930 }
931 EXPORT_SYMBOL(drm_atomic_private_obj_fini);
932 
933 /**
934  * drm_atomic_get_private_obj_state - get private object state
935  * @state: global atomic state
936  * @obj: private object to get the state for
937  *
938  * This function returns the private object state for the given private object,
939  * allocating the state if needed. It will also grab the relevant private
940  * object lock to make sure that the state is consistent.
941  *
942  * RETURNS:
943  * Either the allocated state or the error code encoded into a pointer.
944  */
945 struct drm_private_state *
946 drm_atomic_get_private_obj_state(struct drm_atomic_state *state,
947 				 struct drm_private_obj *obj)
948 {
949 	int index, num_objs, ret;
950 	size_t size;
951 	struct __drm_private_objs_state *arr;
952 	struct drm_private_state *obj_state;
953 
954 	WARN_ON(!state->acquire_ctx);
955 	drm_WARN_ON(state->dev, state->checked);
956 
957 	obj_state = drm_atomic_get_new_private_obj_state(state, obj);
958 	if (obj_state)
959 		return obj_state;
960 
961 	ret = drm_modeset_lock(&obj->lock, state->acquire_ctx);
962 	if (ret)
963 		return ERR_PTR(ret);
964 
965 	num_objs = state->num_private_objs + 1;
966 	size = sizeof(*state->private_objs) * num_objs;
967 	arr = krealloc(state->private_objs, size, GFP_KERNEL);
968 	if (!arr)
969 		return ERR_PTR(-ENOMEM);
970 
971 	state->private_objs = arr;
972 	index = state->num_private_objs;
973 	memset(&state->private_objs[index], 0, sizeof(*state->private_objs));
974 
975 	obj_state = obj->funcs->atomic_duplicate_state(obj);
976 	if (!obj_state)
977 		return ERR_PTR(-ENOMEM);
978 
979 	state->private_objs[index].state_to_destroy = obj_state;
980 	state->private_objs[index].old_state = obj->state;
981 	state->private_objs[index].new_state = obj_state;
982 	state->private_objs[index].ptr = obj;
983 	obj_state->state = state;
984 
985 	state->num_private_objs = num_objs;
986 
987 	drm_dbg_atomic(state->dev,
988 		       "Added new private object %p state %p to %p\n",
989 		       obj, obj_state, state);
990 
991 	return obj_state;
992 }
993 EXPORT_SYMBOL(drm_atomic_get_private_obj_state);
994 
995 /**
996  * drm_atomic_get_old_private_obj_state
997  * @state: global atomic state object
998  * @obj: private_obj to grab
999  *
1000  * This function returns the old private object state for the given private_obj,
1001  * or NULL if the private_obj is not part of the global atomic state.
1002  */
1003 struct drm_private_state *
1004 drm_atomic_get_old_private_obj_state(const struct drm_atomic_state *state,
1005 				     struct drm_private_obj *obj)
1006 {
1007 	int i;
1008 
1009 	for (i = 0; i < state->num_private_objs; i++)
1010 		if (obj == state->private_objs[i].ptr)
1011 			return state->private_objs[i].old_state;
1012 
1013 	return NULL;
1014 }
1015 EXPORT_SYMBOL(drm_atomic_get_old_private_obj_state);
1016 
1017 /**
1018  * drm_atomic_get_new_private_obj_state
1019  * @state: global atomic state object
1020  * @obj: private_obj to grab
1021  *
1022  * This function returns the new private object state for the given private_obj,
1023  * or NULL if the private_obj is not part of the global atomic state.
1024  */
1025 struct drm_private_state *
1026 drm_atomic_get_new_private_obj_state(const struct drm_atomic_state *state,
1027 				     struct drm_private_obj *obj)
1028 {
1029 	int i;
1030 
1031 	for (i = 0; i < state->num_private_objs; i++)
1032 		if (obj == state->private_objs[i].ptr)
1033 			return state->private_objs[i].new_state;
1034 
1035 	return NULL;
1036 }
1037 EXPORT_SYMBOL(drm_atomic_get_new_private_obj_state);
1038 
1039 /**
1040  * drm_atomic_get_old_connector_for_encoder - Get old connector for an encoder
1041  * @state: Atomic state
1042  * @encoder: The encoder to fetch the connector state for
1043  *
1044  * This function finds and returns the connector that was connected to @encoder
1045  * as specified by the @state.
1046  *
1047  * If there is no connector in @state which previously had @encoder connected to
1048  * it, this function will return NULL. While this may seem like an invalid use
1049  * case, it is sometimes useful to differentiate commits which had no prior
1050  * connectors attached to @encoder vs ones that did (and to inspect their
1051  * state). This is especially true in enable hooks because the pipeline has
1052  * changed.
1053  *
1054  * If you don't have access to the atomic state, see
1055  * drm_atomic_get_connector_for_encoder().
1056  *
1057  * Returns: The old connector connected to @encoder, or NULL if the encoder is
1058  * not connected.
1059  */
1060 struct drm_connector *
1061 drm_atomic_get_old_connector_for_encoder(const struct drm_atomic_state *state,
1062 					 struct drm_encoder *encoder)
1063 {
1064 	struct drm_connector_state *conn_state;
1065 	struct drm_connector *connector;
1066 	unsigned int i;
1067 
1068 	for_each_old_connector_in_state(state, connector, conn_state, i) {
1069 		if (conn_state->best_encoder == encoder)
1070 			return connector;
1071 	}
1072 
1073 	return NULL;
1074 }
1075 EXPORT_SYMBOL(drm_atomic_get_old_connector_for_encoder);
1076 
1077 /**
1078  * drm_atomic_get_new_connector_for_encoder - Get new connector for an encoder
1079  * @state: Atomic state
1080  * @encoder: The encoder to fetch the connector state for
1081  *
1082  * This function finds and returns the connector that will be connected to
1083  * @encoder as specified by the @state.
1084  *
1085  * If there is no connector in @state which will have @encoder connected to it,
1086  * this function will return NULL. While this may seem like an invalid use case,
1087  * it is sometimes useful to differentiate commits which have no connectors
1088  * attached to @encoder vs ones that do (and to inspect their state). This is
1089  * especially true in disable hooks because the pipeline will change.
1090  *
1091  * If you don't have access to the atomic state, see
1092  * drm_atomic_get_connector_for_encoder().
1093  *
1094  * Returns: The new connector connected to @encoder, or NULL if the encoder is
1095  * not connected.
1096  */
1097 struct drm_connector *
1098 drm_atomic_get_new_connector_for_encoder(const struct drm_atomic_state *state,
1099 					 struct drm_encoder *encoder)
1100 {
1101 	struct drm_connector_state *conn_state;
1102 	struct drm_connector *connector;
1103 	unsigned int i;
1104 
1105 	for_each_new_connector_in_state(state, connector, conn_state, i) {
1106 		if (conn_state->best_encoder == encoder)
1107 			return connector;
1108 	}
1109 
1110 	return NULL;
1111 }
1112 EXPORT_SYMBOL(drm_atomic_get_new_connector_for_encoder);
1113 
1114 /**
1115  * drm_atomic_get_connector_for_encoder - Get connector currently assigned to an encoder
1116  * @encoder: The encoder to find the connector of
1117  * @ctx: Modeset locking context
1118  *
1119  * This function finds and returns the connector currently assigned to
1120  * an @encoder.
1121  *
1122  * It is similar to the drm_atomic_get_old_connector_for_encoder() and
1123  * drm_atomic_get_new_connector_for_encoder() helpers, but doesn't
1124  * require access to the atomic state. If you have access to it, prefer
1125  * using these. This helper is typically useful in situations where you
1126  * don't have access to the atomic state, like detect, link repair,
1127  * threaded interrupt handlers, or hooks from other frameworks (ALSA,
1128  * CEC, etc.).
1129  *
1130  * Returns:
1131  * The connector connected to @encoder, or an error pointer otherwise.
1132  * When the error is EDEADLK, a deadlock has been detected and the
1133  * sequence must be restarted.
1134  */
1135 struct drm_connector *
1136 drm_atomic_get_connector_for_encoder(const struct drm_encoder *encoder,
1137 				     struct drm_modeset_acquire_ctx *ctx)
1138 {
1139 	struct drm_connector_list_iter conn_iter;
1140 	struct drm_connector *out_connector = ERR_PTR(-EINVAL);
1141 	struct drm_connector *connector;
1142 	struct drm_device *dev = encoder->dev;
1143 	int ret;
1144 
1145 	ret = drm_modeset_lock(&dev->mode_config.connection_mutex, ctx);
1146 	if (ret)
1147 		return ERR_PTR(ret);
1148 
1149 	drm_connector_list_iter_begin(dev, &conn_iter);
1150 	drm_for_each_connector_iter(connector, &conn_iter) {
1151 		if (!connector->state)
1152 			continue;
1153 
1154 		if (encoder == connector->state->best_encoder) {
1155 			out_connector = connector;
1156 			break;
1157 		}
1158 	}
1159 	drm_connector_list_iter_end(&conn_iter);
1160 	drm_modeset_unlock(&dev->mode_config.connection_mutex);
1161 
1162 	return out_connector;
1163 }
1164 EXPORT_SYMBOL(drm_atomic_get_connector_for_encoder);
1165 
1166 
1167 /**
1168  * drm_atomic_get_old_crtc_for_encoder - Get old crtc for an encoder
1169  * @state: Atomic state
1170  * @encoder: The encoder to fetch the crtc state for
1171  *
1172  * This function finds and returns the crtc that was connected to @encoder
1173  * as specified by the @state.
1174  *
1175  * Returns: The old crtc connected to @encoder, or NULL if the encoder is
1176  * not connected.
1177  */
1178 struct drm_crtc *
1179 drm_atomic_get_old_crtc_for_encoder(struct drm_atomic_state *state,
1180 				    struct drm_encoder *encoder)
1181 {
1182 	struct drm_connector *connector;
1183 	struct drm_connector_state *conn_state;
1184 
1185 	connector = drm_atomic_get_old_connector_for_encoder(state, encoder);
1186 	if (!connector)
1187 		return NULL;
1188 
1189 	conn_state = drm_atomic_get_old_connector_state(state, connector);
1190 	if (!conn_state)
1191 		return NULL;
1192 
1193 	return conn_state->crtc;
1194 }
1195 EXPORT_SYMBOL(drm_atomic_get_old_crtc_for_encoder);
1196 
1197 /**
1198  * drm_atomic_get_new_crtc_for_encoder - Get new crtc for an encoder
1199  * @state: Atomic state
1200  * @encoder: The encoder to fetch the crtc state for
1201  *
1202  * This function finds and returns the crtc that will be connected to @encoder
1203  * as specified by the @state.
1204  *
1205  * Returns: The new crtc connected to @encoder, or NULL if the encoder is
1206  * not connected.
1207  */
1208 struct drm_crtc *
1209 drm_atomic_get_new_crtc_for_encoder(struct drm_atomic_state *state,
1210 				    struct drm_encoder *encoder)
1211 {
1212 	struct drm_connector *connector;
1213 	struct drm_connector_state *conn_state;
1214 
1215 	connector = drm_atomic_get_new_connector_for_encoder(state, encoder);
1216 	if (!connector)
1217 		return NULL;
1218 
1219 	conn_state = drm_atomic_get_new_connector_state(state, connector);
1220 	if (!conn_state)
1221 		return NULL;
1222 
1223 	return conn_state->crtc;
1224 }
1225 EXPORT_SYMBOL(drm_atomic_get_new_crtc_for_encoder);
1226 
1227 /**
1228  * drm_atomic_get_connector_state - get connector state
1229  * @state: global atomic state object
1230  * @connector: connector to get state object for
1231  *
1232  * This function returns the connector state for the given connector,
1233  * allocating it if needed. It will also grab the relevant connector lock to
1234  * make sure that the state is consistent.
1235  *
1236  * Returns:
1237  * Either the allocated state or the error code encoded into the pointer. When
1238  * the error is EDEADLK then the w/w mutex code has detected a deadlock and the
1239  * entire atomic sequence must be restarted. All other errors are fatal.
1240  */
1241 struct drm_connector_state *
1242 drm_atomic_get_connector_state(struct drm_atomic_state *state,
1243 			  struct drm_connector *connector)
1244 {
1245 	int ret, index;
1246 	struct drm_mode_config *config = &connector->dev->mode_config;
1247 	struct drm_connector_state *connector_state;
1248 
1249 	WARN_ON(!state->acquire_ctx);
1250 	drm_WARN_ON(state->dev, state->checked);
1251 
1252 	ret = drm_modeset_lock(&config->connection_mutex, state->acquire_ctx);
1253 	if (ret)
1254 		return ERR_PTR(ret);
1255 
1256 	index = drm_connector_index(connector);
1257 
1258 	if (index >= state->num_connector) {
1259 		struct __drm_connnectors_state *c;
1260 		int alloc = max(index + 1, config->num_connector);
1261 
1262 		c = krealloc_array(state->connectors, alloc,
1263 				   sizeof(*state->connectors), GFP_KERNEL);
1264 		if (!c)
1265 			return ERR_PTR(-ENOMEM);
1266 
1267 		state->connectors = c;
1268 		memset(&state->connectors[state->num_connector], 0,
1269 		       sizeof(*state->connectors) * (alloc - state->num_connector));
1270 
1271 		state->num_connector = alloc;
1272 	}
1273 
1274 	connector_state = drm_atomic_get_new_connector_state(state, connector);
1275 	if (connector_state)
1276 		return connector_state;
1277 
1278 	connector_state = connector->funcs->atomic_duplicate_state(connector);
1279 	if (!connector_state)
1280 		return ERR_PTR(-ENOMEM);
1281 
1282 	drm_connector_get(connector);
1283 	state->connectors[index].state_to_destroy = connector_state;
1284 	state->connectors[index].old_state = connector->state;
1285 	state->connectors[index].new_state = connector_state;
1286 	state->connectors[index].ptr = connector;
1287 	connector_state->state = state;
1288 
1289 	drm_dbg_atomic(connector->dev, "Added [CONNECTOR:%d:%s] %p state to %p\n",
1290 			 connector->base.id, connector->name,
1291 			 connector_state, state);
1292 
1293 	if (connector_state->crtc) {
1294 		struct drm_crtc_state *crtc_state;
1295 
1296 		crtc_state = drm_atomic_get_crtc_state(state,
1297 						       connector_state->crtc);
1298 		if (IS_ERR(crtc_state))
1299 			return ERR_CAST(crtc_state);
1300 	}
1301 
1302 	return connector_state;
1303 }
1304 EXPORT_SYMBOL(drm_atomic_get_connector_state);
1305 
1306 static void drm_atomic_connector_print_state(struct drm_printer *p,
1307 		const struct drm_connector_state *state)
1308 {
1309 	struct drm_connector *connector = state->connector;
1310 
1311 	drm_printf(p, "connector[%u]: %s\n", connector->base.id, connector->name);
1312 	drm_printf(p, "\tcrtc=%s\n", state->crtc ? state->crtc->name : "(null)");
1313 	drm_printf(p, "\tself_refresh_aware=%d\n", state->self_refresh_aware);
1314 	drm_printf(p, "\tinterlace_allowed=%d\n", connector->interlace_allowed);
1315 	drm_printf(p, "\tycbcr_420_allowed=%d\n", connector->ycbcr_420_allowed);
1316 	drm_printf(p, "\tmax_requested_bpc=%d\n", state->max_requested_bpc);
1317 	drm_printf(p, "\tcolorspace=%s\n", drm_get_colorspace_name(state->colorspace));
1318 
1319 	if (connector->connector_type == DRM_MODE_CONNECTOR_HDMIA ||
1320 	    connector->connector_type == DRM_MODE_CONNECTOR_HDMIB) {
1321 		drm_printf(p, "\tbroadcast_rgb=%s\n",
1322 			   drm_hdmi_connector_get_broadcast_rgb_name(state->hdmi.broadcast_rgb));
1323 		drm_printf(p, "\tis_limited_range=%c\n", state->hdmi.is_limited_range ? 'y' : 'n');
1324 		drm_printf(p, "\toutput_bpc=%u\n", state->hdmi.output_bpc);
1325 		drm_printf(p, "\toutput_format=%s\n",
1326 			   drm_hdmi_connector_get_output_format_name(state->hdmi.output_format));
1327 		drm_printf(p, "\ttmds_char_rate=%llu\n", state->hdmi.tmds_char_rate);
1328 	}
1329 
1330 	if (connector->connector_type == DRM_MODE_CONNECTOR_WRITEBACK)
1331 		if (state->writeback_job && state->writeback_job->fb)
1332 			drm_printf(p, "\tfb=%d\n", state->writeback_job->fb->base.id);
1333 
1334 	if (connector->funcs->atomic_print_state)
1335 		connector->funcs->atomic_print_state(p, state);
1336 }
1337 
1338 /**
1339  * drm_atomic_get_bridge_state - get bridge state
1340  * @state: global atomic state object
1341  * @bridge: bridge to get state object for
1342  *
1343  * This function returns the bridge state for the given bridge, allocating it
1344  * if needed. It will also grab the relevant bridge lock to make sure that the
1345  * state is consistent.
1346  *
1347  * Returns:
1348  * Either the allocated state or the error code encoded into the pointer. When
1349  * the error is EDEADLK then the w/w mutex code has detected a deadlock and the
1350  * entire atomic sequence must be restarted.
1351  */
1352 struct drm_bridge_state *
1353 drm_atomic_get_bridge_state(struct drm_atomic_state *state,
1354 			    struct drm_bridge *bridge)
1355 {
1356 	struct drm_private_state *obj_state;
1357 
1358 	obj_state = drm_atomic_get_private_obj_state(state, &bridge->base);
1359 	if (IS_ERR(obj_state))
1360 		return ERR_CAST(obj_state);
1361 
1362 	return drm_priv_to_bridge_state(obj_state);
1363 }
1364 EXPORT_SYMBOL(drm_atomic_get_bridge_state);
1365 
1366 /**
1367  * drm_atomic_get_old_bridge_state - get old bridge state, if it exists
1368  * @state: global atomic state object
1369  * @bridge: bridge to grab
1370  *
1371  * This function returns the old bridge state for the given bridge, or NULL if
1372  * the bridge is not part of the global atomic state.
1373  */
1374 struct drm_bridge_state *
1375 drm_atomic_get_old_bridge_state(const struct drm_atomic_state *state,
1376 				struct drm_bridge *bridge)
1377 {
1378 	struct drm_private_state *obj_state;
1379 
1380 	obj_state = drm_atomic_get_old_private_obj_state(state, &bridge->base);
1381 	if (!obj_state)
1382 		return NULL;
1383 
1384 	return drm_priv_to_bridge_state(obj_state);
1385 }
1386 EXPORT_SYMBOL(drm_atomic_get_old_bridge_state);
1387 
1388 /**
1389  * drm_atomic_get_new_bridge_state - get new bridge state, if it exists
1390  * @state: global atomic state object
1391  * @bridge: bridge to grab
1392  *
1393  * This function returns the new bridge state for the given bridge, or NULL if
1394  * the bridge is not part of the global atomic state.
1395  */
1396 struct drm_bridge_state *
1397 drm_atomic_get_new_bridge_state(const struct drm_atomic_state *state,
1398 				struct drm_bridge *bridge)
1399 {
1400 	struct drm_private_state *obj_state;
1401 
1402 	obj_state = drm_atomic_get_new_private_obj_state(state, &bridge->base);
1403 	if (!obj_state)
1404 		return NULL;
1405 
1406 	return drm_priv_to_bridge_state(obj_state);
1407 }
1408 EXPORT_SYMBOL(drm_atomic_get_new_bridge_state);
1409 
1410 /**
1411  * drm_atomic_add_encoder_bridges - add bridges attached to an encoder
1412  * @state: atomic state
1413  * @encoder: DRM encoder
1414  *
1415  * This function adds all bridges attached to @encoder. This is needed to add
1416  * bridge states to @state and make them available when
1417  * &drm_bridge_funcs.atomic_check(), &drm_bridge_funcs.atomic_pre_enable(),
1418  * &drm_bridge_funcs.atomic_enable(),
1419  * &drm_bridge_funcs.atomic_disable_post_disable() are called.
1420  *
1421  * Returns:
1422  * 0 on success or can fail with -EDEADLK or -ENOMEM. When the error is EDEADLK
1423  * then the w/w mutex code has detected a deadlock and the entire atomic
1424  * sequence must be restarted. All other errors are fatal.
1425  */
1426 int
1427 drm_atomic_add_encoder_bridges(struct drm_atomic_state *state,
1428 			       struct drm_encoder *encoder)
1429 {
1430 	struct drm_bridge_state *bridge_state;
1431 
1432 	if (!encoder)
1433 		return 0;
1434 
1435 	drm_dbg_atomic(encoder->dev,
1436 		       "Adding all bridges for [encoder:%d:%s] to %p\n",
1437 		       encoder->base.id, encoder->name, state);
1438 
1439 	drm_for_each_bridge_in_chain_scoped(encoder, bridge) {
1440 		/* Skip bridges that don't implement the atomic state hooks. */
1441 		if (!bridge->funcs->atomic_duplicate_state)
1442 			continue;
1443 
1444 		bridge_state = drm_atomic_get_bridge_state(state, bridge);
1445 		if (IS_ERR(bridge_state))
1446 			return PTR_ERR(bridge_state);
1447 	}
1448 
1449 	return 0;
1450 }
1451 EXPORT_SYMBOL(drm_atomic_add_encoder_bridges);
1452 
1453 /**
1454  * drm_atomic_add_affected_connectors - add connectors for CRTC
1455  * @state: atomic state
1456  * @crtc: DRM CRTC
1457  *
1458  * This function walks the current configuration and adds all connectors
1459  * currently using @crtc to the atomic configuration @state. Note that this
1460  * function must acquire the connection mutex. This can potentially cause
1461  * unneeded serialization if the update is just for the planes on one CRTC. Hence
1462  * drivers and helpers should only call this when really needed (e.g. when a
1463  * full modeset needs to happen due to some change).
1464  *
1465  * Returns:
1466  * 0 on success or can fail with -EDEADLK or -ENOMEM. When the error is EDEADLK
1467  * then the w/w mutex code has detected a deadlock and the entire atomic
1468  * sequence must be restarted. All other errors are fatal.
1469  */
1470 int
1471 drm_atomic_add_affected_connectors(struct drm_atomic_state *state,
1472 				   struct drm_crtc *crtc)
1473 {
1474 	struct drm_mode_config *config = &state->dev->mode_config;
1475 	struct drm_connector *connector;
1476 	struct drm_connector_state *conn_state;
1477 	struct drm_connector_list_iter conn_iter;
1478 	struct drm_crtc_state *crtc_state;
1479 	int ret;
1480 
1481 	crtc_state = drm_atomic_get_crtc_state(state, crtc);
1482 	if (IS_ERR(crtc_state))
1483 		return PTR_ERR(crtc_state);
1484 
1485 	ret = drm_modeset_lock(&config->connection_mutex, state->acquire_ctx);
1486 	if (ret)
1487 		return ret;
1488 
1489 	drm_dbg_atomic(crtc->dev,
1490 		       "Adding all current connectors for [CRTC:%d:%s] to %p\n",
1491 		       crtc->base.id, crtc->name, state);
1492 
1493 	/*
1494 	 * Changed connectors are already in @state, so only need to look
1495 	 * at the connector_mask in crtc_state.
1496 	 */
1497 	drm_connector_list_iter_begin(state->dev, &conn_iter);
1498 	drm_for_each_connector_iter(connector, &conn_iter) {
1499 		if (!(crtc_state->connector_mask & drm_connector_mask(connector)))
1500 			continue;
1501 
1502 		conn_state = drm_atomic_get_connector_state(state, connector);
1503 		if (IS_ERR(conn_state)) {
1504 			drm_connector_list_iter_end(&conn_iter);
1505 			return PTR_ERR(conn_state);
1506 		}
1507 	}
1508 	drm_connector_list_iter_end(&conn_iter);
1509 
1510 	return 0;
1511 }
1512 EXPORT_SYMBOL(drm_atomic_add_affected_connectors);
1513 
1514 /**
1515  * drm_atomic_add_affected_planes - add planes for CRTC
1516  * @state: atomic state
1517  * @crtc: DRM CRTC
1518  *
1519  * This function walks the current configuration and adds all planes
1520  * currently used by @crtc to the atomic configuration @state. This is useful
1521  * when an atomic commit also needs to check all currently enabled plane on
1522  * @crtc, e.g. when changing the mode. It's also useful when re-enabling a CRTC
1523  * to avoid special code to force-enable all planes.
1524  *
1525  * Since acquiring a plane state will always also acquire the w/w mutex of the
1526  * current CRTC for that plane (if there is any) adding all the plane states for
1527  * a CRTC will not reduce parallelism of atomic updates.
1528  *
1529  * Returns:
1530  * 0 on success or can fail with -EDEADLK or -ENOMEM. When the error is EDEADLK
1531  * then the w/w mutex code has detected a deadlock and the entire atomic
1532  * sequence must be restarted. All other errors are fatal.
1533  */
1534 int
1535 drm_atomic_add_affected_planes(struct drm_atomic_state *state,
1536 			       struct drm_crtc *crtc)
1537 {
1538 	const struct drm_crtc_state *old_crtc_state =
1539 		drm_atomic_get_old_crtc_state(state, crtc);
1540 	struct drm_plane *plane;
1541 
1542 	WARN_ON(!drm_atomic_get_new_crtc_state(state, crtc));
1543 
1544 	drm_dbg_atomic(crtc->dev,
1545 		       "Adding all current planes for [CRTC:%d:%s] to %p\n",
1546 		       crtc->base.id, crtc->name, state);
1547 
1548 	drm_for_each_plane_mask(plane, state->dev, old_crtc_state->plane_mask) {
1549 		struct drm_plane_state *plane_state =
1550 			drm_atomic_get_plane_state(state, plane);
1551 
1552 		if (IS_ERR(plane_state))
1553 			return PTR_ERR(plane_state);
1554 	}
1555 	return 0;
1556 }
1557 EXPORT_SYMBOL(drm_atomic_add_affected_planes);
1558 
1559 /**
1560  * drm_atomic_add_affected_colorops - add colorops for plane
1561  * @state: atomic state
1562  * @plane: DRM plane
1563  *
1564  * This function walks the current configuration and adds all colorops
1565  * currently used by @plane to the atomic configuration @state. This is useful
1566  * when an atomic commit also needs to check all currently enabled colorop on
1567  * @plane, e.g. when changing the mode. It's also useful when re-enabling a plane
1568  * to avoid special code to force-enable all colorops.
1569  *
1570  * Since acquiring a colorop state will always also acquire the w/w mutex of the
1571  * current plane for that colorop (if there is any) adding all the colorop states for
1572  * a plane will not reduce parallelism of atomic updates.
1573  *
1574  * Returns:
1575  * 0 on success or can fail with -EDEADLK or -ENOMEM. When the error is EDEADLK
1576  * then the w/w mutex code has detected a deadlock and the entire atomic
1577  * sequence must be restarted. All other errors are fatal.
1578  */
1579 int
1580 drm_atomic_add_affected_colorops(struct drm_atomic_state *state,
1581 				 struct drm_plane *plane)
1582 {
1583 	struct drm_colorop *colorop;
1584 	struct drm_colorop_state *colorop_state;
1585 
1586 	WARN_ON(!drm_atomic_get_new_plane_state(state, plane));
1587 
1588 	drm_dbg_atomic(plane->dev,
1589 		       "Adding all current colorops for [PLANE:%d:%s] to %p\n",
1590 		       plane->base.id, plane->name, state);
1591 
1592 	drm_for_each_colorop(colorop, plane->dev) {
1593 		if (colorop->plane != plane)
1594 			continue;
1595 
1596 		colorop_state = drm_atomic_get_colorop_state(state, colorop);
1597 		if (IS_ERR(colorop_state))
1598 			return PTR_ERR(colorop_state);
1599 	}
1600 
1601 	return 0;
1602 }
1603 EXPORT_SYMBOL(drm_atomic_add_affected_colorops);
1604 
1605 /**
1606  * drm_atomic_check_only - check whether a given config would work
1607  * @state: atomic configuration to check
1608  *
1609  * Note that this function can return -EDEADLK if the driver needed to acquire
1610  * more locks but encountered a deadlock. The caller must then do the usual w/w
1611  * backoff dance and restart. All other errors are fatal.
1612  *
1613  * Returns:
1614  * 0 on success, negative error code on failure.
1615  */
1616 int drm_atomic_check_only(struct drm_atomic_state *state)
1617 {
1618 	struct drm_device *dev = state->dev;
1619 	struct drm_mode_config *config = &dev->mode_config;
1620 	struct drm_plane *plane;
1621 	struct drm_plane_state *old_plane_state;
1622 	struct drm_plane_state *new_plane_state;
1623 	struct drm_crtc *crtc;
1624 	struct drm_crtc_state *old_crtc_state;
1625 	struct drm_crtc_state *new_crtc_state;
1626 	struct drm_connector *conn;
1627 	struct drm_connector_state *conn_state;
1628 	unsigned int requested_crtc = 0;
1629 	unsigned int affected_crtc = 0;
1630 	int i, ret = 0;
1631 
1632 	drm_dbg_atomic(dev, "checking %p\n", state);
1633 
1634 	for_each_new_crtc_in_state(state, crtc, new_crtc_state, i) {
1635 		if (new_crtc_state->enable)
1636 			requested_crtc |= drm_crtc_mask(crtc);
1637 	}
1638 
1639 	for_each_oldnew_plane_in_state(state, plane, old_plane_state, new_plane_state, i) {
1640 		ret = drm_atomic_plane_check(old_plane_state, new_plane_state);
1641 		if (ret) {
1642 			drm_dbg_atomic(dev, "[PLANE:%d:%s] atomic core check failed\n",
1643 				       plane->base.id, plane->name);
1644 			return ret;
1645 		}
1646 	}
1647 
1648 	for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state, new_crtc_state, i) {
1649 		ret = drm_atomic_crtc_check(old_crtc_state, new_crtc_state);
1650 		if (ret) {
1651 			drm_dbg_atomic(dev, "[CRTC:%d:%s] atomic core check failed\n",
1652 				       crtc->base.id, crtc->name);
1653 			return ret;
1654 		}
1655 	}
1656 
1657 	for_each_new_connector_in_state(state, conn, conn_state, i) {
1658 		ret = drm_atomic_connector_check(conn, conn_state);
1659 		if (ret) {
1660 			drm_dbg_atomic(dev, "[CONNECTOR:%d:%s] atomic core check failed\n",
1661 				       conn->base.id, conn->name);
1662 			return ret;
1663 		}
1664 	}
1665 
1666 	if (config->funcs->atomic_check) {
1667 		ret = config->funcs->atomic_check(state->dev, state);
1668 
1669 		if (ret) {
1670 			drm_dbg_atomic(dev, "atomic driver check for %p failed: %d\n",
1671 				       state, ret);
1672 			return ret;
1673 		}
1674 	}
1675 
1676 	if (!state->allow_modeset) {
1677 		for_each_new_crtc_in_state(state, crtc, new_crtc_state, i) {
1678 			if (drm_atomic_crtc_needs_modeset(new_crtc_state)) {
1679 				drm_dbg_atomic(dev, "[CRTC:%d:%s] requires full modeset\n",
1680 					       crtc->base.id, crtc->name);
1681 				return -EINVAL;
1682 			}
1683 		}
1684 	}
1685 
1686 	for_each_new_crtc_in_state(state, crtc, new_crtc_state, i) {
1687 		if (new_crtc_state->enable)
1688 			affected_crtc |= drm_crtc_mask(crtc);
1689 	}
1690 
1691 	/*
1692 	 * For commits that allow modesets drivers can add other CRTCs to the
1693 	 * atomic commit, e.g. when they need to reallocate global resources.
1694 	 * This can cause spurious EBUSY, which robs compositors of a very
1695 	 * effective sanity check for their drawing loop. Therefor only allow
1696 	 * drivers to add unrelated CRTC states for modeset commits.
1697 	 *
1698 	 * FIXME: Should add affected_crtc mask to the ATOMIC IOCTL as an output
1699 	 * so compositors know what's going on.
1700 	 */
1701 	if (affected_crtc != requested_crtc) {
1702 		drm_dbg_atomic(dev,
1703 			       "driver added CRTC to commit: requested 0x%x, affected 0x%0x\n",
1704 			       requested_crtc, affected_crtc);
1705 		WARN(!state->allow_modeset, "adding CRTC not allowed without modesets: requested 0x%x, affected 0x%0x\n",
1706 		     requested_crtc, affected_crtc);
1707 	}
1708 
1709 	state->checked = true;
1710 
1711 	return 0;
1712 }
1713 EXPORT_SYMBOL(drm_atomic_check_only);
1714 
1715 /**
1716  * drm_atomic_commit - commit configuration atomically
1717  * @state: atomic configuration to check
1718  *
1719  * Note that this function can return -EDEADLK if the driver needed to acquire
1720  * more locks but encountered a deadlock. The caller must then do the usual w/w
1721  * backoff dance and restart. All other errors are fatal.
1722  *
1723  * This function will take its own reference on @state.
1724  * Callers should always release their reference with drm_atomic_state_put().
1725  *
1726  * Returns:
1727  * 0 on success, negative error code on failure.
1728  */
1729 int drm_atomic_commit(struct drm_atomic_state *state)
1730 {
1731 	struct drm_mode_config *config = &state->dev->mode_config;
1732 	struct drm_printer p = drm_info_printer(state->dev->dev);
1733 	int ret;
1734 
1735 	if (drm_debug_enabled(DRM_UT_STATE))
1736 		drm_atomic_print_new_state(state, &p);
1737 
1738 	ret = drm_atomic_check_only(state);
1739 	if (ret)
1740 		return ret;
1741 
1742 	drm_dbg_atomic(state->dev, "committing %p\n", state);
1743 
1744 	return config->funcs->atomic_commit(state->dev, state, false);
1745 }
1746 EXPORT_SYMBOL(drm_atomic_commit);
1747 
1748 /**
1749  * drm_atomic_nonblocking_commit - atomic nonblocking commit
1750  * @state: atomic configuration to check
1751  *
1752  * Note that this function can return -EDEADLK if the driver needed to acquire
1753  * more locks but encountered a deadlock. The caller must then do the usual w/w
1754  * backoff dance and restart. All other errors are fatal.
1755  *
1756  * This function will take its own reference on @state.
1757  * Callers should always release their reference with drm_atomic_state_put().
1758  *
1759  * Returns:
1760  * 0 on success, negative error code on failure.
1761  */
1762 int drm_atomic_nonblocking_commit(struct drm_atomic_state *state)
1763 {
1764 	struct drm_mode_config *config = &state->dev->mode_config;
1765 	int ret;
1766 
1767 	ret = drm_atomic_check_only(state);
1768 	if (ret)
1769 		return ret;
1770 
1771 	drm_dbg_atomic(state->dev, "committing %p nonblocking\n", state);
1772 
1773 	return config->funcs->atomic_commit(state->dev, state, true);
1774 }
1775 EXPORT_SYMBOL(drm_atomic_nonblocking_commit);
1776 
1777 /* just used from drm-client and atomic-helper: */
1778 int __drm_atomic_helper_disable_plane(struct drm_plane *plane,
1779 				      struct drm_plane_state *plane_state)
1780 {
1781 	int ret;
1782 
1783 	ret = drm_atomic_set_crtc_for_plane(plane_state, NULL);
1784 	if (ret != 0)
1785 		return ret;
1786 
1787 	drm_atomic_set_fb_for_plane(plane_state, NULL);
1788 	plane_state->crtc_x = 0;
1789 	plane_state->crtc_y = 0;
1790 	plane_state->crtc_w = 0;
1791 	plane_state->crtc_h = 0;
1792 	plane_state->src_x = 0;
1793 	plane_state->src_y = 0;
1794 	plane_state->src_w = 0;
1795 	plane_state->src_h = 0;
1796 
1797 	return 0;
1798 }
1799 EXPORT_SYMBOL(__drm_atomic_helper_disable_plane);
1800 
1801 static int update_output_state(struct drm_atomic_state *state,
1802 			       struct drm_mode_set *set)
1803 {
1804 	struct drm_device *dev = set->crtc->dev;
1805 	struct drm_crtc *crtc;
1806 	struct drm_crtc_state *new_crtc_state;
1807 	struct drm_connector *connector;
1808 	struct drm_connector_state *new_conn_state;
1809 	int ret, i;
1810 
1811 	ret = drm_modeset_lock(&dev->mode_config.connection_mutex,
1812 			       state->acquire_ctx);
1813 	if (ret)
1814 		return ret;
1815 
1816 	/* First disable all connectors on the target crtc. */
1817 	ret = drm_atomic_add_affected_connectors(state, set->crtc);
1818 	if (ret)
1819 		return ret;
1820 
1821 	for_each_new_connector_in_state(state, connector, new_conn_state, i) {
1822 		if (new_conn_state->crtc == set->crtc) {
1823 			ret = drm_atomic_set_crtc_for_connector(new_conn_state,
1824 								NULL);
1825 			if (ret)
1826 				return ret;
1827 
1828 			/* Make sure legacy setCrtc always re-trains */
1829 			new_conn_state->link_status = DRM_LINK_STATUS_GOOD;
1830 		}
1831 	}
1832 
1833 	/* Then set all connectors from set->connectors on the target crtc */
1834 	for (i = 0; i < set->num_connectors; i++) {
1835 		new_conn_state = drm_atomic_get_connector_state(state,
1836 								set->connectors[i]);
1837 		if (IS_ERR(new_conn_state))
1838 			return PTR_ERR(new_conn_state);
1839 
1840 		ret = drm_atomic_set_crtc_for_connector(new_conn_state,
1841 							set->crtc);
1842 		if (ret)
1843 			return ret;
1844 	}
1845 
1846 	for_each_new_crtc_in_state(state, crtc, new_crtc_state, i) {
1847 		/*
1848 		 * Don't update ->enable for the CRTC in the set_config request,
1849 		 * since a mismatch would indicate a bug in the upper layers.
1850 		 * The actual modeset code later on will catch any
1851 		 * inconsistencies here.
1852 		 */
1853 		if (crtc == set->crtc)
1854 			continue;
1855 
1856 		if (!new_crtc_state->connector_mask) {
1857 			ret = drm_atomic_set_mode_prop_for_crtc(new_crtc_state,
1858 								NULL);
1859 			if (ret < 0)
1860 				return ret;
1861 
1862 			new_crtc_state->active = false;
1863 		}
1864 	}
1865 
1866 	return 0;
1867 }
1868 
1869 /* just used from drm-client and atomic-helper: */
1870 int __drm_atomic_helper_set_config(struct drm_mode_set *set,
1871 				   struct drm_atomic_state *state)
1872 {
1873 	struct drm_crtc_state *crtc_state;
1874 	struct drm_plane_state *primary_state;
1875 	struct drm_crtc *crtc = set->crtc;
1876 	int hdisplay, vdisplay;
1877 	int ret;
1878 
1879 	crtc_state = drm_atomic_get_crtc_state(state, crtc);
1880 	if (IS_ERR(crtc_state))
1881 		return PTR_ERR(crtc_state);
1882 
1883 	primary_state = drm_atomic_get_plane_state(state, crtc->primary);
1884 	if (IS_ERR(primary_state))
1885 		return PTR_ERR(primary_state);
1886 
1887 	if (!set->mode) {
1888 		WARN_ON(set->fb);
1889 		WARN_ON(set->num_connectors);
1890 
1891 		ret = drm_atomic_set_mode_for_crtc(crtc_state, NULL);
1892 		if (ret != 0)
1893 			return ret;
1894 
1895 		crtc_state->active = false;
1896 
1897 		ret = drm_atomic_set_crtc_for_plane(primary_state, NULL);
1898 		if (ret != 0)
1899 			return ret;
1900 
1901 		drm_atomic_set_fb_for_plane(primary_state, NULL);
1902 
1903 		goto commit;
1904 	}
1905 
1906 	WARN_ON(!set->fb);
1907 	WARN_ON(!set->num_connectors);
1908 
1909 	ret = drm_atomic_set_mode_for_crtc(crtc_state, set->mode);
1910 	if (ret != 0)
1911 		return ret;
1912 
1913 	crtc_state->active = true;
1914 
1915 	ret = drm_atomic_set_crtc_for_plane(primary_state, crtc);
1916 	if (ret != 0)
1917 		return ret;
1918 
1919 	drm_mode_get_hv_timing(set->mode, &hdisplay, &vdisplay);
1920 
1921 	drm_atomic_set_fb_for_plane(primary_state, set->fb);
1922 	primary_state->crtc_x = 0;
1923 	primary_state->crtc_y = 0;
1924 	primary_state->crtc_w = hdisplay;
1925 	primary_state->crtc_h = vdisplay;
1926 	primary_state->src_x = set->x << 16;
1927 	primary_state->src_y = set->y << 16;
1928 	if (drm_rotation_90_or_270(primary_state->rotation)) {
1929 		primary_state->src_w = vdisplay << 16;
1930 		primary_state->src_h = hdisplay << 16;
1931 	} else {
1932 		primary_state->src_w = hdisplay << 16;
1933 		primary_state->src_h = vdisplay << 16;
1934 	}
1935 
1936 commit:
1937 	ret = update_output_state(state, set);
1938 	if (ret)
1939 		return ret;
1940 
1941 	return 0;
1942 }
1943 EXPORT_SYMBOL(__drm_atomic_helper_set_config);
1944 
1945 static void drm_atomic_private_obj_print_state(struct drm_printer *p,
1946 					       const struct drm_private_state *state)
1947 {
1948 	struct drm_private_obj *obj = state->obj;
1949 
1950 	if (obj->funcs->atomic_print_state)
1951 		obj->funcs->atomic_print_state(p, state);
1952 }
1953 
1954 /**
1955  * drm_atomic_print_new_state - prints drm atomic state
1956  * @state: atomic configuration to check
1957  * @p: drm printer
1958  *
1959  * This functions prints the drm atomic state snapshot using the drm printer
1960  * which is passed to it. This snapshot can be used for debugging purposes.
1961  *
1962  * Note that this function looks into the new state objects and hence its not
1963  * safe to be used after the call to drm_atomic_helper_commit_hw_done().
1964  */
1965 void drm_atomic_print_new_state(const struct drm_atomic_state *state,
1966 		struct drm_printer *p)
1967 {
1968 	struct drm_plane *plane;
1969 	struct drm_plane_state *plane_state;
1970 	struct drm_crtc *crtc;
1971 	struct drm_crtc_state *crtc_state;
1972 	struct drm_connector *connector;
1973 	struct drm_connector_state *connector_state;
1974 	struct drm_private_obj *obj;
1975 	struct drm_private_state *obj_state;
1976 	int i;
1977 
1978 	if (!p) {
1979 		drm_err(state->dev, "invalid drm printer\n");
1980 		return;
1981 	}
1982 
1983 	drm_dbg_atomic(state->dev, "checking %p\n", state);
1984 
1985 	for_each_new_plane_in_state(state, plane, plane_state, i)
1986 		drm_atomic_plane_print_state(p, plane_state);
1987 
1988 	for_each_new_crtc_in_state(state, crtc, crtc_state, i)
1989 		drm_atomic_crtc_print_state(p, crtc_state);
1990 
1991 	for_each_new_connector_in_state(state, connector, connector_state, i)
1992 		drm_atomic_connector_print_state(p, connector_state);
1993 
1994 	for_each_new_private_obj_in_state(state, obj, obj_state, i)
1995 		drm_atomic_private_obj_print_state(p, obj_state);
1996 }
1997 EXPORT_SYMBOL(drm_atomic_print_new_state);
1998 
1999 static void __drm_state_dump(struct drm_device *dev, struct drm_printer *p,
2000 			     bool take_locks)
2001 {
2002 	struct drm_mode_config *config = &dev->mode_config;
2003 	struct drm_colorop *colorop;
2004 	struct drm_plane *plane;
2005 	struct drm_crtc *crtc;
2006 	struct drm_connector *connector;
2007 	struct drm_connector_list_iter conn_iter;
2008 	struct drm_private_obj *obj;
2009 
2010 	if (!drm_drv_uses_atomic_modeset(dev))
2011 		return;
2012 
2013 	list_for_each_entry(colorop, &config->colorop_list, head) {
2014 		if (take_locks)
2015 			drm_modeset_lock(&colorop->plane->mutex, NULL);
2016 		drm_atomic_colorop_print_state(p, colorop->state);
2017 		if (take_locks)
2018 			drm_modeset_unlock(&colorop->plane->mutex);
2019 	}
2020 
2021 	list_for_each_entry(plane, &config->plane_list, head) {
2022 		if (take_locks)
2023 			drm_modeset_lock(&plane->mutex, NULL);
2024 		drm_atomic_plane_print_state(p, plane->state);
2025 		if (take_locks)
2026 			drm_modeset_unlock(&plane->mutex);
2027 	}
2028 
2029 	list_for_each_entry(crtc, &config->crtc_list, head) {
2030 		if (take_locks)
2031 			drm_modeset_lock(&crtc->mutex, NULL);
2032 		drm_atomic_crtc_print_state(p, crtc->state);
2033 		if (take_locks)
2034 			drm_modeset_unlock(&crtc->mutex);
2035 	}
2036 
2037 	drm_connector_list_iter_begin(dev, &conn_iter);
2038 	if (take_locks)
2039 		drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
2040 	drm_for_each_connector_iter(connector, &conn_iter)
2041 		drm_atomic_connector_print_state(p, connector->state);
2042 	if (take_locks)
2043 		drm_modeset_unlock(&dev->mode_config.connection_mutex);
2044 	drm_connector_list_iter_end(&conn_iter);
2045 
2046 	list_for_each_entry(obj, &config->privobj_list, head) {
2047 		if (take_locks)
2048 			drm_modeset_lock(&obj->lock, NULL);
2049 		drm_atomic_private_obj_print_state(p, obj->state);
2050 		if (take_locks)
2051 			drm_modeset_unlock(&obj->lock);
2052 	}
2053 }
2054 
2055 /**
2056  * drm_state_dump - dump entire device atomic state
2057  * @dev: the drm device
2058  * @p: where to print the state to
2059  *
2060  * Just for debugging.  Drivers might want an option to dump state
2061  * to dmesg in case of error irq's.  (Hint, you probably want to
2062  * ratelimit this!)
2063  *
2064  * The caller must wrap this drm_modeset_lock_all_ctx() and
2065  * drm_modeset_drop_locks(). If this is called from error irq handler, it should
2066  * not be enabled by default - if you are debugging errors you might
2067  * not care that this is racey, but calling this without all modeset locks held
2068  * is inherently unsafe.
2069  */
2070 void drm_state_dump(struct drm_device *dev, struct drm_printer *p)
2071 {
2072 	__drm_state_dump(dev, p, false);
2073 }
2074 EXPORT_SYMBOL(drm_state_dump);
2075 
2076 #ifdef CONFIG_DEBUG_FS
2077 static int drm_state_info(struct seq_file *m, void *data)
2078 {
2079 	struct drm_debugfs_entry *entry = m->private;
2080 	struct drm_device *dev = entry->dev;
2081 	struct drm_printer p = drm_seq_file_printer(m);
2082 
2083 	__drm_state_dump(dev, &p, true);
2084 
2085 	return 0;
2086 }
2087 
2088 /* any use in debugfs files to dump individual planes/crtc/etc? */
2089 static const struct drm_debugfs_info drm_atomic_debugfs_list[] = {
2090 	{"state", drm_state_info, 0},
2091 };
2092 
2093 void drm_atomic_debugfs_init(struct drm_device *dev)
2094 {
2095 	drm_debugfs_add_files(dev, drm_atomic_debugfs_list,
2096 			      ARRAY_SIZE(drm_atomic_debugfs_list));
2097 }
2098 #endif
2099