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