blob: 5dd70540219c18fbd6114ed3addcec84dbefa133 [file] [log] [blame]
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001/*
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>
Lionel Landwerlin5488dc12016-02-26 17:05:00 +000031#include <drm/drm_mode.h>
Daniel Vettercc4ceb42014-07-25 21:30:38 +020032#include <drm/drm_plane_helper.h>
33
Thierry Redingbe35f942016-04-28 15:19:56 +020034#include "drm_crtc_internal.h"
35
Daniel Vetter3b24f7d2016-06-08 14:19:00 +020036static 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
Maarten Lankhorst036ef572015-05-18 10:06:40 +020050/**
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)
Daniel Vettercc4ceb42014-07-25 21:30:38 +020059{
60 kfree(state->connectors);
Daniel Vettercc4ceb42014-07-25 21:30:38 +020061 kfree(state->crtcs);
Daniel Vettercc4ceb42014-07-25 21:30:38 +020062 kfree(state->planes);
Daniel Vettercc4ceb42014-07-25 21:30:38 +020063}
Maarten Lankhorst036ef572015-05-18 10:06:40 +020064EXPORT_SYMBOL(drm_atomic_state_default_release);
Daniel Vettercc4ceb42014-07-25 21:30:38 +020065
66/**
Maarten Lankhorst036ef572015-05-18 10:06:40 +020067 * drm_atomic_state_init - init new atomic state
Daniel Vettercc4ceb42014-07-25 21:30:38 +020068 * @dev: DRM device
Maarten Lankhorst036ef572015-05-18 10:06:40 +020069 * @state: atomic state
Daniel Vettercc4ceb42014-07-25 21:30:38 +020070 *
Maarten Lankhorst036ef572015-05-18 10:06:40 +020071 * Default implementation for filling in a new atomic state.
72 * This is useful for drivers that subclass the atomic state.
Daniel Vettercc4ceb42014-07-25 21:30:38 +020073 */
Maarten Lankhorst036ef572015-05-18 10:06:40 +020074int
75drm_atomic_state_init(struct drm_device *dev, struct drm_atomic_state *state)
Daniel Vettercc4ceb42014-07-25 21:30:38 +020076{
Chris Wilson08536952016-10-14 13:18:18 +010077 kref_init(&state->ref);
78
Rob Clarkd34f20d2014-12-18 16:01:56 -050079 /* TODO legacy paths should maybe do a better job about
80 * setting this appropriately?
81 */
82 state->allow_modeset = true;
83
Daniel Vettercc4ceb42014-07-25 21:30:38 +020084 state->crtcs = kcalloc(dev->mode_config.num_crtc,
85 sizeof(*state->crtcs), GFP_KERNEL);
86 if (!state->crtcs)
87 goto fail;
Daniel Vettercc4ceb42014-07-25 21:30:38 +020088 state->planes = kcalloc(dev->mode_config.num_total_plane,
89 sizeof(*state->planes), GFP_KERNEL);
90 if (!state->planes)
91 goto fail;
Daniel Vettercc4ceb42014-07-25 21:30:38 +020092
93 state->dev = dev;
94
Maarten Lankhorst036ef572015-05-18 10:06:40 +020095 DRM_DEBUG_ATOMIC("Allocated atomic state %p\n", state);
Daniel Vettercc4ceb42014-07-25 21:30:38 +020096
Maarten Lankhorst036ef572015-05-18 10:06:40 +020097 return 0;
Daniel Vettercc4ceb42014-07-25 21:30:38 +020098fail:
Maarten Lankhorst036ef572015-05-18 10:06:40 +020099 drm_atomic_state_default_release(state);
100 return -ENOMEM;
101}
102EXPORT_SYMBOL(drm_atomic_state_init);
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200103
Maarten Lankhorst036ef572015-05-18 10:06:40 +0200104/**
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 }
126
127 return config->funcs->atomic_state_alloc(dev);
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200128}
129EXPORT_SYMBOL(drm_atomic_state_alloc);
130
131/**
Maarten Lankhorst036ef572015-05-18 10:06:40 +0200132 * drm_atomic_state_default_clear - clear base atomic state
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200133 * @state: atomic state
134 *
Maarten Lankhorst036ef572015-05-18 10:06:40 +0200135 * Default implementation for clearing atomic state.
136 * This is useful for drivers that subclass the atomic state.
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200137 */
Maarten Lankhorst036ef572015-05-18 10:06:40 +0200138void drm_atomic_state_default_clear(struct drm_atomic_state *state)
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200139{
140 struct drm_device *dev = state->dev;
Daniel Vetter6f75cea2014-11-19 18:38:07 +0100141 struct drm_mode_config *config = &dev->mode_config;
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200142 int i;
143
Daniel Vetter17a38d92015-02-22 12:24:16 +0100144 DRM_DEBUG_ATOMIC("Clearing atomic state %p\n", state);
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200145
Daniel Vetterf52b69f12014-11-19 18:38:08 +0100146 for (i = 0; i < state->num_connector; i++) {
Daniel Vetter63e83c12016-06-02 00:06:32 +0200147 struct drm_connector *connector = state->connectors[i].ptr;
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200148
149 if (!connector)
150 continue;
151
Dave Airlied2307de2016-04-27 11:27:39 +1000152 connector->funcs->atomic_destroy_state(connector,
Daniel Vetter63e83c12016-06-02 00:06:32 +0200153 state->connectors[i].state);
154 state->connectors[i].ptr = NULL;
155 state->connectors[i].state = NULL;
Dave Airlieb164d312016-04-27 11:10:09 +1000156 drm_connector_unreference(connector);
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200157 }
158
Daniel Vetter6f75cea2014-11-19 18:38:07 +0100159 for (i = 0; i < config->num_crtc; i++) {
Daniel Vetter5d943aa62016-06-02 00:06:34 +0200160 struct drm_crtc *crtc = state->crtcs[i].ptr;
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200161
162 if (!crtc)
163 continue;
164
165 crtc->funcs->atomic_destroy_state(crtc,
Daniel Vetter5d943aa62016-06-02 00:06:34 +0200166 state->crtcs[i].state);
Daniel Vetter3b24f7d2016-06-08 14:19:00 +0200167
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;
Daniel Vetter5d943aa62016-06-02 00:06:34 +0200175 state->crtcs[i].ptr = NULL;
176 state->crtcs[i].state = NULL;
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200177 }
178
Daniel Vetter6f75cea2014-11-19 18:38:07 +0100179 for (i = 0; i < config->num_total_plane; i++) {
Daniel Vetterb8b53422016-06-02 00:06:33 +0200180 struct drm_plane *plane = state->planes[i].ptr;
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200181
182 if (!plane)
183 continue;
184
185 plane->funcs->atomic_destroy_state(plane,
Daniel Vetterb8b53422016-06-02 00:06:33 +0200186 state->planes[i].state);
187 state->planes[i].ptr = NULL;
188 state->planes[i].state = NULL;
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200189 }
190}
Maarten Lankhorst036ef572015-05-18 10:06:40 +0200191EXPORT_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}
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200217EXPORT_SYMBOL(drm_atomic_state_clear);
218
219/**
Chris Wilson08536952016-10-14 13:18:18 +0100220 * __drm_atomic_state_free - free all memory for an atomic state
221 * @ref: This atomic state to deallocate
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200222 *
223 * This frees all memory associated with an atomic state, including all the
224 * per-object state for planes, crtcs and connectors.
225 */
Chris Wilson08536952016-10-14 13:18:18 +0100226void __drm_atomic_state_free(struct kref *ref)
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200227{
Chris Wilson08536952016-10-14 13:18:18 +0100228 struct drm_atomic_state *state = container_of(ref, typeof(*state), ref);
229 struct drm_mode_config *config = &state->dev->mode_config;
Maarten Lankhorst036ef572015-05-18 10:06:40 +0200230
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200231 drm_atomic_state_clear(state);
232
Daniel Vetter17a38d92015-02-22 12:24:16 +0100233 DRM_DEBUG_ATOMIC("Freeing atomic state %p\n", state);
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200234
Maarten Lankhorst036ef572015-05-18 10:06:40 +0200235 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 }
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200241}
Chris Wilson08536952016-10-14 13:18:18 +0100242EXPORT_SYMBOL(__drm_atomic_state_free);
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200243
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{
Maarten Lankhorst1b26a5e2015-05-13 10:37:25 +0200263 int ret, index = drm_crtc_index(crtc);
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200264 struct drm_crtc_state *crtc_state;
265
Maarten Lankhorst7f4eaa892016-05-03 11:12:31 +0200266 WARN_ON(!state->acquire_ctx);
267
Maarten Lankhorst1b26a5e2015-05-13 10:37:25 +0200268 crtc_state = drm_atomic_get_existing_crtc_state(state, crtc);
269 if (crtc_state)
270 return crtc_state;
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200271
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
Daniel Vetter5d943aa62016-06-02 00:06:34 +0200280 state->crtcs[index].state = crtc_state;
281 state->crtcs[index].ptr = crtc;
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200282 crtc_state->state = state;
283
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200284 DRM_DEBUG_ATOMIC("Added [CRTC:%d:%s] %p state to %p\n",
285 crtc->base.id, crtc->name, crtc_state, state);
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200286
287 return crtc_state;
288}
289EXPORT_SYMBOL(drm_atomic_get_crtc_state);
290
291/**
Daniel Stone819364d2015-05-26 14:36:48 +0100292 * 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{
Daniel Stone99cf4a22015-05-25 19:11:51 +0100306 struct drm_mode_modeinfo umode;
307
Daniel Stone819364d2015-05-26 14:36:48 +0100308 /* Early return for no change. */
309 if (mode && memcmp(&state->mode, mode, sizeof(*mode)) == 0)
310 return 0;
311
Markus Elfring5f911902015-11-06 12:03:46 +0100312 drm_property_unreference_blob(state->mode_blob);
Daniel Stone99cf4a22015-05-25 19:11:51 +0100313 state->mode_blob = NULL;
314
Daniel Stone819364d2015-05-26 14:36:48 +0100315 if (mode) {
Daniel Stone99cf4a22015-05-25 19:11:51 +0100316 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
Daniel Stone819364d2015-05-26 14:36:48 +0100324 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
Daniel Stone819364d2015-05-26 14:36:48 +0100339/**
Daniel Stone955f3c32015-05-25 19:11:52 +0100340 * 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
Markus Elfring5f911902015-11-06 12:03:46 +0100358 drm_property_unreference_blob(state->mode_blob);
Daniel Stone955f3c32015-05-25 19:11:52 +0100359 state->mode_blob = NULL;
360
Tomi Valkeinen67098872016-05-31 15:03:17 +0300361 memset(&state->mode, 0, sizeof(state->mode));
362
Daniel Stone955f3c32015-05-25 19:11:52 +0100363 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 {
Daniel Stone955f3c32015-05-25 19:11:52 +0100375 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
384/**
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000385 * 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
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000388 * @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
Markus Elfringf35cbe62016-07-20 17:54:32 +0200403 drm_property_unreference_blob(old_blob);
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000404 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
435/**
Rob Clark40ecc692014-12-18 16:01:46 -0500436 * 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{
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100455 struct drm_device *dev = crtc->dev;
456 struct drm_mode_config *config = &dev->mode_config;
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000457 bool replaced = false;
Daniel Stone955f3c32015-05-25 19:11:52 +0100458 int ret;
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100459
Daniel Stone27798362015-03-19 04:33:26 +0000460 if (property == config->prop_active)
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100461 state->active = val;
Daniel Stone955f3c32015-05-25 19:11:52 +0100462 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);
Markus Elfring5f911902015-11-06 12:03:46 +0100466 drm_property_unreference_blob(mode);
Daniel Stone955f3c32015-05-25 19:11:52 +0100467 return ret;
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000468 } 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);
Mario Kleineradd1fa72016-08-27 01:02:28 +0200474 state->color_mgmt_changed |= replaced;
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000475 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);
Mario Kleineradd1fa72016-08-27 01:02:28 +0200482 state->color_mgmt_changed |= replaced;
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000483 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);
Mario Kleineradd1fa72016-08-27 01:02:28 +0200490 state->color_mgmt_changed |= replaced;
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000491 return ret;
492 } else if (crtc->funcs->atomic_set_property)
Rob Clark40ecc692014-12-18 16:01:46 -0500493 return crtc->funcs->atomic_set_property(crtc, state, property, val);
Daniel Stone27798362015-03-19 04:33:26 +0000494 else
495 return -EINVAL;
496
497 return 0;
Rob Clark40ecc692014-12-18 16:01:46 -0500498}
499EXPORT_SYMBOL(drm_atomic_crtc_set_property);
500
Daniel Vetterc0714fc2015-12-04 09:45:57 +0100501/**
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 *
Rob Clarkac9c9252014-12-18 16:01:47 -0500508 * 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.
Daniel Vetterc0714fc2015-12-04 09:45:57 +0100512 *
513 * RETURNS:
514 * Zero on success, error code on failure
Rob Clarkac9c9252014-12-18 16:01:47 -0500515 */
Geliang Tangbf22f3b2015-09-24 03:01:03 -0700516static int
517drm_atomic_crtc_get_property(struct drm_crtc *crtc,
Rob Clarkac9c9252014-12-18 16:01:47 -0500518 const struct drm_crtc_state *state,
519 struct drm_property *property, uint64_t *val)
520{
Daniel Stone8f164ce2015-03-19 04:33:25 +0000521 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;
Daniel Stone955f3c32015-05-25 19:11:52 +0100526 else if (property == config->prop_mode_id)
527 *val = (state->mode_blob) ? state->mode_blob->base.id : 0;
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000528 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;
Daniel Stone8f164ce2015-03-19 04:33:25 +0000534 else if (crtc->funcs->atomic_get_property)
Rob Clarkac9c9252014-12-18 16:01:47 -0500535 return crtc->funcs->atomic_get_property(crtc, state, property, val);
Daniel Stone8f164ce2015-03-19 04:33:25 +0000536 else
537 return -EINVAL;
538
539 return 0;
Rob Clarkac9c9252014-12-18 16:01:47 -0500540}
Rob Clarkac9c9252014-12-18 16:01:47 -0500541
542/**
Rob Clark5e743732014-12-18 16:01:51 -0500543 * 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 */
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100562
563 if (state->active && !state->enable) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200564 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] active without enabled\n",
565 crtc->base.id, crtc->name);
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100566 return -EINVAL;
567 }
568
Daniel Stone99cf4a22015-05-25 19:11:51 +0100569 /* 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)) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200574 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] enabled without mode blob\n",
575 crtc->base.id, crtc->name);
Daniel Stone99cf4a22015-05-25 19:11:51 +0100576 return -EINVAL;
577 }
578
579 if (drm_core_check_feature(crtc->dev, DRIVER_ATOMIC) &&
580 WARN_ON(!state->enable && state->mode_blob)) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200581 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] disabled with mode blob\n",
582 crtc->base.id, crtc->name);
Daniel Stone99cf4a22015-05-25 19:11:51 +0100583 return -EINVAL;
584 }
585
Daniel Vetter4cba6852015-12-08 09:49:20 +0100586 /*
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
Rob Clark5e743732014-12-18 16:01:51 -0500602 return 0;
603}
604
605/**
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200606 * 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{
Maarten Lankhorst1b26a5e2015-05-13 10:37:25 +0200624 int ret, index = drm_plane_index(plane);
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200625 struct drm_plane_state *plane_state;
626
Maarten Lankhorst7f4eaa892016-05-03 11:12:31 +0200627 WARN_ON(!state->acquire_ctx);
628
Maarten Lankhorst1b26a5e2015-05-13 10:37:25 +0200629 plane_state = drm_atomic_get_existing_plane_state(state, plane);
630 if (plane_state)
631 return plane_state;
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200632
Daniel Vetter4d02e2d2014-11-11 10:12:00 +0100633 ret = drm_modeset_lock(&plane->mutex, state->acquire_ctx);
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200634 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
Daniel Vetterb8b53422016-06-02 00:06:33 +0200641 state->planes[index].state = plane_state;
642 state->planes[index].ptr = plane;
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200643 plane_state->state = state;
644
Ville Syrjälä9f4c97a2015-12-08 18:41:54 +0200645 DRM_DEBUG_ATOMIC("Added [PLANE:%d:%s] %p state to %p\n",
646 plane->base.id, plane->name, plane_state, state);
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200647
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
661/**
Rob Clark40ecc692014-12-18 16:01:46 -0500662 * 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{
Rob Clark6b4959f2014-12-18 16:01:53 -0500681 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;
Matt Roper1da30622015-01-21 16:35:40 -0800708 } else if (property == config->rotation_property) {
709 state->rotation = val;
Marek Szyprowski44d1240d2016-06-13 11:11:26 +0200710 } else if (property == plane->zpos_property) {
711 state->zpos = val;
Rob Clark6b4959f2014-12-18 16:01:53 -0500712 } else if (plane->funcs->atomic_set_property) {
713 return plane->funcs->atomic_set_property(plane, state,
714 property, val);
715 } else {
716 return -EINVAL;
717 }
718
719 return 0;
Rob Clark40ecc692014-12-18 16:01:46 -0500720}
721EXPORT_SYMBOL(drm_atomic_plane_set_property);
722
Daniel Vetterc0714fc2015-12-04 09:45:57 +0100723/**
724 * drm_atomic_plane_get_property - get property value from plane state
725 * @plane: the drm plane to set a property on
726 * @state: the state object to get the property value from
727 * @property: the property to set
728 * @val: return location for the property value
729 *
Rob Clarkac9c9252014-12-18 16:01:47 -0500730 * This function handles generic/core properties and calls out to
731 * driver's ->atomic_get_property() for driver properties. To ensure
732 * consistent behavior you must call this function rather than the
733 * driver hook directly.
Daniel Vetterc0714fc2015-12-04 09:45:57 +0100734 *
735 * RETURNS:
736 * Zero on success, error code on failure
Rob Clarkac9c9252014-12-18 16:01:47 -0500737 */
Daniel Vettera97df1c2014-12-18 22:49:02 +0100738static int
739drm_atomic_plane_get_property(struct drm_plane *plane,
Rob Clarkac9c9252014-12-18 16:01:47 -0500740 const struct drm_plane_state *state,
741 struct drm_property *property, uint64_t *val)
742{
Rob Clark6b4959f2014-12-18 16:01:53 -0500743 struct drm_device *dev = plane->dev;
744 struct drm_mode_config *config = &dev->mode_config;
745
746 if (property == config->prop_fb_id) {
747 *val = (state->fb) ? state->fb->base.id : 0;
748 } else if (property == config->prop_crtc_id) {
749 *val = (state->crtc) ? state->crtc->base.id : 0;
750 } else if (property == config->prop_crtc_x) {
751 *val = I642U64(state->crtc_x);
752 } else if (property == config->prop_crtc_y) {
753 *val = I642U64(state->crtc_y);
754 } else if (property == config->prop_crtc_w) {
755 *val = state->crtc_w;
756 } else if (property == config->prop_crtc_h) {
757 *val = state->crtc_h;
758 } else if (property == config->prop_src_x) {
759 *val = state->src_x;
760 } else if (property == config->prop_src_y) {
761 *val = state->src_y;
762 } else if (property == config->prop_src_w) {
763 *val = state->src_w;
764 } else if (property == config->prop_src_h) {
765 *val = state->src_h;
Tvrtko Ursulin4cda09c2015-02-26 13:49:17 +0000766 } else if (property == config->rotation_property) {
767 *val = state->rotation;
Marek Szyprowski44d1240d2016-06-13 11:11:26 +0200768 } else if (property == plane->zpos_property) {
769 *val = state->zpos;
Rob Clark6b4959f2014-12-18 16:01:53 -0500770 } else if (plane->funcs->atomic_get_property) {
Rob Clarkac9c9252014-12-18 16:01:47 -0500771 return plane->funcs->atomic_get_property(plane, state, property, val);
Rob Clark6b4959f2014-12-18 16:01:53 -0500772 } else {
773 return -EINVAL;
774 }
775
776 return 0;
Rob Clarkac9c9252014-12-18 16:01:47 -0500777}
Rob Clarkac9c9252014-12-18 16:01:47 -0500778
Daniel Vetterf8aeb412015-08-26 21:49:42 +0200779static bool
780plane_switching_crtc(struct drm_atomic_state *state,
781 struct drm_plane *plane,
782 struct drm_plane_state *plane_state)
783{
784 if (!plane->state->crtc || !plane_state->crtc)
785 return false;
786
787 if (plane->state->crtc == plane_state->crtc)
788 return false;
789
790 /* This could be refined, but currently there's no helper or driver code
791 * to implement direct switching of active planes nor userspace to take
792 * advantage of more direct plane switching without the intermediate
793 * full OFF state.
794 */
795 return true;
796}
797
Rob Clarkac9c9252014-12-18 16:01:47 -0500798/**
Rob Clark5e743732014-12-18 16:01:51 -0500799 * drm_atomic_plane_check - check plane state
800 * @plane: plane to check
801 * @state: plane state to check
802 *
803 * Provides core sanity checks for plane state.
804 *
805 * RETURNS:
806 * Zero on success, error code on failure
807 */
808static int drm_atomic_plane_check(struct drm_plane *plane,
809 struct drm_plane_state *state)
810{
811 unsigned int fb_width, fb_height;
Laurent Pinchartead86102015-03-05 02:25:43 +0200812 int ret;
Rob Clark5e743732014-12-18 16:01:51 -0500813
814 /* either *both* CRTC and FB must be set, or neither */
815 if (WARN_ON(state->crtc && !state->fb)) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100816 DRM_DEBUG_ATOMIC("CRTC set but no FB\n");
Rob Clark5e743732014-12-18 16:01:51 -0500817 return -EINVAL;
818 } else if (WARN_ON(state->fb && !state->crtc)) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100819 DRM_DEBUG_ATOMIC("FB set but no CRTC\n");
Rob Clark5e743732014-12-18 16:01:51 -0500820 return -EINVAL;
821 }
822
823 /* if disabled, we don't care about the rest of the state: */
824 if (!state->crtc)
825 return 0;
826
827 /* Check whether this plane is usable on this CRTC */
828 if (!(plane->possible_crtcs & drm_crtc_mask(state->crtc))) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100829 DRM_DEBUG_ATOMIC("Invalid crtc for plane\n");
Rob Clark5e743732014-12-18 16:01:51 -0500830 return -EINVAL;
831 }
832
833 /* Check whether this plane supports the fb pixel format. */
Laurent Pinchartead86102015-03-05 02:25:43 +0200834 ret = drm_plane_check_pixel_format(plane, state->fb->pixel_format);
835 if (ret) {
Eric Engestromd3828142016-08-15 16:29:55 +0100836 char *format_name = drm_get_format_name(state->fb->pixel_format);
Eric Engestrom90844f02016-08-15 01:02:38 +0100837 DRM_DEBUG_ATOMIC("Invalid pixel format %s\n", format_name);
838 kfree(format_name);
Laurent Pinchartead86102015-03-05 02:25:43 +0200839 return ret;
Rob Clark5e743732014-12-18 16:01:51 -0500840 }
841
842 /* Give drivers some help against integer overflows */
843 if (state->crtc_w > INT_MAX ||
844 state->crtc_x > INT_MAX - (int32_t) state->crtc_w ||
845 state->crtc_h > INT_MAX ||
846 state->crtc_y > INT_MAX - (int32_t) state->crtc_h) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100847 DRM_DEBUG_ATOMIC("Invalid CRTC coordinates %ux%u+%d+%d\n",
848 state->crtc_w, state->crtc_h,
849 state->crtc_x, state->crtc_y);
Rob Clark5e743732014-12-18 16:01:51 -0500850 return -ERANGE;
851 }
852
853 fb_width = state->fb->width << 16;
854 fb_height = state->fb->height << 16;
855
856 /* Make sure source coordinates are inside the fb. */
857 if (state->src_w > fb_width ||
858 state->src_x > fb_width - state->src_w ||
859 state->src_h > fb_height ||
860 state->src_y > fb_height - state->src_h) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100861 DRM_DEBUG_ATOMIC("Invalid source coordinates "
862 "%u.%06ux%u.%06u+%u.%06u+%u.%06u\n",
863 state->src_w >> 16, ((state->src_w & 0xffff) * 15625) >> 10,
864 state->src_h >> 16, ((state->src_h & 0xffff) * 15625) >> 10,
865 state->src_x >> 16, ((state->src_x & 0xffff) * 15625) >> 10,
866 state->src_y >> 16, ((state->src_y & 0xffff) * 15625) >> 10);
Rob Clark5e743732014-12-18 16:01:51 -0500867 return -ENOSPC;
868 }
869
Daniel Vetterf8aeb412015-08-26 21:49:42 +0200870 if (plane_switching_crtc(state->state, plane, state)) {
Ville Syrjälä9f4c97a2015-12-08 18:41:54 +0200871 DRM_DEBUG_ATOMIC("[PLANE:%d:%s] switching CRTC directly\n",
872 plane->base.id, plane->name);
Daniel Vetterf8aeb412015-08-26 21:49:42 +0200873 return -EINVAL;
874 }
875
Rob Clark5e743732014-12-18 16:01:51 -0500876 return 0;
877}
878
879/**
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200880 * drm_atomic_get_connector_state - get connector state
881 * @state: global atomic state object
882 * @connector: connector to get state object for
883 *
884 * This function returns the connector state for the given connector,
885 * allocating it if needed. It will also grab the relevant connector lock to
886 * make sure that the state is consistent.
887 *
888 * Returns:
889 *
890 * Either the allocated state or the error code encoded into the pointer. When
891 * the error is EDEADLK then the w/w mutex code has detected a deadlock and the
892 * entire atomic sequence must be restarted. All other errors are fatal.
893 */
894struct drm_connector_state *
895drm_atomic_get_connector_state(struct drm_atomic_state *state,
896 struct drm_connector *connector)
897{
898 int ret, index;
899 struct drm_mode_config *config = &connector->dev->mode_config;
900 struct drm_connector_state *connector_state;
901
Maarten Lankhorst7f4eaa892016-05-03 11:12:31 +0200902 WARN_ON(!state->acquire_ctx);
903
Daniel Vetterc7eb76f2014-11-19 18:38:06 +0100904 ret = drm_modeset_lock(&config->connection_mutex, state->acquire_ctx);
905 if (ret)
906 return ERR_PTR(ret);
907
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200908 index = drm_connector_index(connector);
909
Daniel Vetterf52b69f12014-11-19 18:38:08 +0100910 if (index >= state->num_connector) {
Daniel Vetter63e83c12016-06-02 00:06:32 +0200911 struct __drm_connnectors_state *c;
Maarten Lankhorst5fff80b2016-02-17 08:32:05 +0100912 int alloc = max(index + 1, config->num_connector);
913
914 c = krealloc(state->connectors, alloc * sizeof(*state->connectors), GFP_KERNEL);
915 if (!c)
916 return ERR_PTR(-ENOMEM);
917
918 state->connectors = c;
919 memset(&state->connectors[state->num_connector], 0,
920 sizeof(*state->connectors) * (alloc - state->num_connector));
921
Maarten Lankhorst5fff80b2016-02-17 08:32:05 +0100922 state->num_connector = alloc;
Daniel Vetterf52b69f12014-11-19 18:38:08 +0100923 }
924
Daniel Vetter63e83c12016-06-02 00:06:32 +0200925 if (state->connectors[index].state)
926 return state->connectors[index].state;
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200927
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200928 connector_state = connector->funcs->atomic_duplicate_state(connector);
929 if (!connector_state)
930 return ERR_PTR(-ENOMEM);
931
Dave Airlieb164d312016-04-27 11:10:09 +1000932 drm_connector_reference(connector);
Daniel Vetter63e83c12016-06-02 00:06:32 +0200933 state->connectors[index].state = connector_state;
934 state->connectors[index].ptr = connector;
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200935 connector_state->state = state;
936
Daniel Vetter17a38d92015-02-22 12:24:16 +0100937 DRM_DEBUG_ATOMIC("Added [CONNECTOR:%d] %p state to %p\n",
938 connector->base.id, connector_state, state);
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200939
940 if (connector_state->crtc) {
941 struct drm_crtc_state *crtc_state;
942
943 crtc_state = drm_atomic_get_crtc_state(state,
944 connector_state->crtc);
945 if (IS_ERR(crtc_state))
946 return ERR_CAST(crtc_state);
947 }
948
949 return connector_state;
950}
951EXPORT_SYMBOL(drm_atomic_get_connector_state);
952
953/**
Rob Clark40ecc692014-12-18 16:01:46 -0500954 * drm_atomic_connector_set_property - set property on connector.
955 * @connector: the drm connector to set a property on
956 * @state: the state object to update with the new property value
957 * @property: the property to set
958 * @val: the new property value
959 *
960 * Use this instead of calling connector->atomic_set_property directly.
961 * This function handles generic/core properties and calls out to
962 * driver's ->atomic_set_property() for driver properties. To ensure
963 * consistent behavior you must call this function rather than the
964 * driver hook directly.
965 *
966 * RETURNS:
967 * Zero on success, error code on failure
968 */
969int drm_atomic_connector_set_property(struct drm_connector *connector,
970 struct drm_connector_state *state, struct drm_property *property,
971 uint64_t val)
972{
973 struct drm_device *dev = connector->dev;
974 struct drm_mode_config *config = &dev->mode_config;
975
Rob Clarkae16c592014-12-18 16:01:54 -0500976 if (property == config->prop_crtc_id) {
977 struct drm_crtc *crtc = drm_crtc_find(dev, val);
978 return drm_atomic_set_crtc_for_connector(state, crtc);
979 } else if (property == config->dpms_property) {
Rob Clark40ecc692014-12-18 16:01:46 -0500980 /* setting DPMS property requires special handling, which
981 * is done in legacy setprop path for us. Disallow (for
982 * now?) atomic writes to DPMS property:
983 */
984 return -EINVAL;
985 } else if (connector->funcs->atomic_set_property) {
986 return connector->funcs->atomic_set_property(connector,
987 state, property, val);
988 } else {
989 return -EINVAL;
990 }
991}
992EXPORT_SYMBOL(drm_atomic_connector_set_property);
993
Daniel Vetterc0714fc2015-12-04 09:45:57 +0100994/**
995 * drm_atomic_connector_get_property - get property value from connector state
996 * @connector: the drm connector to set a property on
997 * @state: the state object to get the property value from
998 * @property: the property to set
999 * @val: return location for the property value
1000 *
Rob Clarkac9c9252014-12-18 16:01:47 -05001001 * This function handles generic/core properties and calls out to
1002 * driver's ->atomic_get_property() for driver properties. To ensure
1003 * consistent behavior you must call this function rather than the
1004 * driver hook directly.
Daniel Vetterc0714fc2015-12-04 09:45:57 +01001005 *
1006 * RETURNS:
1007 * Zero on success, error code on failure
Rob Clarkac9c9252014-12-18 16:01:47 -05001008 */
Daniel Vettera97df1c2014-12-18 22:49:02 +01001009static int
1010drm_atomic_connector_get_property(struct drm_connector *connector,
Rob Clarkac9c9252014-12-18 16:01:47 -05001011 const struct drm_connector_state *state,
1012 struct drm_property *property, uint64_t *val)
1013{
1014 struct drm_device *dev = connector->dev;
1015 struct drm_mode_config *config = &dev->mode_config;
1016
Rob Clarkae16c592014-12-18 16:01:54 -05001017 if (property == config->prop_crtc_id) {
1018 *val = (state->crtc) ? state->crtc->base.id : 0;
1019 } else if (property == config->dpms_property) {
Rob Clarkac9c9252014-12-18 16:01:47 -05001020 *val = connector->dpms;
1021 } else if (connector->funcs->atomic_get_property) {
1022 return connector->funcs->atomic_get_property(connector,
1023 state, property, val);
1024 } else {
1025 return -EINVAL;
1026 }
1027
1028 return 0;
1029}
Rob Clarkac9c9252014-12-18 16:01:47 -05001030
Rob Clark88a48e22014-12-18 16:01:50 -05001031int drm_atomic_get_property(struct drm_mode_object *obj,
1032 struct drm_property *property, uint64_t *val)
1033{
1034 struct drm_device *dev = property->dev;
1035 int ret;
1036
1037 switch (obj->type) {
1038 case DRM_MODE_OBJECT_CONNECTOR: {
1039 struct drm_connector *connector = obj_to_connector(obj);
1040 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
1041 ret = drm_atomic_connector_get_property(connector,
1042 connector->state, property, val);
1043 break;
1044 }
1045 case DRM_MODE_OBJECT_CRTC: {
1046 struct drm_crtc *crtc = obj_to_crtc(obj);
1047 WARN_ON(!drm_modeset_is_locked(&crtc->mutex));
1048 ret = drm_atomic_crtc_get_property(crtc,
1049 crtc->state, property, val);
1050 break;
1051 }
1052 case DRM_MODE_OBJECT_PLANE: {
1053 struct drm_plane *plane = obj_to_plane(obj);
1054 WARN_ON(!drm_modeset_is_locked(&plane->mutex));
1055 ret = drm_atomic_plane_get_property(plane,
1056 plane->state, property, val);
1057 break;
1058 }
1059 default:
1060 ret = -EINVAL;
1061 break;
1062 }
1063
1064 return ret;
1065}
1066
1067/**
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001068 * drm_atomic_set_crtc_for_plane - set crtc for plane
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01001069 * @plane_state: the plane whose incoming state to update
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001070 * @crtc: crtc to use for the plane
1071 *
1072 * Changing the assigned crtc for a plane requires us to grab the lock and state
1073 * for the new crtc, as needed. This function takes care of all these details
1074 * besides updating the pointer in the state object itself.
1075 *
1076 * Returns:
1077 * 0 on success or can fail with -EDEADLK or -ENOMEM. When the error is EDEADLK
1078 * then the w/w mutex code has detected a deadlock and the entire atomic
1079 * sequence must be restarted. All other errors are fatal.
1080 */
1081int
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01001082drm_atomic_set_crtc_for_plane(struct drm_plane_state *plane_state,
1083 struct drm_crtc *crtc)
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001084{
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01001085 struct drm_plane *plane = plane_state->plane;
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001086 struct drm_crtc_state *crtc_state;
1087
Rob Clark6ddd3882014-11-21 15:28:31 -05001088 if (plane_state->crtc) {
1089 crtc_state = drm_atomic_get_crtc_state(plane_state->state,
1090 plane_state->crtc);
1091 if (WARN_ON(IS_ERR(crtc_state)))
1092 return PTR_ERR(crtc_state);
1093
1094 crtc_state->plane_mask &= ~(1 << drm_plane_index(plane));
1095 }
1096
1097 plane_state->crtc = crtc;
1098
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001099 if (crtc) {
1100 crtc_state = drm_atomic_get_crtc_state(plane_state->state,
1101 crtc);
1102 if (IS_ERR(crtc_state))
1103 return PTR_ERR(crtc_state);
Rob Clark6ddd3882014-11-21 15:28:31 -05001104 crtc_state->plane_mask |= (1 << drm_plane_index(plane));
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001105 }
1106
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001107 if (crtc)
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +02001108 DRM_DEBUG_ATOMIC("Link plane state %p to [CRTC:%d:%s]\n",
1109 plane_state, crtc->base.id, crtc->name);
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001110 else
Daniel Vetter17a38d92015-02-22 12:24:16 +01001111 DRM_DEBUG_ATOMIC("Link plane state %p to [NOCRTC]\n",
1112 plane_state);
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001113
1114 return 0;
1115}
1116EXPORT_SYMBOL(drm_atomic_set_crtc_for_plane);
1117
1118/**
John Hunter16d78bc2e2015-04-07 19:38:50 +08001119 * drm_atomic_set_fb_for_plane - set framebuffer for plane
Daniel Vetter321ebf02014-11-04 22:57:27 +01001120 * @plane_state: atomic state object for the plane
1121 * @fb: fb to use for the plane
1122 *
1123 * Changing the assigned framebuffer for a plane requires us to grab a reference
1124 * to the new fb and drop the reference to the old fb, if there is one. This
1125 * function takes care of all these details besides updating the pointer in the
1126 * state object itself.
1127 */
1128void
1129drm_atomic_set_fb_for_plane(struct drm_plane_state *plane_state,
1130 struct drm_framebuffer *fb)
1131{
1132 if (plane_state->fb)
1133 drm_framebuffer_unreference(plane_state->fb);
1134 if (fb)
1135 drm_framebuffer_reference(fb);
1136 plane_state->fb = fb;
1137
1138 if (fb)
Daniel Vetter17a38d92015-02-22 12:24:16 +01001139 DRM_DEBUG_ATOMIC("Set [FB:%d] for plane state %p\n",
1140 fb->base.id, plane_state);
Daniel Vetter321ebf02014-11-04 22:57:27 +01001141 else
Daniel Vetter17a38d92015-02-22 12:24:16 +01001142 DRM_DEBUG_ATOMIC("Set [NOFB] for plane state %p\n",
1143 plane_state);
Daniel Vetter321ebf02014-11-04 22:57:27 +01001144}
1145EXPORT_SYMBOL(drm_atomic_set_fb_for_plane);
1146
1147/**
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001148 * drm_atomic_set_crtc_for_connector - set crtc for connector
1149 * @conn_state: atomic state object for the connector
1150 * @crtc: crtc to use for the connector
1151 *
1152 * Changing the assigned crtc for a connector requires us to grab the lock and
1153 * state for the new crtc, as needed. This function takes care of all these
1154 * details besides updating the pointer in the state object itself.
1155 *
1156 * Returns:
1157 * 0 on success or can fail with -EDEADLK or -ENOMEM. When the error is EDEADLK
1158 * then the w/w mutex code has detected a deadlock and the entire atomic
1159 * sequence must be restarted. All other errors are fatal.
1160 */
1161int
1162drm_atomic_set_crtc_for_connector(struct drm_connector_state *conn_state,
1163 struct drm_crtc *crtc)
1164{
1165 struct drm_crtc_state *crtc_state;
1166
Chris Wilsone2d800a2016-05-06 12:47:45 +01001167 if (conn_state->crtc == crtc)
1168 return 0;
1169
1170 if (conn_state->crtc) {
Maarten Lankhorst4cd9fa52016-01-04 12:53:18 +01001171 crtc_state = drm_atomic_get_existing_crtc_state(conn_state->state,
1172 conn_state->crtc);
1173
1174 crtc_state->connector_mask &=
1175 ~(1 << drm_connector_index(conn_state->connector));
Chris Wilsone2d800a2016-05-06 12:47:45 +01001176
1177 drm_connector_unreference(conn_state->connector);
1178 conn_state->crtc = NULL;
Maarten Lankhorst4cd9fa52016-01-04 12:53:18 +01001179 }
1180
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001181 if (crtc) {
1182 crtc_state = drm_atomic_get_crtc_state(conn_state->state, crtc);
1183 if (IS_ERR(crtc_state))
1184 return PTR_ERR(crtc_state);
Maarten Lankhorst4cd9fa52016-01-04 12:53:18 +01001185
1186 crtc_state->connector_mask |=
1187 1 << drm_connector_index(conn_state->connector);
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001188
Chris Wilsone2d800a2016-05-06 12:47:45 +01001189 drm_connector_reference(conn_state->connector);
1190 conn_state->crtc = crtc;
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001191
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +02001192 DRM_DEBUG_ATOMIC("Link connector state %p to [CRTC:%d:%s]\n",
1193 conn_state, crtc->base.id, crtc->name);
Chris Wilsone2d800a2016-05-06 12:47:45 +01001194 } else {
Daniel Vetter17a38d92015-02-22 12:24:16 +01001195 DRM_DEBUG_ATOMIC("Link connector state %p to [NOCRTC]\n",
1196 conn_state);
Chris Wilsone2d800a2016-05-06 12:47:45 +01001197 }
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001198
1199 return 0;
1200}
1201EXPORT_SYMBOL(drm_atomic_set_crtc_for_connector);
1202
1203/**
1204 * drm_atomic_add_affected_connectors - add connectors for crtc
1205 * @state: atomic state
1206 * @crtc: DRM crtc
1207 *
1208 * This function walks the current configuration and adds all connectors
1209 * currently using @crtc to the atomic configuration @state. Note that this
1210 * function must acquire the connection mutex. This can potentially cause
1211 * unneeded seralization if the update is just for the planes on one crtc. Hence
1212 * drivers and helpers should only call this when really needed (e.g. when a
1213 * full modeset needs to happen due to some change).
1214 *
1215 * Returns:
1216 * 0 on success or can fail with -EDEADLK or -ENOMEM. When the error is EDEADLK
1217 * then the w/w mutex code has detected a deadlock and the entire atomic
1218 * sequence must be restarted. All other errors are fatal.
1219 */
1220int
1221drm_atomic_add_affected_connectors(struct drm_atomic_state *state,
1222 struct drm_crtc *crtc)
1223{
1224 struct drm_mode_config *config = &state->dev->mode_config;
1225 struct drm_connector *connector;
1226 struct drm_connector_state *conn_state;
1227 int ret;
1228
1229 ret = drm_modeset_lock(&config->connection_mutex, state->acquire_ctx);
1230 if (ret)
1231 return ret;
1232
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +02001233 DRM_DEBUG_ATOMIC("Adding all current connectors for [CRTC:%d:%s] to %p\n",
1234 crtc->base.id, crtc->name, state);
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001235
1236 /*
1237 * Changed connectors are already in @state, so only need to look at the
1238 * current configuration.
1239 */
Daniel Vetter9a9f5ce2015-07-09 23:44:34 +02001240 drm_for_each_connector(connector, state->dev) {
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001241 if (connector->state->crtc != crtc)
1242 continue;
1243
1244 conn_state = drm_atomic_get_connector_state(state, connector);
1245 if (IS_ERR(conn_state))
1246 return PTR_ERR(conn_state);
1247 }
1248
1249 return 0;
1250}
1251EXPORT_SYMBOL(drm_atomic_add_affected_connectors);
1252
1253/**
Maarten Lankhorste01e9f72015-05-19 16:41:02 +02001254 * drm_atomic_add_affected_planes - add planes for crtc
1255 * @state: atomic state
1256 * @crtc: DRM crtc
1257 *
1258 * This function walks the current configuration and adds all planes
1259 * currently used by @crtc to the atomic configuration @state. This is useful
1260 * when an atomic commit also needs to check all currently enabled plane on
1261 * @crtc, e.g. when changing the mode. It's also useful when re-enabling a CRTC
1262 * to avoid special code to force-enable all planes.
1263 *
1264 * Since acquiring a plane state will always also acquire the w/w mutex of the
1265 * current CRTC for that plane (if there is any) adding all the plane states for
1266 * a CRTC will not reduce parallism of atomic updates.
1267 *
1268 * Returns:
1269 * 0 on success or can fail with -EDEADLK or -ENOMEM. When the error is EDEADLK
1270 * then the w/w mutex code has detected a deadlock and the entire atomic
1271 * sequence must be restarted. All other errors are fatal.
1272 */
1273int
1274drm_atomic_add_affected_planes(struct drm_atomic_state *state,
1275 struct drm_crtc *crtc)
1276{
1277 struct drm_plane *plane;
1278
1279 WARN_ON(!drm_atomic_get_existing_crtc_state(state, crtc));
1280
1281 drm_for_each_plane_mask(plane, state->dev, crtc->state->plane_mask) {
1282 struct drm_plane_state *plane_state =
1283 drm_atomic_get_plane_state(state, plane);
1284
1285 if (IS_ERR(plane_state))
1286 return PTR_ERR(plane_state);
1287 }
1288 return 0;
1289}
1290EXPORT_SYMBOL(drm_atomic_add_affected_planes);
1291
1292/**
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001293 * drm_atomic_legacy_backoff - locking backoff for legacy ioctls
1294 * @state: atomic state
1295 *
1296 * This function should be used by legacy entry points which don't understand
1297 * -EDEADLK semantics. For simplicity this one will grab all modeset locks after
John Hunter16d78bc2e2015-04-07 19:38:50 +08001298 * the slowpath completed.
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001299 */
1300void drm_atomic_legacy_backoff(struct drm_atomic_state *state)
1301{
Maarten Lankhorst81e257e2016-06-23 13:45:06 +02001302 struct drm_device *dev = state->dev;
1303 unsigned crtc_mask = 0;
1304 struct drm_crtc *crtc;
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001305 int ret;
Maarten Lankhorst81e257e2016-06-23 13:45:06 +02001306 bool global = false;
1307
1308 drm_for_each_crtc(crtc, dev) {
1309 if (crtc->acquire_ctx != state->acquire_ctx)
1310 continue;
1311
1312 crtc_mask |= drm_crtc_mask(crtc);
1313 crtc->acquire_ctx = NULL;
1314 }
1315
1316 if (WARN_ON(dev->mode_config.acquire_ctx == state->acquire_ctx)) {
1317 global = true;
1318
1319 dev->mode_config.acquire_ctx = NULL;
1320 }
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001321
1322retry:
1323 drm_modeset_backoff(state->acquire_ctx);
1324
Maarten Lankhorst81e257e2016-06-23 13:45:06 +02001325 ret = drm_modeset_lock_all_ctx(dev, state->acquire_ctx);
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001326 if (ret)
1327 goto retry;
Maarten Lankhorst81e257e2016-06-23 13:45:06 +02001328
1329 drm_for_each_crtc(crtc, dev)
1330 if (drm_crtc_mask(crtc) & crtc_mask)
1331 crtc->acquire_ctx = state->acquire_ctx;
1332
1333 if (global)
1334 dev->mode_config.acquire_ctx = state->acquire_ctx;
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001335}
1336EXPORT_SYMBOL(drm_atomic_legacy_backoff);
1337
1338/**
1339 * drm_atomic_check_only - check whether a given config would work
1340 * @state: atomic configuration to check
1341 *
1342 * Note that this function can return -EDEADLK if the driver needed to acquire
1343 * more locks but encountered a deadlock. The caller must then do the usual w/w
1344 * backoff dance and restart. All other errors are fatal.
1345 *
1346 * Returns:
1347 * 0 on success, negative error code on failure.
1348 */
1349int drm_atomic_check_only(struct drm_atomic_state *state)
1350{
Rob Clark5e743732014-12-18 16:01:51 -05001351 struct drm_device *dev = state->dev;
1352 struct drm_mode_config *config = &dev->mode_config;
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001353 struct drm_plane *plane;
1354 struct drm_plane_state *plane_state;
1355 struct drm_crtc *crtc;
1356 struct drm_crtc_state *crtc_state;
Rob Clark5e743732014-12-18 16:01:51 -05001357 int i, ret = 0;
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001358
Daniel Vetter17a38d92015-02-22 12:24:16 +01001359 DRM_DEBUG_ATOMIC("checking %p\n", state);
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001360
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001361 for_each_plane_in_state(state, plane, plane_state, i) {
1362 ret = drm_atomic_plane_check(plane, plane_state);
Rob Clark5e743732014-12-18 16:01:51 -05001363 if (ret) {
Ville Syrjälä9f4c97a2015-12-08 18:41:54 +02001364 DRM_DEBUG_ATOMIC("[PLANE:%d:%s] atomic core check failed\n",
1365 plane->base.id, plane->name);
Rob Clark5e743732014-12-18 16:01:51 -05001366 return ret;
1367 }
1368 }
1369
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001370 for_each_crtc_in_state(state, crtc, crtc_state, i) {
1371 ret = drm_atomic_crtc_check(crtc, crtc_state);
Rob Clark5e743732014-12-18 16:01:51 -05001372 if (ret) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +02001373 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] atomic core check failed\n",
1374 crtc->base.id, crtc->name);
Rob Clark5e743732014-12-18 16:01:51 -05001375 return ret;
1376 }
1377 }
1378
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001379 if (config->funcs->atomic_check)
Rob Clark5e743732014-12-18 16:01:51 -05001380 ret = config->funcs->atomic_check(state->dev, state);
1381
Rob Clarkd34f20d2014-12-18 16:01:56 -05001382 if (!state->allow_modeset) {
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001383 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Daniel Vetter2465ff62015-06-18 09:58:55 +02001384 if (drm_atomic_crtc_needs_modeset(crtc_state)) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +02001385 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] requires full modeset\n",
1386 crtc->base.id, crtc->name);
Rob Clarkd34f20d2014-12-18 16:01:56 -05001387 return -EINVAL;
1388 }
1389 }
1390 }
1391
Rob Clark5e743732014-12-18 16:01:51 -05001392 return ret;
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001393}
1394EXPORT_SYMBOL(drm_atomic_check_only);
1395
1396/**
1397 * drm_atomic_commit - commit configuration atomically
1398 * @state: atomic configuration to check
1399 *
1400 * Note that this function can return -EDEADLK if the driver needed to acquire
1401 * more locks but encountered a deadlock. The caller must then do the usual w/w
1402 * backoff dance and restart. All other errors are fatal.
1403 *
1404 * Also note that on successful execution ownership of @state is transferred
1405 * from the caller of this function to the function itself. The caller must not
1406 * free or in any other way access @state. If the function fails then the caller
1407 * must clean up @state itself.
1408 *
1409 * Returns:
1410 * 0 on success, negative error code on failure.
1411 */
1412int drm_atomic_commit(struct drm_atomic_state *state)
1413{
1414 struct drm_mode_config *config = &state->dev->mode_config;
1415 int ret;
1416
1417 ret = drm_atomic_check_only(state);
1418 if (ret)
1419 return ret;
1420
Daniel Vetter17a38d92015-02-22 12:24:16 +01001421 DRM_DEBUG_ATOMIC("commiting %p\n", state);
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001422
1423 return config->funcs->atomic_commit(state->dev, state, false);
1424}
1425EXPORT_SYMBOL(drm_atomic_commit);
1426
1427/**
Maarten Lankhorstb837ba02016-04-26 16:11:35 +02001428 * drm_atomic_nonblocking_commit - atomic&nonblocking configuration commit
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001429 * @state: atomic configuration to check
1430 *
1431 * Note that this function can return -EDEADLK if the driver needed to acquire
1432 * more locks but encountered a deadlock. The caller must then do the usual w/w
1433 * backoff dance and restart. All other errors are fatal.
1434 *
1435 * Also note that on successful execution ownership of @state is transferred
1436 * from the caller of this function to the function itself. The caller must not
1437 * free or in any other way access @state. If the function fails then the caller
1438 * must clean up @state itself.
1439 *
1440 * Returns:
1441 * 0 on success, negative error code on failure.
1442 */
Maarten Lankhorstb837ba02016-04-26 16:11:35 +02001443int drm_atomic_nonblocking_commit(struct drm_atomic_state *state)
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001444{
1445 struct drm_mode_config *config = &state->dev->mode_config;
1446 int ret;
1447
1448 ret = drm_atomic_check_only(state);
1449 if (ret)
1450 return ret;
1451
Maarten Lankhorstb837ba02016-04-26 16:11:35 +02001452 DRM_DEBUG_ATOMIC("commiting %p nonblocking\n", state);
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001453
1454 return config->funcs->atomic_commit(state->dev, state, true);
1455}
Maarten Lankhorstb837ba02016-04-26 16:11:35 +02001456EXPORT_SYMBOL(drm_atomic_nonblocking_commit);
Rob Clarkd34f20d2014-12-18 16:01:56 -05001457
1458/*
1459 * The big monstor ioctl
1460 */
1461
1462static struct drm_pending_vblank_event *create_vblank_event(
Gustavo Padovan1b47aaf2016-06-02 00:06:35 +02001463 struct drm_device *dev, struct drm_file *file_priv,
1464 struct fence *fence, uint64_t user_data)
Rob Clarkd34f20d2014-12-18 16:01:56 -05001465{
1466 struct drm_pending_vblank_event *e = NULL;
Daniel Vetter2dd500f2016-01-11 22:40:56 +01001467 int ret;
Rob Clarkd34f20d2014-12-18 16:01:56 -05001468
1469 e = kzalloc(sizeof *e, GFP_KERNEL);
Daniel Vetter2dd500f2016-01-11 22:40:56 +01001470 if (!e)
1471 return NULL;
Rob Clarkd34f20d2014-12-18 16:01:56 -05001472
1473 e->event.base.type = DRM_EVENT_FLIP_COMPLETE;
Daniel Vetter2dd500f2016-01-11 22:40:56 +01001474 e->event.base.length = sizeof(e->event);
Rob Clarkd34f20d2014-12-18 16:01:56 -05001475 e->event.user_data = user_data;
Rob Clarkd34f20d2014-12-18 16:01:56 -05001476
Gustavo Padovan1b47aaf2016-06-02 00:06:35 +02001477 if (file_priv) {
1478 ret = drm_event_reserve_init(dev, file_priv, &e->base,
1479 &e->event.base);
1480 if (ret) {
1481 kfree(e);
1482 return NULL;
1483 }
Daniel Vetter2dd500f2016-01-11 22:40:56 +01001484 }
1485
Gustavo Padovan1b47aaf2016-06-02 00:06:35 +02001486 e->base.fence = fence;
1487
Rob Clarkd34f20d2014-12-18 16:01:56 -05001488 return e;
1489}
1490
Rob Clarkd34f20d2014-12-18 16:01:56 -05001491static int atomic_set_prop(struct drm_atomic_state *state,
1492 struct drm_mode_object *obj, struct drm_property *prop,
1493 uint64_t prop_value)
1494{
1495 struct drm_mode_object *ref;
1496 int ret;
1497
1498 if (!drm_property_change_valid_get(prop, prop_value, &ref))
1499 return -EINVAL;
1500
1501 switch (obj->type) {
1502 case DRM_MODE_OBJECT_CONNECTOR: {
1503 struct drm_connector *connector = obj_to_connector(obj);
1504 struct drm_connector_state *connector_state;
1505
1506 connector_state = drm_atomic_get_connector_state(state, connector);
1507 if (IS_ERR(connector_state)) {
1508 ret = PTR_ERR(connector_state);
1509 break;
1510 }
1511
1512 ret = drm_atomic_connector_set_property(connector,
1513 connector_state, prop, prop_value);
1514 break;
1515 }
1516 case DRM_MODE_OBJECT_CRTC: {
1517 struct drm_crtc *crtc = obj_to_crtc(obj);
1518 struct drm_crtc_state *crtc_state;
1519
1520 crtc_state = drm_atomic_get_crtc_state(state, crtc);
1521 if (IS_ERR(crtc_state)) {
1522 ret = PTR_ERR(crtc_state);
1523 break;
1524 }
1525
1526 ret = drm_atomic_crtc_set_property(crtc,
1527 crtc_state, prop, prop_value);
1528 break;
1529 }
1530 case DRM_MODE_OBJECT_PLANE: {
1531 struct drm_plane *plane = obj_to_plane(obj);
1532 struct drm_plane_state *plane_state;
1533
1534 plane_state = drm_atomic_get_plane_state(state, plane);
1535 if (IS_ERR(plane_state)) {
1536 ret = PTR_ERR(plane_state);
1537 break;
1538 }
1539
1540 ret = drm_atomic_plane_set_property(plane,
1541 plane_state, prop, prop_value);
1542 break;
1543 }
1544 default:
1545 ret = -EINVAL;
1546 break;
1547 }
1548
1549 drm_property_change_valid_put(prop, ref);
1550 return ret;
1551}
1552
Maarten Lankhorst0f45c262015-11-11 11:29:09 +01001553/**
Maarten Lankhorst9744bf42015-11-24 10:34:34 +01001554 * drm_atomic_clean_old_fb -- Unset old_fb pointers and set plane->fb pointers.
Maarten Lankhorst0f45c262015-11-11 11:29:09 +01001555 *
1556 * @dev: drm device to check.
1557 * @plane_mask: plane mask for planes that were updated.
1558 * @ret: return value, can be -EDEADLK for a retry.
1559 *
1560 * Before doing an update plane->old_fb is set to plane->fb,
1561 * but before dropping the locks old_fb needs to be set to NULL
1562 * and plane->fb updated. This is a common operation for each
1563 * atomic update, so this call is split off as a helper.
1564 */
1565void drm_atomic_clean_old_fb(struct drm_device *dev,
1566 unsigned plane_mask,
1567 int ret)
1568{
1569 struct drm_plane *plane;
1570
1571 /* if succeeded, fixup legacy plane crtc/fb ptrs before dropping
1572 * locks (ie. while it is still safe to deref plane->state). We
1573 * need to do this here because the driver entry points cannot
1574 * distinguish between legacy and atomic ioctls.
1575 */
1576 drm_for_each_plane_mask(plane, dev, plane_mask) {
1577 if (ret == 0) {
1578 struct drm_framebuffer *new_fb = plane->state->fb;
1579 if (new_fb)
1580 drm_framebuffer_reference(new_fb);
1581 plane->fb = new_fb;
1582 plane->crtc = plane->state->crtc;
1583
1584 if (plane->old_fb)
1585 drm_framebuffer_unreference(plane->old_fb);
1586 }
1587 plane->old_fb = NULL;
1588 }
1589}
1590EXPORT_SYMBOL(drm_atomic_clean_old_fb);
1591
Rob Clarkd34f20d2014-12-18 16:01:56 -05001592int drm_mode_atomic_ioctl(struct drm_device *dev,
1593 void *data, struct drm_file *file_priv)
1594{
1595 struct drm_mode_atomic *arg = data;
1596 uint32_t __user *objs_ptr = (uint32_t __user *)(unsigned long)(arg->objs_ptr);
1597 uint32_t __user *count_props_ptr = (uint32_t __user *)(unsigned long)(arg->count_props_ptr);
1598 uint32_t __user *props_ptr = (uint32_t __user *)(unsigned long)(arg->props_ptr);
1599 uint64_t __user *prop_values_ptr = (uint64_t __user *)(unsigned long)(arg->prop_values_ptr);
1600 unsigned int copied_objs, copied_props;
1601 struct drm_atomic_state *state;
1602 struct drm_modeset_acquire_ctx ctx;
1603 struct drm_plane *plane;
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001604 struct drm_crtc *crtc;
1605 struct drm_crtc_state *crtc_state;
Maarten Lankhorst45723722015-11-11 11:29:08 +01001606 unsigned plane_mask;
Rob Clarkd34f20d2014-12-18 16:01:56 -05001607 int ret = 0;
Maarten Lankhorstf92f0532016-09-08 12:30:01 +02001608 unsigned int i, j;
Rob Clarkd34f20d2014-12-18 16:01:56 -05001609
1610 /* disallow for drivers not supporting atomic: */
1611 if (!drm_core_check_feature(dev, DRIVER_ATOMIC))
1612 return -EINVAL;
1613
1614 /* disallow for userspace that has not enabled atomic cap (even
1615 * though this may be a bit overkill, since legacy userspace
1616 * wouldn't know how to call this ioctl)
1617 */
1618 if (!file_priv->atomic)
1619 return -EINVAL;
1620
1621 if (arg->flags & ~DRM_MODE_ATOMIC_FLAGS)
1622 return -EINVAL;
1623
1624 if (arg->reserved)
1625 return -EINVAL;
1626
1627 if ((arg->flags & DRM_MODE_PAGE_FLIP_ASYNC) &&
1628 !dev->mode_config.async_page_flip)
1629 return -EINVAL;
1630
1631 /* can't test and expect an event at the same time. */
1632 if ((arg->flags & DRM_MODE_ATOMIC_TEST_ONLY) &&
1633 (arg->flags & DRM_MODE_PAGE_FLIP_EVENT))
1634 return -EINVAL;
1635
1636 drm_modeset_acquire_init(&ctx, 0);
1637
1638 state = drm_atomic_state_alloc(dev);
1639 if (!state)
1640 return -ENOMEM;
1641
1642 state->acquire_ctx = &ctx;
1643 state->allow_modeset = !!(arg->flags & DRM_MODE_ATOMIC_ALLOW_MODESET);
1644
1645retry:
Maarten Lankhorst45723722015-11-11 11:29:08 +01001646 plane_mask = 0;
Rob Clarkd34f20d2014-12-18 16:01:56 -05001647 copied_objs = 0;
1648 copied_props = 0;
1649
1650 for (i = 0; i < arg->count_objs; i++) {
1651 uint32_t obj_id, count_props;
1652 struct drm_mode_object *obj;
1653
1654 if (get_user(obj_id, objs_ptr + copied_objs)) {
1655 ret = -EFAULT;
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02001656 goto out;
Rob Clarkd34f20d2014-12-18 16:01:56 -05001657 }
1658
1659 obj = drm_mode_object_find(dev, obj_id, DRM_MODE_OBJECT_ANY);
Dave Airlieb164d312016-04-27 11:10:09 +10001660 if (!obj) {
1661 ret = -ENOENT;
1662 goto out;
1663 }
1664
1665 if (!obj->properties) {
1666 drm_mode_object_unreference(obj);
Rob Clarkd34f20d2014-12-18 16:01:56 -05001667 ret = -ENOENT;
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02001668 goto out;
Rob Clarkd34f20d2014-12-18 16:01:56 -05001669 }
1670
Rob Clarkd34f20d2014-12-18 16:01:56 -05001671 if (get_user(count_props, count_props_ptr + copied_objs)) {
Dave Airlieb164d312016-04-27 11:10:09 +10001672 drm_mode_object_unreference(obj);
Rob Clarkd34f20d2014-12-18 16:01:56 -05001673 ret = -EFAULT;
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02001674 goto out;
Rob Clarkd34f20d2014-12-18 16:01:56 -05001675 }
1676
1677 copied_objs++;
1678
1679 for (j = 0; j < count_props; j++) {
1680 uint32_t prop_id;
1681 uint64_t prop_value;
1682 struct drm_property *prop;
1683
1684 if (get_user(prop_id, props_ptr + copied_props)) {
Dave Airlieb164d312016-04-27 11:10:09 +10001685 drm_mode_object_unreference(obj);
Rob Clarkd34f20d2014-12-18 16:01:56 -05001686 ret = -EFAULT;
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02001687 goto out;
Rob Clarkd34f20d2014-12-18 16:01:56 -05001688 }
1689
Maarten Lankhorstf92f0532016-09-08 12:30:01 +02001690 prop = drm_mode_obj_find_prop_id(obj, prop_id);
Rob Clarkd34f20d2014-12-18 16:01:56 -05001691 if (!prop) {
Dave Airlieb164d312016-04-27 11:10:09 +10001692 drm_mode_object_unreference(obj);
Rob Clarkd34f20d2014-12-18 16:01:56 -05001693 ret = -ENOENT;
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02001694 goto out;
Rob Clarkd34f20d2014-12-18 16:01:56 -05001695 }
1696
Guenter Roeck42c58142015-01-12 21:12:17 -08001697 if (copy_from_user(&prop_value,
1698 prop_values_ptr + copied_props,
1699 sizeof(prop_value))) {
Dave Airlieb164d312016-04-27 11:10:09 +10001700 drm_mode_object_unreference(obj);
Rob Clarkd34f20d2014-12-18 16:01:56 -05001701 ret = -EFAULT;
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02001702 goto out;
Rob Clarkd34f20d2014-12-18 16:01:56 -05001703 }
1704
1705 ret = atomic_set_prop(state, obj, prop, prop_value);
Dave Airlieb164d312016-04-27 11:10:09 +10001706 if (ret) {
1707 drm_mode_object_unreference(obj);
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02001708 goto out;
Dave Airlieb164d312016-04-27 11:10:09 +10001709 }
Rob Clarkd34f20d2014-12-18 16:01:56 -05001710
1711 copied_props++;
1712 }
Maarten Lankhorsta9cc54e2015-06-24 08:59:24 +02001713
Maarten Lankhorstc4749c92015-08-31 12:25:04 +02001714 if (obj->type == DRM_MODE_OBJECT_PLANE && count_props &&
1715 !(arg->flags & DRM_MODE_ATOMIC_TEST_ONLY)) {
Maarten Lankhorsta9cc54e2015-06-24 08:59:24 +02001716 plane = obj_to_plane(obj);
1717 plane_mask |= (1 << drm_plane_index(plane));
1718 plane->old_fb = plane->fb;
1719 }
Dave Airlieb164d312016-04-27 11:10:09 +10001720 drm_mode_object_unreference(obj);
Rob Clarkd34f20d2014-12-18 16:01:56 -05001721 }
1722
1723 if (arg->flags & DRM_MODE_PAGE_FLIP_EVENT) {
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001724 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Rob Clarkd34f20d2014-12-18 16:01:56 -05001725 struct drm_pending_vblank_event *e;
1726
Gustavo Padovan1b47aaf2016-06-02 00:06:35 +02001727 e = create_vblank_event(dev, file_priv, NULL,
1728 arg->user_data);
Rob Clarkd34f20d2014-12-18 16:01:56 -05001729 if (!e) {
1730 ret = -ENOMEM;
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02001731 goto out;
Rob Clarkd34f20d2014-12-18 16:01:56 -05001732 }
1733
1734 crtc_state->event = e;
1735 }
1736 }
1737
1738 if (arg->flags & DRM_MODE_ATOMIC_TEST_ONLY) {
Maarten Lankhorstc4749c92015-08-31 12:25:04 +02001739 /*
1740 * Unlike commit, check_only does not clean up state.
Chris Wilson08536952016-10-14 13:18:18 +01001741 * Below we call drm_atomic_state_put for it.
Maarten Lankhorstc4749c92015-08-31 12:25:04 +02001742 */
Rob Clarkd34f20d2014-12-18 16:01:56 -05001743 ret = drm_atomic_check_only(state);
Rob Clarkd34f20d2014-12-18 16:01:56 -05001744 } else if (arg->flags & DRM_MODE_ATOMIC_NONBLOCK) {
Maarten Lankhorstb837ba02016-04-26 16:11:35 +02001745 ret = drm_atomic_nonblocking_commit(state);
Rob Clarkd34f20d2014-12-18 16:01:56 -05001746 } else {
1747 ret = drm_atomic_commit(state);
1748 }
1749
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02001750out:
Maarten Lankhorst0f45c262015-11-11 11:29:09 +01001751 drm_atomic_clean_old_fb(dev, plane_mask, ret);
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02001752
Maarten Lankhorstc4749c92015-08-31 12:25:04 +02001753 if (ret && arg->flags & DRM_MODE_PAGE_FLIP_EVENT) {
1754 /*
1755 * TEST_ONLY and PAGE_FLIP_EVENT are mutually exclusive,
1756 * if they weren't, this code should be called on success
1757 * for TEST_ONLY too.
1758 */
1759
1760 for_each_crtc_in_state(state, crtc, crtc_state, i) {
1761 if (!crtc_state->event)
1762 continue;
1763
Daniel Vetter2dd500f2016-01-11 22:40:56 +01001764 drm_event_cancel_free(dev, &crtc_state->event->base);
Maarten Lankhorstc4749c92015-08-31 12:25:04 +02001765 }
1766 }
1767
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02001768 if (ret == -EDEADLK) {
1769 drm_atomic_state_clear(state);
1770 drm_modeset_backoff(&ctx);
1771 goto retry;
1772 }
1773
Chris Wilson08536952016-10-14 13:18:18 +01001774 drm_atomic_state_put(state);
Rob Clarkd34f20d2014-12-18 16:01:56 -05001775
1776 drm_modeset_drop_locks(&ctx);
1777 drm_modeset_acquire_fini(&ctx);
1778
1779 return ret;
Rob Clarkd34f20d2014-12-18 16:01:56 -05001780}