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