gpu: ipu-v3: ipu-dc: don't bug out on invalid bus_format
[deliverable/linux.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>
5488dc16 31#include <drm/drm_mode.h>
cc4ceb48
DV
32#include <drm/drm_plane_helper.h>
33
be35f94f
TR
34#include "drm_crtc_internal.h"
35
3b24f7d6
DV
36static void crtc_commit_free(struct kref *kref)
37{
38 struct drm_crtc_commit *commit =
39 container_of(kref, struct drm_crtc_commit, ref);
40
41 kfree(commit);
42}
43
44void drm_crtc_commit_put(struct drm_crtc_commit *commit)
45{
46 kref_put(&commit->ref, crtc_commit_free);
47}
48EXPORT_SYMBOL(drm_crtc_commit_put);
49
036ef573
ML
50/**
51 * drm_atomic_state_default_release -
52 * release memory initialized by drm_atomic_state_init
53 * @state: atomic state
54 *
55 * Free all the memory allocated by drm_atomic_state_init.
56 * This is useful for drivers that subclass the atomic state.
57 */
58void drm_atomic_state_default_release(struct drm_atomic_state *state)
cc4ceb48
DV
59{
60 kfree(state->connectors);
cc4ceb48 61 kfree(state->crtcs);
cc4ceb48 62 kfree(state->planes);
cc4ceb48 63}
036ef573 64EXPORT_SYMBOL(drm_atomic_state_default_release);
cc4ceb48
DV
65
66/**
036ef573 67 * drm_atomic_state_init - init new atomic state
cc4ceb48 68 * @dev: DRM device
036ef573 69 * @state: atomic state
cc4ceb48 70 *
036ef573
ML
71 * Default implementation for filling in a new atomic state.
72 * This is useful for drivers that subclass the atomic state.
cc4ceb48 73 */
036ef573
ML
74int
75drm_atomic_state_init(struct drm_device *dev, struct drm_atomic_state *state)
cc4ceb48 76{
d34f20d6
RC
77 /* TODO legacy paths should maybe do a better job about
78 * setting this appropriately?
79 */
80 state->allow_modeset = true;
81
cc4ceb48
DV
82 state->crtcs = kcalloc(dev->mode_config.num_crtc,
83 sizeof(*state->crtcs), GFP_KERNEL);
84 if (!state->crtcs)
85 goto fail;
cc4ceb48
DV
86 state->planes = kcalloc(dev->mode_config.num_total_plane,
87 sizeof(*state->planes), GFP_KERNEL);
88 if (!state->planes)
89 goto fail;
cc4ceb48
DV
90
91 state->dev = dev;
92
036ef573 93 DRM_DEBUG_ATOMIC("Allocated atomic state %p\n", state);
cc4ceb48 94
036ef573 95 return 0;
cc4ceb48 96fail:
036ef573
ML
97 drm_atomic_state_default_release(state);
98 return -ENOMEM;
99}
100EXPORT_SYMBOL(drm_atomic_state_init);
101
102/**
103 * drm_atomic_state_alloc - allocate atomic state
104 * @dev: DRM device
105 *
106 * This allocates an empty atomic state to track updates.
107 */
108struct drm_atomic_state *
109drm_atomic_state_alloc(struct drm_device *dev)
110{
111 struct drm_mode_config *config = &dev->mode_config;
112 struct drm_atomic_state *state;
113
114 if (!config->funcs->atomic_state_alloc) {
115 state = kzalloc(sizeof(*state), GFP_KERNEL);
116 if (!state)
117 return NULL;
118 if (drm_atomic_state_init(dev, state) < 0) {
119 kfree(state);
120 return NULL;
121 }
122 return state;
123 }
cc4ceb48 124
036ef573 125 return config->funcs->atomic_state_alloc(dev);
cc4ceb48
DV
126}
127EXPORT_SYMBOL(drm_atomic_state_alloc);
128
129/**
036ef573 130 * drm_atomic_state_default_clear - clear base atomic state
cc4ceb48
DV
131 * @state: atomic state
132 *
036ef573
ML
133 * Default implementation for clearing atomic state.
134 * This is useful for drivers that subclass the atomic state.
cc4ceb48 135 */
036ef573 136void drm_atomic_state_default_clear(struct drm_atomic_state *state)
cc4ceb48
DV
137{
138 struct drm_device *dev = state->dev;
6f75cea6 139 struct drm_mode_config *config = &dev->mode_config;
cc4ceb48
DV
140 int i;
141
17a38d9c 142 DRM_DEBUG_ATOMIC("Clearing atomic state %p\n", state);
cc4ceb48 143
f52b69f1 144 for (i = 0; i < state->num_connector; i++) {
63e83c1d 145 struct drm_connector *connector = state->connectors[i].ptr;
cc4ceb48
DV
146
147 if (!connector)
148 continue;
149
d2307dea 150 connector->funcs->atomic_destroy_state(connector,
63e83c1d
DV
151 state->connectors[i].state);
152 state->connectors[i].ptr = NULL;
153 state->connectors[i].state = NULL;
b164d31f 154 drm_connector_unreference(connector);
cc4ceb48
DV
155 }
156
6f75cea6 157 for (i = 0; i < config->num_crtc; i++) {
5d943aa6 158 struct drm_crtc *crtc = state->crtcs[i].ptr;
cc4ceb48
DV
159
160 if (!crtc)
161 continue;
162
163 crtc->funcs->atomic_destroy_state(crtc,
5d943aa6 164 state->crtcs[i].state);
3b24f7d6
DV
165
166 if (state->crtcs[i].commit) {
167 kfree(state->crtcs[i].commit->event);
168 state->crtcs[i].commit->event = NULL;
169 drm_crtc_commit_put(state->crtcs[i].commit);
170 }
171
172 state->crtcs[i].commit = NULL;
5d943aa6
DV
173 state->crtcs[i].ptr = NULL;
174 state->crtcs[i].state = NULL;
cc4ceb48
DV
175 }
176
6f75cea6 177 for (i = 0; i < config->num_total_plane; i++) {
b8b5342b 178 struct drm_plane *plane = state->planes[i].ptr;
cc4ceb48
DV
179
180 if (!plane)
181 continue;
182
183 plane->funcs->atomic_destroy_state(plane,
b8b5342b
DV
184 state->planes[i].state);
185 state->planes[i].ptr = NULL;
186 state->planes[i].state = NULL;
cc4ceb48
DV
187 }
188}
036ef573
ML
189EXPORT_SYMBOL(drm_atomic_state_default_clear);
190
191/**
192 * drm_atomic_state_clear - clear state object
193 * @state: atomic state
194 *
195 * When the w/w mutex algorithm detects a deadlock we need to back off and drop
196 * all locks. So someone else could sneak in and change the current modeset
197 * configuration. Which means that all the state assembled in @state is no
198 * longer an atomic update to the current state, but to some arbitrary earlier
199 * state. Which could break assumptions the driver's ->atomic_check likely
200 * relies on.
201 *
202 * Hence we must clear all cached state and completely start over, using this
203 * function.
204 */
205void drm_atomic_state_clear(struct drm_atomic_state *state)
206{
207 struct drm_device *dev = state->dev;
208 struct drm_mode_config *config = &dev->mode_config;
209
210 if (config->funcs->atomic_state_clear)
211 config->funcs->atomic_state_clear(state);
212 else
213 drm_atomic_state_default_clear(state);
214}
cc4ceb48
DV
215EXPORT_SYMBOL(drm_atomic_state_clear);
216
217/**
218 * drm_atomic_state_free - free all memory for an atomic state
219 * @state: atomic state to deallocate
220 *
221 * This frees all memory associated with an atomic state, including all the
222 * per-object state for planes, crtcs and connectors.
223 */
224void drm_atomic_state_free(struct drm_atomic_state *state)
225{
036ef573
ML
226 struct drm_device *dev;
227 struct drm_mode_config *config;
228
a0211bb4
ACO
229 if (!state)
230 return;
231
036ef573
ML
232 dev = state->dev;
233 config = &dev->mode_config;
234
cc4ceb48
DV
235 drm_atomic_state_clear(state);
236
17a38d9c 237 DRM_DEBUG_ATOMIC("Freeing atomic state %p\n", state);
cc4ceb48 238
036ef573
ML
239 if (config->funcs->atomic_state_free) {
240 config->funcs->atomic_state_free(state);
241 } else {
242 drm_atomic_state_default_release(state);
243 kfree(state);
244 }
cc4ceb48
DV
245}
246EXPORT_SYMBOL(drm_atomic_state_free);
247
248/**
249 * drm_atomic_get_crtc_state - get crtc state
250 * @state: global atomic state object
251 * @crtc: crtc to get state object for
252 *
253 * This function returns the crtc state for the given crtc, allocating it if
254 * needed. It will also grab the relevant crtc lock to make sure that the state
255 * is consistent.
256 *
257 * Returns:
258 *
259 * Either the allocated state or the error code encoded into the pointer. When
260 * the error is EDEADLK then the w/w mutex code has detected a deadlock and the
261 * entire atomic sequence must be restarted. All other errors are fatal.
262 */
263struct drm_crtc_state *
264drm_atomic_get_crtc_state(struct drm_atomic_state *state,
265 struct drm_crtc *crtc)
266{
1b26a5e1 267 int ret, index = drm_crtc_index(crtc);
cc4ceb48
DV
268 struct drm_crtc_state *crtc_state;
269
7f4eaa89
ML
270 WARN_ON(!state->acquire_ctx);
271
1b26a5e1
ML
272 crtc_state = drm_atomic_get_existing_crtc_state(state, crtc);
273 if (crtc_state)
274 return crtc_state;
cc4ceb48
DV
275
276 ret = drm_modeset_lock(&crtc->mutex, state->acquire_ctx);
277 if (ret)
278 return ERR_PTR(ret);
279
280 crtc_state = crtc->funcs->atomic_duplicate_state(crtc);
281 if (!crtc_state)
282 return ERR_PTR(-ENOMEM);
283
5d943aa6
DV
284 state->crtcs[index].state = crtc_state;
285 state->crtcs[index].ptr = crtc;
cc4ceb48
DV
286 crtc_state->state = state;
287
fa3ab4c2
VS
288 DRM_DEBUG_ATOMIC("Added [CRTC:%d:%s] %p state to %p\n",
289 crtc->base.id, crtc->name, crtc_state, state);
cc4ceb48
DV
290
291 return crtc_state;
292}
293EXPORT_SYMBOL(drm_atomic_get_crtc_state);
294
819364da
DS
295/**
296 * drm_atomic_set_mode_for_crtc - set mode for CRTC
297 * @state: the CRTC whose incoming state to update
298 * @mode: kernel-internal mode to use for the CRTC, or NULL to disable
299 *
300 * Set a mode (originating from the kernel) on the desired CRTC state. Does
301 * not change any other state properties, including enable, active, or
302 * mode_changed.
303 *
304 * RETURNS:
305 * Zero on success, error code on failure. Cannot return -EDEADLK.
306 */
307int drm_atomic_set_mode_for_crtc(struct drm_crtc_state *state,
308 struct drm_display_mode *mode)
309{
99cf4a29
DS
310 struct drm_mode_modeinfo umode;
311
819364da
DS
312 /* Early return for no change. */
313 if (mode && memcmp(&state->mode, mode, sizeof(*mode)) == 0)
314 return 0;
315
5f911905 316 drm_property_unreference_blob(state->mode_blob);
99cf4a29
DS
317 state->mode_blob = NULL;
318
819364da 319 if (mode) {
99cf4a29
DS
320 drm_mode_convert_to_umode(&umode, mode);
321 state->mode_blob =
322 drm_property_create_blob(state->crtc->dev,
323 sizeof(umode),
324 &umode);
325 if (IS_ERR(state->mode_blob))
326 return PTR_ERR(state->mode_blob);
327
819364da
DS
328 drm_mode_copy(&state->mode, mode);
329 state->enable = true;
330 DRM_DEBUG_ATOMIC("Set [MODE:%s] for CRTC state %p\n",
331 mode->name, state);
332 } else {
333 memset(&state->mode, 0, sizeof(state->mode));
334 state->enable = false;
335 DRM_DEBUG_ATOMIC("Set [NOMODE] for CRTC state %p\n",
336 state);
337 }
338
339 return 0;
340}
341EXPORT_SYMBOL(drm_atomic_set_mode_for_crtc);
342
955f3c33
DS
343/**
344 * drm_atomic_set_mode_prop_for_crtc - set mode for CRTC
345 * @state: the CRTC whose incoming state to update
346 * @blob: pointer to blob property to use for mode
347 *
348 * Set a mode (originating from a blob property) on the desired CRTC state.
349 * This function will take a reference on the blob property for the CRTC state,
350 * and release the reference held on the state's existing mode property, if any
351 * was set.
352 *
353 * RETURNS:
354 * Zero on success, error code on failure. Cannot return -EDEADLK.
355 */
356int drm_atomic_set_mode_prop_for_crtc(struct drm_crtc_state *state,
357 struct drm_property_blob *blob)
358{
359 if (blob == state->mode_blob)
360 return 0;
361
5f911905 362 drm_property_unreference_blob(state->mode_blob);
955f3c33
DS
363 state->mode_blob = NULL;
364
6709887c
TV
365 memset(&state->mode, 0, sizeof(state->mode));
366
955f3c33
DS
367 if (blob) {
368 if (blob->length != sizeof(struct drm_mode_modeinfo) ||
369 drm_mode_convert_umode(&state->mode,
370 (const struct drm_mode_modeinfo *)
371 blob->data))
372 return -EINVAL;
373
374 state->mode_blob = drm_property_reference_blob(blob);
375 state->enable = true;
376 DRM_DEBUG_ATOMIC("Set [MODE:%s] for CRTC state %p\n",
377 state->mode.name, state);
378 } else {
955f3c33
DS
379 state->enable = false;
380 DRM_DEBUG_ATOMIC("Set [NOMODE] for CRTC state %p\n",
381 state);
382 }
383
384 return 0;
385}
386EXPORT_SYMBOL(drm_atomic_set_mode_prop_for_crtc);
387
5488dc16
LL
388/**
389 * drm_atomic_replace_property_blob - replace a blob property
390 * @blob: a pointer to the member blob to be replaced
391 * @new_blob: the new blob to replace with
5488dc16
LL
392 * @replaced: whether the blob has been replaced
393 *
394 * RETURNS:
395 * Zero on success, error code on failure
396 */
397static void
398drm_atomic_replace_property_blob(struct drm_property_blob **blob,
399 struct drm_property_blob *new_blob,
400 bool *replaced)
401{
402 struct drm_property_blob *old_blob = *blob;
403
404 if (old_blob == new_blob)
405 return;
406
407 if (old_blob)
408 drm_property_unreference_blob(old_blob);
409 if (new_blob)
410 drm_property_reference_blob(new_blob);
411 *blob = new_blob;
412 *replaced = true;
413
414 return;
415}
416
417static int
418drm_atomic_replace_property_blob_from_id(struct drm_crtc *crtc,
419 struct drm_property_blob **blob,
420 uint64_t blob_id,
421 ssize_t expected_size,
422 bool *replaced)
423{
424 struct drm_device *dev = crtc->dev;
425 struct drm_property_blob *new_blob = NULL;
426
427 if (blob_id != 0) {
428 new_blob = drm_property_lookup_blob(dev, blob_id);
429 if (new_blob == NULL)
430 return -EINVAL;
431 if (expected_size > 0 && expected_size != new_blob->length)
432 return -EINVAL;
433 }
434
435 drm_atomic_replace_property_blob(blob, new_blob, replaced);
436
437 return 0;
438}
439
40ecc694
RC
440/**
441 * drm_atomic_crtc_set_property - set property on CRTC
442 * @crtc: the drm CRTC to set a property on
443 * @state: the state object to update with the new property value
444 * @property: the property to set
445 * @val: the new property value
446 *
447 * Use this instead of calling crtc->atomic_set_property directly.
448 * This function handles generic/core properties and calls out to
449 * driver's ->atomic_set_property() for driver properties. To ensure
450 * consistent behavior you must call this function rather than the
451 * driver hook directly.
452 *
453 * RETURNS:
454 * Zero on success, error code on failure
455 */
456int drm_atomic_crtc_set_property(struct drm_crtc *crtc,
457 struct drm_crtc_state *state, struct drm_property *property,
458 uint64_t val)
459{
eab3bbef
DV
460 struct drm_device *dev = crtc->dev;
461 struct drm_mode_config *config = &dev->mode_config;
5488dc16 462 bool replaced = false;
955f3c33 463 int ret;
eab3bbef 464
27798365 465 if (property == config->prop_active)
eab3bbef 466 state->active = val;
955f3c33
DS
467 else if (property == config->prop_mode_id) {
468 struct drm_property_blob *mode =
469 drm_property_lookup_blob(dev, val);
470 ret = drm_atomic_set_mode_prop_for_crtc(state, mode);
5f911905 471 drm_property_unreference_blob(mode);
955f3c33 472 return ret;
5488dc16
LL
473 } else if (property == config->degamma_lut_property) {
474 ret = drm_atomic_replace_property_blob_from_id(crtc,
475 &state->degamma_lut,
476 val,
477 -1,
478 &replaced);
479 state->color_mgmt_changed = replaced;
480 return ret;
481 } else if (property == config->ctm_property) {
482 ret = drm_atomic_replace_property_blob_from_id(crtc,
483 &state->ctm,
484 val,
485 sizeof(struct drm_color_ctm),
486 &replaced);
487 state->color_mgmt_changed = replaced;
488 return ret;
489 } else if (property == config->gamma_lut_property) {
490 ret = drm_atomic_replace_property_blob_from_id(crtc,
491 &state->gamma_lut,
492 val,
493 -1,
494 &replaced);
495 state->color_mgmt_changed = replaced;
496 return ret;
497 } else if (crtc->funcs->atomic_set_property)
40ecc694 498 return crtc->funcs->atomic_set_property(crtc, state, property, val);
27798365
DS
499 else
500 return -EINVAL;
501
502 return 0;
40ecc694
RC
503}
504EXPORT_SYMBOL(drm_atomic_crtc_set_property);
505
c0714fc9
DV
506/**
507 * drm_atomic_crtc_get_property - get property value from CRTC state
508 * @crtc: the drm CRTC to set a property on
509 * @state: the state object to get the property value from
510 * @property: the property to set
511 * @val: return location for the property value
512 *
ac9c9256
RC
513 * This function handles generic/core properties and calls out to
514 * driver's ->atomic_get_property() for driver properties. To ensure
515 * consistent behavior you must call this function rather than the
516 * driver hook directly.
c0714fc9
DV
517 *
518 * RETURNS:
519 * Zero on success, error code on failure
ac9c9256 520 */
bf22f3be
GT
521static int
522drm_atomic_crtc_get_property(struct drm_crtc *crtc,
ac9c9256
RC
523 const struct drm_crtc_state *state,
524 struct drm_property *property, uint64_t *val)
525{
8f164ce4
DS
526 struct drm_device *dev = crtc->dev;
527 struct drm_mode_config *config = &dev->mode_config;
528
529 if (property == config->prop_active)
530 *val = state->active;
955f3c33
DS
531 else if (property == config->prop_mode_id)
532 *val = (state->mode_blob) ? state->mode_blob->base.id : 0;
5488dc16
LL
533 else if (property == config->degamma_lut_property)
534 *val = (state->degamma_lut) ? state->degamma_lut->base.id : 0;
535 else if (property == config->ctm_property)
536 *val = (state->ctm) ? state->ctm->base.id : 0;
537 else if (property == config->gamma_lut_property)
538 *val = (state->gamma_lut) ? state->gamma_lut->base.id : 0;
8f164ce4 539 else if (crtc->funcs->atomic_get_property)
ac9c9256 540 return crtc->funcs->atomic_get_property(crtc, state, property, val);
8f164ce4
DS
541 else
542 return -EINVAL;
543
544 return 0;
ac9c9256 545}
ac9c9256 546
5e743737
RC
547/**
548 * drm_atomic_crtc_check - check crtc state
549 * @crtc: crtc to check
550 * @state: crtc state to check
551 *
552 * Provides core sanity checks for crtc state.
553 *
554 * RETURNS:
555 * Zero on success, error code on failure
556 */
557static int drm_atomic_crtc_check(struct drm_crtc *crtc,
558 struct drm_crtc_state *state)
559{
560 /* NOTE: we explicitly don't enforce constraints such as primary
561 * layer covering entire screen, since that is something we want
562 * to allow (on hw that supports it). For hw that does not, it
563 * should be checked in driver's crtc->atomic_check() vfunc.
564 *
565 * TODO: Add generic modeset state checks once we support those.
566 */
eab3bbef
DV
567
568 if (state->active && !state->enable) {
fa3ab4c2
VS
569 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] active without enabled\n",
570 crtc->base.id, crtc->name);
eab3bbef
DV
571 return -EINVAL;
572 }
573
99cf4a29
DS
574 /* The state->enable vs. state->mode_blob checks can be WARN_ON,
575 * as this is a kernel-internal detail that userspace should never
576 * be able to trigger. */
577 if (drm_core_check_feature(crtc->dev, DRIVER_ATOMIC) &&
578 WARN_ON(state->enable && !state->mode_blob)) {
fa3ab4c2
VS
579 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] enabled without mode blob\n",
580 crtc->base.id, crtc->name);
99cf4a29
DS
581 return -EINVAL;
582 }
583
584 if (drm_core_check_feature(crtc->dev, DRIVER_ATOMIC) &&
585 WARN_ON(!state->enable && state->mode_blob)) {
fa3ab4c2
VS
586 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] disabled with mode blob\n",
587 crtc->base.id, crtc->name);
99cf4a29
DS
588 return -EINVAL;
589 }
590
4cba6850
DV
591 /*
592 * Reject event generation for when a CRTC is off and stays off.
593 * It wouldn't be hard to implement this, but userspace has a track
594 * record of happily burning through 100% cpu (or worse, crash) when the
595 * display pipe is suspended. To avoid all that fun just reject updates
596 * that ask for events since likely that indicates a bug in the
597 * compositor's drawing loop. This is consistent with the vblank IOCTL
598 * and legacy page_flip IOCTL which also reject service on a disabled
599 * pipe.
600 */
601 if (state->event && !state->active && !crtc->state->active) {
602 DRM_DEBUG_ATOMIC("[CRTC:%d] requesting event but off\n",
603 crtc->base.id);
604 return -EINVAL;
605 }
606
5e743737
RC
607 return 0;
608}
609
cc4ceb48
DV
610/**
611 * drm_atomic_get_plane_state - get plane state
612 * @state: global atomic state object
613 * @plane: plane to get state object for
614 *
615 * This function returns the plane state for the given plane, allocating it if
616 * needed. It will also grab the relevant plane lock to make sure that the state
617 * is consistent.
618 *
619 * Returns:
620 *
621 * Either the allocated state or the error code encoded into the pointer. When
622 * the error is EDEADLK then the w/w mutex code has detected a deadlock and the
623 * entire atomic sequence must be restarted. All other errors are fatal.
624 */
625struct drm_plane_state *
626drm_atomic_get_plane_state(struct drm_atomic_state *state,
627 struct drm_plane *plane)
628{
1b26a5e1 629 int ret, index = drm_plane_index(plane);
cc4ceb48
DV
630 struct drm_plane_state *plane_state;
631
7f4eaa89
ML
632 WARN_ON(!state->acquire_ctx);
633
1b26a5e1
ML
634 plane_state = drm_atomic_get_existing_plane_state(state, plane);
635 if (plane_state)
636 return plane_state;
cc4ceb48 637
4d02e2de 638 ret = drm_modeset_lock(&plane->mutex, state->acquire_ctx);
cc4ceb48
DV
639 if (ret)
640 return ERR_PTR(ret);
641
642 plane_state = plane->funcs->atomic_duplicate_state(plane);
643 if (!plane_state)
644 return ERR_PTR(-ENOMEM);
645
b8b5342b
DV
646 state->planes[index].state = plane_state;
647 state->planes[index].ptr = plane;
cc4ceb48
DV
648 plane_state->state = state;
649
9f4c97a2
VS
650 DRM_DEBUG_ATOMIC("Added [PLANE:%d:%s] %p state to %p\n",
651 plane->base.id, plane->name, plane_state, state);
cc4ceb48
DV
652
653 if (plane_state->crtc) {
654 struct drm_crtc_state *crtc_state;
655
656 crtc_state = drm_atomic_get_crtc_state(state,
657 plane_state->crtc);
658 if (IS_ERR(crtc_state))
659 return ERR_CAST(crtc_state);
660 }
661
662 return plane_state;
663}
664EXPORT_SYMBOL(drm_atomic_get_plane_state);
665
40ecc694
RC
666/**
667 * drm_atomic_plane_set_property - set property on plane
668 * @plane: the drm plane to set a property on
669 * @state: the state object to update with the new property value
670 * @property: the property to set
671 * @val: the new property value
672 *
673 * Use this instead of calling plane->atomic_set_property directly.
674 * This function handles generic/core properties and calls out to
675 * driver's ->atomic_set_property() for driver properties. To ensure
676 * consistent behavior you must call this function rather than the
677 * driver hook directly.
678 *
679 * RETURNS:
680 * Zero on success, error code on failure
681 */
682int drm_atomic_plane_set_property(struct drm_plane *plane,
683 struct drm_plane_state *state, struct drm_property *property,
684 uint64_t val)
685{
6b4959f4
RC
686 struct drm_device *dev = plane->dev;
687 struct drm_mode_config *config = &dev->mode_config;
688
689 if (property == config->prop_fb_id) {
690 struct drm_framebuffer *fb = drm_framebuffer_lookup(dev, val);
691 drm_atomic_set_fb_for_plane(state, fb);
692 if (fb)
693 drm_framebuffer_unreference(fb);
694 } else if (property == config->prop_crtc_id) {
695 struct drm_crtc *crtc = drm_crtc_find(dev, val);
696 return drm_atomic_set_crtc_for_plane(state, crtc);
697 } else if (property == config->prop_crtc_x) {
698 state->crtc_x = U642I64(val);
699 } else if (property == config->prop_crtc_y) {
700 state->crtc_y = U642I64(val);
701 } else if (property == config->prop_crtc_w) {
702 state->crtc_w = val;
703 } else if (property == config->prop_crtc_h) {
704 state->crtc_h = val;
705 } else if (property == config->prop_src_x) {
706 state->src_x = val;
707 } else if (property == config->prop_src_y) {
708 state->src_y = val;
709 } else if (property == config->prop_src_w) {
710 state->src_w = val;
711 } else if (property == config->prop_src_h) {
712 state->src_h = val;
1da30627
MR
713 } else if (property == config->rotation_property) {
714 state->rotation = val;
6b4959f4
RC
715 } else if (plane->funcs->atomic_set_property) {
716 return plane->funcs->atomic_set_property(plane, state,
717 property, val);
718 } else {
719 return -EINVAL;
720 }
721
722 return 0;
40ecc694
RC
723}
724EXPORT_SYMBOL(drm_atomic_plane_set_property);
725
c0714fc9
DV
726/**
727 * drm_atomic_plane_get_property - get property value from plane state
728 * @plane: the drm plane to set a property on
729 * @state: the state object to get the property value from
730 * @property: the property to set
731 * @val: return location for the property value
732 *
ac9c9256
RC
733 * This function handles generic/core properties and calls out to
734 * driver's ->atomic_get_property() for driver properties. To ensure
735 * consistent behavior you must call this function rather than the
736 * driver hook directly.
c0714fc9
DV
737 *
738 * RETURNS:
739 * Zero on success, error code on failure
ac9c9256 740 */
a97df1cc
DV
741static int
742drm_atomic_plane_get_property(struct drm_plane *plane,
ac9c9256
RC
743 const struct drm_plane_state *state,
744 struct drm_property *property, uint64_t *val)
745{
6b4959f4
RC
746 struct drm_device *dev = plane->dev;
747 struct drm_mode_config *config = &dev->mode_config;
748
749 if (property == config->prop_fb_id) {
750 *val = (state->fb) ? state->fb->base.id : 0;
751 } else if (property == config->prop_crtc_id) {
752 *val = (state->crtc) ? state->crtc->base.id : 0;
753 } else if (property == config->prop_crtc_x) {
754 *val = I642U64(state->crtc_x);
755 } else if (property == config->prop_crtc_y) {
756 *val = I642U64(state->crtc_y);
757 } else if (property == config->prop_crtc_w) {
758 *val = state->crtc_w;
759 } else if (property == config->prop_crtc_h) {
760 *val = state->crtc_h;
761 } else if (property == config->prop_src_x) {
762 *val = state->src_x;
763 } else if (property == config->prop_src_y) {
764 *val = state->src_y;
765 } else if (property == config->prop_src_w) {
766 *val = state->src_w;
767 } else if (property == config->prop_src_h) {
768 *val = state->src_h;
4cda09ca
TU
769 } else if (property == config->rotation_property) {
770 *val = state->rotation;
6b4959f4 771 } else if (plane->funcs->atomic_get_property) {
ac9c9256 772 return plane->funcs->atomic_get_property(plane, state, property, val);
6b4959f4
RC
773 } else {
774 return -EINVAL;
775 }
776
777 return 0;
ac9c9256 778}
ac9c9256 779
f8aeb41c
DV
780static bool
781plane_switching_crtc(struct drm_atomic_state *state,
782 struct drm_plane *plane,
783 struct drm_plane_state *plane_state)
784{
785 if (!plane->state->crtc || !plane_state->crtc)
786 return false;
787
788 if (plane->state->crtc == plane_state->crtc)
789 return false;
790
791 /* This could be refined, but currently there's no helper or driver code
792 * to implement direct switching of active planes nor userspace to take
793 * advantage of more direct plane switching without the intermediate
794 * full OFF state.
795 */
796 return true;
797}
798
5e743737
RC
799/**
800 * drm_atomic_plane_check - check plane state
801 * @plane: plane to check
802 * @state: plane state to check
803 *
804 * Provides core sanity checks for plane state.
805 *
806 * RETURNS:
807 * Zero on success, error code on failure
808 */
809static int drm_atomic_plane_check(struct drm_plane *plane,
810 struct drm_plane_state *state)
811{
812 unsigned int fb_width, fb_height;
ead8610d 813 int ret;
5e743737
RC
814
815 /* either *both* CRTC and FB must be set, or neither */
816 if (WARN_ON(state->crtc && !state->fb)) {
17a38d9c 817 DRM_DEBUG_ATOMIC("CRTC set but no FB\n");
5e743737
RC
818 return -EINVAL;
819 } else if (WARN_ON(state->fb && !state->crtc)) {
17a38d9c 820 DRM_DEBUG_ATOMIC("FB set but no CRTC\n");
5e743737
RC
821 return -EINVAL;
822 }
823
824 /* if disabled, we don't care about the rest of the state: */
825 if (!state->crtc)
826 return 0;
827
828 /* Check whether this plane is usable on this CRTC */
829 if (!(plane->possible_crtcs & drm_crtc_mask(state->crtc))) {
17a38d9c 830 DRM_DEBUG_ATOMIC("Invalid crtc for plane\n");
5e743737
RC
831 return -EINVAL;
832 }
833
834 /* Check whether this plane supports the fb pixel format. */
ead8610d
LP
835 ret = drm_plane_check_pixel_format(plane, state->fb->pixel_format);
836 if (ret) {
17a38d9c
DV
837 DRM_DEBUG_ATOMIC("Invalid pixel format %s\n",
838 drm_get_format_name(state->fb->pixel_format));
ead8610d 839 return ret;
5e743737
RC
840 }
841
842 /* Give drivers some help against integer overflows */
843 if (state->crtc_w > INT_MAX ||
844 state->crtc_x > INT_MAX - (int32_t) state->crtc_w ||
845 state->crtc_h > INT_MAX ||
846 state->crtc_y > INT_MAX - (int32_t) state->crtc_h) {
17a38d9c
DV
847 DRM_DEBUG_ATOMIC("Invalid CRTC coordinates %ux%u+%d+%d\n",
848 state->crtc_w, state->crtc_h,
849 state->crtc_x, state->crtc_y);
5e743737
RC
850 return -ERANGE;
851 }
852
853 fb_width = state->fb->width << 16;
854 fb_height = state->fb->height << 16;
855
856 /* Make sure source coordinates are inside the fb. */
857 if (state->src_w > fb_width ||
858 state->src_x > fb_width - state->src_w ||
859 state->src_h > fb_height ||
860 state->src_y > fb_height - state->src_h) {
17a38d9c
DV
861 DRM_DEBUG_ATOMIC("Invalid source coordinates "
862 "%u.%06ux%u.%06u+%u.%06u+%u.%06u\n",
863 state->src_w >> 16, ((state->src_w & 0xffff) * 15625) >> 10,
864 state->src_h >> 16, ((state->src_h & 0xffff) * 15625) >> 10,
865 state->src_x >> 16, ((state->src_x & 0xffff) * 15625) >> 10,
866 state->src_y >> 16, ((state->src_y & 0xffff) * 15625) >> 10);
5e743737
RC
867 return -ENOSPC;
868 }
869
f8aeb41c 870 if (plane_switching_crtc(state->state, plane, state)) {
9f4c97a2
VS
871 DRM_DEBUG_ATOMIC("[PLANE:%d:%s] switching CRTC directly\n",
872 plane->base.id, plane->name);
f8aeb41c
DV
873 return -EINVAL;
874 }
875
5e743737
RC
876 return 0;
877}
878
cc4ceb48
DV
879/**
880 * drm_atomic_get_connector_state - get connector state
881 * @state: global atomic state object
882 * @connector: connector to get state object for
883 *
884 * This function returns the connector state for the given connector,
885 * allocating it if needed. It will also grab the relevant connector lock to
886 * make sure that the state is consistent.
887 *
888 * Returns:
889 *
890 * Either the allocated state or the error code encoded into the pointer. When
891 * the error is EDEADLK then the w/w mutex code has detected a deadlock and the
892 * entire atomic sequence must be restarted. All other errors are fatal.
893 */
894struct drm_connector_state *
895drm_atomic_get_connector_state(struct drm_atomic_state *state,
896 struct drm_connector *connector)
897{
898 int ret, index;
899 struct drm_mode_config *config = &connector->dev->mode_config;
900 struct drm_connector_state *connector_state;
901
7f4eaa89
ML
902 WARN_ON(!state->acquire_ctx);
903
c7eb76f4
DV
904 ret = drm_modeset_lock(&config->connection_mutex, state->acquire_ctx);
905 if (ret)
906 return ERR_PTR(ret);
907
cc4ceb48
DV
908 index = drm_connector_index(connector);
909
f52b69f1 910 if (index >= state->num_connector) {
63e83c1d 911 struct __drm_connnectors_state *c;
5fff80bb
ML
912 int alloc = max(index + 1, config->num_connector);
913
914 c = krealloc(state->connectors, alloc * sizeof(*state->connectors), GFP_KERNEL);
915 if (!c)
916 return ERR_PTR(-ENOMEM);
917
918 state->connectors = c;
919 memset(&state->connectors[state->num_connector], 0,
920 sizeof(*state->connectors) * (alloc - state->num_connector));
921
5fff80bb 922 state->num_connector = alloc;
f52b69f1
DV
923 }
924
63e83c1d
DV
925 if (state->connectors[index].state)
926 return state->connectors[index].state;
cc4ceb48 927
cc4ceb48
DV
928 connector_state = connector->funcs->atomic_duplicate_state(connector);
929 if (!connector_state)
930 return ERR_PTR(-ENOMEM);
931
b164d31f 932 drm_connector_reference(connector);
63e83c1d
DV
933 state->connectors[index].state = connector_state;
934 state->connectors[index].ptr = connector;
cc4ceb48
DV
935 connector_state->state = state;
936
17a38d9c
DV
937 DRM_DEBUG_ATOMIC("Added [CONNECTOR:%d] %p state to %p\n",
938 connector->base.id, connector_state, state);
cc4ceb48
DV
939
940 if (connector_state->crtc) {
941 struct drm_crtc_state *crtc_state;
942
943 crtc_state = drm_atomic_get_crtc_state(state,
944 connector_state->crtc);
945 if (IS_ERR(crtc_state))
946 return ERR_CAST(crtc_state);
947 }
948
949 return connector_state;
950}
951EXPORT_SYMBOL(drm_atomic_get_connector_state);
952
40ecc694
RC
953/**
954 * drm_atomic_connector_set_property - set property on connector.
955 * @connector: the drm connector to set a property on
956 * @state: the state object to update with the new property value
957 * @property: the property to set
958 * @val: the new property value
959 *
960 * Use this instead of calling connector->atomic_set_property directly.
961 * This function handles generic/core properties and calls out to
962 * driver's ->atomic_set_property() for driver properties. To ensure
963 * consistent behavior you must call this function rather than the
964 * driver hook directly.
965 *
966 * RETURNS:
967 * Zero on success, error code on failure
968 */
969int drm_atomic_connector_set_property(struct drm_connector *connector,
970 struct drm_connector_state *state, struct drm_property *property,
971 uint64_t val)
972{
973 struct drm_device *dev = connector->dev;
974 struct drm_mode_config *config = &dev->mode_config;
975
ae16c597
RC
976 if (property == config->prop_crtc_id) {
977 struct drm_crtc *crtc = drm_crtc_find(dev, val);
978 return drm_atomic_set_crtc_for_connector(state, crtc);
979 } else if (property == config->dpms_property) {
40ecc694
RC
980 /* setting DPMS property requires special handling, which
981 * is done in legacy setprop path for us. Disallow (for
982 * now?) atomic writes to DPMS property:
983 */
984 return -EINVAL;
985 } else if (connector->funcs->atomic_set_property) {
986 return connector->funcs->atomic_set_property(connector,
987 state, property, val);
988 } else {
989 return -EINVAL;
990 }
991}
992EXPORT_SYMBOL(drm_atomic_connector_set_property);
993
c0714fc9
DV
994/**
995 * drm_atomic_connector_get_property - get property value from connector state
996 * @connector: the drm connector to set a property on
997 * @state: the state object to get the property value from
998 * @property: the property to set
999 * @val: return location for the property value
1000 *
ac9c9256
RC
1001 * This function handles generic/core properties and calls out to
1002 * driver's ->atomic_get_property() for driver properties. To ensure
1003 * consistent behavior you must call this function rather than the
1004 * driver hook directly.
c0714fc9
DV
1005 *
1006 * RETURNS:
1007 * Zero on success, error code on failure
ac9c9256 1008 */
a97df1cc
DV
1009static int
1010drm_atomic_connector_get_property(struct drm_connector *connector,
ac9c9256
RC
1011 const struct drm_connector_state *state,
1012 struct drm_property *property, uint64_t *val)
1013{
1014 struct drm_device *dev = connector->dev;
1015 struct drm_mode_config *config = &dev->mode_config;
1016
ae16c597
RC
1017 if (property == config->prop_crtc_id) {
1018 *val = (state->crtc) ? state->crtc->base.id : 0;
1019 } else if (property == config->dpms_property) {
ac9c9256
RC
1020 *val = connector->dpms;
1021 } else if (connector->funcs->atomic_get_property) {
1022 return connector->funcs->atomic_get_property(connector,
1023 state, property, val);
1024 } else {
1025 return -EINVAL;
1026 }
1027
1028 return 0;
1029}
ac9c9256 1030
88a48e29
RC
1031int drm_atomic_get_property(struct drm_mode_object *obj,
1032 struct drm_property *property, uint64_t *val)
1033{
1034 struct drm_device *dev = property->dev;
1035 int ret;
1036
1037 switch (obj->type) {
1038 case DRM_MODE_OBJECT_CONNECTOR: {
1039 struct drm_connector *connector = obj_to_connector(obj);
1040 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
1041 ret = drm_atomic_connector_get_property(connector,
1042 connector->state, property, val);
1043 break;
1044 }
1045 case DRM_MODE_OBJECT_CRTC: {
1046 struct drm_crtc *crtc = obj_to_crtc(obj);
1047 WARN_ON(!drm_modeset_is_locked(&crtc->mutex));
1048 ret = drm_atomic_crtc_get_property(crtc,
1049 crtc->state, property, val);
1050 break;
1051 }
1052 case DRM_MODE_OBJECT_PLANE: {
1053 struct drm_plane *plane = obj_to_plane(obj);
1054 WARN_ON(!drm_modeset_is_locked(&plane->mutex));
1055 ret = drm_atomic_plane_get_property(plane,
1056 plane->state, property, val);
1057 break;
1058 }
1059 default:
1060 ret = -EINVAL;
1061 break;
1062 }
1063
1064 return ret;
1065}
1066
cc4ceb48
DV
1067/**
1068 * drm_atomic_set_crtc_for_plane - set crtc for plane
07cc0ef6 1069 * @plane_state: the plane whose incoming state to update
cc4ceb48
DV
1070 * @crtc: crtc to use for the plane
1071 *
1072 * Changing the assigned crtc for a plane requires us to grab the lock and state
1073 * for the new crtc, as needed. This function takes care of all these details
1074 * besides updating the pointer in the state object itself.
1075 *
1076 * Returns:
1077 * 0 on success or can fail with -EDEADLK or -ENOMEM. When the error is EDEADLK
1078 * then the w/w mutex code has detected a deadlock and the entire atomic
1079 * sequence must be restarted. All other errors are fatal.
1080 */
1081int
07cc0ef6
DV
1082drm_atomic_set_crtc_for_plane(struct drm_plane_state *plane_state,
1083 struct drm_crtc *crtc)
cc4ceb48 1084{
07cc0ef6 1085 struct drm_plane *plane = plane_state->plane;
cc4ceb48
DV
1086 struct drm_crtc_state *crtc_state;
1087
6ddd388a
RC
1088 if (plane_state->crtc) {
1089 crtc_state = drm_atomic_get_crtc_state(plane_state->state,
1090 plane_state->crtc);
1091 if (WARN_ON(IS_ERR(crtc_state)))
1092 return PTR_ERR(crtc_state);
1093
1094 crtc_state->plane_mask &= ~(1 << drm_plane_index(plane));
1095 }
1096
1097 plane_state->crtc = crtc;
1098
cc4ceb48
DV
1099 if (crtc) {
1100 crtc_state = drm_atomic_get_crtc_state(plane_state->state,
1101 crtc);
1102 if (IS_ERR(crtc_state))
1103 return PTR_ERR(crtc_state);
6ddd388a 1104 crtc_state->plane_mask |= (1 << drm_plane_index(plane));
cc4ceb48
DV
1105 }
1106
cc4ceb48 1107 if (crtc)
fa3ab4c2
VS
1108 DRM_DEBUG_ATOMIC("Link plane state %p to [CRTC:%d:%s]\n",
1109 plane_state, crtc->base.id, crtc->name);
cc4ceb48 1110 else
17a38d9c
DV
1111 DRM_DEBUG_ATOMIC("Link plane state %p to [NOCRTC]\n",
1112 plane_state);
cc4ceb48
DV
1113
1114 return 0;
1115}
1116EXPORT_SYMBOL(drm_atomic_set_crtc_for_plane);
1117
321ebf04 1118/**
16d78bc2 1119 * drm_atomic_set_fb_for_plane - set framebuffer for plane
321ebf04
DV
1120 * @plane_state: atomic state object for the plane
1121 * @fb: fb to use for the plane
1122 *
1123 * Changing the assigned framebuffer for a plane requires us to grab a reference
1124 * to the new fb and drop the reference to the old fb, if there is one. This
1125 * function takes care of all these details besides updating the pointer in the
1126 * state object itself.
1127 */
1128void
1129drm_atomic_set_fb_for_plane(struct drm_plane_state *plane_state,
1130 struct drm_framebuffer *fb)
1131{
1132 if (plane_state->fb)
1133 drm_framebuffer_unreference(plane_state->fb);
1134 if (fb)
1135 drm_framebuffer_reference(fb);
1136 plane_state->fb = fb;
1137
1138 if (fb)
17a38d9c
DV
1139 DRM_DEBUG_ATOMIC("Set [FB:%d] for plane state %p\n",
1140 fb->base.id, plane_state);
321ebf04 1141 else
17a38d9c
DV
1142 DRM_DEBUG_ATOMIC("Set [NOFB] for plane state %p\n",
1143 plane_state);
321ebf04
DV
1144}
1145EXPORT_SYMBOL(drm_atomic_set_fb_for_plane);
1146
cc4ceb48
DV
1147/**
1148 * drm_atomic_set_crtc_for_connector - set crtc for connector
1149 * @conn_state: atomic state object for the connector
1150 * @crtc: crtc to use for the connector
1151 *
1152 * Changing the assigned crtc for a connector requires us to grab the lock and
1153 * state for the new crtc, as needed. This function takes care of all these
1154 * details besides updating the pointer in the state object itself.
1155 *
1156 * Returns:
1157 * 0 on success or can fail with -EDEADLK or -ENOMEM. When the error is EDEADLK
1158 * then the w/w mutex code has detected a deadlock and the entire atomic
1159 * sequence must be restarted. All other errors are fatal.
1160 */
1161int
1162drm_atomic_set_crtc_for_connector(struct drm_connector_state *conn_state,
1163 struct drm_crtc *crtc)
1164{
1165 struct drm_crtc_state *crtc_state;
1166
e2d800a3
CW
1167 if (conn_state->crtc == crtc)
1168 return 0;
1169
1170 if (conn_state->crtc) {
4cd9fa52
ML
1171 crtc_state = drm_atomic_get_existing_crtc_state(conn_state->state,
1172 conn_state->crtc);
1173
1174 crtc_state->connector_mask &=
1175 ~(1 << drm_connector_index(conn_state->connector));
e2d800a3
CW
1176
1177 drm_connector_unreference(conn_state->connector);
1178 conn_state->crtc = NULL;
4cd9fa52
ML
1179 }
1180
cc4ceb48
DV
1181 if (crtc) {
1182 crtc_state = drm_atomic_get_crtc_state(conn_state->state, crtc);
1183 if (IS_ERR(crtc_state))
1184 return PTR_ERR(crtc_state);
4cd9fa52
ML
1185
1186 crtc_state->connector_mask |=
1187 1 << drm_connector_index(conn_state->connector);
cc4ceb48 1188
e2d800a3
CW
1189 drm_connector_reference(conn_state->connector);
1190 conn_state->crtc = crtc;
cc4ceb48 1191
fa3ab4c2
VS
1192 DRM_DEBUG_ATOMIC("Link connector state %p to [CRTC:%d:%s]\n",
1193 conn_state, crtc->base.id, crtc->name);
e2d800a3 1194 } else {
17a38d9c
DV
1195 DRM_DEBUG_ATOMIC("Link connector state %p to [NOCRTC]\n",
1196 conn_state);
e2d800a3 1197 }
cc4ceb48
DV
1198
1199 return 0;
1200}
1201EXPORT_SYMBOL(drm_atomic_set_crtc_for_connector);
1202
1203/**
1204 * drm_atomic_add_affected_connectors - add connectors for crtc
1205 * @state: atomic state
1206 * @crtc: DRM crtc
1207 *
1208 * This function walks the current configuration and adds all connectors
1209 * currently using @crtc to the atomic configuration @state. Note that this
1210 * function must acquire the connection mutex. This can potentially cause
1211 * unneeded seralization if the update is just for the planes on one crtc. Hence
1212 * drivers and helpers should only call this when really needed (e.g. when a
1213 * full modeset needs to happen due to some change).
1214 *
1215 * Returns:
1216 * 0 on success or can fail with -EDEADLK or -ENOMEM. When the error is EDEADLK
1217 * then the w/w mutex code has detected a deadlock and the entire atomic
1218 * sequence must be restarted. All other errors are fatal.
1219 */
1220int
1221drm_atomic_add_affected_connectors(struct drm_atomic_state *state,
1222 struct drm_crtc *crtc)
1223{
1224 struct drm_mode_config *config = &state->dev->mode_config;
1225 struct drm_connector *connector;
1226 struct drm_connector_state *conn_state;
1227 int ret;
1228
1229 ret = drm_modeset_lock(&config->connection_mutex, state->acquire_ctx);
1230 if (ret)
1231 return ret;
1232
fa3ab4c2
VS
1233 DRM_DEBUG_ATOMIC("Adding all current connectors for [CRTC:%d:%s] to %p\n",
1234 crtc->base.id, crtc->name, state);
cc4ceb48
DV
1235
1236 /*
1237 * Changed connectors are already in @state, so only need to look at the
1238 * current configuration.
1239 */
9a9f5ce8 1240 drm_for_each_connector(connector, state->dev) {
cc4ceb48
DV
1241 if (connector->state->crtc != crtc)
1242 continue;
1243
1244 conn_state = drm_atomic_get_connector_state(state, connector);
1245 if (IS_ERR(conn_state))
1246 return PTR_ERR(conn_state);
1247 }
1248
1249 return 0;
1250}
1251EXPORT_SYMBOL(drm_atomic_add_affected_connectors);
1252
e01e9f75
ML
1253/**
1254 * drm_atomic_add_affected_planes - add planes for crtc
1255 * @state: atomic state
1256 * @crtc: DRM crtc
1257 *
1258 * This function walks the current configuration and adds all planes
1259 * currently used by @crtc to the atomic configuration @state. This is useful
1260 * when an atomic commit also needs to check all currently enabled plane on
1261 * @crtc, e.g. when changing the mode. It's also useful when re-enabling a CRTC
1262 * to avoid special code to force-enable all planes.
1263 *
1264 * Since acquiring a plane state will always also acquire the w/w mutex of the
1265 * current CRTC for that plane (if there is any) adding all the plane states for
1266 * a CRTC will not reduce parallism of atomic updates.
1267 *
1268 * Returns:
1269 * 0 on success or can fail with -EDEADLK or -ENOMEM. When the error is EDEADLK
1270 * then the w/w mutex code has detected a deadlock and the entire atomic
1271 * sequence must be restarted. All other errors are fatal.
1272 */
1273int
1274drm_atomic_add_affected_planes(struct drm_atomic_state *state,
1275 struct drm_crtc *crtc)
1276{
1277 struct drm_plane *plane;
1278
1279 WARN_ON(!drm_atomic_get_existing_crtc_state(state, crtc));
1280
1281 drm_for_each_plane_mask(plane, state->dev, crtc->state->plane_mask) {
1282 struct drm_plane_state *plane_state =
1283 drm_atomic_get_plane_state(state, plane);
1284
1285 if (IS_ERR(plane_state))
1286 return PTR_ERR(plane_state);
1287 }
1288 return 0;
1289}
1290EXPORT_SYMBOL(drm_atomic_add_affected_planes);
1291
cc4ceb48
DV
1292/**
1293 * drm_atomic_legacy_backoff - locking backoff for legacy ioctls
1294 * @state: atomic state
1295 *
1296 * This function should be used by legacy entry points which don't understand
1297 * -EDEADLK semantics. For simplicity this one will grab all modeset locks after
16d78bc2 1298 * the slowpath completed.
cc4ceb48
DV
1299 */
1300void drm_atomic_legacy_backoff(struct drm_atomic_state *state)
1301{
1302 int ret;
1303
1304retry:
1305 drm_modeset_backoff(state->acquire_ctx);
1306
06eaae46 1307 ret = drm_modeset_lock_all_ctx(state->dev, state->acquire_ctx);
cc4ceb48
DV
1308 if (ret)
1309 goto retry;
1310}
1311EXPORT_SYMBOL(drm_atomic_legacy_backoff);
1312
1313/**
1314 * drm_atomic_check_only - check whether a given config would work
1315 * @state: atomic configuration to check
1316 *
1317 * Note that this function can return -EDEADLK if the driver needed to acquire
1318 * more locks but encountered a deadlock. The caller must then do the usual w/w
1319 * backoff dance and restart. All other errors are fatal.
1320 *
1321 * Returns:
1322 * 0 on success, negative error code on failure.
1323 */
1324int drm_atomic_check_only(struct drm_atomic_state *state)
1325{
5e743737
RC
1326 struct drm_device *dev = state->dev;
1327 struct drm_mode_config *config = &dev->mode_config;
df63b999
ACO
1328 struct drm_plane *plane;
1329 struct drm_plane_state *plane_state;
1330 struct drm_crtc *crtc;
1331 struct drm_crtc_state *crtc_state;
5e743737 1332 int i, ret = 0;
cc4ceb48 1333
17a38d9c 1334 DRM_DEBUG_ATOMIC("checking %p\n", state);
cc4ceb48 1335
df63b999
ACO
1336 for_each_plane_in_state(state, plane, plane_state, i) {
1337 ret = drm_atomic_plane_check(plane, plane_state);
5e743737 1338 if (ret) {
9f4c97a2
VS
1339 DRM_DEBUG_ATOMIC("[PLANE:%d:%s] atomic core check failed\n",
1340 plane->base.id, plane->name);
5e743737
RC
1341 return ret;
1342 }
1343 }
1344
df63b999
ACO
1345 for_each_crtc_in_state(state, crtc, crtc_state, i) {
1346 ret = drm_atomic_crtc_check(crtc, crtc_state);
5e743737 1347 if (ret) {
fa3ab4c2
VS
1348 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] atomic core check failed\n",
1349 crtc->base.id, crtc->name);
5e743737
RC
1350 return ret;
1351 }
1352 }
1353
cc4ceb48 1354 if (config->funcs->atomic_check)
5e743737
RC
1355 ret = config->funcs->atomic_check(state->dev, state);
1356
d34f20d6 1357 if (!state->allow_modeset) {
df63b999 1358 for_each_crtc_in_state(state, crtc, crtc_state, i) {
2465ff62 1359 if (drm_atomic_crtc_needs_modeset(crtc_state)) {
fa3ab4c2
VS
1360 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] requires full modeset\n",
1361 crtc->base.id, crtc->name);
d34f20d6
RC
1362 return -EINVAL;
1363 }
1364 }
1365 }
1366
5e743737 1367 return ret;
cc4ceb48
DV
1368}
1369EXPORT_SYMBOL(drm_atomic_check_only);
1370
1371/**
1372 * drm_atomic_commit - commit configuration atomically
1373 * @state: atomic configuration to check
1374 *
1375 * Note that this function can return -EDEADLK if the driver needed to acquire
1376 * more locks but encountered a deadlock. The caller must then do the usual w/w
1377 * backoff dance and restart. All other errors are fatal.
1378 *
1379 * Also note that on successful execution ownership of @state is transferred
1380 * from the caller of this function to the function itself. The caller must not
1381 * free or in any other way access @state. If the function fails then the caller
1382 * must clean up @state itself.
1383 *
1384 * Returns:
1385 * 0 on success, negative error code on failure.
1386 */
1387int drm_atomic_commit(struct drm_atomic_state *state)
1388{
1389 struct drm_mode_config *config = &state->dev->mode_config;
1390 int ret;
1391
1392 ret = drm_atomic_check_only(state);
1393 if (ret)
1394 return ret;
1395
17a38d9c 1396 DRM_DEBUG_ATOMIC("commiting %p\n", state);
cc4ceb48
DV
1397
1398 return config->funcs->atomic_commit(state->dev, state, false);
1399}
1400EXPORT_SYMBOL(drm_atomic_commit);
1401
1402/**
b837ba0a 1403 * drm_atomic_nonblocking_commit - atomic&nonblocking configuration commit
cc4ceb48
DV
1404 * @state: atomic configuration to check
1405 *
1406 * Note that this function can return -EDEADLK if the driver needed to acquire
1407 * more locks but encountered a deadlock. The caller must then do the usual w/w
1408 * backoff dance and restart. All other errors are fatal.
1409 *
1410 * Also note that on successful execution ownership of @state is transferred
1411 * from the caller of this function to the function itself. The caller must not
1412 * free or in any other way access @state. If the function fails then the caller
1413 * must clean up @state itself.
1414 *
1415 * Returns:
1416 * 0 on success, negative error code on failure.
1417 */
b837ba0a 1418int drm_atomic_nonblocking_commit(struct drm_atomic_state *state)
cc4ceb48
DV
1419{
1420 struct drm_mode_config *config = &state->dev->mode_config;
1421 int ret;
1422
1423 ret = drm_atomic_check_only(state);
1424 if (ret)
1425 return ret;
1426
b837ba0a 1427 DRM_DEBUG_ATOMIC("commiting %p nonblocking\n", state);
cc4ceb48
DV
1428
1429 return config->funcs->atomic_commit(state->dev, state, true);
1430}
b837ba0a 1431EXPORT_SYMBOL(drm_atomic_nonblocking_commit);
d34f20d6
RC
1432
1433/*
1434 * The big monstor ioctl
1435 */
1436
1437static struct drm_pending_vblank_event *create_vblank_event(
1b47aaf9
GP
1438 struct drm_device *dev, struct drm_file *file_priv,
1439 struct fence *fence, uint64_t user_data)
d34f20d6
RC
1440{
1441 struct drm_pending_vblank_event *e = NULL;
2dd500f1 1442 int ret;
d34f20d6
RC
1443
1444 e = kzalloc(sizeof *e, GFP_KERNEL);
2dd500f1
DV
1445 if (!e)
1446 return NULL;
d34f20d6
RC
1447
1448 e->event.base.type = DRM_EVENT_FLIP_COMPLETE;
2dd500f1 1449 e->event.base.length = sizeof(e->event);
d34f20d6 1450 e->event.user_data = user_data;
d34f20d6 1451
1b47aaf9
GP
1452 if (file_priv) {
1453 ret = drm_event_reserve_init(dev, file_priv, &e->base,
1454 &e->event.base);
1455 if (ret) {
1456 kfree(e);
1457 return NULL;
1458 }
2dd500f1 1459 }
d34f20d6 1460
1b47aaf9
GP
1461 e->base.fence = fence;
1462
2dd500f1 1463 return e;
d34f20d6
RC
1464}
1465
1466static int atomic_set_prop(struct drm_atomic_state *state,
1467 struct drm_mode_object *obj, struct drm_property *prop,
1468 uint64_t prop_value)
1469{
1470 struct drm_mode_object *ref;
1471 int ret;
1472
1473 if (!drm_property_change_valid_get(prop, prop_value, &ref))
1474 return -EINVAL;
1475
1476 switch (obj->type) {
1477 case DRM_MODE_OBJECT_CONNECTOR: {
1478 struct drm_connector *connector = obj_to_connector(obj);
1479 struct drm_connector_state *connector_state;
1480
1481 connector_state = drm_atomic_get_connector_state(state, connector);
1482 if (IS_ERR(connector_state)) {
1483 ret = PTR_ERR(connector_state);
1484 break;
1485 }
1486
1487 ret = drm_atomic_connector_set_property(connector,
1488 connector_state, prop, prop_value);
1489 break;
1490 }
1491 case DRM_MODE_OBJECT_CRTC: {
1492 struct drm_crtc *crtc = obj_to_crtc(obj);
1493 struct drm_crtc_state *crtc_state;
1494
1495 crtc_state = drm_atomic_get_crtc_state(state, crtc);
1496 if (IS_ERR(crtc_state)) {
1497 ret = PTR_ERR(crtc_state);
1498 break;
1499 }
1500
1501 ret = drm_atomic_crtc_set_property(crtc,
1502 crtc_state, prop, prop_value);
1503 break;
1504 }
1505 case DRM_MODE_OBJECT_PLANE: {
1506 struct drm_plane *plane = obj_to_plane(obj);
1507 struct drm_plane_state *plane_state;
1508
1509 plane_state = drm_atomic_get_plane_state(state, plane);
1510 if (IS_ERR(plane_state)) {
1511 ret = PTR_ERR(plane_state);
1512 break;
1513 }
1514
1515 ret = drm_atomic_plane_set_property(plane,
1516 plane_state, prop, prop_value);
1517 break;
1518 }
1519 default:
1520 ret = -EINVAL;
1521 break;
1522 }
1523
1524 drm_property_change_valid_put(prop, ref);
1525 return ret;
1526}
1527
0f45c26f 1528/**
9744bf41 1529 * drm_atomic_clean_old_fb -- Unset old_fb pointers and set plane->fb pointers.
0f45c26f
ML
1530 *
1531 * @dev: drm device to check.
1532 * @plane_mask: plane mask for planes that were updated.
1533 * @ret: return value, can be -EDEADLK for a retry.
1534 *
1535 * Before doing an update plane->old_fb is set to plane->fb,
1536 * but before dropping the locks old_fb needs to be set to NULL
1537 * and plane->fb updated. This is a common operation for each
1538 * atomic update, so this call is split off as a helper.
1539 */
1540void drm_atomic_clean_old_fb(struct drm_device *dev,
1541 unsigned plane_mask,
1542 int ret)
1543{
1544 struct drm_plane *plane;
1545
1546 /* if succeeded, fixup legacy plane crtc/fb ptrs before dropping
1547 * locks (ie. while it is still safe to deref plane->state). We
1548 * need to do this here because the driver entry points cannot
1549 * distinguish between legacy and atomic ioctls.
1550 */
1551 drm_for_each_plane_mask(plane, dev, plane_mask) {
1552 if (ret == 0) {
1553 struct drm_framebuffer *new_fb = plane->state->fb;
1554 if (new_fb)
1555 drm_framebuffer_reference(new_fb);
1556 plane->fb = new_fb;
1557 plane->crtc = plane->state->crtc;
1558
1559 if (plane->old_fb)
1560 drm_framebuffer_unreference(plane->old_fb);
1561 }
1562 plane->old_fb = NULL;
1563 }
1564}
1565EXPORT_SYMBOL(drm_atomic_clean_old_fb);
1566
d34f20d6
RC
1567int drm_mode_atomic_ioctl(struct drm_device *dev,
1568 void *data, struct drm_file *file_priv)
1569{
1570 struct drm_mode_atomic *arg = data;
1571 uint32_t __user *objs_ptr = (uint32_t __user *)(unsigned long)(arg->objs_ptr);
1572 uint32_t __user *count_props_ptr = (uint32_t __user *)(unsigned long)(arg->count_props_ptr);
1573 uint32_t __user *props_ptr = (uint32_t __user *)(unsigned long)(arg->props_ptr);
1574 uint64_t __user *prop_values_ptr = (uint64_t __user *)(unsigned long)(arg->prop_values_ptr);
1575 unsigned int copied_objs, copied_props;
1576 struct drm_atomic_state *state;
1577 struct drm_modeset_acquire_ctx ctx;
1578 struct drm_plane *plane;
df63b999
ACO
1579 struct drm_crtc *crtc;
1580 struct drm_crtc_state *crtc_state;
45723728 1581 unsigned plane_mask;
d34f20d6
RC
1582 int ret = 0;
1583 unsigned int i, j;
1584
1585 /* disallow for drivers not supporting atomic: */
1586 if (!drm_core_check_feature(dev, DRIVER_ATOMIC))
1587 return -EINVAL;
1588
1589 /* disallow for userspace that has not enabled atomic cap (even
1590 * though this may be a bit overkill, since legacy userspace
1591 * wouldn't know how to call this ioctl)
1592 */
1593 if (!file_priv->atomic)
1594 return -EINVAL;
1595
1596 if (arg->flags & ~DRM_MODE_ATOMIC_FLAGS)
1597 return -EINVAL;
1598
1599 if (arg->reserved)
1600 return -EINVAL;
1601
1602 if ((arg->flags & DRM_MODE_PAGE_FLIP_ASYNC) &&
1603 !dev->mode_config.async_page_flip)
1604 return -EINVAL;
1605
1606 /* can't test and expect an event at the same time. */
1607 if ((arg->flags & DRM_MODE_ATOMIC_TEST_ONLY) &&
1608 (arg->flags & DRM_MODE_PAGE_FLIP_EVENT))
1609 return -EINVAL;
1610
1611 drm_modeset_acquire_init(&ctx, 0);
1612
1613 state = drm_atomic_state_alloc(dev);
1614 if (!state)
1615 return -ENOMEM;
1616
1617 state->acquire_ctx = &ctx;
1618 state->allow_modeset = !!(arg->flags & DRM_MODE_ATOMIC_ALLOW_MODESET);
1619
1620retry:
45723728 1621 plane_mask = 0;
d34f20d6
RC
1622 copied_objs = 0;
1623 copied_props = 0;
1624
1625 for (i = 0; i < arg->count_objs; i++) {
1626 uint32_t obj_id, count_props;
1627 struct drm_mode_object *obj;
1628
1629 if (get_user(obj_id, objs_ptr + copied_objs)) {
1630 ret = -EFAULT;
ec9f932e 1631 goto out;
d34f20d6
RC
1632 }
1633
1634 obj = drm_mode_object_find(dev, obj_id, DRM_MODE_OBJECT_ANY);
b164d31f
DA
1635 if (!obj) {
1636 ret = -ENOENT;
1637 goto out;
1638 }
1639
1640 if (!obj->properties) {
1641 drm_mode_object_unreference(obj);
d34f20d6 1642 ret = -ENOENT;
ec9f932e 1643 goto out;
d34f20d6
RC
1644 }
1645
d34f20d6 1646 if (get_user(count_props, count_props_ptr + copied_objs)) {
b164d31f 1647 drm_mode_object_unreference(obj);
d34f20d6 1648 ret = -EFAULT;
ec9f932e 1649 goto out;
d34f20d6
RC
1650 }
1651
1652 copied_objs++;
1653
1654 for (j = 0; j < count_props; j++) {
1655 uint32_t prop_id;
1656 uint64_t prop_value;
1657 struct drm_property *prop;
1658
1659 if (get_user(prop_id, props_ptr + copied_props)) {
b164d31f 1660 drm_mode_object_unreference(obj);
d34f20d6 1661 ret = -EFAULT;
ec9f932e 1662 goto out;
d34f20d6
RC
1663 }
1664
1665 prop = drm_property_find(dev, prop_id);
1666 if (!prop) {
b164d31f 1667 drm_mode_object_unreference(obj);
d34f20d6 1668 ret = -ENOENT;
ec9f932e 1669 goto out;
d34f20d6
RC
1670 }
1671
42c5814c
GR
1672 if (copy_from_user(&prop_value,
1673 prop_values_ptr + copied_props,
1674 sizeof(prop_value))) {
b164d31f 1675 drm_mode_object_unreference(obj);
d34f20d6 1676 ret = -EFAULT;
ec9f932e 1677 goto out;
d34f20d6
RC
1678 }
1679
1680 ret = atomic_set_prop(state, obj, prop, prop_value);
b164d31f
DA
1681 if (ret) {
1682 drm_mode_object_unreference(obj);
ec9f932e 1683 goto out;
b164d31f 1684 }
d34f20d6
RC
1685
1686 copied_props++;
1687 }
a9cc54ee 1688
c4749c9a
ML
1689 if (obj->type == DRM_MODE_OBJECT_PLANE && count_props &&
1690 !(arg->flags & DRM_MODE_ATOMIC_TEST_ONLY)) {
a9cc54ee
ML
1691 plane = obj_to_plane(obj);
1692 plane_mask |= (1 << drm_plane_index(plane));
1693 plane->old_fb = plane->fb;
1694 }
b164d31f 1695 drm_mode_object_unreference(obj);
d34f20d6
RC
1696 }
1697
1698 if (arg->flags & DRM_MODE_PAGE_FLIP_EVENT) {
df63b999 1699 for_each_crtc_in_state(state, crtc, crtc_state, i) {
d34f20d6
RC
1700 struct drm_pending_vblank_event *e;
1701
1b47aaf9
GP
1702 e = create_vblank_event(dev, file_priv, NULL,
1703 arg->user_data);
d34f20d6
RC
1704 if (!e) {
1705 ret = -ENOMEM;
ec9f932e 1706 goto out;
d34f20d6
RC
1707 }
1708
1709 crtc_state->event = e;
1710 }
1711 }
1712
1713 if (arg->flags & DRM_MODE_ATOMIC_TEST_ONLY) {
c4749c9a
ML
1714 /*
1715 * Unlike commit, check_only does not clean up state.
1716 * Below we call drm_atomic_state_free for it.
1717 */
d34f20d6 1718 ret = drm_atomic_check_only(state);
d34f20d6 1719 } else if (arg->flags & DRM_MODE_ATOMIC_NONBLOCK) {
b837ba0a 1720 ret = drm_atomic_nonblocking_commit(state);
d34f20d6
RC
1721 } else {
1722 ret = drm_atomic_commit(state);
1723 }
1724
ec9f932e 1725out:
0f45c26f 1726 drm_atomic_clean_old_fb(dev, plane_mask, ret);
d34f20d6 1727
c4749c9a
ML
1728 if (ret && arg->flags & DRM_MODE_PAGE_FLIP_EVENT) {
1729 /*
1730 * TEST_ONLY and PAGE_FLIP_EVENT are mutually exclusive,
1731 * if they weren't, this code should be called on success
1732 * for TEST_ONLY too.
1733 */
1734
1735 for_each_crtc_in_state(state, crtc, crtc_state, i) {
1736 if (!crtc_state->event)
1737 continue;
1738
2dd500f1 1739 drm_event_cancel_free(dev, &crtc_state->event->base);
c4749c9a
ML
1740 }
1741 }
1742
ec9f932e
ML
1743 if (ret == -EDEADLK) {
1744 drm_atomic_state_clear(state);
1745 drm_modeset_backoff(&ctx);
1746 goto retry;
1747 }
d34f20d6 1748
c4749c9a 1749 if (ret || arg->flags & DRM_MODE_ATOMIC_TEST_ONLY)
ec9f932e 1750 drm_atomic_state_free(state);
d34f20d6
RC
1751
1752 drm_modeset_drop_locks(&ctx);
1753 drm_modeset_acquire_fini(&ctx);
1754
1755 return ret;
d34f20d6 1756}
This page took 0.153977 seconds and 5 git commands to generate.