]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/gpu/drm/drm_atomic.c
drm: Free atomic state during cleanup
[mirror_ubuntu-artful-kernel.git] / drivers / gpu / drm / drm_atomic.c
CommitLineData
cc4ceb48
DV
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
29#include <drm/drmP.h>
30#include <drm/drm_atomic.h>
31#include <drm/drm_plane_helper.h>
32
33static void kfree_state(struct drm_atomic_state *state)
34{
35 kfree(state->connectors);
36 kfree(state->connector_states);
37 kfree(state->crtcs);
38 kfree(state->crtc_states);
39 kfree(state->planes);
40 kfree(state->plane_states);
41 kfree(state);
42}
43
44/**
45 * drm_atomic_state_alloc - allocate atomic state
46 * @dev: DRM device
47 *
48 * This allocates an empty atomic state to track updates.
49 */
50struct drm_atomic_state *
51drm_atomic_state_alloc(struct drm_device *dev)
52{
53 struct drm_atomic_state *state;
54
55 state = kzalloc(sizeof(*state), GFP_KERNEL);
56 if (!state)
57 return NULL;
58
f52b69f1
DV
59 state->num_connector = ACCESS_ONCE(dev->mode_config.num_connector);
60
cc4ceb48
DV
61 state->crtcs = kcalloc(dev->mode_config.num_crtc,
62 sizeof(*state->crtcs), GFP_KERNEL);
63 if (!state->crtcs)
64 goto fail;
65 state->crtc_states = kcalloc(dev->mode_config.num_crtc,
66 sizeof(*state->crtc_states), GFP_KERNEL);
67 if (!state->crtc_states)
68 goto fail;
69 state->planes = kcalloc(dev->mode_config.num_total_plane,
70 sizeof(*state->planes), GFP_KERNEL);
71 if (!state->planes)
72 goto fail;
73 state->plane_states = kcalloc(dev->mode_config.num_total_plane,
74 sizeof(*state->plane_states), GFP_KERNEL);
75 if (!state->plane_states)
76 goto fail;
f52b69f1 77 state->connectors = kcalloc(state->num_connector,
cc4ceb48
DV
78 sizeof(*state->connectors),
79 GFP_KERNEL);
80 if (!state->connectors)
81 goto fail;
f52b69f1 82 state->connector_states = kcalloc(state->num_connector,
cc4ceb48
DV
83 sizeof(*state->connector_states),
84 GFP_KERNEL);
85 if (!state->connector_states)
86 goto fail;
87
88 state->dev = dev;
89
90 DRM_DEBUG_KMS("Allocate atomic state %p\n", state);
91
92 return state;
93fail:
94 kfree_state(state);
95
96 return NULL;
97}
98EXPORT_SYMBOL(drm_atomic_state_alloc);
99
100/**
101 * drm_atomic_state_clear - clear state object
102 * @state: atomic state
103 *
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
109 * relies on.
110 *
111 * Hence we must clear all cached state and completely start over, using this
112 * function.
113 */
114void drm_atomic_state_clear(struct drm_atomic_state *state)
115{
116 struct drm_device *dev = state->dev;
6f75cea6 117 struct drm_mode_config *config = &dev->mode_config;
cc4ceb48
DV
118 int i;
119
120 DRM_DEBUG_KMS("Clearing atomic state %p\n", state);
121
f52b69f1 122 for (i = 0; i < state->num_connector; i++) {
cc4ceb48
DV
123 struct drm_connector *connector = state->connectors[i];
124
125 if (!connector)
126 continue;
127
6f75cea6
DV
128 WARN_ON(!drm_modeset_is_locked(&config->connection_mutex));
129
cc4ceb48
DV
130 connector->funcs->atomic_destroy_state(connector,
131 state->connector_states[i]);
132 }
133
6f75cea6 134 for (i = 0; i < config->num_crtc; i++) {
cc4ceb48
DV
135 struct drm_crtc *crtc = state->crtcs[i];
136
137 if (!crtc)
138 continue;
139
140 crtc->funcs->atomic_destroy_state(crtc,
141 state->crtc_states[i]);
142 }
143
6f75cea6 144 for (i = 0; i < config->num_total_plane; i++) {
cc4ceb48
DV
145 struct drm_plane *plane = state->planes[i];
146
147 if (!plane)
148 continue;
149
150 plane->funcs->atomic_destroy_state(plane,
151 state->plane_states[i]);
152 }
153}
154EXPORT_SYMBOL(drm_atomic_state_clear);
155
156/**
157 * drm_atomic_state_free - free all memory for an atomic state
158 * @state: atomic state to deallocate
159 *
160 * This frees all memory associated with an atomic state, including all the
161 * per-object state for planes, crtcs and connectors.
162 */
163void drm_atomic_state_free(struct drm_atomic_state *state)
164{
165 drm_atomic_state_clear(state);
166
167 DRM_DEBUG_KMS("Freeing atomic state %p\n", state);
168
169 kfree_state(state);
170}
171EXPORT_SYMBOL(drm_atomic_state_free);
172
173/**
174 * drm_atomic_get_crtc_state - get crtc state
175 * @state: global atomic state object
176 * @crtc: crtc to get state object for
177 *
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
180 * is consistent.
181 *
182 * Returns:
183 *
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.
187 */
188struct drm_crtc_state *
189drm_atomic_get_crtc_state(struct drm_atomic_state *state,
190 struct drm_crtc *crtc)
191{
192 int ret, index;
193 struct drm_crtc_state *crtc_state;
194
195 index = drm_crtc_index(crtc);
196
197 if (state->crtc_states[index])
198 return state->crtc_states[index];
199
200 ret = drm_modeset_lock(&crtc->mutex, state->acquire_ctx);
201 if (ret)
202 return ERR_PTR(ret);
203
204 crtc_state = crtc->funcs->atomic_duplicate_state(crtc);
205 if (!crtc_state)
206 return ERR_PTR(-ENOMEM);
207
208 state->crtc_states[index] = crtc_state;
209 state->crtcs[index] = crtc;
210 crtc_state->state = state;
211
212 DRM_DEBUG_KMS("Added [CRTC:%d] %p state to %p\n",
213 crtc->base.id, crtc_state, state);
214
215 return crtc_state;
216}
217EXPORT_SYMBOL(drm_atomic_get_crtc_state);
218
219/**
220 * drm_atomic_get_plane_state - get plane state
221 * @state: global atomic state object
222 * @plane: plane to get state object for
223 *
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
226 * is consistent.
227 *
228 * Returns:
229 *
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.
233 */
234struct drm_plane_state *
235drm_atomic_get_plane_state(struct drm_atomic_state *state,
236 struct drm_plane *plane)
237{
238 int ret, index;
239 struct drm_plane_state *plane_state;
240
241 index = drm_plane_index(plane);
242
243 if (state->plane_states[index])
244 return state->plane_states[index];
245
4d02e2de 246 ret = drm_modeset_lock(&plane->mutex, state->acquire_ctx);
cc4ceb48
DV
247 if (ret)
248 return ERR_PTR(ret);
249
250 plane_state = plane->funcs->atomic_duplicate_state(plane);
251 if (!plane_state)
252 return ERR_PTR(-ENOMEM);
253
254 state->plane_states[index] = plane_state;
255 state->planes[index] = plane;
256 plane_state->state = state;
257
258 DRM_DEBUG_KMS("Added [PLANE:%d] %p state to %p\n",
259 plane->base.id, plane_state, state);
260
261 if (plane_state->crtc) {
262 struct drm_crtc_state *crtc_state;
263
264 crtc_state = drm_atomic_get_crtc_state(state,
265 plane_state->crtc);
266 if (IS_ERR(crtc_state))
267 return ERR_CAST(crtc_state);
268 }
269
270 return plane_state;
271}
272EXPORT_SYMBOL(drm_atomic_get_plane_state);
273
274/**
275 * drm_atomic_get_connector_state - get connector state
276 * @state: global atomic state object
277 * @connector: connector to get state object for
278 *
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.
282 *
283 * Returns:
284 *
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.
288 */
289struct drm_connector_state *
290drm_atomic_get_connector_state(struct drm_atomic_state *state,
291 struct drm_connector *connector)
292{
293 int ret, index;
294 struct drm_mode_config *config = &connector->dev->mode_config;
295 struct drm_connector_state *connector_state;
296
c7eb76f4
DV
297 ret = drm_modeset_lock(&config->connection_mutex, state->acquire_ctx);
298 if (ret)
299 return ERR_PTR(ret);
300
cc4ceb48
DV
301 index = drm_connector_index(connector);
302
f52b69f1
DV
303 /*
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.
308 *
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.
312 */
313 if (index >= state->num_connector) {
314 DRM_DEBUG_KMS("Hot-added connector would overflow state array, restarting\n");
fc2d2bc1 315 return ERR_PTR(-EAGAIN);
f52b69f1
DV
316 }
317
cc4ceb48
DV
318 if (state->connector_states[index])
319 return state->connector_states[index];
320
cc4ceb48
DV
321 connector_state = connector->funcs->atomic_duplicate_state(connector);
322 if (!connector_state)
323 return ERR_PTR(-ENOMEM);
324
325 state->connector_states[index] = connector_state;
326 state->connectors[index] = connector;
327 connector_state->state = state;
328
329 DRM_DEBUG_KMS("Added [CONNECTOR:%d] %p state to %p\n",
330 connector->base.id, connector_state, state);
331
332 if (connector_state->crtc) {
333 struct drm_crtc_state *crtc_state;
334
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);
339 }
340
341 return connector_state;
342}
343EXPORT_SYMBOL(drm_atomic_get_connector_state);
344
345/**
346 * drm_atomic_set_crtc_for_plane - set crtc for plane
347 * @plane_state: atomic state object for the plane
348 * @crtc: crtc to use for the plane
349 *
350 * Changing the assigned crtc for a plane requires us to grab the lock and state
351 * for the new crtc, as needed. This function takes care of all these details
352 * besides updating the pointer in the state object itself.
353 *
354 * Returns:
355 * 0 on success or can fail with -EDEADLK or -ENOMEM. When the error is EDEADLK
356 * then the w/w mutex code has detected a deadlock and the entire atomic
357 * sequence must be restarted. All other errors are fatal.
358 */
359int
360drm_atomic_set_crtc_for_plane(struct drm_plane_state *plane_state,
361 struct drm_crtc *crtc)
362{
363 struct drm_crtc_state *crtc_state;
364
365 if (crtc) {
366 crtc_state = drm_atomic_get_crtc_state(plane_state->state,
367 crtc);
368 if (IS_ERR(crtc_state))
369 return PTR_ERR(crtc_state);
370 }
371
372 plane_state->crtc = crtc;
373
374 if (crtc)
375 DRM_DEBUG_KMS("Link plane state %p to [CRTC:%d]\n",
376 plane_state, crtc->base.id);
377 else
378 DRM_DEBUG_KMS("Link plane state %p to [NOCRTC]\n", plane_state);
379
380 return 0;
381}
382EXPORT_SYMBOL(drm_atomic_set_crtc_for_plane);
383
321ebf04
DV
384/**
385 * drm_atomic_set_fb_for_plane - set crtc for plane
386 * @plane_state: atomic state object for the plane
387 * @fb: fb to use for the plane
388 *
389 * Changing the assigned framebuffer for a plane requires us to grab a reference
390 * to the new fb and drop the reference to the old fb, if there is one. This
391 * function takes care of all these details besides updating the pointer in the
392 * state object itself.
393 */
394void
395drm_atomic_set_fb_for_plane(struct drm_plane_state *plane_state,
396 struct drm_framebuffer *fb)
397{
398 if (plane_state->fb)
399 drm_framebuffer_unreference(plane_state->fb);
400 if (fb)
401 drm_framebuffer_reference(fb);
402 plane_state->fb = fb;
403
404 if (fb)
405 DRM_DEBUG_KMS("Set [FB:%d] for plane state %p\n",
406 fb->base.id, plane_state);
407 else
408 DRM_DEBUG_KMS("Set [NOFB] for plane state %p\n", plane_state);
409}
410EXPORT_SYMBOL(drm_atomic_set_fb_for_plane);
411
cc4ceb48
DV
412/**
413 * drm_atomic_set_crtc_for_connector - set crtc for connector
414 * @conn_state: atomic state object for the connector
415 * @crtc: crtc to use for the connector
416 *
417 * Changing the assigned crtc for a connector requires us to grab the lock and
418 * state for the new crtc, as needed. This function takes care of all these
419 * details besides updating the pointer in the state object itself.
420 *
421 * Returns:
422 * 0 on success or can fail with -EDEADLK or -ENOMEM. When the error is EDEADLK
423 * then the w/w mutex code has detected a deadlock and the entire atomic
424 * sequence must be restarted. All other errors are fatal.
425 */
426int
427drm_atomic_set_crtc_for_connector(struct drm_connector_state *conn_state,
428 struct drm_crtc *crtc)
429{
430 struct drm_crtc_state *crtc_state;
431
432 if (crtc) {
433 crtc_state = drm_atomic_get_crtc_state(conn_state->state, crtc);
434 if (IS_ERR(crtc_state))
435 return PTR_ERR(crtc_state);
436 }
437
438 conn_state->crtc = crtc;
439
440 if (crtc)
441 DRM_DEBUG_KMS("Link connector state %p to [CRTC:%d]\n",
442 conn_state, crtc->base.id);
443 else
444 DRM_DEBUG_KMS("Link connector state %p to [NOCRTC]\n",
445 conn_state);
446
447 return 0;
448}
449EXPORT_SYMBOL(drm_atomic_set_crtc_for_connector);
450
451/**
452 * drm_atomic_add_affected_connectors - add connectors for crtc
453 * @state: atomic state
454 * @crtc: DRM crtc
455 *
456 * This function walks the current configuration and adds all connectors
457 * currently using @crtc to the atomic configuration @state. Note that this
458 * function must acquire the connection mutex. This can potentially cause
459 * unneeded seralization if the update is just for the planes on one crtc. Hence
460 * drivers and helpers should only call this when really needed (e.g. when a
461 * full modeset needs to happen due to some change).
462 *
463 * Returns:
464 * 0 on success or can fail with -EDEADLK or -ENOMEM. When the error is EDEADLK
465 * then the w/w mutex code has detected a deadlock and the entire atomic
466 * sequence must be restarted. All other errors are fatal.
467 */
468int
469drm_atomic_add_affected_connectors(struct drm_atomic_state *state,
470 struct drm_crtc *crtc)
471{
472 struct drm_mode_config *config = &state->dev->mode_config;
473 struct drm_connector *connector;
474 struct drm_connector_state *conn_state;
475 int ret;
476
477 ret = drm_modeset_lock(&config->connection_mutex, state->acquire_ctx);
478 if (ret)
479 return ret;
480
481 DRM_DEBUG_KMS("Adding all current connectors for [CRTC:%d] to %p\n",
482 crtc->base.id, state);
483
484 /*
485 * Changed connectors are already in @state, so only need to look at the
486 * current configuration.
487 */
488 list_for_each_entry(connector, &config->connector_list, head) {
489 if (connector->state->crtc != crtc)
490 continue;
491
492 conn_state = drm_atomic_get_connector_state(state, connector);
493 if (IS_ERR(conn_state))
494 return PTR_ERR(conn_state);
495 }
496
497 return 0;
498}
499EXPORT_SYMBOL(drm_atomic_add_affected_connectors);
500
501/**
502 * drm_atomic_connectors_for_crtc - count number of connected outputs
503 * @state: atomic state
504 * @crtc: DRM crtc
505 *
506 * This function counts all connectors which will be connected to @crtc
507 * according to @state. Useful to recompute the enable state for @crtc.
508 */
509int
510drm_atomic_connectors_for_crtc(struct drm_atomic_state *state,
511 struct drm_crtc *crtc)
512{
cc4ceb48
DV
513 int i, num_connected_connectors = 0;
514
f52b69f1 515 for (i = 0; i < state->num_connector; i++) {
cc4ceb48
DV
516 struct drm_connector_state *conn_state;
517
518 conn_state = state->connector_states[i];
519
520 if (conn_state && conn_state->crtc == crtc)
521 num_connected_connectors++;
522 }
523
524 DRM_DEBUG_KMS("State %p has %i connectors for [CRTC:%d]\n",
525 state, num_connected_connectors, crtc->base.id);
526
527 return num_connected_connectors;
528}
529EXPORT_SYMBOL(drm_atomic_connectors_for_crtc);
530
531/**
532 * drm_atomic_legacy_backoff - locking backoff for legacy ioctls
533 * @state: atomic state
534 *
535 * This function should be used by legacy entry points which don't understand
536 * -EDEADLK semantics. For simplicity this one will grab all modeset locks after
537 * the slowpath completed.
538 */
539void drm_atomic_legacy_backoff(struct drm_atomic_state *state)
540{
541 int ret;
542
543retry:
544 drm_modeset_backoff(state->acquire_ctx);
545
546 ret = drm_modeset_lock(&state->dev->mode_config.connection_mutex,
547 state->acquire_ctx);
548 if (ret)
549 goto retry;
550 ret = drm_modeset_lock_all_crtcs(state->dev,
551 state->acquire_ctx);
552 if (ret)
553 goto retry;
554}
555EXPORT_SYMBOL(drm_atomic_legacy_backoff);
556
557/**
558 * drm_atomic_check_only - check whether a given config would work
559 * @state: atomic configuration to check
560 *
561 * Note that this function can return -EDEADLK if the driver needed to acquire
562 * more locks but encountered a deadlock. The caller must then do the usual w/w
563 * backoff dance and restart. All other errors are fatal.
564 *
565 * Returns:
566 * 0 on success, negative error code on failure.
567 */
568int drm_atomic_check_only(struct drm_atomic_state *state)
569{
570 struct drm_mode_config *config = &state->dev->mode_config;
571
572 DRM_DEBUG_KMS("checking %p\n", state);
573
574 if (config->funcs->atomic_check)
575 return config->funcs->atomic_check(state->dev, state);
576 else
577 return 0;
578}
579EXPORT_SYMBOL(drm_atomic_check_only);
580
581/**
582 * drm_atomic_commit - commit configuration atomically
583 * @state: atomic configuration to check
584 *
585 * Note that this function can return -EDEADLK if the driver needed to acquire
586 * more locks but encountered a deadlock. The caller must then do the usual w/w
587 * backoff dance and restart. All other errors are fatal.
588 *
589 * Also note that on successful execution ownership of @state is transferred
590 * from the caller of this function to the function itself. The caller must not
591 * free or in any other way access @state. If the function fails then the caller
592 * must clean up @state itself.
593 *
594 * Returns:
595 * 0 on success, negative error code on failure.
596 */
597int drm_atomic_commit(struct drm_atomic_state *state)
598{
599 struct drm_mode_config *config = &state->dev->mode_config;
600 int ret;
601
602 ret = drm_atomic_check_only(state);
603 if (ret)
604 return ret;
605
606 DRM_DEBUG_KMS("commiting %p\n", state);
607
608 return config->funcs->atomic_commit(state->dev, state, false);
609}
610EXPORT_SYMBOL(drm_atomic_commit);
611
612/**
613 * drm_atomic_async_commit - atomic&async configuration commit
614 * @state: atomic configuration to check
615 *
616 * Note that this function can return -EDEADLK if the driver needed to acquire
617 * more locks but encountered a deadlock. The caller must then do the usual w/w
618 * backoff dance and restart. All other errors are fatal.
619 *
620 * Also note that on successful execution ownership of @state is transferred
621 * from the caller of this function to the function itself. The caller must not
622 * free or in any other way access @state. If the function fails then the caller
623 * must clean up @state itself.
624 *
625 * Returns:
626 * 0 on success, negative error code on failure.
627 */
628int drm_atomic_async_commit(struct drm_atomic_state *state)
629{
630 struct drm_mode_config *config = &state->dev->mode_config;
631 int ret;
632
633 ret = drm_atomic_check_only(state);
634 if (ret)
635 return ret;
636
637 DRM_DEBUG_KMS("commiting %p asynchronously\n", state);
638
639 return config->funcs->atomic_commit(state->dev, state, true);
640}
641EXPORT_SYMBOL(drm_atomic_async_commit);