• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2014 Red Hat
3  * Copyright (C) 2014 Intel Corp.
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a
6  * copy of this software and associated documentation files (the "Software"),
7  * to deal in the Software without restriction, including without limitation
8  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9  * and/or sell copies of the Software, and to permit persons to whom the
10  * Software is furnished to do so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice shall be included in
13  * all copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
18  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
19  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
20  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
21  * OTHER DEALINGS IN THE SOFTWARE.
22  *
23  * Authors:
24  * Rob Clark <robdclark@gmail.com>
25  * Daniel Vetter <daniel.vetter@ffwll.ch>
26  */
27 
28 #include <linux/dma-fence.h>
29 #include <linux/ktime.h>
30 
31 #include <drm/drm_atomic.h>
32 #include <drm/drm_atomic_helper.h>
33 #include <drm/drm_atomic_uapi.h>
34 #include <drm/drm_bridge.h>
35 #include <drm/drm_damage_helper.h>
36 #include <drm/drm_device.h>
37 #include <drm/drm_drv.h>
38 #include <drm/drm_gem_atomic_helper.h>
39 #include <drm/drm_plane_helper.h>
40 #include <drm/drm_print.h>
41 #include <drm/drm_self_refresh_helper.h>
42 #include <drm/drm_vblank.h>
43 #include <drm/drm_writeback.h>
44 
45 #include <trace/hooks/drm_atomic.h>
46 
47 #include "drm_crtc_helper_internal.h"
48 #include "drm_crtc_internal.h"
49 
50 /**
51  * DOC: overview
52  *
53  * This helper library provides implementations of check and commit functions on
54  * top of the CRTC modeset helper callbacks and the plane helper callbacks. It
55  * also provides convenience implementations for the atomic state handling
56  * callbacks for drivers which don't need to subclass the drm core structures to
57  * add their own additional internal state.
58  *
59  * This library also provides default implementations for the check callback in
60  * drm_atomic_helper_check() and for the commit callback with
61  * drm_atomic_helper_commit(). But the individual stages and callbacks are
62  * exposed to allow drivers to mix and match and e.g. use the plane helpers only
63  * together with a driver private modeset implementation.
64  *
65  * This library also provides implementations for all the legacy driver
66  * interfaces on top of the atomic interface. See drm_atomic_helper_set_config(),
67  * drm_atomic_helper_disable_plane(), and the various functions to implement
68  * set_property callbacks. New drivers must not implement these functions
69  * themselves but must use the provided helpers.
70  *
71  * The atomic helper uses the same function table structures as all other
72  * modesetting helpers. See the documentation for &struct drm_crtc_helper_funcs,
73  * struct &drm_encoder_helper_funcs and &struct drm_connector_helper_funcs. It
74  * also shares the &struct drm_plane_helper_funcs function table with the plane
75  * helpers.
76  */
77 static void
drm_atomic_helper_plane_changed(struct drm_atomic_state * state,struct drm_plane_state * old_plane_state,struct drm_plane_state * plane_state,struct drm_plane * plane)78 drm_atomic_helper_plane_changed(struct drm_atomic_state *state,
79 				struct drm_plane_state *old_plane_state,
80 				struct drm_plane_state *plane_state,
81 				struct drm_plane *plane)
82 {
83 	struct drm_crtc_state *crtc_state;
84 
85 	if (old_plane_state->crtc) {
86 		crtc_state = drm_atomic_get_new_crtc_state(state,
87 							   old_plane_state->crtc);
88 
89 		if (WARN_ON(!crtc_state))
90 			return;
91 
92 		crtc_state->planes_changed = true;
93 	}
94 
95 	if (plane_state->crtc) {
96 		crtc_state = drm_atomic_get_new_crtc_state(state, plane_state->crtc);
97 
98 		if (WARN_ON(!crtc_state))
99 			return;
100 
101 		crtc_state->planes_changed = true;
102 	}
103 }
104 
handle_conflicting_encoders(struct drm_atomic_state * state,bool disable_conflicting_encoders)105 static int handle_conflicting_encoders(struct drm_atomic_state *state,
106 				       bool disable_conflicting_encoders)
107 {
108 	struct drm_connector_state *new_conn_state;
109 	struct drm_connector *connector;
110 	struct drm_connector_list_iter conn_iter;
111 	struct drm_encoder *encoder;
112 	unsigned int encoder_mask = 0;
113 	int i, ret = 0;
114 
115 	/*
116 	 * First loop, find all newly assigned encoders from the connectors
117 	 * part of the state. If the same encoder is assigned to multiple
118 	 * connectors bail out.
119 	 */
120 	for_each_new_connector_in_state(state, connector, new_conn_state, i) {
121 		const struct drm_connector_helper_funcs *funcs = connector->helper_private;
122 		struct drm_encoder *new_encoder;
123 
124 		if (!new_conn_state->crtc)
125 			continue;
126 
127 		if (funcs->atomic_best_encoder)
128 			new_encoder = funcs->atomic_best_encoder(connector,
129 								 state);
130 		else if (funcs->best_encoder)
131 			new_encoder = funcs->best_encoder(connector);
132 		else
133 			new_encoder = drm_connector_get_single_encoder(connector);
134 
135 		if (new_encoder) {
136 			if (encoder_mask & drm_encoder_mask(new_encoder)) {
137 				DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] on [CONNECTOR:%d:%s] already assigned\n",
138 					new_encoder->base.id, new_encoder->name,
139 					connector->base.id, connector->name);
140 
141 				return -EINVAL;
142 			}
143 
144 			encoder_mask |= drm_encoder_mask(new_encoder);
145 		}
146 	}
147 
148 	if (!encoder_mask)
149 		return 0;
150 
151 	/*
152 	 * Second loop, iterate over all connectors not part of the state.
153 	 *
154 	 * If a conflicting encoder is found and disable_conflicting_encoders
155 	 * is not set, an error is returned. Userspace can provide a solution
156 	 * through the atomic ioctl.
157 	 *
158 	 * If the flag is set conflicting connectors are removed from the CRTC
159 	 * and the CRTC is disabled if no encoder is left. This preserves
160 	 * compatibility with the legacy set_config behavior.
161 	 */
162 	drm_connector_list_iter_begin(state->dev, &conn_iter);
163 	drm_for_each_connector_iter(connector, &conn_iter) {
164 		struct drm_crtc_state *crtc_state;
165 
166 		if (drm_atomic_get_new_connector_state(state, connector))
167 			continue;
168 
169 		encoder = connector->state->best_encoder;
170 		if (!encoder || !(encoder_mask & drm_encoder_mask(encoder)))
171 			continue;
172 
173 		if (!disable_conflicting_encoders) {
174 			DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] in use on [CRTC:%d:%s] by [CONNECTOR:%d:%s]\n",
175 					 encoder->base.id, encoder->name,
176 					 connector->state->crtc->base.id,
177 					 connector->state->crtc->name,
178 					 connector->base.id, connector->name);
179 			ret = -EINVAL;
180 			goto out;
181 		}
182 
183 		new_conn_state = drm_atomic_get_connector_state(state, connector);
184 		if (IS_ERR(new_conn_state)) {
185 			ret = PTR_ERR(new_conn_state);
186 			goto out;
187 		}
188 
189 		DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] in use on [CRTC:%d:%s], disabling [CONNECTOR:%d:%s]\n",
190 				 encoder->base.id, encoder->name,
191 				 new_conn_state->crtc->base.id, new_conn_state->crtc->name,
192 				 connector->base.id, connector->name);
193 
194 		crtc_state = drm_atomic_get_new_crtc_state(state, new_conn_state->crtc);
195 
196 		ret = drm_atomic_set_crtc_for_connector(new_conn_state, NULL);
197 		if (ret)
198 			goto out;
199 
200 		if (!crtc_state->connector_mask) {
201 			ret = drm_atomic_set_mode_prop_for_crtc(crtc_state,
202 								NULL);
203 			if (ret < 0)
204 				goto out;
205 
206 			crtc_state->active = false;
207 		}
208 	}
209 out:
210 	drm_connector_list_iter_end(&conn_iter);
211 
212 	return ret;
213 }
214 
215 static void
set_best_encoder(struct drm_atomic_state * state,struct drm_connector_state * conn_state,struct drm_encoder * encoder)216 set_best_encoder(struct drm_atomic_state *state,
217 		 struct drm_connector_state *conn_state,
218 		 struct drm_encoder *encoder)
219 {
220 	struct drm_crtc_state *crtc_state;
221 	struct drm_crtc *crtc;
222 
223 	if (conn_state->best_encoder) {
224 		/* Unset the encoder_mask in the old crtc state. */
225 		crtc = conn_state->connector->state->crtc;
226 
227 		/* A NULL crtc is an error here because we should have
228 		 * duplicated a NULL best_encoder when crtc was NULL.
229 		 * As an exception restoring duplicated atomic state
230 		 * during resume is allowed, so don't warn when
231 		 * best_encoder is equal to encoder we intend to set.
232 		 */
233 		WARN_ON(!crtc && encoder != conn_state->best_encoder);
234 		if (crtc) {
235 			crtc_state = drm_atomic_get_new_crtc_state(state, crtc);
236 
237 			crtc_state->encoder_mask &=
238 				~drm_encoder_mask(conn_state->best_encoder);
239 		}
240 	}
241 
242 	if (encoder) {
243 		crtc = conn_state->crtc;
244 		WARN_ON(!crtc);
245 		if (crtc) {
246 			crtc_state = drm_atomic_get_new_crtc_state(state, crtc);
247 
248 			crtc_state->encoder_mask |=
249 				drm_encoder_mask(encoder);
250 		}
251 	}
252 
253 	conn_state->best_encoder = encoder;
254 }
255 
256 static void
steal_encoder(struct drm_atomic_state * state,struct drm_encoder * encoder)257 steal_encoder(struct drm_atomic_state *state,
258 	      struct drm_encoder *encoder)
259 {
260 	struct drm_crtc_state *crtc_state;
261 	struct drm_connector *connector;
262 	struct drm_connector_state *old_connector_state, *new_connector_state;
263 	int i;
264 
265 	for_each_oldnew_connector_in_state(state, connector, old_connector_state, new_connector_state, i) {
266 		struct drm_crtc *encoder_crtc;
267 
268 		if (new_connector_state->best_encoder != encoder)
269 			continue;
270 
271 		encoder_crtc = old_connector_state->crtc;
272 
273 		DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] in use on [CRTC:%d:%s], stealing it\n",
274 				 encoder->base.id, encoder->name,
275 				 encoder_crtc->base.id, encoder_crtc->name);
276 
277 		set_best_encoder(state, new_connector_state, NULL);
278 
279 		crtc_state = drm_atomic_get_new_crtc_state(state, encoder_crtc);
280 		crtc_state->connectors_changed = true;
281 
282 		return;
283 	}
284 }
285 
286 static int
update_connector_routing(struct drm_atomic_state * state,struct drm_connector * connector,struct drm_connector_state * old_connector_state,struct drm_connector_state * new_connector_state,bool added_by_user)287 update_connector_routing(struct drm_atomic_state *state,
288 			 struct drm_connector *connector,
289 			 struct drm_connector_state *old_connector_state,
290 			 struct drm_connector_state *new_connector_state,
291 			 bool added_by_user)
292 {
293 	const struct drm_connector_helper_funcs *funcs;
294 	struct drm_encoder *new_encoder;
295 	struct drm_crtc_state *crtc_state;
296 
297 	DRM_DEBUG_ATOMIC("Updating routing for [CONNECTOR:%d:%s]\n",
298 			 connector->base.id,
299 			 connector->name);
300 
301 	if (old_connector_state->crtc != new_connector_state->crtc) {
302 		if (old_connector_state->crtc) {
303 			crtc_state = drm_atomic_get_new_crtc_state(state, old_connector_state->crtc);
304 			crtc_state->connectors_changed = true;
305 		}
306 
307 		if (new_connector_state->crtc) {
308 			crtc_state = drm_atomic_get_new_crtc_state(state, new_connector_state->crtc);
309 			crtc_state->connectors_changed = true;
310 		}
311 	}
312 
313 	if (!new_connector_state->crtc) {
314 		DRM_DEBUG_ATOMIC("Disabling [CONNECTOR:%d:%s]\n",
315 				connector->base.id,
316 				connector->name);
317 
318 		set_best_encoder(state, new_connector_state, NULL);
319 
320 		return 0;
321 	}
322 
323 	crtc_state = drm_atomic_get_new_crtc_state(state,
324 						   new_connector_state->crtc);
325 	/*
326 	 * For compatibility with legacy users, we want to make sure that
327 	 * we allow DPMS On->Off modesets on unregistered connectors. Modesets
328 	 * which would result in anything else must be considered invalid, to
329 	 * avoid turning on new displays on dead connectors.
330 	 *
331 	 * Since the connector can be unregistered at any point during an
332 	 * atomic check or commit, this is racy. But that's OK: all we care
333 	 * about is ensuring that userspace can't do anything but shut off the
334 	 * display on a connector that was destroyed after it's been notified,
335 	 * not before.
336 	 *
337 	 * Additionally, we also want to ignore connector registration when
338 	 * we're trying to restore an atomic state during system resume since
339 	 * there's a chance the connector may have been destroyed during the
340 	 * process, but it's better to ignore that then cause
341 	 * drm_atomic_helper_resume() to fail.
342 	 *
343 	 * Last, we want to ignore connector registration when the connector
344 	 * was not pulled in the atomic state by user-space (ie, was pulled
345 	 * in by the driver, e.g. when updating a DP-MST stream).
346 	 */
347 	if (!state->duplicated && drm_connector_is_unregistered(connector) &&
348 	    added_by_user && crtc_state->active) {
349 		DRM_DEBUG_ATOMIC("[CONNECTOR:%d:%s] is not registered\n",
350 				 connector->base.id, connector->name);
351 		return -EINVAL;
352 	}
353 
354 	funcs = connector->helper_private;
355 
356 	if (funcs->atomic_best_encoder)
357 		new_encoder = funcs->atomic_best_encoder(connector, state);
358 	else if (funcs->best_encoder)
359 		new_encoder = funcs->best_encoder(connector);
360 	else
361 		new_encoder = drm_connector_get_single_encoder(connector);
362 
363 	if (!new_encoder) {
364 		DRM_DEBUG_ATOMIC("No suitable encoder found for [CONNECTOR:%d:%s]\n",
365 				 connector->base.id,
366 				 connector->name);
367 		return -EINVAL;
368 	}
369 
370 	if (!drm_encoder_crtc_ok(new_encoder, new_connector_state->crtc)) {
371 		DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] incompatible with [CRTC:%d:%s]\n",
372 				 new_encoder->base.id,
373 				 new_encoder->name,
374 				 new_connector_state->crtc->base.id,
375 				 new_connector_state->crtc->name);
376 		return -EINVAL;
377 	}
378 
379 	if (new_encoder == new_connector_state->best_encoder) {
380 		set_best_encoder(state, new_connector_state, new_encoder);
381 
382 		DRM_DEBUG_ATOMIC("[CONNECTOR:%d:%s] keeps [ENCODER:%d:%s], now on [CRTC:%d:%s]\n",
383 				 connector->base.id,
384 				 connector->name,
385 				 new_encoder->base.id,
386 				 new_encoder->name,
387 				 new_connector_state->crtc->base.id,
388 				 new_connector_state->crtc->name);
389 
390 		return 0;
391 	}
392 
393 	steal_encoder(state, new_encoder);
394 
395 	set_best_encoder(state, new_connector_state, new_encoder);
396 
397 	crtc_state->connectors_changed = true;
398 
399 	DRM_DEBUG_ATOMIC("[CONNECTOR:%d:%s] using [ENCODER:%d:%s] on [CRTC:%d:%s]\n",
400 			 connector->base.id,
401 			 connector->name,
402 			 new_encoder->base.id,
403 			 new_encoder->name,
404 			 new_connector_state->crtc->base.id,
405 			 new_connector_state->crtc->name);
406 
407 	return 0;
408 }
409 
410 static int
mode_fixup(struct drm_atomic_state * state)411 mode_fixup(struct drm_atomic_state *state)
412 {
413 	struct drm_crtc *crtc;
414 	struct drm_crtc_state *new_crtc_state;
415 	struct drm_connector *connector;
416 	struct drm_connector_state *new_conn_state;
417 	int i;
418 	int ret;
419 
420 	for_each_new_crtc_in_state(state, crtc, new_crtc_state, i) {
421 		if (!new_crtc_state->mode_changed &&
422 		    !new_crtc_state->connectors_changed)
423 			continue;
424 
425 		drm_mode_copy(&new_crtc_state->adjusted_mode, &new_crtc_state->mode);
426 	}
427 
428 	for_each_new_connector_in_state(state, connector, new_conn_state, i) {
429 		const struct drm_encoder_helper_funcs *funcs;
430 		struct drm_encoder *encoder;
431 		struct drm_bridge *bridge;
432 
433 		WARN_ON(!!new_conn_state->best_encoder != !!new_conn_state->crtc);
434 
435 		if (!new_conn_state->crtc || !new_conn_state->best_encoder)
436 			continue;
437 
438 		new_crtc_state =
439 			drm_atomic_get_new_crtc_state(state, new_conn_state->crtc);
440 
441 		/*
442 		 * Each encoder has at most one connector (since we always steal
443 		 * it away), so we won't call ->mode_fixup twice.
444 		 */
445 		encoder = new_conn_state->best_encoder;
446 		funcs = encoder->helper_private;
447 
448 		bridge = drm_bridge_chain_get_first_bridge(encoder);
449 		ret = drm_atomic_bridge_chain_check(bridge,
450 						    new_crtc_state,
451 						    new_conn_state);
452 		if (ret) {
453 			DRM_DEBUG_ATOMIC("Bridge atomic check failed\n");
454 			return ret;
455 		}
456 
457 		if (funcs && funcs->atomic_check) {
458 			ret = funcs->atomic_check(encoder, new_crtc_state,
459 						  new_conn_state);
460 			if (ret) {
461 				DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] check failed\n",
462 						 encoder->base.id, encoder->name);
463 				return ret;
464 			}
465 		} else if (funcs && funcs->mode_fixup) {
466 			ret = funcs->mode_fixup(encoder, &new_crtc_state->mode,
467 						&new_crtc_state->adjusted_mode);
468 			if (!ret) {
469 				DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] fixup failed\n",
470 						 encoder->base.id, encoder->name);
471 				return -EINVAL;
472 			}
473 		}
474 	}
475 
476 	for_each_new_crtc_in_state(state, crtc, new_crtc_state, i) {
477 		const struct drm_crtc_helper_funcs *funcs;
478 
479 		if (!new_crtc_state->enable)
480 			continue;
481 
482 		if (!new_crtc_state->mode_changed &&
483 		    !new_crtc_state->connectors_changed)
484 			continue;
485 
486 		funcs = crtc->helper_private;
487 		if (!funcs || !funcs->mode_fixup)
488 			continue;
489 
490 		ret = funcs->mode_fixup(crtc, &new_crtc_state->mode,
491 					&new_crtc_state->adjusted_mode);
492 		if (!ret) {
493 			DRM_DEBUG_ATOMIC("[CRTC:%d:%s] fixup failed\n",
494 					 crtc->base.id, crtc->name);
495 			return -EINVAL;
496 		}
497 	}
498 
499 	return 0;
500 }
501 
mode_valid_path(struct drm_connector * connector,struct drm_encoder * encoder,struct drm_crtc * crtc,const struct drm_display_mode * mode)502 static enum drm_mode_status mode_valid_path(struct drm_connector *connector,
503 					    struct drm_encoder *encoder,
504 					    struct drm_crtc *crtc,
505 					    const struct drm_display_mode *mode)
506 {
507 	struct drm_bridge *bridge;
508 	enum drm_mode_status ret;
509 
510 	ret = drm_encoder_mode_valid(encoder, mode);
511 	if (ret != MODE_OK) {
512 		DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] mode_valid() failed\n",
513 				encoder->base.id, encoder->name);
514 		return ret;
515 	}
516 
517 	bridge = drm_bridge_chain_get_first_bridge(encoder);
518 	ret = drm_bridge_chain_mode_valid(bridge, &connector->display_info,
519 					  mode);
520 	if (ret != MODE_OK) {
521 		DRM_DEBUG_ATOMIC("[BRIDGE] mode_valid() failed\n");
522 		return ret;
523 	}
524 
525 	ret = drm_crtc_mode_valid(crtc, mode);
526 	if (ret != MODE_OK) {
527 		DRM_DEBUG_ATOMIC("[CRTC:%d:%s] mode_valid() failed\n",
528 				crtc->base.id, crtc->name);
529 		return ret;
530 	}
531 
532 	return ret;
533 }
534 
535 static int
mode_valid(struct drm_atomic_state * state)536 mode_valid(struct drm_atomic_state *state)
537 {
538 	struct drm_connector_state *conn_state;
539 	struct drm_connector *connector;
540 	int i;
541 
542 	for_each_new_connector_in_state(state, connector, conn_state, i) {
543 		struct drm_encoder *encoder = conn_state->best_encoder;
544 		struct drm_crtc *crtc = conn_state->crtc;
545 		struct drm_crtc_state *crtc_state;
546 		enum drm_mode_status mode_status;
547 		const struct drm_display_mode *mode;
548 
549 		if (!crtc || !encoder)
550 			continue;
551 
552 		crtc_state = drm_atomic_get_new_crtc_state(state, crtc);
553 		if (!crtc_state)
554 			continue;
555 		if (!crtc_state->mode_changed && !crtc_state->connectors_changed)
556 			continue;
557 
558 		mode = &crtc_state->mode;
559 
560 		mode_status = mode_valid_path(connector, encoder, crtc, mode);
561 		if (mode_status != MODE_OK)
562 			return -EINVAL;
563 	}
564 
565 	return 0;
566 }
567 
568 /**
569  * drm_atomic_helper_check_modeset - validate state object for modeset changes
570  * @dev: DRM device
571  * @state: the driver state object
572  *
573  * Check the state object to see if the requested state is physically possible.
574  * This does all the CRTC and connector related computations for an atomic
575  * update and adds any additional connectors needed for full modesets. It calls
576  * the various per-object callbacks in the follow order:
577  *
578  * 1. &drm_connector_helper_funcs.atomic_best_encoder for determining the new encoder.
579  * 2. &drm_connector_helper_funcs.atomic_check to validate the connector state.
580  * 3. If it's determined a modeset is needed then all connectors on the affected
581  *    CRTC are added and &drm_connector_helper_funcs.atomic_check is run on them.
582  * 4. &drm_encoder_helper_funcs.mode_valid, &drm_bridge_funcs.mode_valid and
583  *    &drm_crtc_helper_funcs.mode_valid are called on the affected components.
584  * 5. &drm_bridge_funcs.mode_fixup is called on all encoder bridges.
585  * 6. &drm_encoder_helper_funcs.atomic_check is called to validate any encoder state.
586  *    This function is only called when the encoder will be part of a configured CRTC,
587  *    it must not be used for implementing connector property validation.
588  *    If this function is NULL, &drm_atomic_encoder_helper_funcs.mode_fixup is called
589  *    instead.
590  * 7. &drm_crtc_helper_funcs.mode_fixup is called last, to fix up the mode with CRTC constraints.
591  *
592  * &drm_crtc_state.mode_changed is set when the input mode is changed.
593  * &drm_crtc_state.connectors_changed is set when a connector is added or
594  * removed from the CRTC.  &drm_crtc_state.active_changed is set when
595  * &drm_crtc_state.active changes, which is used for DPMS.
596  * &drm_crtc_state.no_vblank is set from the result of drm_dev_has_vblank().
597  * See also: drm_atomic_crtc_needs_modeset()
598  *
599  * IMPORTANT:
600  *
601  * Drivers which set &drm_crtc_state.mode_changed (e.g. in their
602  * &drm_plane_helper_funcs.atomic_check hooks if a plane update can't be done
603  * without a full modeset) _must_ call this function after that change. It is
604  * permitted to call this function multiple times for the same update, e.g.
605  * when the &drm_crtc_helper_funcs.atomic_check functions depend upon the
606  * adjusted dotclock for fifo space allocation and watermark computation.
607  *
608  * RETURNS:
609  * Zero for success or -errno
610  */
611 int
drm_atomic_helper_check_modeset(struct drm_device * dev,struct drm_atomic_state * state)612 drm_atomic_helper_check_modeset(struct drm_device *dev,
613 				struct drm_atomic_state *state)
614 {
615 	struct drm_crtc *crtc;
616 	struct drm_crtc_state *old_crtc_state, *new_crtc_state;
617 	struct drm_connector *connector;
618 	struct drm_connector_state *old_connector_state, *new_connector_state;
619 	int i, ret;
620 	unsigned int connectors_mask = 0, user_connectors_mask = 0;
621 	bool allow = false;
622 
623 	for_each_oldnew_connector_in_state(state, connector, old_connector_state, new_connector_state, i)
624 		user_connectors_mask |= BIT(i);
625 
626 	for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state, new_crtc_state, i) {
627 		bool has_connectors =
628 			!!new_crtc_state->connector_mask;
629 
630 		WARN_ON(!drm_modeset_is_locked(&crtc->mutex));
631 
632 		if (!drm_mode_equal(&old_crtc_state->mode, &new_crtc_state->mode)) {
633 			DRM_DEBUG_ATOMIC("[CRTC:%d:%s] mode changed\n",
634 					 crtc->base.id, crtc->name);
635 			new_crtc_state->mode_changed = true;
636 		}
637 
638 		if (old_crtc_state->enable != new_crtc_state->enable) {
639 			DRM_DEBUG_ATOMIC("[CRTC:%d:%s] enable changed\n",
640 					 crtc->base.id, crtc->name);
641 
642 			/*
643 			 * For clarity this assignment is done here, but
644 			 * enable == 0 is only true when there are no
645 			 * connectors and a NULL mode.
646 			 *
647 			 * The other way around is true as well. enable != 0
648 			 * implies that connectors are attached and a mode is set.
649 			 */
650 			new_crtc_state->mode_changed = true;
651 			new_crtc_state->connectors_changed = true;
652 		}
653 
654 		if (old_crtc_state->active != new_crtc_state->active) {
655 			DRM_DEBUG_ATOMIC("[CRTC:%d:%s] active changed\n",
656 					 crtc->base.id, crtc->name);
657 			new_crtc_state->active_changed = true;
658 		}
659 
660 		if (new_crtc_state->enable != has_connectors) {
661 			DRM_DEBUG_ATOMIC("[CRTC:%d:%s] enabled/connectors mismatch\n",
662 					 crtc->base.id, crtc->name);
663 
664 			return -EINVAL;
665 		}
666 
667 		if (drm_dev_has_vblank(dev))
668 			new_crtc_state->no_vblank = false;
669 		else
670 			new_crtc_state->no_vblank = true;
671 	}
672 
673 	ret = handle_conflicting_encoders(state, false);
674 	if (ret)
675 		return ret;
676 
677 	for_each_oldnew_connector_in_state(state, connector, old_connector_state, new_connector_state, i) {
678 		const struct drm_connector_helper_funcs *funcs = connector->helper_private;
679 
680 		WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
681 
682 		/*
683 		 * This only sets crtc->connectors_changed for routing changes,
684 		 * drivers must set crtc->connectors_changed themselves when
685 		 * connector properties need to be updated.
686 		 */
687 		ret = update_connector_routing(state, connector,
688 					       old_connector_state,
689 					       new_connector_state,
690 					       BIT(i) & user_connectors_mask);
691 		if (ret)
692 			return ret;
693 		if (old_connector_state->crtc) {
694 			new_crtc_state = drm_atomic_get_new_crtc_state(state,
695 								       old_connector_state->crtc);
696 			if (old_connector_state->link_status !=
697 			    new_connector_state->link_status)
698 				new_crtc_state->connectors_changed = true;
699 
700 			if (old_connector_state->max_requested_bpc !=
701 			    new_connector_state->max_requested_bpc)
702 				new_crtc_state->connectors_changed = true;
703 		}
704 
705 		if (funcs->atomic_check)
706 			ret = funcs->atomic_check(connector, state);
707 		if (ret)
708 			return ret;
709 
710 		connectors_mask |= BIT(i);
711 	}
712 
713 	/*
714 	 * After all the routing has been prepared we need to add in any
715 	 * connector which is itself unchanged, but whose CRTC changes its
716 	 * configuration. This must be done before calling mode_fixup in case a
717 	 * crtc only changed its mode but has the same set of connectors.
718 	 */
719 	for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state, new_crtc_state, i) {
720 		if (!drm_atomic_crtc_needs_modeset(new_crtc_state))
721 			continue;
722 
723 		DRM_DEBUG_ATOMIC("[CRTC:%d:%s] needs all connectors, enable: %c, active: %c\n",
724 				 crtc->base.id, crtc->name,
725 				 new_crtc_state->enable ? 'y' : 'n',
726 				 new_crtc_state->active ? 'y' : 'n');
727 
728 		ret = drm_atomic_add_affected_connectors(state, crtc);
729 		if (ret != 0)
730 			return ret;
731 
732 		trace_android_vh_drm_atomic_check_modeset(state, crtc, &allow);
733 		if (allow)
734 			continue;
735 
736 		ret = drm_atomic_add_affected_planes(state, crtc);
737 		if (ret != 0)
738 			return ret;
739 	}
740 
741 	/*
742 	 * Iterate over all connectors again, to make sure atomic_check()
743 	 * has been called on them when a modeset is forced.
744 	 */
745 	for_each_oldnew_connector_in_state(state, connector, old_connector_state, new_connector_state, i) {
746 		const struct drm_connector_helper_funcs *funcs = connector->helper_private;
747 
748 		if (connectors_mask & BIT(i))
749 			continue;
750 
751 		if (funcs->atomic_check)
752 			ret = funcs->atomic_check(connector, state);
753 		if (ret)
754 			return ret;
755 	}
756 
757 	/*
758 	 * Iterate over all connectors again, and add all affected bridges to
759 	 * the state.
760 	 */
761 	for_each_oldnew_connector_in_state(state, connector,
762 					   old_connector_state,
763 					   new_connector_state, i) {
764 		struct drm_encoder *encoder;
765 
766 		encoder = old_connector_state->best_encoder;
767 		ret = drm_atomic_add_encoder_bridges(state, encoder);
768 		if (ret)
769 			return ret;
770 
771 		encoder = new_connector_state->best_encoder;
772 		ret = drm_atomic_add_encoder_bridges(state, encoder);
773 		if (ret)
774 			return ret;
775 	}
776 
777 	ret = mode_valid(state);
778 	if (ret)
779 		return ret;
780 
781 	return mode_fixup(state);
782 }
783 EXPORT_SYMBOL(drm_atomic_helper_check_modeset);
784 
785 /**
786  * drm_atomic_helper_check_plane_state() - Check plane state for validity
787  * @plane_state: plane state to check
788  * @crtc_state: CRTC state to check
789  * @min_scale: minimum @src:@dest scaling factor in 16.16 fixed point
790  * @max_scale: maximum @src:@dest scaling factor in 16.16 fixed point
791  * @can_position: is it legal to position the plane such that it
792  *                doesn't cover the entire CRTC?  This will generally
793  *                only be false for primary planes.
794  * @can_update_disabled: can the plane be updated while the CRTC
795  *                       is disabled?
796  *
797  * Checks that a desired plane update is valid, and updates various
798  * bits of derived state (clipped coordinates etc.). Drivers that provide
799  * their own plane handling rather than helper-provided implementations may
800  * still wish to call this function to avoid duplication of error checking
801  * code.
802  *
803  * RETURNS:
804  * Zero if update appears valid, error code on failure
805  */
drm_atomic_helper_check_plane_state(struct drm_plane_state * plane_state,const struct drm_crtc_state * crtc_state,int min_scale,int max_scale,bool can_position,bool can_update_disabled)806 int drm_atomic_helper_check_plane_state(struct drm_plane_state *plane_state,
807 					const struct drm_crtc_state *crtc_state,
808 					int min_scale,
809 					int max_scale,
810 					bool can_position,
811 					bool can_update_disabled)
812 {
813 	struct drm_framebuffer *fb = plane_state->fb;
814 	struct drm_rect *src = &plane_state->src;
815 	struct drm_rect *dst = &plane_state->dst;
816 	unsigned int rotation = plane_state->rotation;
817 	struct drm_rect clip = {};
818 	int hscale, vscale;
819 
820 	WARN_ON(plane_state->crtc && plane_state->crtc != crtc_state->crtc);
821 
822 	*src = drm_plane_state_src(plane_state);
823 	*dst = drm_plane_state_dest(plane_state);
824 
825 	if (!fb) {
826 		plane_state->visible = false;
827 		return 0;
828 	}
829 
830 	/* crtc should only be NULL when disabling (i.e., !fb) */
831 	if (WARN_ON(!plane_state->crtc)) {
832 		plane_state->visible = false;
833 		return 0;
834 	}
835 
836 	if (!crtc_state->enable && !can_update_disabled) {
837 		DRM_DEBUG_KMS("Cannot update plane of a disabled CRTC.\n");
838 		return -EINVAL;
839 	}
840 
841 	drm_rect_rotate(src, fb->width << 16, fb->height << 16, rotation);
842 
843 	/* Check scaling */
844 	hscale = drm_rect_calc_hscale(src, dst, min_scale, max_scale);
845 	vscale = drm_rect_calc_vscale(src, dst, min_scale, max_scale);
846 	if (hscale < 0 || vscale < 0) {
847 		DRM_DEBUG_KMS("Invalid scaling of plane\n");
848 		drm_rect_debug_print("src: ", &plane_state->src, true);
849 		drm_rect_debug_print("dst: ", &plane_state->dst, false);
850 		return -ERANGE;
851 	}
852 
853 	if (crtc_state->enable)
854 		drm_mode_get_hv_timing(&crtc_state->mode, &clip.x2, &clip.y2);
855 
856 	plane_state->visible = drm_rect_clip_scaled(src, dst, &clip);
857 
858 	drm_rect_rotate_inv(src, fb->width << 16, fb->height << 16, rotation);
859 
860 	if (!plane_state->visible)
861 		/*
862 		 * Plane isn't visible; some drivers can handle this
863 		 * so we just return success here.  Drivers that can't
864 		 * (including those that use the primary plane helper's
865 		 * update function) will return an error from their
866 		 * update_plane handler.
867 		 */
868 		return 0;
869 
870 	if (!can_position && !drm_rect_equals(dst, &clip)) {
871 		DRM_DEBUG_KMS("Plane must cover entire CRTC\n");
872 		drm_rect_debug_print("dst: ", dst, false);
873 		drm_rect_debug_print("clip: ", &clip, false);
874 		return -EINVAL;
875 	}
876 
877 	return 0;
878 }
879 EXPORT_SYMBOL(drm_atomic_helper_check_plane_state);
880 
881 /**
882  * drm_atomic_helper_check_planes - validate state object for planes changes
883  * @dev: DRM device
884  * @state: the driver state object
885  *
886  * Check the state object to see if the requested state is physically possible.
887  * This does all the plane update related checks using by calling into the
888  * &drm_crtc_helper_funcs.atomic_check and &drm_plane_helper_funcs.atomic_check
889  * hooks provided by the driver.
890  *
891  * It also sets &drm_crtc_state.planes_changed to indicate that a CRTC has
892  * updated planes.
893  *
894  * RETURNS:
895  * Zero for success or -errno
896  */
897 int
drm_atomic_helper_check_planes(struct drm_device * dev,struct drm_atomic_state * state)898 drm_atomic_helper_check_planes(struct drm_device *dev,
899 			       struct drm_atomic_state *state)
900 {
901 	struct drm_crtc *crtc;
902 	struct drm_crtc_state *new_crtc_state;
903 	struct drm_plane *plane;
904 	struct drm_plane_state *new_plane_state, *old_plane_state;
905 	int i, ret = 0;
906 
907 	for_each_oldnew_plane_in_state(state, plane, old_plane_state, new_plane_state, i) {
908 		const struct drm_plane_helper_funcs *funcs;
909 
910 		WARN_ON(!drm_modeset_is_locked(&plane->mutex));
911 
912 		funcs = plane->helper_private;
913 
914 		drm_atomic_helper_plane_changed(state, old_plane_state, new_plane_state, plane);
915 
916 		drm_atomic_helper_check_plane_damage(state, new_plane_state);
917 
918 		if (!funcs || !funcs->atomic_check)
919 			continue;
920 
921 		ret = funcs->atomic_check(plane, state);
922 		if (ret) {
923 			DRM_DEBUG_ATOMIC("[PLANE:%d:%s] atomic driver check failed\n",
924 					 plane->base.id, plane->name);
925 			return ret;
926 		}
927 	}
928 
929 	for_each_new_crtc_in_state(state, crtc, new_crtc_state, i) {
930 		const struct drm_crtc_helper_funcs *funcs;
931 
932 		funcs = crtc->helper_private;
933 
934 		if (!funcs || !funcs->atomic_check)
935 			continue;
936 
937 		ret = funcs->atomic_check(crtc, state);
938 		if (ret) {
939 			DRM_DEBUG_ATOMIC("[CRTC:%d:%s] atomic driver check failed\n",
940 					 crtc->base.id, crtc->name);
941 			return ret;
942 		}
943 	}
944 
945 	return ret;
946 }
947 EXPORT_SYMBOL(drm_atomic_helper_check_planes);
948 
949 /**
950  * drm_atomic_helper_check - validate state object
951  * @dev: DRM device
952  * @state: the driver state object
953  *
954  * Check the state object to see if the requested state is physically possible.
955  * Only CRTCs and planes have check callbacks, so for any additional (global)
956  * checking that a driver needs it can simply wrap that around this function.
957  * Drivers without such needs can directly use this as their
958  * &drm_mode_config_funcs.atomic_check callback.
959  *
960  * This just wraps the two parts of the state checking for planes and modeset
961  * state in the default order: First it calls drm_atomic_helper_check_modeset()
962  * and then drm_atomic_helper_check_planes(). The assumption is that the
963  * @drm_plane_helper_funcs.atomic_check and @drm_crtc_helper_funcs.atomic_check
964  * functions depend upon an updated adjusted_mode.clock to e.g. properly compute
965  * watermarks.
966  *
967  * Note that zpos normalization will add all enable planes to the state which
968  * might not desired for some drivers.
969  * For example enable/disable of a cursor plane which have fixed zpos value
970  * would trigger all other enabled planes to be forced to the state change.
971  *
972  * RETURNS:
973  * Zero for success or -errno
974  */
drm_atomic_helper_check(struct drm_device * dev,struct drm_atomic_state * state)975 int drm_atomic_helper_check(struct drm_device *dev,
976 			    struct drm_atomic_state *state)
977 {
978 	int ret;
979 
980 	ret = drm_atomic_helper_check_modeset(dev, state);
981 	if (ret)
982 		return ret;
983 
984 	if (dev->mode_config.normalize_zpos) {
985 		ret = drm_atomic_normalize_zpos(dev, state);
986 		if (ret)
987 			return ret;
988 	}
989 
990 	ret = drm_atomic_helper_check_planes(dev, state);
991 	if (ret)
992 		return ret;
993 
994 	if (state->legacy_cursor_update)
995 		state->async_update = !drm_atomic_helper_async_check(dev, state);
996 
997 	drm_self_refresh_helper_alter_state(state);
998 
999 	return ret;
1000 }
1001 EXPORT_SYMBOL(drm_atomic_helper_check);
1002 
1003 static bool
crtc_needs_disable(struct drm_crtc_state * old_state,struct drm_crtc_state * new_state)1004 crtc_needs_disable(struct drm_crtc_state *old_state,
1005 		   struct drm_crtc_state *new_state)
1006 {
1007 	/*
1008 	 * No new_state means the CRTC is off, so the only criteria is whether
1009 	 * it's currently active or in self refresh mode.
1010 	 */
1011 	if (!new_state)
1012 		return drm_atomic_crtc_effectively_active(old_state);
1013 
1014 	/*
1015 	 * We need to disable bridge(s) and CRTC if we're transitioning out of
1016 	 * self-refresh and changing CRTCs at the same time, because the
1017 	 * bridge tracks self-refresh status via CRTC state.
1018 	 */
1019 	if (old_state->self_refresh_active &&
1020 	    old_state->crtc != new_state->crtc)
1021 		return true;
1022 
1023 	/*
1024 	 * We also need to run through the crtc_funcs->disable() function if
1025 	 * the CRTC is currently on, if it's transitioning to self refresh
1026 	 * mode, or if it's in self refresh mode and needs to be fully
1027 	 * disabled.
1028 	 */
1029 	return old_state->active ||
1030 	       (old_state->self_refresh_active && !new_state->active) ||
1031 	       new_state->self_refresh_active;
1032 }
1033 
1034 static void
disable_outputs(struct drm_device * dev,struct drm_atomic_state * old_state)1035 disable_outputs(struct drm_device *dev, struct drm_atomic_state *old_state)
1036 {
1037 	struct drm_connector *connector;
1038 	struct drm_connector_state *old_conn_state, *new_conn_state;
1039 	struct drm_crtc *crtc;
1040 	struct drm_crtc_state *old_crtc_state, *new_crtc_state;
1041 	int i;
1042 
1043 	for_each_oldnew_connector_in_state(old_state, connector, old_conn_state, new_conn_state, i) {
1044 		const struct drm_encoder_helper_funcs *funcs;
1045 		struct drm_encoder *encoder;
1046 		struct drm_bridge *bridge;
1047 
1048 		/*
1049 		 * Shut down everything that's in the changeset and currently
1050 		 * still on. So need to check the old, saved state.
1051 		 */
1052 		if (!old_conn_state->crtc)
1053 			continue;
1054 
1055 		old_crtc_state = drm_atomic_get_old_crtc_state(old_state, old_conn_state->crtc);
1056 
1057 		if (new_conn_state->crtc)
1058 			new_crtc_state = drm_atomic_get_new_crtc_state(
1059 						old_state,
1060 						new_conn_state->crtc);
1061 		else
1062 			new_crtc_state = NULL;
1063 
1064 		if (!crtc_needs_disable(old_crtc_state, new_crtc_state) ||
1065 		    !drm_atomic_crtc_needs_modeset(old_conn_state->crtc->state))
1066 			continue;
1067 
1068 		encoder = old_conn_state->best_encoder;
1069 
1070 		/* We shouldn't get this far if we didn't previously have
1071 		 * an encoder.. but WARN_ON() rather than explode.
1072 		 */
1073 		if (WARN_ON(!encoder))
1074 			continue;
1075 
1076 		funcs = encoder->helper_private;
1077 
1078 		DRM_DEBUG_ATOMIC("disabling [ENCODER:%d:%s]\n",
1079 				 encoder->base.id, encoder->name);
1080 
1081 		/*
1082 		 * Each encoder has at most one connector (since we always steal
1083 		 * it away), so we won't call disable hooks twice.
1084 		 */
1085 		bridge = drm_bridge_chain_get_first_bridge(encoder);
1086 		drm_atomic_bridge_chain_disable(bridge, old_state);
1087 
1088 		/* Right function depends upon target state. */
1089 		if (funcs) {
1090 			if (funcs->atomic_disable)
1091 				funcs->atomic_disable(encoder, old_state);
1092 			else if (new_conn_state->crtc && funcs->prepare)
1093 				funcs->prepare(encoder);
1094 			else if (funcs->disable)
1095 				funcs->disable(encoder);
1096 			else if (funcs->dpms)
1097 				funcs->dpms(encoder, DRM_MODE_DPMS_OFF);
1098 		}
1099 
1100 		drm_atomic_bridge_chain_post_disable(bridge, old_state);
1101 	}
1102 
1103 	for_each_oldnew_crtc_in_state(old_state, crtc, old_crtc_state, new_crtc_state, i) {
1104 		const struct drm_crtc_helper_funcs *funcs;
1105 		int ret;
1106 
1107 		/* Shut down everything that needs a full modeset. */
1108 		if (!drm_atomic_crtc_needs_modeset(new_crtc_state))
1109 			continue;
1110 
1111 		if (!crtc_needs_disable(old_crtc_state, new_crtc_state))
1112 			continue;
1113 
1114 		funcs = crtc->helper_private;
1115 
1116 		DRM_DEBUG_ATOMIC("disabling [CRTC:%d:%s]\n",
1117 				 crtc->base.id, crtc->name);
1118 
1119 
1120 		/* Right function depends upon target state. */
1121 		if (new_crtc_state->enable && funcs->prepare)
1122 			funcs->prepare(crtc);
1123 		else if (funcs->atomic_disable)
1124 			funcs->atomic_disable(crtc, old_state);
1125 		else if (funcs->disable)
1126 			funcs->disable(crtc);
1127 		else if (funcs->dpms)
1128 			funcs->dpms(crtc, DRM_MODE_DPMS_OFF);
1129 
1130 		if (!drm_dev_has_vblank(dev))
1131 			continue;
1132 
1133 		ret = drm_crtc_vblank_get(crtc);
1134 		/*
1135 		 * Self-refresh is not a true "disable"; ensure vblank remains
1136 		 * enabled.
1137 		 */
1138 		if (new_crtc_state->self_refresh_active)
1139 			WARN_ONCE(ret != 0,
1140 				  "driver disabled vblank in self-refresh\n");
1141 		else
1142 			WARN_ONCE(ret != -EINVAL,
1143 				  "driver forgot to call drm_crtc_vblank_off()\n");
1144 		if (ret == 0)
1145 			drm_crtc_vblank_put(crtc);
1146 	}
1147 }
1148 
1149 /**
1150  * drm_atomic_helper_update_legacy_modeset_state - update legacy modeset state
1151  * @dev: DRM device
1152  * @old_state: atomic state object with old state structures
1153  *
1154  * This function updates all the various legacy modeset state pointers in
1155  * connectors, encoders and CRTCs.
1156  *
1157  * Drivers can use this for building their own atomic commit if they don't have
1158  * a pure helper-based modeset implementation.
1159  *
1160  * Since these updates are not synchronized with lockings, only code paths
1161  * called from &drm_mode_config_helper_funcs.atomic_commit_tail can look at the
1162  * legacy state filled out by this helper. Defacto this means this helper and
1163  * the legacy state pointers are only really useful for transitioning an
1164  * existing driver to the atomic world.
1165  */
1166 void
drm_atomic_helper_update_legacy_modeset_state(struct drm_device * dev,struct drm_atomic_state * old_state)1167 drm_atomic_helper_update_legacy_modeset_state(struct drm_device *dev,
1168 					      struct drm_atomic_state *old_state)
1169 {
1170 	struct drm_connector *connector;
1171 	struct drm_connector_state *old_conn_state, *new_conn_state;
1172 	struct drm_crtc *crtc;
1173 	struct drm_crtc_state *new_crtc_state;
1174 	int i;
1175 
1176 	/* clear out existing links and update dpms */
1177 	for_each_oldnew_connector_in_state(old_state, connector, old_conn_state, new_conn_state, i) {
1178 		if (connector->encoder) {
1179 			WARN_ON(!connector->encoder->crtc);
1180 
1181 			connector->encoder->crtc = NULL;
1182 			connector->encoder = NULL;
1183 		}
1184 
1185 		crtc = new_conn_state->crtc;
1186 		if ((!crtc && old_conn_state->crtc) ||
1187 		    (crtc && drm_atomic_crtc_needs_modeset(crtc->state))) {
1188 			int mode = DRM_MODE_DPMS_OFF;
1189 
1190 			if (crtc && crtc->state->active)
1191 				mode = DRM_MODE_DPMS_ON;
1192 
1193 			connector->dpms = mode;
1194 		}
1195 	}
1196 
1197 	/* set new links */
1198 	for_each_new_connector_in_state(old_state, connector, new_conn_state, i) {
1199 		if (!new_conn_state->crtc)
1200 			continue;
1201 
1202 		if (WARN_ON(!new_conn_state->best_encoder))
1203 			continue;
1204 
1205 		connector->encoder = new_conn_state->best_encoder;
1206 		connector->encoder->crtc = new_conn_state->crtc;
1207 	}
1208 
1209 	/* set legacy state in the crtc structure */
1210 	for_each_new_crtc_in_state(old_state, crtc, new_crtc_state, i) {
1211 		struct drm_plane *primary = crtc->primary;
1212 		struct drm_plane_state *new_plane_state;
1213 
1214 		crtc->mode = new_crtc_state->mode;
1215 		crtc->enabled = new_crtc_state->enable;
1216 
1217 		new_plane_state =
1218 			drm_atomic_get_new_plane_state(old_state, primary);
1219 
1220 		if (new_plane_state && new_plane_state->crtc == crtc) {
1221 			crtc->x = new_plane_state->src_x >> 16;
1222 			crtc->y = new_plane_state->src_y >> 16;
1223 		}
1224 	}
1225 }
1226 EXPORT_SYMBOL(drm_atomic_helper_update_legacy_modeset_state);
1227 
1228 /**
1229  * drm_atomic_helper_calc_timestamping_constants - update vblank timestamping constants
1230  * @state: atomic state object
1231  *
1232  * Updates the timestamping constants used for precise vblank timestamps
1233  * by calling drm_calc_timestamping_constants() for all enabled crtcs in @state.
1234  */
drm_atomic_helper_calc_timestamping_constants(struct drm_atomic_state * state)1235 void drm_atomic_helper_calc_timestamping_constants(struct drm_atomic_state *state)
1236 {
1237 	struct drm_crtc_state *new_crtc_state;
1238 	struct drm_crtc *crtc;
1239 	int i;
1240 
1241 	for_each_new_crtc_in_state(state, crtc, new_crtc_state, i) {
1242 		if (new_crtc_state->enable)
1243 			drm_calc_timestamping_constants(crtc,
1244 							&new_crtc_state->adjusted_mode);
1245 	}
1246 }
1247 EXPORT_SYMBOL(drm_atomic_helper_calc_timestamping_constants);
1248 
1249 static void
crtc_set_mode(struct drm_device * dev,struct drm_atomic_state * old_state)1250 crtc_set_mode(struct drm_device *dev, struct drm_atomic_state *old_state)
1251 {
1252 	struct drm_crtc *crtc;
1253 	struct drm_crtc_state *new_crtc_state;
1254 	struct drm_connector *connector;
1255 	struct drm_connector_state *new_conn_state;
1256 	int i;
1257 
1258 	for_each_new_crtc_in_state(old_state, crtc, new_crtc_state, i) {
1259 		const struct drm_crtc_helper_funcs *funcs;
1260 
1261 		if (!new_crtc_state->mode_changed)
1262 			continue;
1263 
1264 		funcs = crtc->helper_private;
1265 
1266 		if (new_crtc_state->enable && funcs->mode_set_nofb) {
1267 			DRM_DEBUG_ATOMIC("modeset on [CRTC:%d:%s]\n",
1268 					 crtc->base.id, crtc->name);
1269 
1270 			funcs->mode_set_nofb(crtc);
1271 		}
1272 	}
1273 
1274 	for_each_new_connector_in_state(old_state, connector, new_conn_state, i) {
1275 		const struct drm_encoder_helper_funcs *funcs;
1276 		struct drm_encoder *encoder;
1277 		struct drm_display_mode *mode, *adjusted_mode;
1278 		struct drm_bridge *bridge;
1279 
1280 		if (!new_conn_state->best_encoder)
1281 			continue;
1282 
1283 		encoder = new_conn_state->best_encoder;
1284 		funcs = encoder->helper_private;
1285 		new_crtc_state = new_conn_state->crtc->state;
1286 		mode = &new_crtc_state->mode;
1287 		adjusted_mode = &new_crtc_state->adjusted_mode;
1288 
1289 		if (!new_crtc_state->mode_changed)
1290 			continue;
1291 
1292 		DRM_DEBUG_ATOMIC("modeset on [ENCODER:%d:%s]\n",
1293 				 encoder->base.id, encoder->name);
1294 
1295 		/*
1296 		 * Each encoder has at most one connector (since we always steal
1297 		 * it away), so we won't call mode_set hooks twice.
1298 		 */
1299 		if (funcs && funcs->atomic_mode_set) {
1300 			funcs->atomic_mode_set(encoder, new_crtc_state,
1301 					       new_conn_state);
1302 		} else if (funcs && funcs->mode_set) {
1303 			funcs->mode_set(encoder, mode, adjusted_mode);
1304 		}
1305 
1306 		bridge = drm_bridge_chain_get_first_bridge(encoder);
1307 		drm_bridge_chain_mode_set(bridge, mode, adjusted_mode);
1308 	}
1309 }
1310 
1311 /**
1312  * drm_atomic_helper_commit_modeset_disables - modeset commit to disable outputs
1313  * @dev: DRM device
1314  * @old_state: atomic state object with old state structures
1315  *
1316  * This function shuts down all the outputs that need to be shut down and
1317  * prepares them (if required) with the new mode.
1318  *
1319  * For compatibility with legacy CRTC helpers this should be called before
1320  * drm_atomic_helper_commit_planes(), which is what the default commit function
1321  * does. But drivers with different needs can group the modeset commits together
1322  * and do the plane commits at the end. This is useful for drivers doing runtime
1323  * PM since planes updates then only happen when the CRTC is actually enabled.
1324  */
drm_atomic_helper_commit_modeset_disables(struct drm_device * dev,struct drm_atomic_state * old_state)1325 void drm_atomic_helper_commit_modeset_disables(struct drm_device *dev,
1326 					       struct drm_atomic_state *old_state)
1327 {
1328 	disable_outputs(dev, old_state);
1329 
1330 	drm_atomic_helper_update_legacy_modeset_state(dev, old_state);
1331 	drm_atomic_helper_calc_timestamping_constants(old_state);
1332 
1333 	crtc_set_mode(dev, old_state);
1334 }
1335 EXPORT_SYMBOL(drm_atomic_helper_commit_modeset_disables);
1336 
drm_atomic_helper_commit_writebacks(struct drm_device * dev,struct drm_atomic_state * old_state)1337 static void drm_atomic_helper_commit_writebacks(struct drm_device *dev,
1338 						struct drm_atomic_state *old_state)
1339 {
1340 	struct drm_connector *connector;
1341 	struct drm_connector_state *new_conn_state;
1342 	int i;
1343 
1344 	for_each_new_connector_in_state(old_state, connector, new_conn_state, i) {
1345 		const struct drm_connector_helper_funcs *funcs;
1346 
1347 		funcs = connector->helper_private;
1348 		if (!funcs->atomic_commit)
1349 			continue;
1350 
1351 		if (new_conn_state->writeback_job && new_conn_state->writeback_job->fb) {
1352 			WARN_ON(connector->connector_type != DRM_MODE_CONNECTOR_WRITEBACK);
1353 			funcs->atomic_commit(connector, old_state);
1354 		}
1355 	}
1356 }
1357 
1358 /**
1359  * drm_atomic_helper_commit_modeset_enables - modeset commit to enable outputs
1360  * @dev: DRM device
1361  * @old_state: atomic state object with old state structures
1362  *
1363  * This function enables all the outputs with the new configuration which had to
1364  * be turned off for the update.
1365  *
1366  * For compatibility with legacy CRTC helpers this should be called after
1367  * drm_atomic_helper_commit_planes(), which is what the default commit function
1368  * does. But drivers with different needs can group the modeset commits together
1369  * and do the plane commits at the end. This is useful for drivers doing runtime
1370  * PM since planes updates then only happen when the CRTC is actually enabled.
1371  */
drm_atomic_helper_commit_modeset_enables(struct drm_device * dev,struct drm_atomic_state * old_state)1372 void drm_atomic_helper_commit_modeset_enables(struct drm_device *dev,
1373 					      struct drm_atomic_state *old_state)
1374 {
1375 	struct drm_crtc *crtc;
1376 	struct drm_crtc_state *old_crtc_state;
1377 	struct drm_crtc_state *new_crtc_state;
1378 	struct drm_connector *connector;
1379 	struct drm_connector_state *new_conn_state;
1380 	int i;
1381 
1382 	for_each_oldnew_crtc_in_state(old_state, crtc, old_crtc_state, new_crtc_state, i) {
1383 		const struct drm_crtc_helper_funcs *funcs;
1384 
1385 		/* Need to filter out CRTCs where only planes change. */
1386 		if (!drm_atomic_crtc_needs_modeset(new_crtc_state))
1387 			continue;
1388 
1389 		if (!new_crtc_state->active)
1390 			continue;
1391 
1392 		funcs = crtc->helper_private;
1393 
1394 		if (new_crtc_state->enable) {
1395 			DRM_DEBUG_ATOMIC("enabling [CRTC:%d:%s]\n",
1396 					 crtc->base.id, crtc->name);
1397 			if (funcs->atomic_enable)
1398 				funcs->atomic_enable(crtc, old_state);
1399 			else if (funcs->commit)
1400 				funcs->commit(crtc);
1401 		}
1402 	}
1403 
1404 	for_each_new_connector_in_state(old_state, connector, new_conn_state, i) {
1405 		const struct drm_encoder_helper_funcs *funcs;
1406 		struct drm_encoder *encoder;
1407 		struct drm_bridge *bridge;
1408 
1409 		if (!new_conn_state->best_encoder)
1410 			continue;
1411 
1412 		if (!new_conn_state->crtc->state->active ||
1413 		    !drm_atomic_crtc_needs_modeset(new_conn_state->crtc->state))
1414 			continue;
1415 
1416 		encoder = new_conn_state->best_encoder;
1417 		funcs = encoder->helper_private;
1418 
1419 		DRM_DEBUG_ATOMIC("enabling [ENCODER:%d:%s]\n",
1420 				 encoder->base.id, encoder->name);
1421 
1422 		/*
1423 		 * Each encoder has at most one connector (since we always steal
1424 		 * it away), so we won't call enable hooks twice.
1425 		 */
1426 		bridge = drm_bridge_chain_get_first_bridge(encoder);
1427 		drm_atomic_bridge_chain_pre_enable(bridge, old_state);
1428 
1429 		if (funcs) {
1430 			if (funcs->atomic_enable)
1431 				funcs->atomic_enable(encoder, old_state);
1432 			else if (funcs->enable)
1433 				funcs->enable(encoder);
1434 			else if (funcs->commit)
1435 				funcs->commit(encoder);
1436 		}
1437 
1438 		drm_atomic_bridge_chain_enable(bridge, old_state);
1439 	}
1440 
1441 	drm_atomic_helper_commit_writebacks(dev, old_state);
1442 }
1443 EXPORT_SYMBOL(drm_atomic_helper_commit_modeset_enables);
1444 
1445 /**
1446  * drm_atomic_helper_wait_for_fences - wait for fences stashed in plane state
1447  * @dev: DRM device
1448  * @state: atomic state object with old state structures
1449  * @pre_swap: If true, do an interruptible wait, and @state is the new state.
1450  *	Otherwise @state is the old state.
1451  *
1452  * For implicit sync, driver should fish the exclusive fence out from the
1453  * incoming fb's and stash it in the drm_plane_state.  This is called after
1454  * drm_atomic_helper_swap_state() so it uses the current plane state (and
1455  * just uses the atomic state to find the changed planes)
1456  *
1457  * Note that @pre_swap is needed since the point where we block for fences moves
1458  * around depending upon whether an atomic commit is blocking or
1459  * non-blocking. For non-blocking commit all waiting needs to happen after
1460  * drm_atomic_helper_swap_state() is called, but for blocking commits we want
1461  * to wait **before** we do anything that can't be easily rolled back. That is
1462  * before we call drm_atomic_helper_swap_state().
1463  *
1464  * Returns zero if success or < 0 if dma_fence_wait() fails.
1465  */
drm_atomic_helper_wait_for_fences(struct drm_device * dev,struct drm_atomic_state * state,bool pre_swap)1466 int drm_atomic_helper_wait_for_fences(struct drm_device *dev,
1467 				      struct drm_atomic_state *state,
1468 				      bool pre_swap)
1469 {
1470 	struct drm_plane *plane;
1471 	struct drm_plane_state *new_plane_state;
1472 	int i, ret;
1473 
1474 	for_each_new_plane_in_state(state, plane, new_plane_state, i) {
1475 		if (!new_plane_state->fence)
1476 			continue;
1477 
1478 		WARN_ON(!new_plane_state->fb);
1479 
1480 		/*
1481 		 * If waiting for fences pre-swap (ie: nonblock), userspace can
1482 		 * still interrupt the operation. Instead of blocking until the
1483 		 * timer expires, make the wait interruptible.
1484 		 */
1485 		ret = dma_fence_wait(new_plane_state->fence, pre_swap);
1486 		if (ret)
1487 			return ret;
1488 
1489 		dma_fence_put(new_plane_state->fence);
1490 		new_plane_state->fence = NULL;
1491 	}
1492 
1493 	return 0;
1494 }
1495 EXPORT_SYMBOL(drm_atomic_helper_wait_for_fences);
1496 
1497 /**
1498  * drm_atomic_helper_wait_for_vblanks - wait for vblank on CRTCs
1499  * @dev: DRM device
1500  * @old_state: atomic state object with old state structures
1501  *
1502  * Helper to, after atomic commit, wait for vblanks on all affected
1503  * CRTCs (ie. before cleaning up old framebuffers using
1504  * drm_atomic_helper_cleanup_planes()). It will only wait on CRTCs where the
1505  * framebuffers have actually changed to optimize for the legacy cursor and
1506  * plane update use-case.
1507  *
1508  * Drivers using the nonblocking commit tracking support initialized by calling
1509  * drm_atomic_helper_setup_commit() should look at
1510  * drm_atomic_helper_wait_for_flip_done() as an alternative.
1511  */
1512 void
drm_atomic_helper_wait_for_vblanks(struct drm_device * dev,struct drm_atomic_state * old_state)1513 drm_atomic_helper_wait_for_vblanks(struct drm_device *dev,
1514 		struct drm_atomic_state *old_state)
1515 {
1516 	struct drm_crtc *crtc;
1517 	struct drm_crtc_state *old_crtc_state, *new_crtc_state;
1518 	int i, ret;
1519 	unsigned int crtc_mask = 0;
1520 
1521 	 /*
1522 	  * Legacy cursor ioctls are completely unsynced, and userspace
1523 	  * relies on that (by doing tons of cursor updates).
1524 	  */
1525 	if (old_state->legacy_cursor_update)
1526 		return;
1527 
1528 	for_each_oldnew_crtc_in_state(old_state, crtc, old_crtc_state, new_crtc_state, i) {
1529 		if (!new_crtc_state->active)
1530 			continue;
1531 
1532 		ret = drm_crtc_vblank_get(crtc);
1533 		if (ret != 0)
1534 			continue;
1535 
1536 		crtc_mask |= drm_crtc_mask(crtc);
1537 		old_state->crtcs[i].last_vblank_count = drm_crtc_vblank_count(crtc);
1538 	}
1539 
1540 	for_each_old_crtc_in_state(old_state, crtc, old_crtc_state, i) {
1541 		if (!(crtc_mask & drm_crtc_mask(crtc)))
1542 			continue;
1543 
1544 		ret = wait_event_timeout(dev->vblank[i].queue,
1545 				old_state->crtcs[i].last_vblank_count !=
1546 					drm_crtc_vblank_count(crtc),
1547 				msecs_to_jiffies(100));
1548 
1549 		WARN(!ret, "[CRTC:%d:%s] vblank wait timed out\n",
1550 		     crtc->base.id, crtc->name);
1551 
1552 		drm_crtc_vblank_put(crtc);
1553 	}
1554 }
1555 EXPORT_SYMBOL(drm_atomic_helper_wait_for_vblanks);
1556 
1557 /**
1558  * drm_atomic_helper_wait_for_flip_done - wait for all page flips to be done
1559  * @dev: DRM device
1560  * @old_state: atomic state object with old state structures
1561  *
1562  * Helper to, after atomic commit, wait for page flips on all affected
1563  * crtcs (ie. before cleaning up old framebuffers using
1564  * drm_atomic_helper_cleanup_planes()). Compared to
1565  * drm_atomic_helper_wait_for_vblanks() this waits for the completion on all
1566  * CRTCs, assuming that cursors-only updates are signalling their completion
1567  * immediately (or using a different path).
1568  *
1569  * This requires that drivers use the nonblocking commit tracking support
1570  * initialized using drm_atomic_helper_setup_commit().
1571  */
drm_atomic_helper_wait_for_flip_done(struct drm_device * dev,struct drm_atomic_state * old_state)1572 void drm_atomic_helper_wait_for_flip_done(struct drm_device *dev,
1573 					  struct drm_atomic_state *old_state)
1574 {
1575 	struct drm_crtc *crtc;
1576 	int i;
1577 
1578 	for (i = 0; i < dev->mode_config.num_crtc; i++) {
1579 		struct drm_crtc_commit *commit = old_state->crtcs[i].commit;
1580 		int ret;
1581 
1582 		crtc = old_state->crtcs[i].ptr;
1583 
1584 		if (!crtc || !commit)
1585 			continue;
1586 
1587 		ret = wait_for_completion_timeout(&commit->flip_done, 10 * HZ);
1588 		if (ret == 0)
1589 			DRM_ERROR("[CRTC:%d:%s] flip_done timed out\n",
1590 				  crtc->base.id, crtc->name);
1591 	}
1592 
1593 	if (old_state->fake_commit)
1594 		complete_all(&old_state->fake_commit->flip_done);
1595 }
1596 EXPORT_SYMBOL(drm_atomic_helper_wait_for_flip_done);
1597 
1598 /**
1599  * drm_atomic_helper_commit_tail - commit atomic update to hardware
1600  * @old_state: atomic state object with old state structures
1601  *
1602  * This is the default implementation for the
1603  * &drm_mode_config_helper_funcs.atomic_commit_tail hook, for drivers
1604  * that do not support runtime_pm or do not need the CRTC to be
1605  * enabled to perform a commit. Otherwise, see
1606  * drm_atomic_helper_commit_tail_rpm().
1607  *
1608  * Note that the default ordering of how the various stages are called is to
1609  * match the legacy modeset helper library closest.
1610  */
drm_atomic_helper_commit_tail(struct drm_atomic_state * old_state)1611 void drm_atomic_helper_commit_tail(struct drm_atomic_state *old_state)
1612 {
1613 	struct drm_device *dev = old_state->dev;
1614 
1615 	drm_atomic_helper_commit_modeset_disables(dev, old_state);
1616 
1617 	drm_atomic_helper_commit_planes(dev, old_state, 0);
1618 
1619 	drm_atomic_helper_commit_modeset_enables(dev, old_state);
1620 
1621 	drm_atomic_helper_fake_vblank(old_state);
1622 
1623 	drm_atomic_helper_commit_hw_done(old_state);
1624 
1625 	drm_atomic_helper_wait_for_vblanks(dev, old_state);
1626 
1627 	drm_atomic_helper_cleanup_planes(dev, old_state);
1628 }
1629 EXPORT_SYMBOL(drm_atomic_helper_commit_tail);
1630 
1631 /**
1632  * drm_atomic_helper_commit_tail_rpm - commit atomic update to hardware
1633  * @old_state: new modeset state to be committed
1634  *
1635  * This is an alternative implementation for the
1636  * &drm_mode_config_helper_funcs.atomic_commit_tail hook, for drivers
1637  * that support runtime_pm or need the CRTC to be enabled to perform a
1638  * commit. Otherwise, one should use the default implementation
1639  * drm_atomic_helper_commit_tail().
1640  */
drm_atomic_helper_commit_tail_rpm(struct drm_atomic_state * old_state)1641 void drm_atomic_helper_commit_tail_rpm(struct drm_atomic_state *old_state)
1642 {
1643 	struct drm_device *dev = old_state->dev;
1644 
1645 	drm_atomic_helper_commit_modeset_disables(dev, old_state);
1646 
1647 	drm_atomic_helper_commit_modeset_enables(dev, old_state);
1648 
1649 	drm_atomic_helper_commit_planes(dev, old_state,
1650 					DRM_PLANE_COMMIT_ACTIVE_ONLY);
1651 
1652 	drm_atomic_helper_fake_vblank(old_state);
1653 
1654 	drm_atomic_helper_commit_hw_done(old_state);
1655 
1656 	drm_atomic_helper_wait_for_vblanks(dev, old_state);
1657 
1658 	drm_atomic_helper_cleanup_planes(dev, old_state);
1659 }
1660 EXPORT_SYMBOL(drm_atomic_helper_commit_tail_rpm);
1661 
commit_tail(struct drm_atomic_state * old_state)1662 static void commit_tail(struct drm_atomic_state *old_state)
1663 {
1664 	struct drm_device *dev = old_state->dev;
1665 	const struct drm_mode_config_helper_funcs *funcs;
1666 	struct drm_crtc_state *new_crtc_state;
1667 	struct drm_crtc *crtc;
1668 	ktime_t start;
1669 	s64 commit_time_ms;
1670 	unsigned int i, new_self_refresh_mask = 0;
1671 
1672 	funcs = dev->mode_config.helper_private;
1673 
1674 	/*
1675 	 * We're measuring the _entire_ commit, so the time will vary depending
1676 	 * on how many fences and objects are involved. For the purposes of self
1677 	 * refresh, this is desirable since it'll give us an idea of how
1678 	 * congested things are. This will inform our decision on how often we
1679 	 * should enter self refresh after idle.
1680 	 *
1681 	 * These times will be averaged out in the self refresh helpers to avoid
1682 	 * overreacting over one outlier frame
1683 	 */
1684 	start = ktime_get();
1685 
1686 	drm_atomic_helper_wait_for_fences(dev, old_state, false);
1687 
1688 	drm_atomic_helper_wait_for_dependencies(old_state);
1689 
1690 	/*
1691 	 * We cannot safely access new_crtc_state after
1692 	 * drm_atomic_helper_commit_hw_done() so figure out which crtc's have
1693 	 * self-refresh active beforehand:
1694 	 */
1695 	for_each_new_crtc_in_state(old_state, crtc, new_crtc_state, i)
1696 		if (new_crtc_state->self_refresh_active)
1697 			new_self_refresh_mask |= BIT(i);
1698 
1699 	if (funcs && funcs->atomic_commit_tail)
1700 		funcs->atomic_commit_tail(old_state);
1701 	else
1702 		drm_atomic_helper_commit_tail(old_state);
1703 
1704 	commit_time_ms = ktime_ms_delta(ktime_get(), start);
1705 	if (commit_time_ms > 0)
1706 		drm_self_refresh_helper_update_avg_times(old_state,
1707 						 (unsigned long)commit_time_ms,
1708 						 new_self_refresh_mask);
1709 
1710 	drm_atomic_helper_commit_cleanup_done(old_state);
1711 
1712 	drm_atomic_state_put(old_state);
1713 }
1714 
commit_work(struct work_struct * work)1715 static void commit_work(struct work_struct *work)
1716 {
1717 	struct drm_atomic_state *state = container_of(work,
1718 						      struct drm_atomic_state,
1719 						      commit_work);
1720 	commit_tail(state);
1721 }
1722 
1723 /**
1724  * drm_atomic_helper_async_check - check if state can be committed asynchronously
1725  * @dev: DRM device
1726  * @state: the driver state object
1727  *
1728  * This helper will check if it is possible to commit the state asynchronously.
1729  * Async commits are not supposed to swap the states like normal sync commits
1730  * but just do in-place changes on the current state.
1731  *
1732  * It will return 0 if the commit can happen in an asynchronous fashion or error
1733  * if not. Note that error just mean it can't be committed asynchronously, if it
1734  * fails the commit should be treated like a normal synchronous commit.
1735  */
drm_atomic_helper_async_check(struct drm_device * dev,struct drm_atomic_state * state)1736 int drm_atomic_helper_async_check(struct drm_device *dev,
1737 				   struct drm_atomic_state *state)
1738 {
1739 	struct drm_crtc *crtc;
1740 	struct drm_crtc_state *crtc_state;
1741 	struct drm_plane *plane = NULL;
1742 	struct drm_plane_state *old_plane_state = NULL;
1743 	struct drm_plane_state *new_plane_state = NULL;
1744 	const struct drm_plane_helper_funcs *funcs;
1745 	int i, n_planes = 0;
1746 
1747 	for_each_new_crtc_in_state(state, crtc, crtc_state, i) {
1748 		if (drm_atomic_crtc_needs_modeset(crtc_state))
1749 			return -EINVAL;
1750 	}
1751 
1752 	for_each_oldnew_plane_in_state(state, plane, old_plane_state, new_plane_state, i)
1753 		n_planes++;
1754 
1755 	/* FIXME: we support only single plane updates for now */
1756 	if (n_planes != 1)
1757 		return -EINVAL;
1758 
1759 	if (!new_plane_state->crtc ||
1760 	    old_plane_state->crtc != new_plane_state->crtc)
1761 		return -EINVAL;
1762 
1763 	funcs = plane->helper_private;
1764 	if (!funcs->atomic_async_update)
1765 		return -EINVAL;
1766 
1767 	if (new_plane_state->fence)
1768 		return -EINVAL;
1769 
1770 	/*
1771 	 * Don't do an async update if there is an outstanding commit modifying
1772 	 * the plane.  This prevents our async update's changes from getting
1773 	 * overridden by a previous synchronous update's state.
1774 	 */
1775 	if (old_plane_state->commit &&
1776 	    !try_wait_for_completion(&old_plane_state->commit->hw_done)) {
1777 		DRM_DEBUG_ATOMIC("[PLANE:%d:%s] inflight previous commit preventing async commit\n",
1778 			plane->base.id, plane->name);
1779 		return -EBUSY;
1780 	}
1781 
1782 	return funcs->atomic_async_check(plane, state);
1783 }
1784 EXPORT_SYMBOL(drm_atomic_helper_async_check);
1785 
1786 /**
1787  * drm_atomic_helper_async_commit - commit state asynchronously
1788  * @dev: DRM device
1789  * @state: the driver state object
1790  *
1791  * This function commits a state asynchronously, i.e., not vblank
1792  * synchronized. It should be used on a state only when
1793  * drm_atomic_async_check() succeeds. Async commits are not supposed to swap
1794  * the states like normal sync commits, but just do in-place changes on the
1795  * current state.
1796  *
1797  * TODO: Implement full swap instead of doing in-place changes.
1798  */
drm_atomic_helper_async_commit(struct drm_device * dev,struct drm_atomic_state * state)1799 void drm_atomic_helper_async_commit(struct drm_device *dev,
1800 				    struct drm_atomic_state *state)
1801 {
1802 	struct drm_plane *plane;
1803 	struct drm_plane_state *plane_state;
1804 	const struct drm_plane_helper_funcs *funcs;
1805 	int i;
1806 
1807 	for_each_new_plane_in_state(state, plane, plane_state, i) {
1808 		struct drm_framebuffer *new_fb = plane_state->fb;
1809 		struct drm_framebuffer *old_fb = plane->state->fb;
1810 
1811 		funcs = plane->helper_private;
1812 		funcs->atomic_async_update(plane, state);
1813 
1814 		/*
1815 		 * ->atomic_async_update() is supposed to update the
1816 		 * plane->state in-place, make sure at least common
1817 		 * properties have been properly updated.
1818 		 */
1819 		WARN_ON_ONCE(plane->state->fb != new_fb);
1820 		WARN_ON_ONCE(plane->state->crtc_x != plane_state->crtc_x);
1821 		WARN_ON_ONCE(plane->state->crtc_y != plane_state->crtc_y);
1822 		WARN_ON_ONCE(plane->state->src_x != plane_state->src_x);
1823 		WARN_ON_ONCE(plane->state->src_y != plane_state->src_y);
1824 
1825 		/*
1826 		 * Make sure the FBs have been swapped so that cleanups in the
1827 		 * new_state performs a cleanup in the old FB.
1828 		 */
1829 		WARN_ON_ONCE(plane_state->fb != old_fb);
1830 	}
1831 }
1832 EXPORT_SYMBOL(drm_atomic_helper_async_commit);
1833 
1834 /**
1835  * drm_atomic_helper_commit - commit validated state object
1836  * @dev: DRM device
1837  * @state: the driver state object
1838  * @nonblock: whether nonblocking behavior is requested.
1839  *
1840  * This function commits a with drm_atomic_helper_check() pre-validated state
1841  * object. This can still fail when e.g. the framebuffer reservation fails. This
1842  * function implements nonblocking commits, using
1843  * drm_atomic_helper_setup_commit() and related functions.
1844  *
1845  * Committing the actual hardware state is done through the
1846  * &drm_mode_config_helper_funcs.atomic_commit_tail callback, or its default
1847  * implementation drm_atomic_helper_commit_tail().
1848  *
1849  * RETURNS:
1850  * Zero for success or -errno.
1851  */
drm_atomic_helper_commit(struct drm_device * dev,struct drm_atomic_state * state,bool nonblock)1852 int drm_atomic_helper_commit(struct drm_device *dev,
1853 			     struct drm_atomic_state *state,
1854 			     bool nonblock)
1855 {
1856 	int ret;
1857 
1858 	if (state->async_update) {
1859 		ret = drm_atomic_helper_prepare_planes(dev, state);
1860 		if (ret)
1861 			return ret;
1862 
1863 		drm_atomic_helper_async_commit(dev, state);
1864 		drm_atomic_helper_cleanup_planes(dev, state);
1865 
1866 		return 0;
1867 	}
1868 
1869 	ret = drm_atomic_helper_setup_commit(state, nonblock);
1870 	if (ret)
1871 		return ret;
1872 
1873 	INIT_WORK(&state->commit_work, commit_work);
1874 
1875 	ret = drm_atomic_helper_prepare_planes(dev, state);
1876 	if (ret)
1877 		return ret;
1878 
1879 	if (!nonblock) {
1880 		ret = drm_atomic_helper_wait_for_fences(dev, state, true);
1881 		if (ret)
1882 			goto err;
1883 	}
1884 
1885 	/*
1886 	 * This is the point of no return - everything below never fails except
1887 	 * when the hw goes bonghits. Which means we can commit the new state on
1888 	 * the software side now.
1889 	 */
1890 
1891 	ret = drm_atomic_helper_swap_state(state, true);
1892 	if (ret)
1893 		goto err;
1894 
1895 	/*
1896 	 * Everything below can be run asynchronously without the need to grab
1897 	 * any modeset locks at all under one condition: It must be guaranteed
1898 	 * that the asynchronous work has either been cancelled (if the driver
1899 	 * supports it, which at least requires that the framebuffers get
1900 	 * cleaned up with drm_atomic_helper_cleanup_planes()) or completed
1901 	 * before the new state gets committed on the software side with
1902 	 * drm_atomic_helper_swap_state().
1903 	 *
1904 	 * This scheme allows new atomic state updates to be prepared and
1905 	 * checked in parallel to the asynchronous completion of the previous
1906 	 * update. Which is important since compositors need to figure out the
1907 	 * composition of the next frame right after having submitted the
1908 	 * current layout.
1909 	 *
1910 	 * NOTE: Commit work has multiple phases, first hardware commit, then
1911 	 * cleanup. We want them to overlap, hence need system_unbound_wq to
1912 	 * make sure work items don't artificially stall on each another.
1913 	 */
1914 
1915 	drm_atomic_state_get(state);
1916 	if (nonblock)
1917 		queue_work(system_unbound_wq, &state->commit_work);
1918 	else
1919 		commit_tail(state);
1920 
1921 	return 0;
1922 
1923 err:
1924 	drm_atomic_helper_cleanup_planes(dev, state);
1925 	return ret;
1926 }
1927 EXPORT_SYMBOL(drm_atomic_helper_commit);
1928 
1929 /**
1930  * DOC: implementing nonblocking commit
1931  *
1932  * Nonblocking atomic commits should use struct &drm_crtc_commit to sequence
1933  * different operations against each another. Locks, especially struct
1934  * &drm_modeset_lock, should not be held in worker threads or any other
1935  * asynchronous context used to commit the hardware state.
1936  *
1937  * drm_atomic_helper_commit() implements the recommended sequence for
1938  * nonblocking commits, using drm_atomic_helper_setup_commit() internally:
1939  *
1940  * 1. Run drm_atomic_helper_prepare_planes(). Since this can fail and we
1941  * need to propagate out of memory/VRAM errors to userspace, it must be called
1942  * synchronously.
1943  *
1944  * 2. Synchronize with any outstanding nonblocking commit worker threads which
1945  * might be affected by the new state update. This is handled by
1946  * drm_atomic_helper_setup_commit().
1947  *
1948  * Asynchronous workers need to have sufficient parallelism to be able to run
1949  * different atomic commits on different CRTCs in parallel. The simplest way to
1950  * achieve this is by running them on the &system_unbound_wq work queue. Note
1951  * that drivers are not required to split up atomic commits and run an
1952  * individual commit in parallel - userspace is supposed to do that if it cares.
1953  * But it might be beneficial to do that for modesets, since those necessarily
1954  * must be done as one global operation, and enabling or disabling a CRTC can
1955  * take a long time. But even that is not required.
1956  *
1957  * IMPORTANT: A &drm_atomic_state update for multiple CRTCs is sequenced
1958  * against all CRTCs therein. Therefore for atomic state updates which only flip
1959  * planes the driver must not get the struct &drm_crtc_state of unrelated CRTCs
1960  * in its atomic check code: This would prevent committing of atomic updates to
1961  * multiple CRTCs in parallel. In general, adding additional state structures
1962  * should be avoided as much as possible, because this reduces parallelism in
1963  * (nonblocking) commits, both due to locking and due to commit sequencing
1964  * requirements.
1965  *
1966  * 3. The software state is updated synchronously with
1967  * drm_atomic_helper_swap_state(). Doing this under the protection of all modeset
1968  * locks means concurrent callers never see inconsistent state. Note that commit
1969  * workers do not hold any locks; their access is only coordinated through
1970  * ordering. If workers would access state only through the pointers in the
1971  * free-standing state objects (currently not the case for any driver) then even
1972  * multiple pending commits could be in-flight at the same time.
1973  *
1974  * 4. Schedule a work item to do all subsequent steps, using the split-out
1975  * commit helpers: a) pre-plane commit b) plane commit c) post-plane commit and
1976  * then cleaning up the framebuffers after the old framebuffer is no longer
1977  * being displayed. The scheduled work should synchronize against other workers
1978  * using the &drm_crtc_commit infrastructure as needed. See
1979  * drm_atomic_helper_setup_commit() for more details.
1980  */
1981 
stall_checks(struct drm_crtc * crtc,bool nonblock)1982 static int stall_checks(struct drm_crtc *crtc, bool nonblock)
1983 {
1984 	struct drm_crtc_commit *commit, *stall_commit = NULL;
1985 	bool completed = true;
1986 	int i;
1987 	long ret = 0;
1988 
1989 	spin_lock(&crtc->commit_lock);
1990 	i = 0;
1991 	list_for_each_entry(commit, &crtc->commit_list, commit_entry) {
1992 		if (i == 0) {
1993 			completed = try_wait_for_completion(&commit->flip_done);
1994 			/*
1995 			 * Userspace is not allowed to get ahead of the previous
1996 			 * commit with nonblocking ones.
1997 			 */
1998 			if (!completed && nonblock) {
1999 				spin_unlock(&crtc->commit_lock);
2000 				DRM_DEBUG_ATOMIC("[CRTC:%d:%s] busy with a previous commit\n",
2001 					crtc->base.id, crtc->name);
2002 
2003 				return -EBUSY;
2004 			}
2005 		} else if (i == 1) {
2006 			stall_commit = drm_crtc_commit_get(commit);
2007 			break;
2008 		}
2009 
2010 		i++;
2011 	}
2012 	spin_unlock(&crtc->commit_lock);
2013 
2014 	if (!stall_commit)
2015 		return 0;
2016 
2017 	/* We don't want to let commits get ahead of cleanup work too much,
2018 	 * stalling on 2nd previous commit means triple-buffer won't ever stall.
2019 	 */
2020 	ret = wait_for_completion_interruptible_timeout(&stall_commit->cleanup_done,
2021 							10*HZ);
2022 	if (ret == 0)
2023 		DRM_ERROR("[CRTC:%d:%s] cleanup_done timed out\n",
2024 			  crtc->base.id, crtc->name);
2025 
2026 	drm_crtc_commit_put(stall_commit);
2027 
2028 	return ret < 0 ? ret : 0;
2029 }
2030 
release_crtc_commit(struct completion * completion)2031 static void release_crtc_commit(struct completion *completion)
2032 {
2033 	struct drm_crtc_commit *commit = container_of(completion,
2034 						      typeof(*commit),
2035 						      flip_done);
2036 
2037 	drm_crtc_commit_put(commit);
2038 }
2039 
init_commit(struct drm_crtc_commit * commit,struct drm_crtc * crtc)2040 static void init_commit(struct drm_crtc_commit *commit, struct drm_crtc *crtc)
2041 {
2042 	init_completion(&commit->flip_done);
2043 	init_completion(&commit->hw_done);
2044 	init_completion(&commit->cleanup_done);
2045 	INIT_LIST_HEAD(&commit->commit_entry);
2046 	kref_init(&commit->ref);
2047 	commit->crtc = crtc;
2048 }
2049 
2050 static struct drm_crtc_commit *
crtc_or_fake_commit(struct drm_atomic_state * state,struct drm_crtc * crtc)2051 crtc_or_fake_commit(struct drm_atomic_state *state, struct drm_crtc *crtc)
2052 {
2053 	if (crtc) {
2054 		struct drm_crtc_state *new_crtc_state;
2055 
2056 		new_crtc_state = drm_atomic_get_new_crtc_state(state, crtc);
2057 
2058 		return new_crtc_state->commit;
2059 	}
2060 
2061 	if (!state->fake_commit) {
2062 		state->fake_commit = kzalloc(sizeof(*state->fake_commit), GFP_KERNEL);
2063 		if (!state->fake_commit)
2064 			return NULL;
2065 
2066 		init_commit(state->fake_commit, NULL);
2067 	}
2068 
2069 	return state->fake_commit;
2070 }
2071 
2072 /**
2073  * drm_atomic_helper_setup_commit - setup possibly nonblocking commit
2074  * @state: new modeset state to be committed
2075  * @nonblock: whether nonblocking behavior is requested.
2076  *
2077  * This function prepares @state to be used by the atomic helper's support for
2078  * nonblocking commits. Drivers using the nonblocking commit infrastructure
2079  * should always call this function from their
2080  * &drm_mode_config_funcs.atomic_commit hook.
2081  *
2082  * Drivers that need to extend the commit setup to private objects can use the
2083  * &drm_mode_config_helper_funcs.atomic_commit_setup hook.
2084  *
2085  * To be able to use this support drivers need to use a few more helper
2086  * functions. drm_atomic_helper_wait_for_dependencies() must be called before
2087  * actually committing the hardware state, and for nonblocking commits this call
2088  * must be placed in the async worker. See also drm_atomic_helper_swap_state()
2089  * and its stall parameter, for when a driver's commit hooks look at the
2090  * &drm_crtc.state, &drm_plane.state or &drm_connector.state pointer directly.
2091  *
2092  * Completion of the hardware commit step must be signalled using
2093  * drm_atomic_helper_commit_hw_done(). After this step the driver is not allowed
2094  * to read or change any permanent software or hardware modeset state. The only
2095  * exception is state protected by other means than &drm_modeset_lock locks.
2096  * Only the free standing @state with pointers to the old state structures can
2097  * be inspected, e.g. to clean up old buffers using
2098  * drm_atomic_helper_cleanup_planes().
2099  *
2100  * At the very end, before cleaning up @state drivers must call
2101  * drm_atomic_helper_commit_cleanup_done().
2102  *
2103  * This is all implemented by in drm_atomic_helper_commit(), giving drivers a
2104  * complete and easy-to-use default implementation of the atomic_commit() hook.
2105  *
2106  * The tracking of asynchronously executed and still pending commits is done
2107  * using the core structure &drm_crtc_commit.
2108  *
2109  * By default there's no need to clean up resources allocated by this function
2110  * explicitly: drm_atomic_state_default_clear() will take care of that
2111  * automatically.
2112  *
2113  * Returns:
2114  *
2115  * 0 on success. -EBUSY when userspace schedules nonblocking commits too fast,
2116  * -ENOMEM on allocation failures and -EINTR when a signal is pending.
2117  */
drm_atomic_helper_setup_commit(struct drm_atomic_state * state,bool nonblock)2118 int drm_atomic_helper_setup_commit(struct drm_atomic_state *state,
2119 				   bool nonblock)
2120 {
2121 	struct drm_crtc *crtc;
2122 	struct drm_crtc_state *old_crtc_state, *new_crtc_state;
2123 	struct drm_connector *conn;
2124 	struct drm_connector_state *old_conn_state, *new_conn_state;
2125 	struct drm_plane *plane;
2126 	struct drm_plane_state *old_plane_state, *new_plane_state;
2127 	struct drm_crtc_commit *commit;
2128 	const struct drm_mode_config_helper_funcs *funcs;
2129 	int i, ret;
2130 
2131 	funcs = state->dev->mode_config.helper_private;
2132 
2133 	for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state, new_crtc_state, i) {
2134 		commit = kzalloc(sizeof(*commit), GFP_KERNEL);
2135 		if (!commit)
2136 			return -ENOMEM;
2137 
2138 		init_commit(commit, crtc);
2139 
2140 		new_crtc_state->commit = commit;
2141 
2142 		ret = stall_checks(crtc, nonblock);
2143 		if (ret)
2144 			return ret;
2145 
2146 		/*
2147 		 * Drivers only send out events when at least either current or
2148 		 * new CRTC state is active. Complete right away if everything
2149 		 * stays off.
2150 		 */
2151 		if (!old_crtc_state->active && !new_crtc_state->active) {
2152 			complete_all(&commit->flip_done);
2153 			continue;
2154 		}
2155 
2156 		/* Legacy cursor updates are fully unsynced. */
2157 		if (state->legacy_cursor_update) {
2158 			complete_all(&commit->flip_done);
2159 			continue;
2160 		}
2161 
2162 		if (!new_crtc_state->event) {
2163 			commit->event = kzalloc(sizeof(*commit->event),
2164 						GFP_KERNEL);
2165 			if (!commit->event)
2166 				return -ENOMEM;
2167 
2168 			new_crtc_state->event = commit->event;
2169 		}
2170 
2171 		new_crtc_state->event->base.completion = &commit->flip_done;
2172 		new_crtc_state->event->base.completion_release = release_crtc_commit;
2173 		drm_crtc_commit_get(commit);
2174 
2175 		commit->abort_completion = true;
2176 
2177 		state->crtcs[i].commit = commit;
2178 		drm_crtc_commit_get(commit);
2179 	}
2180 
2181 	for_each_oldnew_connector_in_state(state, conn, old_conn_state, new_conn_state, i) {
2182 		/*
2183 		 * Userspace is not allowed to get ahead of the previous
2184 		 * commit with nonblocking ones.
2185 		 */
2186 		if (nonblock && old_conn_state->commit &&
2187 		    !try_wait_for_completion(&old_conn_state->commit->flip_done)) {
2188 			DRM_DEBUG_ATOMIC("[CONNECTOR:%d:%s] busy with a previous commit\n",
2189 				conn->base.id, conn->name);
2190 
2191 			return -EBUSY;
2192 		}
2193 
2194 		/* Always track connectors explicitly for e.g. link retraining. */
2195 		commit = crtc_or_fake_commit(state, new_conn_state->crtc ?: old_conn_state->crtc);
2196 		if (!commit)
2197 			return -ENOMEM;
2198 
2199 		new_conn_state->commit = drm_crtc_commit_get(commit);
2200 	}
2201 
2202 	for_each_oldnew_plane_in_state(state, plane, old_plane_state, new_plane_state, i) {
2203 		/*
2204 		 * Userspace is not allowed to get ahead of the previous
2205 		 * commit with nonblocking ones.
2206 		 */
2207 		if (nonblock && old_plane_state->commit &&
2208 		    !try_wait_for_completion(&old_plane_state->commit->flip_done)) {
2209 			DRM_DEBUG_ATOMIC("[PLANE:%d:%s] busy with a previous commit\n",
2210 				plane->base.id, plane->name);
2211 
2212 			return -EBUSY;
2213 		}
2214 
2215 		/* Always track planes explicitly for async pageflip support. */
2216 		commit = crtc_or_fake_commit(state, new_plane_state->crtc ?: old_plane_state->crtc);
2217 		if (!commit)
2218 			return -ENOMEM;
2219 
2220 		new_plane_state->commit = drm_crtc_commit_get(commit);
2221 	}
2222 
2223 	if (funcs && funcs->atomic_commit_setup)
2224 		return funcs->atomic_commit_setup(state);
2225 
2226 	return 0;
2227 }
2228 EXPORT_SYMBOL(drm_atomic_helper_setup_commit);
2229 
2230 /**
2231  * drm_atomic_helper_wait_for_dependencies - wait for required preceeding commits
2232  * @old_state: atomic state object with old state structures
2233  *
2234  * This function waits for all preceeding commits that touch the same CRTC as
2235  * @old_state to both be committed to the hardware (as signalled by
2236  * drm_atomic_helper_commit_hw_done()) and executed by the hardware (as signalled
2237  * by calling drm_crtc_send_vblank_event() on the &drm_crtc_state.event).
2238  *
2239  * This is part of the atomic helper support for nonblocking commits, see
2240  * drm_atomic_helper_setup_commit() for an overview.
2241  */
drm_atomic_helper_wait_for_dependencies(struct drm_atomic_state * old_state)2242 void drm_atomic_helper_wait_for_dependencies(struct drm_atomic_state *old_state)
2243 {
2244 	struct drm_crtc *crtc;
2245 	struct drm_crtc_state *old_crtc_state;
2246 	struct drm_plane *plane;
2247 	struct drm_plane_state *old_plane_state;
2248 	struct drm_connector *conn;
2249 	struct drm_connector_state *old_conn_state;
2250 	int i;
2251 	long ret;
2252 
2253 	for_each_old_crtc_in_state(old_state, crtc, old_crtc_state, i) {
2254 		ret = drm_crtc_commit_wait(old_crtc_state->commit);
2255 		if (ret)
2256 			DRM_ERROR("[CRTC:%d:%s] commit wait timed out\n",
2257 				  crtc->base.id, crtc->name);
2258 	}
2259 
2260 	for_each_old_connector_in_state(old_state, conn, old_conn_state, i) {
2261 		ret = drm_crtc_commit_wait(old_conn_state->commit);
2262 		if (ret)
2263 			DRM_ERROR("[CONNECTOR:%d:%s] commit wait timed out\n",
2264 				  conn->base.id, conn->name);
2265 	}
2266 
2267 	for_each_old_plane_in_state(old_state, plane, old_plane_state, i) {
2268 		ret = drm_crtc_commit_wait(old_plane_state->commit);
2269 		if (ret)
2270 			DRM_ERROR("[PLANE:%d:%s] commit wait timed out\n",
2271 				  plane->base.id, plane->name);
2272 	}
2273 }
2274 EXPORT_SYMBOL(drm_atomic_helper_wait_for_dependencies);
2275 
2276 /**
2277  * drm_atomic_helper_fake_vblank - fake VBLANK events if needed
2278  * @old_state: atomic state object with old state structures
2279  *
2280  * This function walks all CRTCs and fakes VBLANK events on those with
2281  * &drm_crtc_state.no_vblank set to true and &drm_crtc_state.event != NULL.
2282  * The primary use of this function is writeback connectors working in oneshot
2283  * mode and faking VBLANK events. In this case they only fake the VBLANK event
2284  * when a job is queued, and any change to the pipeline that does not touch the
2285  * connector is leading to timeouts when calling
2286  * drm_atomic_helper_wait_for_vblanks() or
2287  * drm_atomic_helper_wait_for_flip_done(). In addition to writeback
2288  * connectors, this function can also fake VBLANK events for CRTCs without
2289  * VBLANK interrupt.
2290  *
2291  * This is part of the atomic helper support for nonblocking commits, see
2292  * drm_atomic_helper_setup_commit() for an overview.
2293  */
drm_atomic_helper_fake_vblank(struct drm_atomic_state * old_state)2294 void drm_atomic_helper_fake_vblank(struct drm_atomic_state *old_state)
2295 {
2296 	struct drm_crtc_state *new_crtc_state;
2297 	struct drm_crtc *crtc;
2298 	int i;
2299 
2300 	for_each_new_crtc_in_state(old_state, crtc, new_crtc_state, i) {
2301 		unsigned long flags;
2302 
2303 		if (!new_crtc_state->no_vblank)
2304 			continue;
2305 
2306 		spin_lock_irqsave(&old_state->dev->event_lock, flags);
2307 		if (new_crtc_state->event) {
2308 			drm_crtc_send_vblank_event(crtc,
2309 						   new_crtc_state->event);
2310 			new_crtc_state->event = NULL;
2311 		}
2312 		spin_unlock_irqrestore(&old_state->dev->event_lock, flags);
2313 	}
2314 }
2315 EXPORT_SYMBOL(drm_atomic_helper_fake_vblank);
2316 
2317 /**
2318  * drm_atomic_helper_commit_hw_done - setup possible nonblocking commit
2319  * @old_state: atomic state object with old state structures
2320  *
2321  * This function is used to signal completion of the hardware commit step. After
2322  * this step the driver is not allowed to read or change any permanent software
2323  * or hardware modeset state. The only exception is state protected by other
2324  * means than &drm_modeset_lock locks.
2325  *
2326  * Drivers should try to postpone any expensive or delayed cleanup work after
2327  * this function is called.
2328  *
2329  * This is part of the atomic helper support for nonblocking commits, see
2330  * drm_atomic_helper_setup_commit() for an overview.
2331  */
drm_atomic_helper_commit_hw_done(struct drm_atomic_state * old_state)2332 void drm_atomic_helper_commit_hw_done(struct drm_atomic_state *old_state)
2333 {
2334 	struct drm_crtc *crtc;
2335 	struct drm_crtc_state *old_crtc_state, *new_crtc_state;
2336 	struct drm_crtc_commit *commit;
2337 	int i;
2338 
2339 	for_each_oldnew_crtc_in_state(old_state, crtc, old_crtc_state, new_crtc_state, i) {
2340 		commit = new_crtc_state->commit;
2341 		if (!commit)
2342 			continue;
2343 
2344 		/*
2345 		 * copy new_crtc_state->commit to old_crtc_state->commit,
2346 		 * it's unsafe to touch new_crtc_state after hw_done,
2347 		 * but we still need to do so in cleanup_done().
2348 		 */
2349 		if (old_crtc_state->commit)
2350 			drm_crtc_commit_put(old_crtc_state->commit);
2351 
2352 		old_crtc_state->commit = drm_crtc_commit_get(commit);
2353 
2354 		/* backend must have consumed any event by now */
2355 		WARN_ON(new_crtc_state->event);
2356 		complete_all(&commit->hw_done);
2357 	}
2358 
2359 	if (old_state->fake_commit) {
2360 		complete_all(&old_state->fake_commit->hw_done);
2361 		complete_all(&old_state->fake_commit->flip_done);
2362 	}
2363 }
2364 EXPORT_SYMBOL(drm_atomic_helper_commit_hw_done);
2365 
2366 /**
2367  * drm_atomic_helper_commit_cleanup_done - signal completion of commit
2368  * @old_state: atomic state object with old state structures
2369  *
2370  * This signals completion of the atomic update @old_state, including any
2371  * cleanup work. If used, it must be called right before calling
2372  * drm_atomic_state_put().
2373  *
2374  * This is part of the atomic helper support for nonblocking commits, see
2375  * drm_atomic_helper_setup_commit() for an overview.
2376  */
drm_atomic_helper_commit_cleanup_done(struct drm_atomic_state * old_state)2377 void drm_atomic_helper_commit_cleanup_done(struct drm_atomic_state *old_state)
2378 {
2379 	struct drm_crtc *crtc;
2380 	struct drm_crtc_state *old_crtc_state;
2381 	struct drm_crtc_commit *commit;
2382 	int i;
2383 
2384 	for_each_old_crtc_in_state(old_state, crtc, old_crtc_state, i) {
2385 		commit = old_crtc_state->commit;
2386 		if (WARN_ON(!commit))
2387 			continue;
2388 
2389 		complete_all(&commit->cleanup_done);
2390 		WARN_ON(!try_wait_for_completion(&commit->hw_done));
2391 
2392 		spin_lock(&crtc->commit_lock);
2393 		list_del(&commit->commit_entry);
2394 		spin_unlock(&crtc->commit_lock);
2395 	}
2396 
2397 	if (old_state->fake_commit) {
2398 		complete_all(&old_state->fake_commit->cleanup_done);
2399 		WARN_ON(!try_wait_for_completion(&old_state->fake_commit->hw_done));
2400 	}
2401 }
2402 EXPORT_SYMBOL(drm_atomic_helper_commit_cleanup_done);
2403 
2404 /**
2405  * drm_atomic_helper_prepare_planes - prepare plane resources before commit
2406  * @dev: DRM device
2407  * @state: atomic state object with new state structures
2408  *
2409  * This function prepares plane state, specifically framebuffers, for the new
2410  * configuration, by calling &drm_plane_helper_funcs.prepare_fb. If any failure
2411  * is encountered this function will call &drm_plane_helper_funcs.cleanup_fb on
2412  * any already successfully prepared framebuffer.
2413  *
2414  * Returns:
2415  * 0 on success, negative error code on failure.
2416  */
drm_atomic_helper_prepare_planes(struct drm_device * dev,struct drm_atomic_state * state)2417 int drm_atomic_helper_prepare_planes(struct drm_device *dev,
2418 				     struct drm_atomic_state *state)
2419 {
2420 	struct drm_connector *connector;
2421 	struct drm_connector_state *new_conn_state;
2422 	struct drm_plane *plane;
2423 	struct drm_plane_state *new_plane_state;
2424 	int ret, i, j;
2425 
2426 	for_each_new_connector_in_state(state, connector, new_conn_state, i) {
2427 		if (!new_conn_state->writeback_job)
2428 			continue;
2429 
2430 		ret = drm_writeback_prepare_job(new_conn_state->writeback_job);
2431 		if (ret < 0)
2432 			return ret;
2433 	}
2434 
2435 	for_each_new_plane_in_state(state, plane, new_plane_state, i) {
2436 		const struct drm_plane_helper_funcs *funcs;
2437 
2438 		funcs = plane->helper_private;
2439 
2440 		if (funcs->prepare_fb) {
2441 			ret = funcs->prepare_fb(plane, new_plane_state);
2442 			if (ret)
2443 				goto fail;
2444 		} else {
2445 			WARN_ON_ONCE(funcs->cleanup_fb);
2446 
2447 			if (!drm_core_check_feature(dev, DRIVER_GEM))
2448 				continue;
2449 
2450 			ret = drm_gem_plane_helper_prepare_fb(plane, new_plane_state);
2451 			if (ret)
2452 				goto fail;
2453 		}
2454 	}
2455 
2456 	return 0;
2457 
2458 fail:
2459 	for_each_new_plane_in_state(state, plane, new_plane_state, j) {
2460 		const struct drm_plane_helper_funcs *funcs;
2461 
2462 		if (j >= i)
2463 			continue;
2464 
2465 		funcs = plane->helper_private;
2466 
2467 		if (funcs->cleanup_fb)
2468 			funcs->cleanup_fb(plane, new_plane_state);
2469 	}
2470 
2471 	return ret;
2472 }
2473 EXPORT_SYMBOL(drm_atomic_helper_prepare_planes);
2474 
plane_crtc_active(const struct drm_plane_state * state)2475 static bool plane_crtc_active(const struct drm_plane_state *state)
2476 {
2477 	return state->crtc && state->crtc->state->active;
2478 }
2479 
2480 /**
2481  * drm_atomic_helper_commit_planes - commit plane state
2482  * @dev: DRM device
2483  * @old_state: atomic state object with old state structures
2484  * @flags: flags for committing plane state
2485  *
2486  * This function commits the new plane state using the plane and atomic helper
2487  * functions for planes and CRTCs. It assumes that the atomic state has already
2488  * been pushed into the relevant object state pointers, since this step can no
2489  * longer fail.
2490  *
2491  * It still requires the global state object @old_state to know which planes and
2492  * crtcs need to be updated though.
2493  *
2494  * Note that this function does all plane updates across all CRTCs in one step.
2495  * If the hardware can't support this approach look at
2496  * drm_atomic_helper_commit_planes_on_crtc() instead.
2497  *
2498  * Plane parameters can be updated by applications while the associated CRTC is
2499  * disabled. The DRM/KMS core will store the parameters in the plane state,
2500  * which will be available to the driver when the CRTC is turned on. As a result
2501  * most drivers don't need to be immediately notified of plane updates for a
2502  * disabled CRTC.
2503  *
2504  * Unless otherwise needed, drivers are advised to set the ACTIVE_ONLY flag in
2505  * @flags in order not to receive plane update notifications related to a
2506  * disabled CRTC. This avoids the need to manually ignore plane updates in
2507  * driver code when the driver and/or hardware can't or just don't need to deal
2508  * with updates on disabled CRTCs, for example when supporting runtime PM.
2509  *
2510  * Drivers may set the NO_DISABLE_AFTER_MODESET flag in @flags if the relevant
2511  * display controllers require to disable a CRTC's planes when the CRTC is
2512  * disabled. This function would skip the &drm_plane_helper_funcs.atomic_disable
2513  * call for a plane if the CRTC of the old plane state needs a modesetting
2514  * operation. Of course, the drivers need to disable the planes in their CRTC
2515  * disable callbacks since no one else would do that.
2516  *
2517  * The drm_atomic_helper_commit() default implementation doesn't set the
2518  * ACTIVE_ONLY flag to most closely match the behaviour of the legacy helpers.
2519  * This should not be copied blindly by drivers.
2520  */
drm_atomic_helper_commit_planes(struct drm_device * dev,struct drm_atomic_state * old_state,uint32_t flags)2521 void drm_atomic_helper_commit_planes(struct drm_device *dev,
2522 				     struct drm_atomic_state *old_state,
2523 				     uint32_t flags)
2524 {
2525 	struct drm_crtc *crtc;
2526 	struct drm_crtc_state *old_crtc_state, *new_crtc_state;
2527 	struct drm_plane *plane;
2528 	struct drm_plane_state *old_plane_state, *new_plane_state;
2529 	int i;
2530 	bool active_only = flags & DRM_PLANE_COMMIT_ACTIVE_ONLY;
2531 	bool no_disable = flags & DRM_PLANE_COMMIT_NO_DISABLE_AFTER_MODESET;
2532 
2533 	for_each_oldnew_crtc_in_state(old_state, crtc, old_crtc_state, new_crtc_state, i) {
2534 		const struct drm_crtc_helper_funcs *funcs;
2535 
2536 		funcs = crtc->helper_private;
2537 
2538 		if (!funcs || !funcs->atomic_begin)
2539 			continue;
2540 
2541 		if (active_only && !new_crtc_state->active)
2542 			continue;
2543 
2544 		funcs->atomic_begin(crtc, old_state);
2545 	}
2546 
2547 	for_each_oldnew_plane_in_state(old_state, plane, old_plane_state, new_plane_state, i) {
2548 		const struct drm_plane_helper_funcs *funcs;
2549 		bool disabling;
2550 
2551 		funcs = plane->helper_private;
2552 
2553 		if (!funcs)
2554 			continue;
2555 
2556 		disabling = drm_atomic_plane_disabling(old_plane_state,
2557 						       new_plane_state);
2558 
2559 		if (active_only) {
2560 			/*
2561 			 * Skip planes related to inactive CRTCs. If the plane
2562 			 * is enabled use the state of the current CRTC. If the
2563 			 * plane is being disabled use the state of the old
2564 			 * CRTC to avoid skipping planes being disabled on an
2565 			 * active CRTC.
2566 			 */
2567 			if (!disabling && !plane_crtc_active(new_plane_state))
2568 				continue;
2569 			if (disabling && !plane_crtc_active(old_plane_state))
2570 				continue;
2571 		}
2572 
2573 		/*
2574 		 * Special-case disabling the plane if drivers support it.
2575 		 */
2576 		if (disabling && funcs->atomic_disable) {
2577 			struct drm_crtc_state *crtc_state;
2578 
2579 			crtc_state = old_plane_state->crtc->state;
2580 
2581 			if (drm_atomic_crtc_needs_modeset(crtc_state) &&
2582 			    no_disable)
2583 				continue;
2584 
2585 			funcs->atomic_disable(plane, old_state);
2586 		} else if (new_plane_state->crtc || disabling) {
2587 			funcs->atomic_update(plane, old_state);
2588 		}
2589 	}
2590 
2591 	for_each_oldnew_crtc_in_state(old_state, crtc, old_crtc_state, new_crtc_state, i) {
2592 		const struct drm_crtc_helper_funcs *funcs;
2593 
2594 		funcs = crtc->helper_private;
2595 
2596 		if (!funcs || !funcs->atomic_flush)
2597 			continue;
2598 
2599 		if (active_only && !new_crtc_state->active)
2600 			continue;
2601 
2602 		funcs->atomic_flush(crtc, old_state);
2603 	}
2604 }
2605 EXPORT_SYMBOL(drm_atomic_helper_commit_planes);
2606 
2607 /**
2608  * drm_atomic_helper_commit_planes_on_crtc - commit plane state for a CRTC
2609  * @old_crtc_state: atomic state object with the old CRTC state
2610  *
2611  * This function commits the new plane state using the plane and atomic helper
2612  * functions for planes on the specific CRTC. It assumes that the atomic state
2613  * has already been pushed into the relevant object state pointers, since this
2614  * step can no longer fail.
2615  *
2616  * This function is useful when plane updates should be done CRTC-by-CRTC
2617  * instead of one global step like drm_atomic_helper_commit_planes() does.
2618  *
2619  * This function can only be savely used when planes are not allowed to move
2620  * between different CRTCs because this function doesn't handle inter-CRTC
2621  * dependencies. Callers need to ensure that either no such dependencies exist,
2622  * resolve them through ordering of commit calls or through some other means.
2623  */
2624 void
drm_atomic_helper_commit_planes_on_crtc(struct drm_crtc_state * old_crtc_state)2625 drm_atomic_helper_commit_planes_on_crtc(struct drm_crtc_state *old_crtc_state)
2626 {
2627 	const struct drm_crtc_helper_funcs *crtc_funcs;
2628 	struct drm_crtc *crtc = old_crtc_state->crtc;
2629 	struct drm_atomic_state *old_state = old_crtc_state->state;
2630 	struct drm_crtc_state *new_crtc_state =
2631 		drm_atomic_get_new_crtc_state(old_state, crtc);
2632 	struct drm_plane *plane;
2633 	unsigned int plane_mask;
2634 
2635 	plane_mask = old_crtc_state->plane_mask;
2636 	plane_mask |= new_crtc_state->plane_mask;
2637 
2638 	crtc_funcs = crtc->helper_private;
2639 	if (crtc_funcs && crtc_funcs->atomic_begin)
2640 		crtc_funcs->atomic_begin(crtc, old_state);
2641 
2642 	drm_for_each_plane_mask(plane, crtc->dev, plane_mask) {
2643 		struct drm_plane_state *old_plane_state =
2644 			drm_atomic_get_old_plane_state(old_state, plane);
2645 		struct drm_plane_state *new_plane_state =
2646 			drm_atomic_get_new_plane_state(old_state, plane);
2647 		const struct drm_plane_helper_funcs *plane_funcs;
2648 
2649 		plane_funcs = plane->helper_private;
2650 
2651 		if (!old_plane_state || !plane_funcs)
2652 			continue;
2653 
2654 		WARN_ON(new_plane_state->crtc &&
2655 			new_plane_state->crtc != crtc);
2656 
2657 		if (drm_atomic_plane_disabling(old_plane_state, new_plane_state) &&
2658 		    plane_funcs->atomic_disable)
2659 			plane_funcs->atomic_disable(plane, old_state);
2660 		else if (new_plane_state->crtc ||
2661 			 drm_atomic_plane_disabling(old_plane_state, new_plane_state))
2662 			plane_funcs->atomic_update(plane, old_state);
2663 	}
2664 
2665 	if (crtc_funcs && crtc_funcs->atomic_flush)
2666 		crtc_funcs->atomic_flush(crtc, old_state);
2667 }
2668 EXPORT_SYMBOL(drm_atomic_helper_commit_planes_on_crtc);
2669 
2670 /**
2671  * drm_atomic_helper_disable_planes_on_crtc - helper to disable CRTC's planes
2672  * @old_crtc_state: atomic state object with the old CRTC state
2673  * @atomic: if set, synchronize with CRTC's atomic_begin/flush hooks
2674  *
2675  * Disables all planes associated with the given CRTC. This can be
2676  * used for instance in the CRTC helper atomic_disable callback to disable
2677  * all planes.
2678  *
2679  * If the atomic-parameter is set the function calls the CRTC's
2680  * atomic_begin hook before and atomic_flush hook after disabling the
2681  * planes.
2682  *
2683  * It is a bug to call this function without having implemented the
2684  * &drm_plane_helper_funcs.atomic_disable plane hook.
2685  */
2686 void
drm_atomic_helper_disable_planes_on_crtc(struct drm_crtc_state * old_crtc_state,bool atomic)2687 drm_atomic_helper_disable_planes_on_crtc(struct drm_crtc_state *old_crtc_state,
2688 					 bool atomic)
2689 {
2690 	struct drm_crtc *crtc = old_crtc_state->crtc;
2691 	const struct drm_crtc_helper_funcs *crtc_funcs =
2692 		crtc->helper_private;
2693 	struct drm_plane *plane;
2694 
2695 	if (atomic && crtc_funcs && crtc_funcs->atomic_begin)
2696 		crtc_funcs->atomic_begin(crtc, NULL);
2697 
2698 	drm_atomic_crtc_state_for_each_plane(plane, old_crtc_state) {
2699 		const struct drm_plane_helper_funcs *plane_funcs =
2700 			plane->helper_private;
2701 
2702 		if (!plane_funcs)
2703 			continue;
2704 
2705 		WARN_ON(!plane_funcs->atomic_disable);
2706 		if (plane_funcs->atomic_disable)
2707 			plane_funcs->atomic_disable(plane, NULL);
2708 	}
2709 
2710 	if (atomic && crtc_funcs && crtc_funcs->atomic_flush)
2711 		crtc_funcs->atomic_flush(crtc, NULL);
2712 }
2713 EXPORT_SYMBOL(drm_atomic_helper_disable_planes_on_crtc);
2714 
2715 /**
2716  * drm_atomic_helper_cleanup_planes - cleanup plane resources after commit
2717  * @dev: DRM device
2718  * @old_state: atomic state object with old state structures
2719  *
2720  * This function cleans up plane state, specifically framebuffers, from the old
2721  * configuration. Hence the old configuration must be perserved in @old_state to
2722  * be able to call this function.
2723  *
2724  * This function must also be called on the new state when the atomic update
2725  * fails at any point after calling drm_atomic_helper_prepare_planes().
2726  */
drm_atomic_helper_cleanup_planes(struct drm_device * dev,struct drm_atomic_state * old_state)2727 void drm_atomic_helper_cleanup_planes(struct drm_device *dev,
2728 				      struct drm_atomic_state *old_state)
2729 {
2730 	struct drm_plane *plane;
2731 	struct drm_plane_state *old_plane_state, *new_plane_state;
2732 	int i;
2733 
2734 	for_each_oldnew_plane_in_state(old_state, plane, old_plane_state, new_plane_state, i) {
2735 		const struct drm_plane_helper_funcs *funcs;
2736 		struct drm_plane_state *plane_state;
2737 
2738 		/*
2739 		 * This might be called before swapping when commit is aborted,
2740 		 * in which case we have to cleanup the new state.
2741 		 */
2742 		if (old_plane_state == plane->state)
2743 			plane_state = new_plane_state;
2744 		else
2745 			plane_state = old_plane_state;
2746 
2747 		funcs = plane->helper_private;
2748 
2749 		if (funcs->cleanup_fb)
2750 			funcs->cleanup_fb(plane, plane_state);
2751 	}
2752 }
2753 EXPORT_SYMBOL(drm_atomic_helper_cleanup_planes);
2754 
2755 /**
2756  * drm_atomic_helper_swap_state - store atomic state into current sw state
2757  * @state: atomic state
2758  * @stall: stall for preceding commits
2759  *
2760  * This function stores the atomic state into the current state pointers in all
2761  * driver objects. It should be called after all failing steps have been done
2762  * and succeeded, but before the actual hardware state is committed.
2763  *
2764  * For cleanup and error recovery the current state for all changed objects will
2765  * be swapped into @state.
2766  *
2767  * With that sequence it fits perfectly into the plane prepare/cleanup sequence:
2768  *
2769  * 1. Call drm_atomic_helper_prepare_planes() with the staged atomic state.
2770  *
2771  * 2. Do any other steps that might fail.
2772  *
2773  * 3. Put the staged state into the current state pointers with this function.
2774  *
2775  * 4. Actually commit the hardware state.
2776  *
2777  * 5. Call drm_atomic_helper_cleanup_planes() with @state, which since step 3
2778  * contains the old state. Also do any other cleanup required with that state.
2779  *
2780  * @stall must be set when nonblocking commits for this driver directly access
2781  * the &drm_plane.state, &drm_crtc.state or &drm_connector.state pointer. With
2782  * the current atomic helpers this is almost always the case, since the helpers
2783  * don't pass the right state structures to the callbacks.
2784  *
2785  * Returns:
2786  *
2787  * Returns 0 on success. Can return -ERESTARTSYS when @stall is true and the
2788  * waiting for the previous commits has been interrupted.
2789  */
drm_atomic_helper_swap_state(struct drm_atomic_state * state,bool stall)2790 int drm_atomic_helper_swap_state(struct drm_atomic_state *state,
2791 				  bool stall)
2792 {
2793 	int i, ret;
2794 	struct drm_connector *connector;
2795 	struct drm_connector_state *old_conn_state, *new_conn_state;
2796 	struct drm_crtc *crtc;
2797 	struct drm_crtc_state *old_crtc_state, *new_crtc_state;
2798 	struct drm_plane *plane;
2799 	struct drm_plane_state *old_plane_state, *new_plane_state;
2800 	struct drm_crtc_commit *commit;
2801 	struct drm_private_obj *obj;
2802 	struct drm_private_state *old_obj_state, *new_obj_state;
2803 
2804 	if (stall) {
2805 		/*
2806 		 * We have to stall for hw_done here before
2807 		 * drm_atomic_helper_wait_for_dependencies() because flip
2808 		 * depth > 1 is not yet supported by all drivers. As long as
2809 		 * obj->state is directly dereferenced anywhere in the drivers
2810 		 * atomic_commit_tail function, then it's unsafe to swap state
2811 		 * before drm_atomic_helper_commit_hw_done() is called.
2812 		 */
2813 
2814 		for_each_old_crtc_in_state(state, crtc, old_crtc_state, i) {
2815 			commit = old_crtc_state->commit;
2816 
2817 			if (!commit)
2818 				continue;
2819 
2820 			ret = wait_for_completion_interruptible(&commit->hw_done);
2821 			if (ret)
2822 				return ret;
2823 		}
2824 
2825 		for_each_old_connector_in_state(state, connector, old_conn_state, i) {
2826 			commit = old_conn_state->commit;
2827 
2828 			if (!commit)
2829 				continue;
2830 
2831 			ret = wait_for_completion_interruptible(&commit->hw_done);
2832 			if (ret)
2833 				return ret;
2834 		}
2835 
2836 		for_each_old_plane_in_state(state, plane, old_plane_state, i) {
2837 			commit = old_plane_state->commit;
2838 
2839 			if (!commit)
2840 				continue;
2841 
2842 			ret = wait_for_completion_interruptible(&commit->hw_done);
2843 			if (ret)
2844 				return ret;
2845 		}
2846 	}
2847 
2848 	for_each_oldnew_connector_in_state(state, connector, old_conn_state, new_conn_state, i) {
2849 		WARN_ON(connector->state != old_conn_state);
2850 
2851 		old_conn_state->state = state;
2852 		new_conn_state->state = NULL;
2853 
2854 		state->connectors[i].state = old_conn_state;
2855 		connector->state = new_conn_state;
2856 	}
2857 
2858 	for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state, new_crtc_state, i) {
2859 		WARN_ON(crtc->state != old_crtc_state);
2860 
2861 		old_crtc_state->state = state;
2862 		new_crtc_state->state = NULL;
2863 
2864 		state->crtcs[i].state = old_crtc_state;
2865 		crtc->state = new_crtc_state;
2866 
2867 		if (new_crtc_state->commit) {
2868 			spin_lock(&crtc->commit_lock);
2869 			list_add(&new_crtc_state->commit->commit_entry,
2870 				 &crtc->commit_list);
2871 			spin_unlock(&crtc->commit_lock);
2872 
2873 			new_crtc_state->commit->event = NULL;
2874 		}
2875 	}
2876 
2877 	for_each_oldnew_plane_in_state(state, plane, old_plane_state, new_plane_state, i) {
2878 		WARN_ON(plane->state != old_plane_state);
2879 
2880 		old_plane_state->state = state;
2881 		new_plane_state->state = NULL;
2882 
2883 		state->planes[i].state = old_plane_state;
2884 		plane->state = new_plane_state;
2885 	}
2886 
2887 	for_each_oldnew_private_obj_in_state(state, obj, old_obj_state, new_obj_state, i) {
2888 		WARN_ON(obj->state != old_obj_state);
2889 
2890 		old_obj_state->state = state;
2891 		new_obj_state->state = NULL;
2892 
2893 		state->private_objs[i].state = old_obj_state;
2894 		obj->state = new_obj_state;
2895 	}
2896 
2897 	return 0;
2898 }
2899 EXPORT_SYMBOL(drm_atomic_helper_swap_state);
2900 
2901 /**
2902  * drm_atomic_helper_update_plane - Helper for primary plane update using atomic
2903  * @plane: plane object to update
2904  * @crtc: owning CRTC of owning plane
2905  * @fb: framebuffer to flip onto plane
2906  * @crtc_x: x offset of primary plane on @crtc
2907  * @crtc_y: y offset of primary plane on @crtc
2908  * @crtc_w: width of primary plane rectangle on @crtc
2909  * @crtc_h: height of primary plane rectangle on @crtc
2910  * @src_x: x offset of @fb for panning
2911  * @src_y: y offset of @fb for panning
2912  * @src_w: width of source rectangle in @fb
2913  * @src_h: height of source rectangle in @fb
2914  * @ctx: lock acquire context
2915  *
2916  * Provides a default plane update handler using the atomic driver interface.
2917  *
2918  * RETURNS:
2919  * Zero on success, error code on failure
2920  */
drm_atomic_helper_update_plane(struct drm_plane * plane,struct drm_crtc * crtc,struct drm_framebuffer * fb,int crtc_x,int crtc_y,unsigned int crtc_w,unsigned int crtc_h,uint32_t src_x,uint32_t src_y,uint32_t src_w,uint32_t src_h,struct drm_modeset_acquire_ctx * ctx)2921 int drm_atomic_helper_update_plane(struct drm_plane *plane,
2922 				   struct drm_crtc *crtc,
2923 				   struct drm_framebuffer *fb,
2924 				   int crtc_x, int crtc_y,
2925 				   unsigned int crtc_w, unsigned int crtc_h,
2926 				   uint32_t src_x, uint32_t src_y,
2927 				   uint32_t src_w, uint32_t src_h,
2928 				   struct drm_modeset_acquire_ctx *ctx)
2929 {
2930 	struct drm_atomic_state *state;
2931 	struct drm_plane_state *plane_state;
2932 	int ret = 0;
2933 
2934 	state = drm_atomic_state_alloc(plane->dev);
2935 	if (!state)
2936 		return -ENOMEM;
2937 
2938 	state->acquire_ctx = ctx;
2939 	plane_state = drm_atomic_get_plane_state(state, plane);
2940 	if (IS_ERR(plane_state)) {
2941 		ret = PTR_ERR(plane_state);
2942 		goto fail;
2943 	}
2944 
2945 	ret = drm_atomic_set_crtc_for_plane(plane_state, crtc);
2946 	if (ret != 0)
2947 		goto fail;
2948 	drm_atomic_set_fb_for_plane(plane_state, fb);
2949 	plane_state->crtc_x = crtc_x;
2950 	plane_state->crtc_y = crtc_y;
2951 	plane_state->crtc_w = crtc_w;
2952 	plane_state->crtc_h = crtc_h;
2953 	plane_state->src_x = src_x;
2954 	plane_state->src_y = src_y;
2955 	plane_state->src_w = src_w;
2956 	plane_state->src_h = src_h;
2957 
2958 	if (plane == crtc->cursor)
2959 		state->legacy_cursor_update = true;
2960 
2961 	ret = drm_atomic_commit(state);
2962 fail:
2963 	drm_atomic_state_put(state);
2964 	return ret;
2965 }
2966 EXPORT_SYMBOL(drm_atomic_helper_update_plane);
2967 
2968 /**
2969  * drm_atomic_helper_disable_plane - Helper for primary plane disable using * atomic
2970  * @plane: plane to disable
2971  * @ctx: lock acquire context
2972  *
2973  * Provides a default plane disable handler using the atomic driver interface.
2974  *
2975  * RETURNS:
2976  * Zero on success, error code on failure
2977  */
drm_atomic_helper_disable_plane(struct drm_plane * plane,struct drm_modeset_acquire_ctx * ctx)2978 int drm_atomic_helper_disable_plane(struct drm_plane *plane,
2979 				    struct drm_modeset_acquire_ctx *ctx)
2980 {
2981 	struct drm_atomic_state *state;
2982 	struct drm_plane_state *plane_state;
2983 	int ret = 0;
2984 
2985 	state = drm_atomic_state_alloc(plane->dev);
2986 	if (!state)
2987 		return -ENOMEM;
2988 
2989 	state->acquire_ctx = ctx;
2990 	plane_state = drm_atomic_get_plane_state(state, plane);
2991 	if (IS_ERR(plane_state)) {
2992 		ret = PTR_ERR(plane_state);
2993 		goto fail;
2994 	}
2995 
2996 	if (plane_state->crtc && plane_state->crtc->cursor == plane)
2997 		plane_state->state->legacy_cursor_update = true;
2998 
2999 	ret = __drm_atomic_helper_disable_plane(plane, plane_state);
3000 	if (ret != 0)
3001 		goto fail;
3002 
3003 	ret = drm_atomic_commit(state);
3004 fail:
3005 	drm_atomic_state_put(state);
3006 	return ret;
3007 }
3008 EXPORT_SYMBOL(drm_atomic_helper_disable_plane);
3009 
3010 /**
3011  * drm_atomic_helper_set_config - set a new config from userspace
3012  * @set: mode set configuration
3013  * @ctx: lock acquisition context
3014  *
3015  * Provides a default CRTC set_config handler using the atomic driver interface.
3016  *
3017  * NOTE: For backwards compatibility with old userspace this automatically
3018  * resets the "link-status" property to GOOD, to force any link
3019  * re-training. The SETCRTC ioctl does not define whether an update does
3020  * need a full modeset or just a plane update, hence we're allowed to do
3021  * that. See also drm_connector_set_link_status_property().
3022  *
3023  * Returns:
3024  * Returns 0 on success, negative errno numbers on failure.
3025  */
drm_atomic_helper_set_config(struct drm_mode_set * set,struct drm_modeset_acquire_ctx * ctx)3026 int drm_atomic_helper_set_config(struct drm_mode_set *set,
3027 				 struct drm_modeset_acquire_ctx *ctx)
3028 {
3029 	struct drm_atomic_state *state;
3030 	struct drm_crtc *crtc = set->crtc;
3031 	int ret = 0;
3032 
3033 	state = drm_atomic_state_alloc(crtc->dev);
3034 	if (!state)
3035 		return -ENOMEM;
3036 
3037 	state->acquire_ctx = ctx;
3038 	ret = __drm_atomic_helper_set_config(set, state);
3039 	if (ret != 0)
3040 		goto fail;
3041 
3042 	ret = handle_conflicting_encoders(state, true);
3043 	if (ret)
3044 		goto fail;
3045 
3046 	ret = drm_atomic_commit(state);
3047 
3048 fail:
3049 	drm_atomic_state_put(state);
3050 	return ret;
3051 }
3052 EXPORT_SYMBOL(drm_atomic_helper_set_config);
3053 
3054 /**
3055  * drm_atomic_helper_disable_all - disable all currently active outputs
3056  * @dev: DRM device
3057  * @ctx: lock acquisition context
3058  *
3059  * Loops through all connectors, finding those that aren't turned off and then
3060  * turns them off by setting their DPMS mode to OFF and deactivating the CRTC
3061  * that they are connected to.
3062  *
3063  * This is used for example in suspend/resume to disable all currently active
3064  * functions when suspending. If you just want to shut down everything at e.g.
3065  * driver unload, look at drm_atomic_helper_shutdown().
3066  *
3067  * Note that if callers haven't already acquired all modeset locks this might
3068  * return -EDEADLK, which must be handled by calling drm_modeset_backoff().
3069  *
3070  * Returns:
3071  * 0 on success or a negative error code on failure.
3072  *
3073  * See also:
3074  * drm_atomic_helper_suspend(), drm_atomic_helper_resume() and
3075  * drm_atomic_helper_shutdown().
3076  */
drm_atomic_helper_disable_all(struct drm_device * dev,struct drm_modeset_acquire_ctx * ctx)3077 int drm_atomic_helper_disable_all(struct drm_device *dev,
3078 				  struct drm_modeset_acquire_ctx *ctx)
3079 {
3080 	struct drm_atomic_state *state;
3081 	struct drm_connector_state *conn_state;
3082 	struct drm_connector *conn;
3083 	struct drm_plane_state *plane_state;
3084 	struct drm_plane *plane;
3085 	struct drm_crtc_state *crtc_state;
3086 	struct drm_crtc *crtc;
3087 	int ret, i;
3088 
3089 	state = drm_atomic_state_alloc(dev);
3090 	if (!state)
3091 		return -ENOMEM;
3092 
3093 	state->acquire_ctx = ctx;
3094 
3095 	drm_for_each_crtc(crtc, dev) {
3096 		crtc_state = drm_atomic_get_crtc_state(state, crtc);
3097 		if (IS_ERR(crtc_state)) {
3098 			ret = PTR_ERR(crtc_state);
3099 			goto free;
3100 		}
3101 
3102 		crtc_state->active = false;
3103 
3104 		ret = drm_atomic_set_mode_prop_for_crtc(crtc_state, NULL);
3105 		if (ret < 0)
3106 			goto free;
3107 
3108 		ret = drm_atomic_add_affected_planes(state, crtc);
3109 		if (ret < 0)
3110 			goto free;
3111 
3112 		ret = drm_atomic_add_affected_connectors(state, crtc);
3113 		if (ret < 0)
3114 			goto free;
3115 	}
3116 
3117 	for_each_new_connector_in_state(state, conn, conn_state, i) {
3118 		ret = drm_atomic_set_crtc_for_connector(conn_state, NULL);
3119 		if (ret < 0)
3120 			goto free;
3121 	}
3122 
3123 	for_each_new_plane_in_state(state, plane, plane_state, i) {
3124 		ret = drm_atomic_set_crtc_for_plane(plane_state, NULL);
3125 		if (ret < 0)
3126 			goto free;
3127 
3128 		drm_atomic_set_fb_for_plane(plane_state, NULL);
3129 	}
3130 
3131 	ret = drm_atomic_commit(state);
3132 free:
3133 	drm_atomic_state_put(state);
3134 	return ret;
3135 }
3136 EXPORT_SYMBOL(drm_atomic_helper_disable_all);
3137 
3138 /**
3139  * drm_atomic_helper_shutdown - shutdown all CRTC
3140  * @dev: DRM device
3141  *
3142  * This shuts down all CRTC, which is useful for driver unloading. Shutdown on
3143  * suspend should instead be handled with drm_atomic_helper_suspend(), since
3144  * that also takes a snapshot of the modeset state to be restored on resume.
3145  *
3146  * This is just a convenience wrapper around drm_atomic_helper_disable_all(),
3147  * and it is the atomic version of drm_crtc_force_disable_all().
3148  */
drm_atomic_helper_shutdown(struct drm_device * dev)3149 void drm_atomic_helper_shutdown(struct drm_device *dev)
3150 {
3151 	struct drm_modeset_acquire_ctx ctx;
3152 	int ret;
3153 
3154 	DRM_MODESET_LOCK_ALL_BEGIN(dev, ctx, 0, ret);
3155 
3156 	ret = drm_atomic_helper_disable_all(dev, &ctx);
3157 	if (ret)
3158 		DRM_ERROR("Disabling all crtc's during unload failed with %i\n", ret);
3159 
3160 	DRM_MODESET_LOCK_ALL_END(dev, ctx, ret);
3161 }
3162 EXPORT_SYMBOL(drm_atomic_helper_shutdown);
3163 
3164 /**
3165  * drm_atomic_helper_duplicate_state - duplicate an atomic state object
3166  * @dev: DRM device
3167  * @ctx: lock acquisition context
3168  *
3169  * Makes a copy of the current atomic state by looping over all objects and
3170  * duplicating their respective states. This is used for example by suspend/
3171  * resume support code to save the state prior to suspend such that it can
3172  * be restored upon resume.
3173  *
3174  * Note that this treats atomic state as persistent between save and restore.
3175  * Drivers must make sure that this is possible and won't result in confusion
3176  * or erroneous behaviour.
3177  *
3178  * Note that if callers haven't already acquired all modeset locks this might
3179  * return -EDEADLK, which must be handled by calling drm_modeset_backoff().
3180  *
3181  * Returns:
3182  * A pointer to the copy of the atomic state object on success or an
3183  * ERR_PTR()-encoded error code on failure.
3184  *
3185  * See also:
3186  * drm_atomic_helper_suspend(), drm_atomic_helper_resume()
3187  */
3188 struct drm_atomic_state *
drm_atomic_helper_duplicate_state(struct drm_device * dev,struct drm_modeset_acquire_ctx * ctx)3189 drm_atomic_helper_duplicate_state(struct drm_device *dev,
3190 				  struct drm_modeset_acquire_ctx *ctx)
3191 {
3192 	struct drm_atomic_state *state;
3193 	struct drm_connector *conn;
3194 	struct drm_connector_list_iter conn_iter;
3195 	struct drm_plane *plane;
3196 	struct drm_crtc *crtc;
3197 	int err = 0;
3198 
3199 	state = drm_atomic_state_alloc(dev);
3200 	if (!state)
3201 		return ERR_PTR(-ENOMEM);
3202 
3203 	state->acquire_ctx = ctx;
3204 	state->duplicated = true;
3205 
3206 	drm_for_each_crtc(crtc, dev) {
3207 		struct drm_crtc_state *crtc_state;
3208 
3209 		crtc_state = drm_atomic_get_crtc_state(state, crtc);
3210 		if (IS_ERR(crtc_state)) {
3211 			err = PTR_ERR(crtc_state);
3212 			goto free;
3213 		}
3214 	}
3215 
3216 	drm_for_each_plane(plane, dev) {
3217 		struct drm_plane_state *plane_state;
3218 
3219 		plane_state = drm_atomic_get_plane_state(state, plane);
3220 		if (IS_ERR(plane_state)) {
3221 			err = PTR_ERR(plane_state);
3222 			goto free;
3223 		}
3224 	}
3225 
3226 	drm_connector_list_iter_begin(dev, &conn_iter);
3227 	drm_for_each_connector_iter(conn, &conn_iter) {
3228 		struct drm_connector_state *conn_state;
3229 
3230 		conn_state = drm_atomic_get_connector_state(state, conn);
3231 		if (IS_ERR(conn_state)) {
3232 			err = PTR_ERR(conn_state);
3233 			drm_connector_list_iter_end(&conn_iter);
3234 			goto free;
3235 		}
3236 	}
3237 	drm_connector_list_iter_end(&conn_iter);
3238 
3239 	/* clear the acquire context so that it isn't accidentally reused */
3240 	state->acquire_ctx = NULL;
3241 
3242 free:
3243 	if (err < 0) {
3244 		drm_atomic_state_put(state);
3245 		state = ERR_PTR(err);
3246 	}
3247 
3248 	return state;
3249 }
3250 EXPORT_SYMBOL(drm_atomic_helper_duplicate_state);
3251 
3252 /**
3253  * drm_atomic_helper_suspend - subsystem-level suspend helper
3254  * @dev: DRM device
3255  *
3256  * Duplicates the current atomic state, disables all active outputs and then
3257  * returns a pointer to the original atomic state to the caller. Drivers can
3258  * pass this pointer to the drm_atomic_helper_resume() helper upon resume to
3259  * restore the output configuration that was active at the time the system
3260  * entered suspend.
3261  *
3262  * Note that it is potentially unsafe to use this. The atomic state object
3263  * returned by this function is assumed to be persistent. Drivers must ensure
3264  * that this holds true. Before calling this function, drivers must make sure
3265  * to suspend fbdev emulation so that nothing can be using the device.
3266  *
3267  * Returns:
3268  * A pointer to a copy of the state before suspend on success or an ERR_PTR()-
3269  * encoded error code on failure. Drivers should store the returned atomic
3270  * state object and pass it to the drm_atomic_helper_resume() helper upon
3271  * resume.
3272  *
3273  * See also:
3274  * drm_atomic_helper_duplicate_state(), drm_atomic_helper_disable_all(),
3275  * drm_atomic_helper_resume(), drm_atomic_helper_commit_duplicated_state()
3276  */
drm_atomic_helper_suspend(struct drm_device * dev)3277 struct drm_atomic_state *drm_atomic_helper_suspend(struct drm_device *dev)
3278 {
3279 	struct drm_modeset_acquire_ctx ctx;
3280 	struct drm_atomic_state *state;
3281 	int err;
3282 
3283 	/* This can never be returned, but it makes the compiler happy */
3284 	state = ERR_PTR(-EINVAL);
3285 
3286 	DRM_MODESET_LOCK_ALL_BEGIN(dev, ctx, 0, err);
3287 
3288 	state = drm_atomic_helper_duplicate_state(dev, &ctx);
3289 	if (IS_ERR(state))
3290 		goto unlock;
3291 
3292 	err = drm_atomic_helper_disable_all(dev, &ctx);
3293 	if (err < 0) {
3294 		drm_atomic_state_put(state);
3295 		state = ERR_PTR(err);
3296 		goto unlock;
3297 	}
3298 
3299 unlock:
3300 	DRM_MODESET_LOCK_ALL_END(dev, ctx, err);
3301 	if (err)
3302 		return ERR_PTR(err);
3303 
3304 	return state;
3305 }
3306 EXPORT_SYMBOL(drm_atomic_helper_suspend);
3307 
3308 /**
3309  * drm_atomic_helper_commit_duplicated_state - commit duplicated state
3310  * @state: duplicated atomic state to commit
3311  * @ctx: pointer to acquire_ctx to use for commit.
3312  *
3313  * The state returned by drm_atomic_helper_duplicate_state() and
3314  * drm_atomic_helper_suspend() is partially invalid, and needs to
3315  * be fixed up before commit.
3316  *
3317  * Returns:
3318  * 0 on success or a negative error code on failure.
3319  *
3320  * See also:
3321  * drm_atomic_helper_suspend()
3322  */
drm_atomic_helper_commit_duplicated_state(struct drm_atomic_state * state,struct drm_modeset_acquire_ctx * ctx)3323 int drm_atomic_helper_commit_duplicated_state(struct drm_atomic_state *state,
3324 					      struct drm_modeset_acquire_ctx *ctx)
3325 {
3326 	int i, ret;
3327 	struct drm_plane *plane;
3328 	struct drm_plane_state *new_plane_state;
3329 	struct drm_connector *connector;
3330 	struct drm_connector_state *new_conn_state;
3331 	struct drm_crtc *crtc;
3332 	struct drm_crtc_state *new_crtc_state;
3333 
3334 	state->acquire_ctx = ctx;
3335 
3336 	for_each_new_plane_in_state(state, plane, new_plane_state, i)
3337 		state->planes[i].old_state = plane->state;
3338 
3339 	for_each_new_crtc_in_state(state, crtc, new_crtc_state, i)
3340 		state->crtcs[i].old_state = crtc->state;
3341 
3342 	for_each_new_connector_in_state(state, connector, new_conn_state, i)
3343 		state->connectors[i].old_state = connector->state;
3344 
3345 	ret = drm_atomic_commit(state);
3346 
3347 	state->acquire_ctx = NULL;
3348 
3349 	return ret;
3350 }
3351 EXPORT_SYMBOL(drm_atomic_helper_commit_duplicated_state);
3352 
3353 /**
3354  * drm_atomic_helper_resume - subsystem-level resume helper
3355  * @dev: DRM device
3356  * @state: atomic state to resume to
3357  *
3358  * Calls drm_mode_config_reset() to synchronize hardware and software states,
3359  * grabs all modeset locks and commits the atomic state object. This can be
3360  * used in conjunction with the drm_atomic_helper_suspend() helper to
3361  * implement suspend/resume for drivers that support atomic mode-setting.
3362  *
3363  * Returns:
3364  * 0 on success or a negative error code on failure.
3365  *
3366  * See also:
3367  * drm_atomic_helper_suspend()
3368  */
drm_atomic_helper_resume(struct drm_device * dev,struct drm_atomic_state * state)3369 int drm_atomic_helper_resume(struct drm_device *dev,
3370 			     struct drm_atomic_state *state)
3371 {
3372 	struct drm_modeset_acquire_ctx ctx;
3373 	int err;
3374 
3375 	drm_mode_config_reset(dev);
3376 
3377 	DRM_MODESET_LOCK_ALL_BEGIN(dev, ctx, 0, err);
3378 
3379 	err = drm_atomic_helper_commit_duplicated_state(state, &ctx);
3380 
3381 	DRM_MODESET_LOCK_ALL_END(dev, ctx, err);
3382 	drm_atomic_state_put(state);
3383 
3384 	return err;
3385 }
3386 EXPORT_SYMBOL(drm_atomic_helper_resume);
3387 
page_flip_common(struct drm_atomic_state * state,struct drm_crtc * crtc,struct drm_framebuffer * fb,struct drm_pending_vblank_event * event,uint32_t flags)3388 static int page_flip_common(struct drm_atomic_state *state,
3389 			    struct drm_crtc *crtc,
3390 			    struct drm_framebuffer *fb,
3391 			    struct drm_pending_vblank_event *event,
3392 			    uint32_t flags)
3393 {
3394 	struct drm_plane *plane = crtc->primary;
3395 	struct drm_plane_state *plane_state;
3396 	struct drm_crtc_state *crtc_state;
3397 	int ret = 0;
3398 
3399 	crtc_state = drm_atomic_get_crtc_state(state, crtc);
3400 	if (IS_ERR(crtc_state))
3401 		return PTR_ERR(crtc_state);
3402 
3403 	crtc_state->event = event;
3404 	crtc_state->async_flip = flags & DRM_MODE_PAGE_FLIP_ASYNC;
3405 
3406 	plane_state = drm_atomic_get_plane_state(state, plane);
3407 	if (IS_ERR(plane_state))
3408 		return PTR_ERR(plane_state);
3409 
3410 	ret = drm_atomic_set_crtc_for_plane(plane_state, crtc);
3411 	if (ret != 0)
3412 		return ret;
3413 	drm_atomic_set_fb_for_plane(plane_state, fb);
3414 
3415 	/* Make sure we don't accidentally do a full modeset. */
3416 	state->allow_modeset = false;
3417 	if (!crtc_state->active) {
3418 		DRM_DEBUG_ATOMIC("[CRTC:%d:%s] disabled, rejecting legacy flip\n",
3419 				 crtc->base.id, crtc->name);
3420 		return -EINVAL;
3421 	}
3422 
3423 	return ret;
3424 }
3425 
3426 /**
3427  * drm_atomic_helper_page_flip - execute a legacy page flip
3428  * @crtc: DRM CRTC
3429  * @fb: DRM framebuffer
3430  * @event: optional DRM event to signal upon completion
3431  * @flags: flip flags for non-vblank sync'ed updates
3432  * @ctx: lock acquisition context
3433  *
3434  * Provides a default &drm_crtc_funcs.page_flip implementation
3435  * using the atomic driver interface.
3436  *
3437  * Returns:
3438  * Returns 0 on success, negative errno numbers on failure.
3439  *
3440  * See also:
3441  * drm_atomic_helper_page_flip_target()
3442  */
drm_atomic_helper_page_flip(struct drm_crtc * crtc,struct drm_framebuffer * fb,struct drm_pending_vblank_event * event,uint32_t flags,struct drm_modeset_acquire_ctx * ctx)3443 int drm_atomic_helper_page_flip(struct drm_crtc *crtc,
3444 				struct drm_framebuffer *fb,
3445 				struct drm_pending_vblank_event *event,
3446 				uint32_t flags,
3447 				struct drm_modeset_acquire_ctx *ctx)
3448 {
3449 	struct drm_plane *plane = crtc->primary;
3450 	struct drm_atomic_state *state;
3451 	int ret = 0;
3452 
3453 	state = drm_atomic_state_alloc(plane->dev);
3454 	if (!state)
3455 		return -ENOMEM;
3456 
3457 	state->acquire_ctx = ctx;
3458 
3459 	ret = page_flip_common(state, crtc, fb, event, flags);
3460 	if (ret != 0)
3461 		goto fail;
3462 
3463 	ret = drm_atomic_nonblocking_commit(state);
3464 fail:
3465 	drm_atomic_state_put(state);
3466 	return ret;
3467 }
3468 EXPORT_SYMBOL(drm_atomic_helper_page_flip);
3469 
3470 /**
3471  * drm_atomic_helper_page_flip_target - do page flip on target vblank period.
3472  * @crtc: DRM CRTC
3473  * @fb: DRM framebuffer
3474  * @event: optional DRM event to signal upon completion
3475  * @flags: flip flags for non-vblank sync'ed updates
3476  * @target: specifying the target vblank period when the flip to take effect
3477  * @ctx: lock acquisition context
3478  *
3479  * Provides a default &drm_crtc_funcs.page_flip_target implementation.
3480  * Similar to drm_atomic_helper_page_flip() with extra parameter to specify
3481  * target vblank period to flip.
3482  *
3483  * Returns:
3484  * Returns 0 on success, negative errno numbers on failure.
3485  */
drm_atomic_helper_page_flip_target(struct drm_crtc * crtc,struct drm_framebuffer * fb,struct drm_pending_vblank_event * event,uint32_t flags,uint32_t target,struct drm_modeset_acquire_ctx * ctx)3486 int drm_atomic_helper_page_flip_target(struct drm_crtc *crtc,
3487 				       struct drm_framebuffer *fb,
3488 				       struct drm_pending_vblank_event *event,
3489 				       uint32_t flags,
3490 				       uint32_t target,
3491 				       struct drm_modeset_acquire_ctx *ctx)
3492 {
3493 	struct drm_plane *plane = crtc->primary;
3494 	struct drm_atomic_state *state;
3495 	struct drm_crtc_state *crtc_state;
3496 	int ret = 0;
3497 
3498 	state = drm_atomic_state_alloc(plane->dev);
3499 	if (!state)
3500 		return -ENOMEM;
3501 
3502 	state->acquire_ctx = ctx;
3503 
3504 	ret = page_flip_common(state, crtc, fb, event, flags);
3505 	if (ret != 0)
3506 		goto fail;
3507 
3508 	crtc_state = drm_atomic_get_new_crtc_state(state, crtc);
3509 	if (WARN_ON(!crtc_state)) {
3510 		ret = -EINVAL;
3511 		goto fail;
3512 	}
3513 	crtc_state->target_vblank = target;
3514 
3515 	ret = drm_atomic_nonblocking_commit(state);
3516 fail:
3517 	drm_atomic_state_put(state);
3518 	return ret;
3519 }
3520 EXPORT_SYMBOL(drm_atomic_helper_page_flip_target);
3521 
3522 /**
3523  * drm_atomic_helper_bridge_propagate_bus_fmt() - Propagate output format to
3524  *						  the input end of a bridge
3525  * @bridge: bridge control structure
3526  * @bridge_state: new bridge state
3527  * @crtc_state: new CRTC state
3528  * @conn_state: new connector state
3529  * @output_fmt: tested output bus format
3530  * @num_input_fmts: will contain the size of the returned array
3531  *
3532  * This helper is a pluggable implementation of the
3533  * &drm_bridge_funcs.atomic_get_input_bus_fmts operation for bridges that don't
3534  * modify the bus configuration between their input and their output. It
3535  * returns an array of input formats with a single element set to @output_fmt.
3536  *
3537  * RETURNS:
3538  * a valid format array of size @num_input_fmts, or NULL if the allocation
3539  * failed
3540  */
3541 u32 *
drm_atomic_helper_bridge_propagate_bus_fmt(struct drm_bridge * bridge,struct drm_bridge_state * bridge_state,struct drm_crtc_state * crtc_state,struct drm_connector_state * conn_state,u32 output_fmt,unsigned int * num_input_fmts)3542 drm_atomic_helper_bridge_propagate_bus_fmt(struct drm_bridge *bridge,
3543 					struct drm_bridge_state *bridge_state,
3544 					struct drm_crtc_state *crtc_state,
3545 					struct drm_connector_state *conn_state,
3546 					u32 output_fmt,
3547 					unsigned int *num_input_fmts)
3548 {
3549 	u32 *input_fmts;
3550 
3551 	input_fmts = kzalloc(sizeof(*input_fmts), GFP_KERNEL);
3552 	if (!input_fmts) {
3553 		*num_input_fmts = 0;
3554 		return NULL;
3555 	}
3556 
3557 	*num_input_fmts = 1;
3558 	input_fmts[0] = output_fmt;
3559 	return input_fmts;
3560 }
3561 EXPORT_SYMBOL(drm_atomic_helper_bridge_propagate_bus_fmt);
3562