2 * Copyright (C) 2014 Red Hat
3 * Copyright (C) 2014 Intel Corp.
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:
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
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.
30 #include <drm/drm_atomic.h>
31 #include <drm/drm_plane_helper.h>
33 static void kfree_state(struct drm_atomic_state *state)
35 kfree(state->connectors);
36 kfree(state->connector_states);
38 kfree(state->crtc_states);
40 kfree(state->plane_states);
45 * drm_atomic_state_alloc - allocate atomic state
48 * This allocates an empty atomic state to track updates.
50 struct drm_atomic_state *
51 drm_atomic_state_alloc(struct drm_device *dev)
53 struct drm_atomic_state *state;
55 state = kzalloc(sizeof(*state), GFP_KERNEL);
59 state->num_connector = ACCESS_ONCE(dev->mode_config.num_connector);
61 state->crtcs = kcalloc(dev->mode_config.num_crtc,
62 sizeof(*state->crtcs), GFP_KERNEL);
65 state->crtc_states = kcalloc(dev->mode_config.num_crtc,
66 sizeof(*state->crtc_states), GFP_KERNEL);
67 if (!state->crtc_states)
69 state->planes = kcalloc(dev->mode_config.num_total_plane,
70 sizeof(*state->planes), GFP_KERNEL);
73 state->plane_states = kcalloc(dev->mode_config.num_total_plane,
74 sizeof(*state->plane_states), GFP_KERNEL);
75 if (!state->plane_states)
77 state->connectors = kcalloc(state->num_connector,
78 sizeof(*state->connectors),
80 if (!state->connectors)
82 state->connector_states = kcalloc(state->num_connector,
83 sizeof(*state->connector_states),
85 if (!state->connector_states)
90 DRM_DEBUG_KMS("Allocate atomic state %p\n", state);
98 EXPORT_SYMBOL(drm_atomic_state_alloc);
101 * drm_atomic_state_clear - clear state object
102 * @state: atomic state
104 * When the w/w mutex algorithm detects a deadlock we need to back off and drop
105 * all locks. So someone else could sneak in and change the current modeset
106 * configuration. Which means that all the state assembled in @state is no
107 * longer an atomic update to the current state, but to some arbitrary earlier
108 * state. Which could break assumptions the driver's ->atomic_check likely
111 * Hence we must clear all cached state and completely start over, using this
114 void drm_atomic_state_clear(struct drm_atomic_state *state)
116 struct drm_device *dev = state->dev;
117 struct drm_mode_config *config = &dev->mode_config;
120 DRM_DEBUG_KMS("Clearing atomic state %p\n", state);
122 for (i = 0; i < state->num_connector; i++) {
123 struct drm_connector *connector = state->connectors[i];
128 WARN_ON(!drm_modeset_is_locked(&config->connection_mutex));
130 connector->funcs->atomic_destroy_state(connector,
131 state->connector_states[i]);
134 for (i = 0; i < config->num_crtc; i++) {
135 struct drm_crtc *crtc = state->crtcs[i];
140 crtc->funcs->atomic_destroy_state(crtc,
141 state->crtc_states[i]);
144 for (i = 0; i < config->num_total_plane; i++) {
145 struct drm_plane *plane = state->planes[i];
150 plane->funcs->atomic_destroy_state(plane,
151 state->plane_states[i]);
154 EXPORT_SYMBOL(drm_atomic_state_clear);
157 * drm_atomic_state_free - free all memory for an atomic state
158 * @state: atomic state to deallocate
160 * This frees all memory associated with an atomic state, including all the
161 * per-object state for planes, crtcs and connectors.
163 void drm_atomic_state_free(struct drm_atomic_state *state)
165 drm_atomic_state_clear(state);
167 DRM_DEBUG_KMS("Freeing atomic state %p\n", state);
171 EXPORT_SYMBOL(drm_atomic_state_free);
174 * drm_atomic_get_crtc_state - get crtc state
175 * @state: global atomic state object
176 * @crtc: crtc to get state object for
178 * This function returns the crtc state for the given crtc, allocating it if
179 * needed. It will also grab the relevant crtc lock to make sure that the state
184 * Either the allocated state or the error code encoded into the pointer. When
185 * the error is EDEADLK then the w/w mutex code has detected a deadlock and the
186 * entire atomic sequence must be restarted. All other errors are fatal.
188 struct drm_crtc_state *
189 drm_atomic_get_crtc_state(struct drm_atomic_state *state,
190 struct drm_crtc *crtc)
193 struct drm_crtc_state *crtc_state;
195 index = drm_crtc_index(crtc);
197 if (state->crtc_states[index])
198 return state->crtc_states[index];
200 ret = drm_modeset_lock(&crtc->mutex, state->acquire_ctx);
204 crtc_state = crtc->funcs->atomic_duplicate_state(crtc);
206 return ERR_PTR(-ENOMEM);
208 state->crtc_states[index] = crtc_state;
209 state->crtcs[index] = crtc;
210 crtc_state->state = state;
212 DRM_DEBUG_KMS("Added [CRTC:%d] %p state to %p\n",
213 crtc->base.id, crtc_state, state);
217 EXPORT_SYMBOL(drm_atomic_get_crtc_state);
220 * drm_atomic_get_plane_state - get plane state
221 * @state: global atomic state object
222 * @plane: plane to get state object for
224 * This function returns the plane state for the given plane, allocating it if
225 * needed. It will also grab the relevant plane lock to make sure that the state
230 * Either the allocated state or the error code encoded into the pointer. When
231 * the error is EDEADLK then the w/w mutex code has detected a deadlock and the
232 * entire atomic sequence must be restarted. All other errors are fatal.
234 struct drm_plane_state *
235 drm_atomic_get_plane_state(struct drm_atomic_state *state,
236 struct drm_plane *plane)
239 struct drm_plane_state *plane_state;
241 index = drm_plane_index(plane);
243 if (state->plane_states[index])
244 return state->plane_states[index];
246 ret = drm_modeset_lock(&plane->mutex, state->acquire_ctx);
250 plane_state = plane->funcs->atomic_duplicate_state(plane);
252 return ERR_PTR(-ENOMEM);
254 state->plane_states[index] = plane_state;
255 state->planes[index] = plane;
256 plane_state->state = state;
258 DRM_DEBUG_KMS("Added [PLANE:%d] %p state to %p\n",
259 plane->base.id, plane_state, state);
261 if (plane_state->crtc) {
262 struct drm_crtc_state *crtc_state;
264 crtc_state = drm_atomic_get_crtc_state(state,
266 if (IS_ERR(crtc_state))
267 return ERR_CAST(crtc_state);
272 EXPORT_SYMBOL(drm_atomic_get_plane_state);
275 * drm_atomic_get_connector_state - get connector state
276 * @state: global atomic state object
277 * @connector: connector to get state object for
279 * This function returns the connector state for the given connector,
280 * allocating it if needed. It will also grab the relevant connector lock to
281 * make sure that the state is consistent.
285 * Either the allocated state or the error code encoded into the pointer. When
286 * the error is EDEADLK then the w/w mutex code has detected a deadlock and the
287 * entire atomic sequence must be restarted. All other errors are fatal.
289 struct drm_connector_state *
290 drm_atomic_get_connector_state(struct drm_atomic_state *state,
291 struct drm_connector *connector)
294 struct drm_mode_config *config = &connector->dev->mode_config;
295 struct drm_connector_state *connector_state;
297 ret = drm_modeset_lock(&config->connection_mutex, state->acquire_ctx);
301 index = drm_connector_index(connector);
304 * Construction of atomic state updates can race with a connector
305 * hot-add which might overflow. In this case flip the table and just
306 * restart the entire ioctl - no one is fast enough to livelock a cpu
307 * with physical hotplug events anyway.
309 * Note that we only grab the indexes once we have the right lock to
310 * prevent hotplug/unplugging of connectors. So removal is no problem,
311 * at most the array is a bit too large.
313 if (index >= state->num_connector) {
314 DRM_DEBUG_KMS("Hot-added connector would overflow state array, restarting\n");
315 return ERR_PTR(-EAGAIN);
318 if (state->connector_states[index])
319 return state->connector_states[index];
321 connector_state = connector->funcs->atomic_duplicate_state(connector);
322 if (!connector_state)
323 return ERR_PTR(-ENOMEM);
325 state->connector_states[index] = connector_state;
326 state->connectors[index] = connector;
327 connector_state->state = state;
329 DRM_DEBUG_KMS("Added [CONNECTOR:%d] %p state to %p\n",
330 connector->base.id, connector_state, state);
332 if (connector_state->crtc) {
333 struct drm_crtc_state *crtc_state;
335 crtc_state = drm_atomic_get_crtc_state(state,
336 connector_state->crtc);
337 if (IS_ERR(crtc_state))
338 return ERR_CAST(crtc_state);
341 return connector_state;
343 EXPORT_SYMBOL(drm_atomic_get_connector_state);
346 * drm_atomic_set_crtc_for_plane - set crtc for plane
347 * @state: the incoming atomic state
348 * @plane: the plane whose incoming state to update
349 * @crtc: crtc to use for the plane
351 * Changing the assigned crtc for a plane requires us to grab the lock and state
352 * for the new crtc, as needed. This function takes care of all these details
353 * besides updating the pointer in the state object itself.
356 * 0 on success or can fail with -EDEADLK or -ENOMEM. When the error is EDEADLK
357 * then the w/w mutex code has detected a deadlock and the entire atomic
358 * sequence must be restarted. All other errors are fatal.
361 drm_atomic_set_crtc_for_plane(struct drm_atomic_state *state,
362 struct drm_plane *plane, struct drm_crtc *crtc)
364 struct drm_plane_state *plane_state =
365 drm_atomic_get_plane_state(state, plane);
366 struct drm_crtc_state *crtc_state;
368 if (WARN_ON(IS_ERR(plane_state)))
369 return PTR_ERR(plane_state);
371 if (plane_state->crtc) {
372 crtc_state = drm_atomic_get_crtc_state(plane_state->state,
374 if (WARN_ON(IS_ERR(crtc_state)))
375 return PTR_ERR(crtc_state);
377 crtc_state->plane_mask &= ~(1 << drm_plane_index(plane));
380 plane_state->crtc = crtc;
383 crtc_state = drm_atomic_get_crtc_state(plane_state->state,
385 if (IS_ERR(crtc_state))
386 return PTR_ERR(crtc_state);
387 crtc_state->plane_mask |= (1 << drm_plane_index(plane));
391 DRM_DEBUG_KMS("Link plane state %p to [CRTC:%d]\n",
392 plane_state, crtc->base.id);
394 DRM_DEBUG_KMS("Link plane state %p to [NOCRTC]\n", plane_state);
398 EXPORT_SYMBOL(drm_atomic_set_crtc_for_plane);
401 * drm_atomic_set_fb_for_plane - set crtc for plane
402 * @plane_state: atomic state object for the plane
403 * @fb: fb to use for the plane
405 * Changing the assigned framebuffer for a plane requires us to grab a reference
406 * to the new fb and drop the reference to the old fb, if there is one. This
407 * function takes care of all these details besides updating the pointer in the
408 * state object itself.
411 drm_atomic_set_fb_for_plane(struct drm_plane_state *plane_state,
412 struct drm_framebuffer *fb)
415 drm_framebuffer_unreference(plane_state->fb);
417 drm_framebuffer_reference(fb);
418 plane_state->fb = fb;
421 DRM_DEBUG_KMS("Set [FB:%d] for plane state %p\n",
422 fb->base.id, plane_state);
424 DRM_DEBUG_KMS("Set [NOFB] for plane state %p\n", plane_state);
426 EXPORT_SYMBOL(drm_atomic_set_fb_for_plane);
429 * drm_atomic_set_crtc_for_connector - set crtc for connector
430 * @conn_state: atomic state object for the connector
431 * @crtc: crtc to use for the connector
433 * Changing the assigned crtc for a connector requires us to grab the lock and
434 * state for the new crtc, as needed. This function takes care of all these
435 * details besides updating the pointer in the state object itself.
438 * 0 on success or can fail with -EDEADLK or -ENOMEM. When the error is EDEADLK
439 * then the w/w mutex code has detected a deadlock and the entire atomic
440 * sequence must be restarted. All other errors are fatal.
443 drm_atomic_set_crtc_for_connector(struct drm_connector_state *conn_state,
444 struct drm_crtc *crtc)
446 struct drm_crtc_state *crtc_state;
449 crtc_state = drm_atomic_get_crtc_state(conn_state->state, crtc);
450 if (IS_ERR(crtc_state))
451 return PTR_ERR(crtc_state);
454 conn_state->crtc = crtc;
457 DRM_DEBUG_KMS("Link connector state %p to [CRTC:%d]\n",
458 conn_state, crtc->base.id);
460 DRM_DEBUG_KMS("Link connector state %p to [NOCRTC]\n",
465 EXPORT_SYMBOL(drm_atomic_set_crtc_for_connector);
468 * drm_atomic_add_affected_connectors - add connectors for crtc
469 * @state: atomic state
472 * This function walks the current configuration and adds all connectors
473 * currently using @crtc to the atomic configuration @state. Note that this
474 * function must acquire the connection mutex. This can potentially cause
475 * unneeded seralization if the update is just for the planes on one crtc. Hence
476 * drivers and helpers should only call this when really needed (e.g. when a
477 * full modeset needs to happen due to some change).
480 * 0 on success or can fail with -EDEADLK or -ENOMEM. When the error is EDEADLK
481 * then the w/w mutex code has detected a deadlock and the entire atomic
482 * sequence must be restarted. All other errors are fatal.
485 drm_atomic_add_affected_connectors(struct drm_atomic_state *state,
486 struct drm_crtc *crtc)
488 struct drm_mode_config *config = &state->dev->mode_config;
489 struct drm_connector *connector;
490 struct drm_connector_state *conn_state;
493 ret = drm_modeset_lock(&config->connection_mutex, state->acquire_ctx);
497 DRM_DEBUG_KMS("Adding all current connectors for [CRTC:%d] to %p\n",
498 crtc->base.id, state);
501 * Changed connectors are already in @state, so only need to look at the
502 * current configuration.
504 list_for_each_entry(connector, &config->connector_list, head) {
505 if (connector->state->crtc != crtc)
508 conn_state = drm_atomic_get_connector_state(state, connector);
509 if (IS_ERR(conn_state))
510 return PTR_ERR(conn_state);
515 EXPORT_SYMBOL(drm_atomic_add_affected_connectors);
518 * drm_atomic_connectors_for_crtc - count number of connected outputs
519 * @state: atomic state
522 * This function counts all connectors which will be connected to @crtc
523 * according to @state. Useful to recompute the enable state for @crtc.
526 drm_atomic_connectors_for_crtc(struct drm_atomic_state *state,
527 struct drm_crtc *crtc)
529 int i, num_connected_connectors = 0;
531 for (i = 0; i < state->num_connector; i++) {
532 struct drm_connector_state *conn_state;
534 conn_state = state->connector_states[i];
536 if (conn_state && conn_state->crtc == crtc)
537 num_connected_connectors++;
540 DRM_DEBUG_KMS("State %p has %i connectors for [CRTC:%d]\n",
541 state, num_connected_connectors, crtc->base.id);
543 return num_connected_connectors;
545 EXPORT_SYMBOL(drm_atomic_connectors_for_crtc);
548 * drm_atomic_legacy_backoff - locking backoff for legacy ioctls
549 * @state: atomic state
551 * This function should be used by legacy entry points which don't understand
552 * -EDEADLK semantics. For simplicity this one will grab all modeset locks after
553 * the slowpath completed.
555 void drm_atomic_legacy_backoff(struct drm_atomic_state *state)
560 drm_modeset_backoff(state->acquire_ctx);
562 ret = drm_modeset_lock(&state->dev->mode_config.connection_mutex,
566 ret = drm_modeset_lock_all_crtcs(state->dev,
571 EXPORT_SYMBOL(drm_atomic_legacy_backoff);
574 * drm_atomic_check_only - check whether a given config would work
575 * @state: atomic configuration to check
577 * Note that this function can return -EDEADLK if the driver needed to acquire
578 * more locks but encountered a deadlock. The caller must then do the usual w/w
579 * backoff dance and restart. All other errors are fatal.
582 * 0 on success, negative error code on failure.
584 int drm_atomic_check_only(struct drm_atomic_state *state)
586 struct drm_mode_config *config = &state->dev->mode_config;
588 DRM_DEBUG_KMS("checking %p\n", state);
590 if (config->funcs->atomic_check)
591 return config->funcs->atomic_check(state->dev, state);
595 EXPORT_SYMBOL(drm_atomic_check_only);
598 * drm_atomic_commit - commit configuration atomically
599 * @state: atomic configuration to check
601 * Note that this function can return -EDEADLK if the driver needed to acquire
602 * more locks but encountered a deadlock. The caller must then do the usual w/w
603 * backoff dance and restart. All other errors are fatal.
605 * Also note that on successful execution ownership of @state is transferred
606 * from the caller of this function to the function itself. The caller must not
607 * free or in any other way access @state. If the function fails then the caller
608 * must clean up @state itself.
611 * 0 on success, negative error code on failure.
613 int drm_atomic_commit(struct drm_atomic_state *state)
615 struct drm_mode_config *config = &state->dev->mode_config;
618 ret = drm_atomic_check_only(state);
622 DRM_DEBUG_KMS("commiting %p\n", state);
624 return config->funcs->atomic_commit(state->dev, state, false);
626 EXPORT_SYMBOL(drm_atomic_commit);
629 * drm_atomic_async_commit - atomic&async configuration commit
630 * @state: atomic configuration to check
632 * Note that this function can return -EDEADLK if the driver needed to acquire
633 * more locks but encountered a deadlock. The caller must then do the usual w/w
634 * backoff dance and restart. All other errors are fatal.
636 * Also note that on successful execution ownership of @state is transferred
637 * from the caller of this function to the function itself. The caller must not
638 * free or in any other way access @state. If the function fails then the caller
639 * must clean up @state itself.
642 * 0 on success, negative error code on failure.
644 int drm_atomic_async_commit(struct drm_atomic_state *state)
646 struct drm_mode_config *config = &state->dev->mode_config;
649 ret = drm_atomic_check_only(state);
653 DRM_DEBUG_KMS("commiting %p asynchronously\n", state);
655 return config->funcs->atomic_commit(state->dev, state, true);
657 EXPORT_SYMBOL(drm_atomic_async_commit);