blob: 39e470eb8aeaf9e36469c6a8afe5c36c2a68890b [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>
Rob Clarkfceffb322016-11-05 11:08:09 -040033#include <drm/drm_print.h>
Gustavo Padovan96260142016-11-15 22:06:39 +090034#include <linux/sync_file.h>
Daniel Vettercc4ceb42014-07-25 21:30:38 +020035
Thierry Redingbe35f942016-04-28 15:19:56 +020036#include "drm_crtc_internal.h"
37
Daniel Vetterb3ba3f62016-12-21 14:03:35 +010038void __drm_crtc_commit_free(struct kref *kref)
Daniel Vetter3b24f7d2016-06-08 14:19:00 +020039{
40 struct drm_crtc_commit *commit =
41 container_of(kref, struct drm_crtc_commit, ref);
42
43 kfree(commit);
44}
Daniel Vetterb3ba3f62016-12-21 14:03:35 +010045EXPORT_SYMBOL(__drm_crtc_commit_free);
Daniel Vetter3b24f7d2016-06-08 14:19:00 +020046
Maarten Lankhorst036ef572015-05-18 10:06:40 +020047/**
48 * drm_atomic_state_default_release -
49 * release memory initialized by drm_atomic_state_init
50 * @state: atomic state
51 *
52 * Free all the memory allocated by drm_atomic_state_init.
53 * This is useful for drivers that subclass the atomic state.
54 */
55void drm_atomic_state_default_release(struct drm_atomic_state *state)
Daniel Vettercc4ceb42014-07-25 21:30:38 +020056{
57 kfree(state->connectors);
Daniel Vettercc4ceb42014-07-25 21:30:38 +020058 kfree(state->crtcs);
Daniel Vettercc4ceb42014-07-25 21:30:38 +020059 kfree(state->planes);
Daniel Vettercc4ceb42014-07-25 21:30:38 +020060}
Maarten Lankhorst036ef572015-05-18 10:06:40 +020061EXPORT_SYMBOL(drm_atomic_state_default_release);
Daniel Vettercc4ceb42014-07-25 21:30:38 +020062
63/**
Maarten Lankhorst036ef572015-05-18 10:06:40 +020064 * drm_atomic_state_init - init new atomic state
Daniel Vettercc4ceb42014-07-25 21:30:38 +020065 * @dev: DRM device
Maarten Lankhorst036ef572015-05-18 10:06:40 +020066 * @state: atomic state
Daniel Vettercc4ceb42014-07-25 21:30:38 +020067 *
Maarten Lankhorst036ef572015-05-18 10:06:40 +020068 * Default implementation for filling in a new atomic state.
69 * This is useful for drivers that subclass the atomic state.
Daniel Vettercc4ceb42014-07-25 21:30:38 +020070 */
Maarten Lankhorst036ef572015-05-18 10:06:40 +020071int
72drm_atomic_state_init(struct drm_device *dev, struct drm_atomic_state *state)
Daniel Vettercc4ceb42014-07-25 21:30:38 +020073{
Chris Wilson08536952016-10-14 13:18:18 +010074 kref_init(&state->ref);
75
Rob Clarkd34f20d2014-12-18 16:01:56 -050076 /* TODO legacy paths should maybe do a better job about
77 * setting this appropriately?
78 */
79 state->allow_modeset = true;
80
Daniel Vettercc4ceb42014-07-25 21:30:38 +020081 state->crtcs = kcalloc(dev->mode_config.num_crtc,
82 sizeof(*state->crtcs), GFP_KERNEL);
83 if (!state->crtcs)
84 goto fail;
Daniel Vettercc4ceb42014-07-25 21:30:38 +020085 state->planes = kcalloc(dev->mode_config.num_total_plane,
86 sizeof(*state->planes), GFP_KERNEL);
87 if (!state->planes)
88 goto fail;
Daniel Vettercc4ceb42014-07-25 21:30:38 +020089
90 state->dev = dev;
91
Maarten Lankhorst036ef572015-05-18 10:06:40 +020092 DRM_DEBUG_ATOMIC("Allocated atomic state %p\n", state);
Daniel Vettercc4ceb42014-07-25 21:30:38 +020093
Maarten Lankhorst036ef572015-05-18 10:06:40 +020094 return 0;
Daniel Vettercc4ceb42014-07-25 21:30:38 +020095fail:
Maarten Lankhorst036ef572015-05-18 10:06:40 +020096 drm_atomic_state_default_release(state);
97 return -ENOMEM;
98}
99EXPORT_SYMBOL(drm_atomic_state_init);
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200100
Maarten Lankhorst036ef572015-05-18 10:06:40 +0200101/**
102 * drm_atomic_state_alloc - allocate atomic state
103 * @dev: DRM device
104 *
105 * This allocates an empty atomic state to track updates.
106 */
107struct drm_atomic_state *
108drm_atomic_state_alloc(struct drm_device *dev)
109{
110 struct drm_mode_config *config = &dev->mode_config;
111 struct drm_atomic_state *state;
112
113 if (!config->funcs->atomic_state_alloc) {
114 state = kzalloc(sizeof(*state), GFP_KERNEL);
115 if (!state)
116 return NULL;
117 if (drm_atomic_state_init(dev, state) < 0) {
118 kfree(state);
119 return NULL;
120 }
121 return state;
122 }
123
124 return config->funcs->atomic_state_alloc(dev);
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200125}
126EXPORT_SYMBOL(drm_atomic_state_alloc);
127
128/**
Maarten Lankhorst036ef572015-05-18 10:06:40 +0200129 * drm_atomic_state_default_clear - clear base atomic state
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200130 * @state: atomic state
131 *
Maarten Lankhorst036ef572015-05-18 10:06:40 +0200132 * Default implementation for clearing atomic state.
133 * This is useful for drivers that subclass the atomic state.
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200134 */
Maarten Lankhorst036ef572015-05-18 10:06:40 +0200135void drm_atomic_state_default_clear(struct drm_atomic_state *state)
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200136{
137 struct drm_device *dev = state->dev;
Daniel Vetter6f75cea2014-11-19 18:38:07 +0100138 struct drm_mode_config *config = &dev->mode_config;
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200139 int i;
140
Daniel Vetter17a38d92015-02-22 12:24:16 +0100141 DRM_DEBUG_ATOMIC("Clearing atomic state %p\n", state);
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200142
Daniel Vetterf52b69f12014-11-19 18:38:08 +0100143 for (i = 0; i < state->num_connector; i++) {
Daniel Vetter63e83c12016-06-02 00:06:32 +0200144 struct drm_connector *connector = state->connectors[i].ptr;
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200145
146 if (!connector)
147 continue;
148
Dave Airlied2307de2016-04-27 11:27:39 +1000149 connector->funcs->atomic_destroy_state(connector,
Daniel Vetter63e83c12016-06-02 00:06:32 +0200150 state->connectors[i].state);
151 state->connectors[i].ptr = NULL;
152 state->connectors[i].state = NULL;
Dave Airlieb164d312016-04-27 11:10:09 +1000153 drm_connector_unreference(connector);
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200154 }
155
Daniel Vetter6f75cea2014-11-19 18:38:07 +0100156 for (i = 0; i < config->num_crtc; i++) {
Daniel Vetter5d943aa62016-06-02 00:06:34 +0200157 struct drm_crtc *crtc = state->crtcs[i].ptr;
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200158
159 if (!crtc)
160 continue;
161
162 crtc->funcs->atomic_destroy_state(crtc,
Daniel Vetter5d943aa62016-06-02 00:06:34 +0200163 state->crtcs[i].state);
Daniel Vetter3b24f7d2016-06-08 14:19:00 +0200164
165 if (state->crtcs[i].commit) {
166 kfree(state->crtcs[i].commit->event);
167 state->crtcs[i].commit->event = NULL;
168 drm_crtc_commit_put(state->crtcs[i].commit);
169 }
170
171 state->crtcs[i].commit = NULL;
Daniel Vetter5d943aa62016-06-02 00:06:34 +0200172 state->crtcs[i].ptr = NULL;
173 state->crtcs[i].state = NULL;
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200174 }
175
Daniel Vetter6f75cea2014-11-19 18:38:07 +0100176 for (i = 0; i < config->num_total_plane; i++) {
Daniel Vetterb8b53422016-06-02 00:06:33 +0200177 struct drm_plane *plane = state->planes[i].ptr;
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200178
179 if (!plane)
180 continue;
181
182 plane->funcs->atomic_destroy_state(plane,
Daniel Vetterb8b53422016-06-02 00:06:33 +0200183 state->planes[i].state);
184 state->planes[i].ptr = NULL;
185 state->planes[i].state = NULL;
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200186 }
187}
Maarten Lankhorst036ef572015-05-18 10:06:40 +0200188EXPORT_SYMBOL(drm_atomic_state_default_clear);
189
190/**
191 * drm_atomic_state_clear - clear state object
192 * @state: atomic state
193 *
194 * When the w/w mutex algorithm detects a deadlock we need to back off and drop
195 * all locks. So someone else could sneak in and change the current modeset
196 * configuration. Which means that all the state assembled in @state is no
197 * longer an atomic update to the current state, but to some arbitrary earlier
Daniel Vetterd5745282017-01-25 07:26:45 +0100198 * state. Which could break assumptions the driver's
199 * &drm_mode_config_funcs.atomic_check likely relies on.
Maarten Lankhorst036ef572015-05-18 10:06:40 +0200200 *
201 * Hence we must clear all cached state and completely start over, using this
202 * function.
203 */
204void drm_atomic_state_clear(struct drm_atomic_state *state)
205{
206 struct drm_device *dev = state->dev;
207 struct drm_mode_config *config = &dev->mode_config;
208
209 if (config->funcs->atomic_state_clear)
210 config->funcs->atomic_state_clear(state);
211 else
212 drm_atomic_state_default_clear(state);
213}
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200214EXPORT_SYMBOL(drm_atomic_state_clear);
215
216/**
Chris Wilson08536952016-10-14 13:18:18 +0100217 * __drm_atomic_state_free - free all memory for an atomic state
218 * @ref: This atomic state to deallocate
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200219 *
220 * This frees all memory associated with an atomic state, including all the
221 * per-object state for planes, crtcs and connectors.
222 */
Chris Wilson08536952016-10-14 13:18:18 +0100223void __drm_atomic_state_free(struct kref *ref)
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200224{
Chris Wilson08536952016-10-14 13:18:18 +0100225 struct drm_atomic_state *state = container_of(ref, typeof(*state), ref);
226 struct drm_mode_config *config = &state->dev->mode_config;
Maarten Lankhorst036ef572015-05-18 10:06:40 +0200227
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200228 drm_atomic_state_clear(state);
229
Daniel Vetter17a38d92015-02-22 12:24:16 +0100230 DRM_DEBUG_ATOMIC("Freeing atomic state %p\n", state);
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200231
Maarten Lankhorst036ef572015-05-18 10:06:40 +0200232 if (config->funcs->atomic_state_free) {
233 config->funcs->atomic_state_free(state);
234 } else {
235 drm_atomic_state_default_release(state);
236 kfree(state);
237 }
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200238}
Chris Wilson08536952016-10-14 13:18:18 +0100239EXPORT_SYMBOL(__drm_atomic_state_free);
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200240
241/**
242 * drm_atomic_get_crtc_state - get crtc state
243 * @state: global atomic state object
244 * @crtc: crtc to get state object for
245 *
246 * This function returns the crtc state for the given crtc, allocating it if
247 * needed. It will also grab the relevant crtc lock to make sure that the state
248 * is consistent.
249 *
250 * Returns:
251 *
252 * Either the allocated state or the error code encoded into the pointer. When
253 * the error is EDEADLK then the w/w mutex code has detected a deadlock and the
254 * entire atomic sequence must be restarted. All other errors are fatal.
255 */
256struct drm_crtc_state *
257drm_atomic_get_crtc_state(struct drm_atomic_state *state,
258 struct drm_crtc *crtc)
259{
Maarten Lankhorst1b26a5e2015-05-13 10:37:25 +0200260 int ret, index = drm_crtc_index(crtc);
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200261 struct drm_crtc_state *crtc_state;
262
Maarten Lankhorst7f4eaa892016-05-03 11:12:31 +0200263 WARN_ON(!state->acquire_ctx);
264
Maarten Lankhorst1b26a5e2015-05-13 10:37:25 +0200265 crtc_state = drm_atomic_get_existing_crtc_state(state, crtc);
266 if (crtc_state)
267 return crtc_state;
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200268
269 ret = drm_modeset_lock(&crtc->mutex, state->acquire_ctx);
270 if (ret)
271 return ERR_PTR(ret);
272
273 crtc_state = crtc->funcs->atomic_duplicate_state(crtc);
274 if (!crtc_state)
275 return ERR_PTR(-ENOMEM);
276
Daniel Vetter5d943aa62016-06-02 00:06:34 +0200277 state->crtcs[index].state = crtc_state;
Maarten Lankhorst581e49f2017-01-16 10:37:38 +0100278 state->crtcs[index].old_state = crtc->state;
279 state->crtcs[index].new_state = crtc_state;
Daniel Vetter5d943aa62016-06-02 00:06:34 +0200280 state->crtcs[index].ptr = crtc;
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200281 crtc_state->state = state;
282
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200283 DRM_DEBUG_ATOMIC("Added [CRTC:%d:%s] %p state to %p\n",
284 crtc->base.id, crtc->name, crtc_state, state);
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200285
286 return crtc_state;
287}
288EXPORT_SYMBOL(drm_atomic_get_crtc_state);
289
Gustavo Padovanbeaf5af2016-11-16 22:00:21 +0900290static void set_out_fence_for_crtc(struct drm_atomic_state *state,
Gustavo Padovan7e9081c2017-01-13 12:22:09 -0200291 struct drm_crtc *crtc, s32 __user *fence_ptr)
Gustavo Padovanbeaf5af2016-11-16 22:00:21 +0900292{
293 state->crtcs[drm_crtc_index(crtc)].out_fence_ptr = fence_ptr;
294}
295
Gustavo Padovan7e9081c2017-01-13 12:22:09 -0200296static s32 __user *get_out_fence_for_crtc(struct drm_atomic_state *state,
Gustavo Padovanbeaf5af2016-11-16 22:00:21 +0900297 struct drm_crtc *crtc)
298{
Gustavo Padovan7e9081c2017-01-13 12:22:09 -0200299 s32 __user *fence_ptr;
Gustavo Padovanbeaf5af2016-11-16 22:00:21 +0900300
301 fence_ptr = state->crtcs[drm_crtc_index(crtc)].out_fence_ptr;
302 state->crtcs[drm_crtc_index(crtc)].out_fence_ptr = NULL;
303
304 return fence_ptr;
305}
306
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200307/**
Daniel Stone819364d2015-05-26 14:36:48 +0100308 * drm_atomic_set_mode_for_crtc - set mode for CRTC
309 * @state: the CRTC whose incoming state to update
310 * @mode: kernel-internal mode to use for the CRTC, or NULL to disable
311 *
Dhinakaran Pandiyancbef9092017-01-30 22:18:38 -0800312 * Set a mode (originating from the kernel) on the desired CRTC state and update
313 * the enable property.
Daniel Stone819364d2015-05-26 14:36:48 +0100314 *
315 * RETURNS:
316 * Zero on success, error code on failure. Cannot return -EDEADLK.
317 */
318int drm_atomic_set_mode_for_crtc(struct drm_crtc_state *state,
319 struct drm_display_mode *mode)
320{
Daniel Stone99cf4a22015-05-25 19:11:51 +0100321 struct drm_mode_modeinfo umode;
322
Daniel Stone819364d2015-05-26 14:36:48 +0100323 /* Early return for no change. */
324 if (mode && memcmp(&state->mode, mode, sizeof(*mode)) == 0)
325 return 0;
326
Markus Elfring5f911902015-11-06 12:03:46 +0100327 drm_property_unreference_blob(state->mode_blob);
Daniel Stone99cf4a22015-05-25 19:11:51 +0100328 state->mode_blob = NULL;
329
Daniel Stone819364d2015-05-26 14:36:48 +0100330 if (mode) {
Daniel Stone99cf4a22015-05-25 19:11:51 +0100331 drm_mode_convert_to_umode(&umode, mode);
332 state->mode_blob =
333 drm_property_create_blob(state->crtc->dev,
334 sizeof(umode),
335 &umode);
336 if (IS_ERR(state->mode_blob))
337 return PTR_ERR(state->mode_blob);
338
Daniel Stone819364d2015-05-26 14:36:48 +0100339 drm_mode_copy(&state->mode, mode);
340 state->enable = true;
341 DRM_DEBUG_ATOMIC("Set [MODE:%s] for CRTC state %p\n",
342 mode->name, state);
343 } else {
344 memset(&state->mode, 0, sizeof(state->mode));
345 state->enable = false;
346 DRM_DEBUG_ATOMIC("Set [NOMODE] for CRTC state %p\n",
347 state);
348 }
349
350 return 0;
351}
352EXPORT_SYMBOL(drm_atomic_set_mode_for_crtc);
353
Daniel Stone819364d2015-05-26 14:36:48 +0100354/**
Daniel Stone955f3c32015-05-25 19:11:52 +0100355 * drm_atomic_set_mode_prop_for_crtc - set mode for CRTC
356 * @state: the CRTC whose incoming state to update
357 * @blob: pointer to blob property to use for mode
358 *
359 * Set a mode (originating from a blob property) on the desired CRTC state.
360 * This function will take a reference on the blob property for the CRTC state,
361 * and release the reference held on the state's existing mode property, if any
362 * was set.
363 *
364 * RETURNS:
365 * Zero on success, error code on failure. Cannot return -EDEADLK.
366 */
367int drm_atomic_set_mode_prop_for_crtc(struct drm_crtc_state *state,
368 struct drm_property_blob *blob)
369{
370 if (blob == state->mode_blob)
371 return 0;
372
Markus Elfring5f911902015-11-06 12:03:46 +0100373 drm_property_unreference_blob(state->mode_blob);
Daniel Stone955f3c32015-05-25 19:11:52 +0100374 state->mode_blob = NULL;
375
Tomi Valkeinen67098872016-05-31 15:03:17 +0300376 memset(&state->mode, 0, sizeof(state->mode));
377
Daniel Stone955f3c32015-05-25 19:11:52 +0100378 if (blob) {
379 if (blob->length != sizeof(struct drm_mode_modeinfo) ||
380 drm_mode_convert_umode(&state->mode,
381 (const struct drm_mode_modeinfo *)
382 blob->data))
383 return -EINVAL;
384
385 state->mode_blob = drm_property_reference_blob(blob);
386 state->enable = true;
387 DRM_DEBUG_ATOMIC("Set [MODE:%s] for CRTC state %p\n",
388 state->mode.name, state);
389 } else {
Daniel Stone955f3c32015-05-25 19:11:52 +0100390 state->enable = false;
391 DRM_DEBUG_ATOMIC("Set [NOMODE] for CRTC state %p\n",
392 state);
393 }
394
395 return 0;
396}
397EXPORT_SYMBOL(drm_atomic_set_mode_prop_for_crtc);
398
399/**
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000400 * drm_atomic_replace_property_blob - replace a blob property
401 * @blob: a pointer to the member blob to be replaced
402 * @new_blob: the new blob to replace with
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000403 * @replaced: whether the blob has been replaced
404 *
405 * RETURNS:
406 * Zero on success, error code on failure
407 */
408static void
409drm_atomic_replace_property_blob(struct drm_property_blob **blob,
410 struct drm_property_blob *new_blob,
411 bool *replaced)
412{
413 struct drm_property_blob *old_blob = *blob;
414
415 if (old_blob == new_blob)
416 return;
417
Markus Elfringf35cbe62016-07-20 17:54:32 +0200418 drm_property_unreference_blob(old_blob);
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000419 if (new_blob)
420 drm_property_reference_blob(new_blob);
421 *blob = new_blob;
422 *replaced = true;
423
424 return;
425}
426
427static int
428drm_atomic_replace_property_blob_from_id(struct drm_crtc *crtc,
429 struct drm_property_blob **blob,
430 uint64_t blob_id,
431 ssize_t expected_size,
432 bool *replaced)
433{
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000434 struct drm_property_blob *new_blob = NULL;
435
436 if (blob_id != 0) {
Felix Monningercac5fced2016-10-25 22:28:08 +0100437 new_blob = drm_property_lookup_blob(crtc->dev, blob_id);
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000438 if (new_blob == NULL)
439 return -EINVAL;
Felix Monningercac5fced2016-10-25 22:28:08 +0100440
441 if (expected_size > 0 && expected_size != new_blob->length) {
442 drm_property_unreference_blob(new_blob);
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000443 return -EINVAL;
Felix Monningercac5fced2016-10-25 22:28:08 +0100444 }
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000445 }
446
447 drm_atomic_replace_property_blob(blob, new_blob, replaced);
Felix Monningercac5fced2016-10-25 22:28:08 +0100448 drm_property_unreference_blob(new_blob);
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000449
450 return 0;
451}
452
453/**
Rob Clark40ecc692014-12-18 16:01:46 -0500454 * drm_atomic_crtc_set_property - set property on CRTC
455 * @crtc: the drm CRTC to set a property on
456 * @state: the state object to update with the new property value
457 * @property: the property to set
458 * @val: the new property value
459 *
Daniel Vetterd5745282017-01-25 07:26:45 +0100460 * This function handles generic/core properties and calls out to driver's
461 * &drm_crtc_funcs.atomic_set_property for driver properties. To ensure
462 * consistent behavior you must call this function rather than the driver hook
463 * directly.
Rob Clark40ecc692014-12-18 16:01:46 -0500464 *
465 * RETURNS:
466 * Zero on success, error code on failure
467 */
468int drm_atomic_crtc_set_property(struct drm_crtc *crtc,
469 struct drm_crtc_state *state, struct drm_property *property,
470 uint64_t val)
471{
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100472 struct drm_device *dev = crtc->dev;
473 struct drm_mode_config *config = &dev->mode_config;
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000474 bool replaced = false;
Daniel Stone955f3c32015-05-25 19:11:52 +0100475 int ret;
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100476
Daniel Stone27798362015-03-19 04:33:26 +0000477 if (property == config->prop_active)
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100478 state->active = val;
Daniel Stone955f3c32015-05-25 19:11:52 +0100479 else if (property == config->prop_mode_id) {
480 struct drm_property_blob *mode =
481 drm_property_lookup_blob(dev, val);
482 ret = drm_atomic_set_mode_prop_for_crtc(state, mode);
Markus Elfring5f911902015-11-06 12:03:46 +0100483 drm_property_unreference_blob(mode);
Daniel Stone955f3c32015-05-25 19:11:52 +0100484 return ret;
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000485 } else if (property == config->degamma_lut_property) {
486 ret = drm_atomic_replace_property_blob_from_id(crtc,
487 &state->degamma_lut,
488 val,
489 -1,
490 &replaced);
Mario Kleineradd1fa72016-08-27 01:02:28 +0200491 state->color_mgmt_changed |= replaced;
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000492 return ret;
493 } else if (property == config->ctm_property) {
494 ret = drm_atomic_replace_property_blob_from_id(crtc,
495 &state->ctm,
496 val,
497 sizeof(struct drm_color_ctm),
498 &replaced);
Mario Kleineradd1fa72016-08-27 01:02:28 +0200499 state->color_mgmt_changed |= replaced;
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000500 return ret;
501 } else if (property == config->gamma_lut_property) {
502 ret = drm_atomic_replace_property_blob_from_id(crtc,
503 &state->gamma_lut,
504 val,
505 -1,
506 &replaced);
Mario Kleineradd1fa72016-08-27 01:02:28 +0200507 state->color_mgmt_changed |= replaced;
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000508 return ret;
Gustavo Padovanbeaf5af2016-11-16 22:00:21 +0900509 } else if (property == config->prop_out_fence_ptr) {
Gustavo Padovan7e9081c2017-01-13 12:22:09 -0200510 s32 __user *fence_ptr = u64_to_user_ptr(val);
Gustavo Padovanbeaf5af2016-11-16 22:00:21 +0900511
512 if (!fence_ptr)
513 return 0;
514
515 if (put_user(-1, fence_ptr))
516 return -EFAULT;
517
518 set_out_fence_for_crtc(state->state, crtc, fence_ptr);
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000519 } else if (crtc->funcs->atomic_set_property)
Rob Clark40ecc692014-12-18 16:01:46 -0500520 return crtc->funcs->atomic_set_property(crtc, state, property, val);
Daniel Stone27798362015-03-19 04:33:26 +0000521 else
522 return -EINVAL;
523
524 return 0;
Rob Clark40ecc692014-12-18 16:01:46 -0500525}
526EXPORT_SYMBOL(drm_atomic_crtc_set_property);
527
Daniel Vetterc0714fc2015-12-04 09:45:57 +0100528/**
529 * drm_atomic_crtc_get_property - get property value from CRTC state
530 * @crtc: the drm CRTC to set a property on
531 * @state: the state object to get the property value from
532 * @property: the property to set
533 * @val: return location for the property value
534 *
Daniel Vetterd5745282017-01-25 07:26:45 +0100535 * This function handles generic/core properties and calls out to driver's
536 * &drm_crtc_funcs.atomic_get_property for driver properties. To ensure
537 * consistent behavior you must call this function rather than the driver hook
538 * directly.
Daniel Vetterc0714fc2015-12-04 09:45:57 +0100539 *
540 * RETURNS:
541 * Zero on success, error code on failure
Rob Clarkac9c9252014-12-18 16:01:47 -0500542 */
Geliang Tangbf22f3b2015-09-24 03:01:03 -0700543static int
544drm_atomic_crtc_get_property(struct drm_crtc *crtc,
Rob Clarkac9c9252014-12-18 16:01:47 -0500545 const struct drm_crtc_state *state,
546 struct drm_property *property, uint64_t *val)
547{
Daniel Stone8f164ce2015-03-19 04:33:25 +0000548 struct drm_device *dev = crtc->dev;
549 struct drm_mode_config *config = &dev->mode_config;
550
551 if (property == config->prop_active)
552 *val = state->active;
Daniel Stone955f3c32015-05-25 19:11:52 +0100553 else if (property == config->prop_mode_id)
554 *val = (state->mode_blob) ? state->mode_blob->base.id : 0;
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000555 else if (property == config->degamma_lut_property)
556 *val = (state->degamma_lut) ? state->degamma_lut->base.id : 0;
557 else if (property == config->ctm_property)
558 *val = (state->ctm) ? state->ctm->base.id : 0;
559 else if (property == config->gamma_lut_property)
560 *val = (state->gamma_lut) ? state->gamma_lut->base.id : 0;
Gustavo Padovanbeaf5af2016-11-16 22:00:21 +0900561 else if (property == config->prop_out_fence_ptr)
562 *val = 0;
Daniel Stone8f164ce2015-03-19 04:33:25 +0000563 else if (crtc->funcs->atomic_get_property)
Rob Clarkac9c9252014-12-18 16:01:47 -0500564 return crtc->funcs->atomic_get_property(crtc, state, property, val);
Daniel Stone8f164ce2015-03-19 04:33:25 +0000565 else
566 return -EINVAL;
567
568 return 0;
Rob Clarkac9c9252014-12-18 16:01:47 -0500569}
Rob Clarkac9c9252014-12-18 16:01:47 -0500570
571/**
Rob Clark5e743732014-12-18 16:01:51 -0500572 * drm_atomic_crtc_check - check crtc state
573 * @crtc: crtc to check
574 * @state: crtc state to check
575 *
576 * Provides core sanity checks for crtc state.
577 *
578 * RETURNS:
579 * Zero on success, error code on failure
580 */
581static int drm_atomic_crtc_check(struct drm_crtc *crtc,
582 struct drm_crtc_state *state)
583{
584 /* NOTE: we explicitly don't enforce constraints such as primary
585 * layer covering entire screen, since that is something we want
586 * to allow (on hw that supports it). For hw that does not, it
587 * should be checked in driver's crtc->atomic_check() vfunc.
588 *
589 * TODO: Add generic modeset state checks once we support those.
590 */
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100591
592 if (state->active && !state->enable) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200593 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] active without enabled\n",
594 crtc->base.id, crtc->name);
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100595 return -EINVAL;
596 }
597
Daniel Stone99cf4a22015-05-25 19:11:51 +0100598 /* The state->enable vs. state->mode_blob checks can be WARN_ON,
599 * as this is a kernel-internal detail that userspace should never
600 * be able to trigger. */
601 if (drm_core_check_feature(crtc->dev, DRIVER_ATOMIC) &&
602 WARN_ON(state->enable && !state->mode_blob)) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200603 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] enabled without mode blob\n",
604 crtc->base.id, crtc->name);
Daniel Stone99cf4a22015-05-25 19:11:51 +0100605 return -EINVAL;
606 }
607
608 if (drm_core_check_feature(crtc->dev, DRIVER_ATOMIC) &&
609 WARN_ON(!state->enable && state->mode_blob)) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200610 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] disabled with mode blob\n",
611 crtc->base.id, crtc->name);
Daniel Stone99cf4a22015-05-25 19:11:51 +0100612 return -EINVAL;
613 }
614
Daniel Vetter4cba6852015-12-08 09:49:20 +0100615 /*
616 * Reject event generation for when a CRTC is off and stays off.
617 * It wouldn't be hard to implement this, but userspace has a track
618 * record of happily burning through 100% cpu (or worse, crash) when the
619 * display pipe is suspended. To avoid all that fun just reject updates
620 * that ask for events since likely that indicates a bug in the
621 * compositor's drawing loop. This is consistent with the vblank IOCTL
622 * and legacy page_flip IOCTL which also reject service on a disabled
623 * pipe.
624 */
625 if (state->event && !state->active && !crtc->state->active) {
Russell King6ac7c542017-02-13 12:27:03 +0000626 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] requesting event but off\n",
627 crtc->base.id, crtc->name);
Daniel Vetter4cba6852015-12-08 09:49:20 +0100628 return -EINVAL;
629 }
630
Rob Clark5e743732014-12-18 16:01:51 -0500631 return 0;
632}
633
Rob Clarkfceffb322016-11-05 11:08:09 -0400634static void drm_atomic_crtc_print_state(struct drm_printer *p,
635 const struct drm_crtc_state *state)
636{
637 struct drm_crtc *crtc = state->crtc;
638
639 drm_printf(p, "crtc[%u]: %s\n", crtc->base.id, crtc->name);
640 drm_printf(p, "\tenable=%d\n", state->enable);
641 drm_printf(p, "\tactive=%d\n", state->active);
642 drm_printf(p, "\tplanes_changed=%d\n", state->planes_changed);
643 drm_printf(p, "\tmode_changed=%d\n", state->mode_changed);
644 drm_printf(p, "\tactive_changed=%d\n", state->active_changed);
645 drm_printf(p, "\tconnectors_changed=%d\n", state->connectors_changed);
646 drm_printf(p, "\tcolor_mgmt_changed=%d\n", state->color_mgmt_changed);
647 drm_printf(p, "\tplane_mask=%x\n", state->plane_mask);
648 drm_printf(p, "\tconnector_mask=%x\n", state->connector_mask);
649 drm_printf(p, "\tencoder_mask=%x\n", state->encoder_mask);
650 drm_printf(p, "\tmode: " DRM_MODE_FMT "\n", DRM_MODE_ARG(&state->mode));
651
652 if (crtc->funcs->atomic_print_state)
653 crtc->funcs->atomic_print_state(p, state);
654}
655
Rob Clark5e743732014-12-18 16:01:51 -0500656/**
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200657 * drm_atomic_get_plane_state - get plane state
658 * @state: global atomic state object
659 * @plane: plane to get state object for
660 *
661 * This function returns the plane state for the given plane, allocating it if
662 * needed. It will also grab the relevant plane lock to make sure that the state
663 * is consistent.
664 *
665 * Returns:
666 *
667 * Either the allocated state or the error code encoded into the pointer. When
668 * the error is EDEADLK then the w/w mutex code has detected a deadlock and the
669 * entire atomic sequence must be restarted. All other errors are fatal.
670 */
671struct drm_plane_state *
672drm_atomic_get_plane_state(struct drm_atomic_state *state,
673 struct drm_plane *plane)
674{
Maarten Lankhorst1b26a5e2015-05-13 10:37:25 +0200675 int ret, index = drm_plane_index(plane);
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200676 struct drm_plane_state *plane_state;
677
Maarten Lankhorst7f4eaa892016-05-03 11:12:31 +0200678 WARN_ON(!state->acquire_ctx);
679
Maarten Lankhorst1b26a5e2015-05-13 10:37:25 +0200680 plane_state = drm_atomic_get_existing_plane_state(state, plane);
681 if (plane_state)
682 return plane_state;
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200683
Daniel Vetter4d02e2d2014-11-11 10:12:00 +0100684 ret = drm_modeset_lock(&plane->mutex, state->acquire_ctx);
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200685 if (ret)
686 return ERR_PTR(ret);
687
688 plane_state = plane->funcs->atomic_duplicate_state(plane);
689 if (!plane_state)
690 return ERR_PTR(-ENOMEM);
691
Daniel Vetterb8b53422016-06-02 00:06:33 +0200692 state->planes[index].state = plane_state;
693 state->planes[index].ptr = plane;
Maarten Lankhorst581e49f2017-01-16 10:37:38 +0100694 state->planes[index].old_state = plane->state;
695 state->planes[index].new_state = plane_state;
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200696 plane_state->state = state;
697
Ville Syrjälä9f4c97a2015-12-08 18:41:54 +0200698 DRM_DEBUG_ATOMIC("Added [PLANE:%d:%s] %p state to %p\n",
699 plane->base.id, plane->name, plane_state, state);
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200700
701 if (plane_state->crtc) {
702 struct drm_crtc_state *crtc_state;
703
704 crtc_state = drm_atomic_get_crtc_state(state,
705 plane_state->crtc);
706 if (IS_ERR(crtc_state))
707 return ERR_CAST(crtc_state);
708 }
709
710 return plane_state;
711}
712EXPORT_SYMBOL(drm_atomic_get_plane_state);
713
714/**
Rob Clark40ecc692014-12-18 16:01:46 -0500715 * drm_atomic_plane_set_property - set property on plane
716 * @plane: the drm plane to set a property on
717 * @state: the state object to update with the new property value
718 * @property: the property to set
719 * @val: the new property value
720 *
Daniel Vetterd5745282017-01-25 07:26:45 +0100721 * This function handles generic/core properties and calls out to driver's
722 * &drm_plane_funcs.atomic_set_property for driver properties. To ensure
723 * consistent behavior you must call this function rather than the driver hook
724 * directly.
Rob Clark40ecc692014-12-18 16:01:46 -0500725 *
726 * RETURNS:
727 * Zero on success, error code on failure
728 */
729int drm_atomic_plane_set_property(struct drm_plane *plane,
730 struct drm_plane_state *state, struct drm_property *property,
731 uint64_t val)
732{
Rob Clark6b4959f2014-12-18 16:01:53 -0500733 struct drm_device *dev = plane->dev;
734 struct drm_mode_config *config = &dev->mode_config;
735
736 if (property == config->prop_fb_id) {
737 struct drm_framebuffer *fb = drm_framebuffer_lookup(dev, val);
738 drm_atomic_set_fb_for_plane(state, fb);
739 if (fb)
740 drm_framebuffer_unreference(fb);
Gustavo Padovan96260142016-11-15 22:06:39 +0900741 } else if (property == config->prop_in_fence_fd) {
742 if (state->fence)
743 return -EINVAL;
744
745 if (U642I64(val) == -1)
746 return 0;
747
748 state->fence = sync_file_get_fence(val);
749 if (!state->fence)
750 return -EINVAL;
751
Rob Clark6b4959f2014-12-18 16:01:53 -0500752 } else if (property == config->prop_crtc_id) {
753 struct drm_crtc *crtc = drm_crtc_find(dev, val);
754 return drm_atomic_set_crtc_for_plane(state, crtc);
755 } else if (property == config->prop_crtc_x) {
756 state->crtc_x = U642I64(val);
757 } else if (property == config->prop_crtc_y) {
758 state->crtc_y = U642I64(val);
759 } else if (property == config->prop_crtc_w) {
760 state->crtc_w = val;
761 } else if (property == config->prop_crtc_h) {
762 state->crtc_h = val;
763 } else if (property == config->prop_src_x) {
764 state->src_x = val;
765 } else if (property == config->prop_src_y) {
766 state->src_y = val;
767 } else if (property == config->prop_src_w) {
768 state->src_w = val;
769 } else if (property == config->prop_src_h) {
770 state->src_h = val;
Ville Syrjälä6686df82016-10-21 22:22:45 +0300771 } else if (property == plane->rotation_property) {
Ville Syrjälä6e0c7c32016-09-26 19:30:47 +0300772 if (!is_power_of_2(val & DRM_ROTATE_MASK))
773 return -EINVAL;
Matt Roper1da30622015-01-21 16:35:40 -0800774 state->rotation = val;
Marek Szyprowski44d1240d2016-06-13 11:11:26 +0200775 } else if (property == plane->zpos_property) {
776 state->zpos = val;
Rob Clark6b4959f2014-12-18 16:01:53 -0500777 } else if (plane->funcs->atomic_set_property) {
778 return plane->funcs->atomic_set_property(plane, state,
779 property, val);
780 } else {
781 return -EINVAL;
782 }
783
784 return 0;
Rob Clark40ecc692014-12-18 16:01:46 -0500785}
786EXPORT_SYMBOL(drm_atomic_plane_set_property);
787
Daniel Vetterc0714fc2015-12-04 09:45:57 +0100788/**
789 * drm_atomic_plane_get_property - get property value from plane state
790 * @plane: the drm plane to set a property on
791 * @state: the state object to get the property value from
792 * @property: the property to set
793 * @val: return location for the property value
794 *
Daniel Vetterd5745282017-01-25 07:26:45 +0100795 * This function handles generic/core properties and calls out to driver's
796 * &drm_plane_funcs.atomic_get_property for driver properties. To ensure
797 * consistent behavior you must call this function rather than the driver hook
798 * directly.
Daniel Vetterc0714fc2015-12-04 09:45:57 +0100799 *
800 * RETURNS:
801 * Zero on success, error code on failure
Rob Clarkac9c9252014-12-18 16:01:47 -0500802 */
Daniel Vettera97df1c2014-12-18 22:49:02 +0100803static int
804drm_atomic_plane_get_property(struct drm_plane *plane,
Rob Clarkac9c9252014-12-18 16:01:47 -0500805 const struct drm_plane_state *state,
806 struct drm_property *property, uint64_t *val)
807{
Rob Clark6b4959f2014-12-18 16:01:53 -0500808 struct drm_device *dev = plane->dev;
809 struct drm_mode_config *config = &dev->mode_config;
810
811 if (property == config->prop_fb_id) {
812 *val = (state->fb) ? state->fb->base.id : 0;
Gustavo Padovan96260142016-11-15 22:06:39 +0900813 } else if (property == config->prop_in_fence_fd) {
814 *val = -1;
Rob Clark6b4959f2014-12-18 16:01:53 -0500815 } else if (property == config->prop_crtc_id) {
816 *val = (state->crtc) ? state->crtc->base.id : 0;
817 } else if (property == config->prop_crtc_x) {
818 *val = I642U64(state->crtc_x);
819 } else if (property == config->prop_crtc_y) {
820 *val = I642U64(state->crtc_y);
821 } else if (property == config->prop_crtc_w) {
822 *val = state->crtc_w;
823 } else if (property == config->prop_crtc_h) {
824 *val = state->crtc_h;
825 } else if (property == config->prop_src_x) {
826 *val = state->src_x;
827 } else if (property == config->prop_src_y) {
828 *val = state->src_y;
829 } else if (property == config->prop_src_w) {
830 *val = state->src_w;
831 } else if (property == config->prop_src_h) {
832 *val = state->src_h;
Ville Syrjälä6686df82016-10-21 22:22:45 +0300833 } else if (property == plane->rotation_property) {
Tvrtko Ursulin4cda09c2015-02-26 13:49:17 +0000834 *val = state->rotation;
Marek Szyprowski44d1240d2016-06-13 11:11:26 +0200835 } else if (property == plane->zpos_property) {
836 *val = state->zpos;
Rob Clark6b4959f2014-12-18 16:01:53 -0500837 } else if (plane->funcs->atomic_get_property) {
Rob Clarkac9c9252014-12-18 16:01:47 -0500838 return plane->funcs->atomic_get_property(plane, state, property, val);
Rob Clark6b4959f2014-12-18 16:01:53 -0500839 } else {
840 return -EINVAL;
841 }
842
843 return 0;
Rob Clarkac9c9252014-12-18 16:01:47 -0500844}
Rob Clarkac9c9252014-12-18 16:01:47 -0500845
Daniel Vetterf8aeb412015-08-26 21:49:42 +0200846static bool
847plane_switching_crtc(struct drm_atomic_state *state,
848 struct drm_plane *plane,
849 struct drm_plane_state *plane_state)
850{
851 if (!plane->state->crtc || !plane_state->crtc)
852 return false;
853
854 if (plane->state->crtc == plane_state->crtc)
855 return false;
856
857 /* This could be refined, but currently there's no helper or driver code
858 * to implement direct switching of active planes nor userspace to take
859 * advantage of more direct plane switching without the intermediate
860 * full OFF state.
861 */
862 return true;
863}
864
Rob Clarkac9c9252014-12-18 16:01:47 -0500865/**
Rob Clark5e743732014-12-18 16:01:51 -0500866 * drm_atomic_plane_check - check plane state
867 * @plane: plane to check
868 * @state: plane state to check
869 *
870 * Provides core sanity checks for plane state.
871 *
872 * RETURNS:
873 * Zero on success, error code on failure
874 */
875static int drm_atomic_plane_check(struct drm_plane *plane,
876 struct drm_plane_state *state)
877{
878 unsigned int fb_width, fb_height;
Laurent Pinchartead86102015-03-05 02:25:43 +0200879 int ret;
Rob Clark5e743732014-12-18 16:01:51 -0500880
881 /* either *both* CRTC and FB must be set, or neither */
882 if (WARN_ON(state->crtc && !state->fb)) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100883 DRM_DEBUG_ATOMIC("CRTC set but no FB\n");
Rob Clark5e743732014-12-18 16:01:51 -0500884 return -EINVAL;
885 } else if (WARN_ON(state->fb && !state->crtc)) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100886 DRM_DEBUG_ATOMIC("FB set but no CRTC\n");
Rob Clark5e743732014-12-18 16:01:51 -0500887 return -EINVAL;
888 }
889
890 /* if disabled, we don't care about the rest of the state: */
891 if (!state->crtc)
892 return 0;
893
894 /* Check whether this plane is usable on this CRTC */
895 if (!(plane->possible_crtcs & drm_crtc_mask(state->crtc))) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100896 DRM_DEBUG_ATOMIC("Invalid crtc for plane\n");
Rob Clark5e743732014-12-18 16:01:51 -0500897 return -EINVAL;
898 }
899
900 /* Check whether this plane supports the fb pixel format. */
Ville Syrjälä438b74a2016-12-14 23:32:55 +0200901 ret = drm_plane_check_pixel_format(plane, state->fb->format->format);
Laurent Pinchartead86102015-03-05 02:25:43 +0200902 if (ret) {
Eric Engestromb3c11ac2016-11-12 01:12:56 +0000903 struct drm_format_name_buf format_name;
904 DRM_DEBUG_ATOMIC("Invalid pixel format %s\n",
Ville Syrjälä438b74a2016-12-14 23:32:55 +0200905 drm_get_format_name(state->fb->format->format,
Eric Engestromb3c11ac2016-11-12 01:12:56 +0000906 &format_name));
Laurent Pinchartead86102015-03-05 02:25:43 +0200907 return ret;
Rob Clark5e743732014-12-18 16:01:51 -0500908 }
909
910 /* Give drivers some help against integer overflows */
911 if (state->crtc_w > INT_MAX ||
912 state->crtc_x > INT_MAX - (int32_t) state->crtc_w ||
913 state->crtc_h > INT_MAX ||
914 state->crtc_y > INT_MAX - (int32_t) state->crtc_h) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100915 DRM_DEBUG_ATOMIC("Invalid CRTC coordinates %ux%u+%d+%d\n",
916 state->crtc_w, state->crtc_h,
917 state->crtc_x, state->crtc_y);
Rob Clark5e743732014-12-18 16:01:51 -0500918 return -ERANGE;
919 }
920
921 fb_width = state->fb->width << 16;
922 fb_height = state->fb->height << 16;
923
924 /* Make sure source coordinates are inside the fb. */
925 if (state->src_w > fb_width ||
926 state->src_x > fb_width - state->src_w ||
927 state->src_h > fb_height ||
928 state->src_y > fb_height - state->src_h) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100929 DRM_DEBUG_ATOMIC("Invalid source coordinates "
930 "%u.%06ux%u.%06u+%u.%06u+%u.%06u\n",
931 state->src_w >> 16, ((state->src_w & 0xffff) * 15625) >> 10,
932 state->src_h >> 16, ((state->src_h & 0xffff) * 15625) >> 10,
933 state->src_x >> 16, ((state->src_x & 0xffff) * 15625) >> 10,
934 state->src_y >> 16, ((state->src_y & 0xffff) * 15625) >> 10);
Rob Clark5e743732014-12-18 16:01:51 -0500935 return -ENOSPC;
936 }
937
Daniel Vetterf8aeb412015-08-26 21:49:42 +0200938 if (plane_switching_crtc(state->state, plane, state)) {
Ville Syrjälä9f4c97a2015-12-08 18:41:54 +0200939 DRM_DEBUG_ATOMIC("[PLANE:%d:%s] switching CRTC directly\n",
940 plane->base.id, plane->name);
Daniel Vetterf8aeb412015-08-26 21:49:42 +0200941 return -EINVAL;
942 }
943
Rob Clark5e743732014-12-18 16:01:51 -0500944 return 0;
945}
946
Rob Clarkfceffb322016-11-05 11:08:09 -0400947static void drm_atomic_plane_print_state(struct drm_printer *p,
948 const struct drm_plane_state *state)
949{
950 struct drm_plane *plane = state->plane;
951 struct drm_rect src = drm_plane_state_src(state);
952 struct drm_rect dest = drm_plane_state_dest(state);
953
954 drm_printf(p, "plane[%u]: %s\n", plane->base.id, plane->name);
955 drm_printf(p, "\tcrtc=%s\n", state->crtc ? state->crtc->name : "(null)");
956 drm_printf(p, "\tfb=%u\n", state->fb ? state->fb->base.id : 0);
957 if (state->fb) {
958 struct drm_framebuffer *fb = state->fb;
Ville Syrjäläbcb0b462016-12-14 23:30:22 +0200959 int i, n = fb->format->num_planes;
Eric Engestromb3c11ac2016-11-12 01:12:56 +0000960 struct drm_format_name_buf format_name;
Rob Clarkfceffb322016-11-05 11:08:09 -0400961
962 drm_printf(p, "\t\tformat=%s\n",
Ville Syrjälä438b74a2016-12-14 23:32:55 +0200963 drm_get_format_name(fb->format->format, &format_name));
Ville Syrjäläbae781b2016-11-16 13:33:16 +0200964 drm_printf(p, "\t\t\tmodifier=0x%llx\n", fb->modifier);
Rob Clarkfceffb322016-11-05 11:08:09 -0400965 drm_printf(p, "\t\tsize=%dx%d\n", fb->width, fb->height);
966 drm_printf(p, "\t\tlayers:\n");
967 for (i = 0; i < n; i++) {
968 drm_printf(p, "\t\t\tpitch[%d]=%u\n", i, fb->pitches[i]);
969 drm_printf(p, "\t\t\toffset[%d]=%u\n", i, fb->offsets[i]);
Rob Clarkfceffb322016-11-05 11:08:09 -0400970 }
971 }
972 drm_printf(p, "\tcrtc-pos=" DRM_RECT_FMT "\n", DRM_RECT_ARG(&dest));
973 drm_printf(p, "\tsrc-pos=" DRM_RECT_FP_FMT "\n", DRM_RECT_FP_ARG(&src));
974 drm_printf(p, "\trotation=%x\n", state->rotation);
975
976 if (plane->funcs->atomic_print_state)
977 plane->funcs->atomic_print_state(p, state);
978}
979
Rob Clark5e743732014-12-18 16:01:51 -0500980/**
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200981 * drm_atomic_get_connector_state - get connector state
982 * @state: global atomic state object
983 * @connector: connector to get state object for
984 *
985 * This function returns the connector state for the given connector,
986 * allocating it if needed. It will also grab the relevant connector lock to
987 * make sure that the state is consistent.
988 *
989 * Returns:
990 *
991 * Either the allocated state or the error code encoded into the pointer. When
992 * the error is EDEADLK then the w/w mutex code has detected a deadlock and the
993 * entire atomic sequence must be restarted. All other errors are fatal.
994 */
995struct drm_connector_state *
996drm_atomic_get_connector_state(struct drm_atomic_state *state,
997 struct drm_connector *connector)
998{
999 int ret, index;
1000 struct drm_mode_config *config = &connector->dev->mode_config;
1001 struct drm_connector_state *connector_state;
1002
Maarten Lankhorst7f4eaa892016-05-03 11:12:31 +02001003 WARN_ON(!state->acquire_ctx);
1004
Daniel Vetterc7eb76f2014-11-19 18:38:06 +01001005 ret = drm_modeset_lock(&config->connection_mutex, state->acquire_ctx);
1006 if (ret)
1007 return ERR_PTR(ret);
1008
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001009 index = drm_connector_index(connector);
1010
Daniel Vetterf52b69f12014-11-19 18:38:08 +01001011 if (index >= state->num_connector) {
Daniel Vetter63e83c12016-06-02 00:06:32 +02001012 struct __drm_connnectors_state *c;
Maarten Lankhorst5fff80b2016-02-17 08:32:05 +01001013 int alloc = max(index + 1, config->num_connector);
1014
1015 c = krealloc(state->connectors, alloc * sizeof(*state->connectors), GFP_KERNEL);
1016 if (!c)
1017 return ERR_PTR(-ENOMEM);
1018
1019 state->connectors = c;
1020 memset(&state->connectors[state->num_connector], 0,
1021 sizeof(*state->connectors) * (alloc - state->num_connector));
1022
Maarten Lankhorst5fff80b2016-02-17 08:32:05 +01001023 state->num_connector = alloc;
Daniel Vetterf52b69f12014-11-19 18:38:08 +01001024 }
1025
Daniel Vetter63e83c12016-06-02 00:06:32 +02001026 if (state->connectors[index].state)
1027 return state->connectors[index].state;
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001028
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001029 connector_state = connector->funcs->atomic_duplicate_state(connector);
1030 if (!connector_state)
1031 return ERR_PTR(-ENOMEM);
1032
Dave Airlieb164d312016-04-27 11:10:09 +10001033 drm_connector_reference(connector);
Daniel Vetter63e83c12016-06-02 00:06:32 +02001034 state->connectors[index].state = connector_state;
Maarten Lankhorst581e49f2017-01-16 10:37:38 +01001035 state->connectors[index].old_state = connector->state;
1036 state->connectors[index].new_state = connector_state;
Daniel Vetter63e83c12016-06-02 00:06:32 +02001037 state->connectors[index].ptr = connector;
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001038 connector_state->state = state;
1039
Russell King6ac7c542017-02-13 12:27:03 +00001040 DRM_DEBUG_ATOMIC("Added [CONNECTOR:%d:%s] %p state to %p\n",
1041 connector->base.id, connector->name,
1042 connector_state, state);
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001043
1044 if (connector_state->crtc) {
1045 struct drm_crtc_state *crtc_state;
1046
1047 crtc_state = drm_atomic_get_crtc_state(state,
1048 connector_state->crtc);
1049 if (IS_ERR(crtc_state))
1050 return ERR_CAST(crtc_state);
1051 }
1052
1053 return connector_state;
1054}
1055EXPORT_SYMBOL(drm_atomic_get_connector_state);
1056
1057/**
Rob Clark40ecc692014-12-18 16:01:46 -05001058 * drm_atomic_connector_set_property - set property on connector.
1059 * @connector: the drm connector to set a property on
1060 * @state: the state object to update with the new property value
1061 * @property: the property to set
1062 * @val: the new property value
1063 *
Daniel Vetterd5745282017-01-25 07:26:45 +01001064 * This function handles generic/core properties and calls out to driver's
1065 * &drm_connector_funcs.atomic_set_property for driver properties. To ensure
1066 * consistent behavior you must call this function rather than the driver hook
1067 * directly.
Rob Clark40ecc692014-12-18 16:01:46 -05001068 *
1069 * RETURNS:
1070 * Zero on success, error code on failure
1071 */
1072int drm_atomic_connector_set_property(struct drm_connector *connector,
1073 struct drm_connector_state *state, struct drm_property *property,
1074 uint64_t val)
1075{
1076 struct drm_device *dev = connector->dev;
1077 struct drm_mode_config *config = &dev->mode_config;
1078
Rob Clarkae16c592014-12-18 16:01:54 -05001079 if (property == config->prop_crtc_id) {
1080 struct drm_crtc *crtc = drm_crtc_find(dev, val);
1081 return drm_atomic_set_crtc_for_connector(state, crtc);
1082 } else if (property == config->dpms_property) {
Rob Clark40ecc692014-12-18 16:01:46 -05001083 /* setting DPMS property requires special handling, which
1084 * is done in legacy setprop path for us. Disallow (for
1085 * now?) atomic writes to DPMS property:
1086 */
1087 return -EINVAL;
Boris Brezillon299a16b2016-12-02 14:48:09 +01001088 } else if (property == config->tv_select_subconnector_property) {
1089 state->tv.subconnector = val;
1090 } else if (property == config->tv_left_margin_property) {
1091 state->tv.margins.left = val;
1092 } else if (property == config->tv_right_margin_property) {
1093 state->tv.margins.right = val;
1094 } else if (property == config->tv_top_margin_property) {
1095 state->tv.margins.top = val;
1096 } else if (property == config->tv_bottom_margin_property) {
1097 state->tv.margins.bottom = val;
1098 } else if (property == config->tv_mode_property) {
1099 state->tv.mode = val;
1100 } else if (property == config->tv_brightness_property) {
1101 state->tv.brightness = val;
1102 } else if (property == config->tv_contrast_property) {
1103 state->tv.contrast = val;
1104 } else if (property == config->tv_flicker_reduction_property) {
1105 state->tv.flicker_reduction = val;
1106 } else if (property == config->tv_overscan_property) {
1107 state->tv.overscan = val;
1108 } else if (property == config->tv_saturation_property) {
1109 state->tv.saturation = val;
1110 } else if (property == config->tv_hue_property) {
1111 state->tv.hue = val;
Manasi Navare40ee6fb2016-12-16 12:29:06 +02001112 } else if (property == config->link_status_property) {
1113 /* Never downgrade from GOOD to BAD on userspace's request here,
1114 * only hw issues can do that.
1115 *
1116 * For an atomic property the userspace doesn't need to be able
1117 * to understand all the properties, but needs to be able to
1118 * restore the state it wants on VT switch. So if the userspace
1119 * tries to change the link_status from GOOD to BAD, driver
1120 * silently rejects it and returns a 0. This prevents userspace
1121 * from accidently breaking the display when it restores the
1122 * state.
1123 */
1124 if (state->link_status != DRM_LINK_STATUS_GOOD)
1125 state->link_status = val;
Rob Clark40ecc692014-12-18 16:01:46 -05001126 } else if (connector->funcs->atomic_set_property) {
1127 return connector->funcs->atomic_set_property(connector,
1128 state, property, val);
1129 } else {
1130 return -EINVAL;
1131 }
Boris Brezillon299a16b2016-12-02 14:48:09 +01001132
1133 return 0;
Rob Clark40ecc692014-12-18 16:01:46 -05001134}
1135EXPORT_SYMBOL(drm_atomic_connector_set_property);
1136
Rob Clarkfceffb322016-11-05 11:08:09 -04001137static void drm_atomic_connector_print_state(struct drm_printer *p,
1138 const struct drm_connector_state *state)
1139{
1140 struct drm_connector *connector = state->connector;
1141
1142 drm_printf(p, "connector[%u]: %s\n", connector->base.id, connector->name);
1143 drm_printf(p, "\tcrtc=%s\n", state->crtc ? state->crtc->name : "(null)");
1144
1145 if (connector->funcs->atomic_print_state)
1146 connector->funcs->atomic_print_state(p, state);
1147}
1148
Daniel Vetterc0714fc2015-12-04 09:45:57 +01001149/**
1150 * drm_atomic_connector_get_property - get property value from connector state
1151 * @connector: the drm connector to set a property on
1152 * @state: the state object to get the property value from
1153 * @property: the property to set
1154 * @val: return location for the property value
1155 *
Daniel Vetterd5745282017-01-25 07:26:45 +01001156 * This function handles generic/core properties and calls out to driver's
1157 * &drm_connector_funcs.atomic_get_property for driver properties. To ensure
1158 * consistent behavior you must call this function rather than the driver hook
1159 * directly.
Daniel Vetterc0714fc2015-12-04 09:45:57 +01001160 *
1161 * RETURNS:
1162 * Zero on success, error code on failure
Rob Clarkac9c9252014-12-18 16:01:47 -05001163 */
Daniel Vettera97df1c2014-12-18 22:49:02 +01001164static int
1165drm_atomic_connector_get_property(struct drm_connector *connector,
Rob Clarkac9c9252014-12-18 16:01:47 -05001166 const struct drm_connector_state *state,
1167 struct drm_property *property, uint64_t *val)
1168{
1169 struct drm_device *dev = connector->dev;
1170 struct drm_mode_config *config = &dev->mode_config;
1171
Rob Clarkae16c592014-12-18 16:01:54 -05001172 if (property == config->prop_crtc_id) {
1173 *val = (state->crtc) ? state->crtc->base.id : 0;
1174 } else if (property == config->dpms_property) {
Rob Clarkac9c9252014-12-18 16:01:47 -05001175 *val = connector->dpms;
Boris Brezillon299a16b2016-12-02 14:48:09 +01001176 } else if (property == config->tv_select_subconnector_property) {
1177 *val = state->tv.subconnector;
1178 } else if (property == config->tv_left_margin_property) {
1179 *val = state->tv.margins.left;
1180 } else if (property == config->tv_right_margin_property) {
1181 *val = state->tv.margins.right;
1182 } else if (property == config->tv_top_margin_property) {
1183 *val = state->tv.margins.top;
1184 } else if (property == config->tv_bottom_margin_property) {
1185 *val = state->tv.margins.bottom;
1186 } else if (property == config->tv_mode_property) {
1187 *val = state->tv.mode;
1188 } else if (property == config->tv_brightness_property) {
1189 *val = state->tv.brightness;
1190 } else if (property == config->tv_contrast_property) {
1191 *val = state->tv.contrast;
1192 } else if (property == config->tv_flicker_reduction_property) {
1193 *val = state->tv.flicker_reduction;
1194 } else if (property == config->tv_overscan_property) {
1195 *val = state->tv.overscan;
1196 } else if (property == config->tv_saturation_property) {
1197 *val = state->tv.saturation;
1198 } else if (property == config->tv_hue_property) {
1199 *val = state->tv.hue;
Manasi Navare40ee6fb2016-12-16 12:29:06 +02001200 } else if (property == config->link_status_property) {
1201 *val = state->link_status;
Rob Clarkac9c9252014-12-18 16:01:47 -05001202 } else if (connector->funcs->atomic_get_property) {
1203 return connector->funcs->atomic_get_property(connector,
1204 state, property, val);
1205 } else {
1206 return -EINVAL;
1207 }
1208
1209 return 0;
1210}
Rob Clarkac9c9252014-12-18 16:01:47 -05001211
Rob Clark88a48e22014-12-18 16:01:50 -05001212int drm_atomic_get_property(struct drm_mode_object *obj,
1213 struct drm_property *property, uint64_t *val)
1214{
1215 struct drm_device *dev = property->dev;
1216 int ret;
1217
1218 switch (obj->type) {
1219 case DRM_MODE_OBJECT_CONNECTOR: {
1220 struct drm_connector *connector = obj_to_connector(obj);
1221 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
1222 ret = drm_atomic_connector_get_property(connector,
1223 connector->state, property, val);
1224 break;
1225 }
1226 case DRM_MODE_OBJECT_CRTC: {
1227 struct drm_crtc *crtc = obj_to_crtc(obj);
1228 WARN_ON(!drm_modeset_is_locked(&crtc->mutex));
1229 ret = drm_atomic_crtc_get_property(crtc,
1230 crtc->state, property, val);
1231 break;
1232 }
1233 case DRM_MODE_OBJECT_PLANE: {
1234 struct drm_plane *plane = obj_to_plane(obj);
1235 WARN_ON(!drm_modeset_is_locked(&plane->mutex));
1236 ret = drm_atomic_plane_get_property(plane,
1237 plane->state, property, val);
1238 break;
1239 }
1240 default:
1241 ret = -EINVAL;
1242 break;
1243 }
1244
1245 return ret;
1246}
1247
1248/**
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001249 * drm_atomic_set_crtc_for_plane - set crtc for plane
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01001250 * @plane_state: the plane whose incoming state to update
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001251 * @crtc: crtc to use for the plane
1252 *
1253 * Changing the assigned crtc for a plane requires us to grab the lock and state
1254 * for the new crtc, as needed. This function takes care of all these details
1255 * besides updating the pointer in the state object itself.
1256 *
1257 * Returns:
1258 * 0 on success or can fail with -EDEADLK or -ENOMEM. When the error is EDEADLK
1259 * then the w/w mutex code has detected a deadlock and the entire atomic
1260 * sequence must be restarted. All other errors are fatal.
1261 */
1262int
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01001263drm_atomic_set_crtc_for_plane(struct drm_plane_state *plane_state,
1264 struct drm_crtc *crtc)
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001265{
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01001266 struct drm_plane *plane = plane_state->plane;
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001267 struct drm_crtc_state *crtc_state;
1268
Rob Clark6ddd3882014-11-21 15:28:31 -05001269 if (plane_state->crtc) {
1270 crtc_state = drm_atomic_get_crtc_state(plane_state->state,
1271 plane_state->crtc);
1272 if (WARN_ON(IS_ERR(crtc_state)))
1273 return PTR_ERR(crtc_state);
1274
1275 crtc_state->plane_mask &= ~(1 << drm_plane_index(plane));
1276 }
1277
1278 plane_state->crtc = crtc;
1279
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001280 if (crtc) {
1281 crtc_state = drm_atomic_get_crtc_state(plane_state->state,
1282 crtc);
1283 if (IS_ERR(crtc_state))
1284 return PTR_ERR(crtc_state);
Rob Clark6ddd3882014-11-21 15:28:31 -05001285 crtc_state->plane_mask |= (1 << drm_plane_index(plane));
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001286 }
1287
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001288 if (crtc)
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +02001289 DRM_DEBUG_ATOMIC("Link plane state %p to [CRTC:%d:%s]\n",
1290 plane_state, crtc->base.id, crtc->name);
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001291 else
Daniel Vetter17a38d92015-02-22 12:24:16 +01001292 DRM_DEBUG_ATOMIC("Link plane state %p to [NOCRTC]\n",
1293 plane_state);
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001294
1295 return 0;
1296}
1297EXPORT_SYMBOL(drm_atomic_set_crtc_for_plane);
1298
1299/**
John Hunter16d78bc2e2015-04-07 19:38:50 +08001300 * drm_atomic_set_fb_for_plane - set framebuffer for plane
Daniel Vetter321ebf02014-11-04 22:57:27 +01001301 * @plane_state: atomic state object for the plane
1302 * @fb: fb to use for the plane
1303 *
1304 * Changing the assigned framebuffer for a plane requires us to grab a reference
1305 * to the new fb and drop the reference to the old fb, if there is one. This
1306 * function takes care of all these details besides updating the pointer in the
1307 * state object itself.
1308 */
1309void
1310drm_atomic_set_fb_for_plane(struct drm_plane_state *plane_state,
1311 struct drm_framebuffer *fb)
1312{
Daniel Vetter321ebf02014-11-04 22:57:27 +01001313 if (fb)
Daniel Vetter17a38d92015-02-22 12:24:16 +01001314 DRM_DEBUG_ATOMIC("Set [FB:%d] for plane state %p\n",
1315 fb->base.id, plane_state);
Daniel Vetter321ebf02014-11-04 22:57:27 +01001316 else
Daniel Vetter17a38d92015-02-22 12:24:16 +01001317 DRM_DEBUG_ATOMIC("Set [NOFB] for plane state %p\n",
1318 plane_state);
Chris Wilson389f78b2016-11-25 15:32:30 +00001319
1320 drm_framebuffer_assign(&plane_state->fb, fb);
Daniel Vetter321ebf02014-11-04 22:57:27 +01001321}
1322EXPORT_SYMBOL(drm_atomic_set_fb_for_plane);
1323
1324/**
Gustavo Padovan13b55662016-11-07 19:03:30 +09001325 * drm_atomic_set_fence_for_plane - set fence for plane
1326 * @plane_state: atomic state object for the plane
1327 * @fence: dma_fence to use for the plane
1328 *
1329 * Helper to setup the plane_state fence in case it is not set yet.
1330 * By using this drivers doesn't need to worry if the user choose
1331 * implicit or explicit fencing.
1332 *
1333 * This function will not set the fence to the state if it was set
Daniel Vetterd5745282017-01-25 07:26:45 +01001334 * via explicit fencing interfaces on the atomic ioctl. In that case it will
1335 * drop the reference to the fence as we are not storing it anywhere.
1336 * Otherwise, if &drm_plane_state.fence is not set this function we just set it
1337 * with the received implicit fence. In both cases this function consumes a
1338 * reference for @fence.
Gustavo Padovan13b55662016-11-07 19:03:30 +09001339 */
1340void
1341drm_atomic_set_fence_for_plane(struct drm_plane_state *plane_state,
1342 struct dma_fence *fence)
1343{
1344 if (plane_state->fence) {
1345 dma_fence_put(fence);
1346 return;
1347 }
1348
1349 plane_state->fence = fence;
1350}
1351EXPORT_SYMBOL(drm_atomic_set_fence_for_plane);
1352
1353/**
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001354 * drm_atomic_set_crtc_for_connector - set crtc for connector
1355 * @conn_state: atomic state object for the connector
1356 * @crtc: crtc to use for the connector
1357 *
1358 * Changing the assigned crtc for a connector requires us to grab the lock and
1359 * state for the new crtc, as needed. This function takes care of all these
1360 * details besides updating the pointer in the state object itself.
1361 *
1362 * Returns:
1363 * 0 on success or can fail with -EDEADLK or -ENOMEM. When the error is EDEADLK
1364 * then the w/w mutex code has detected a deadlock and the entire atomic
1365 * sequence must be restarted. All other errors are fatal.
1366 */
1367int
1368drm_atomic_set_crtc_for_connector(struct drm_connector_state *conn_state,
1369 struct drm_crtc *crtc)
1370{
1371 struct drm_crtc_state *crtc_state;
1372
Chris Wilsone2d800a2016-05-06 12:47:45 +01001373 if (conn_state->crtc == crtc)
1374 return 0;
1375
1376 if (conn_state->crtc) {
Maarten Lankhorst4cd9fa52016-01-04 12:53:18 +01001377 crtc_state = drm_atomic_get_existing_crtc_state(conn_state->state,
1378 conn_state->crtc);
1379
1380 crtc_state->connector_mask &=
1381 ~(1 << drm_connector_index(conn_state->connector));
Chris Wilsone2d800a2016-05-06 12:47:45 +01001382
1383 drm_connector_unreference(conn_state->connector);
1384 conn_state->crtc = NULL;
Maarten Lankhorst4cd9fa52016-01-04 12:53:18 +01001385 }
1386
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001387 if (crtc) {
1388 crtc_state = drm_atomic_get_crtc_state(conn_state->state, crtc);
1389 if (IS_ERR(crtc_state))
1390 return PTR_ERR(crtc_state);
Maarten Lankhorst4cd9fa52016-01-04 12:53:18 +01001391
1392 crtc_state->connector_mask |=
1393 1 << drm_connector_index(conn_state->connector);
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001394
Chris Wilsone2d800a2016-05-06 12:47:45 +01001395 drm_connector_reference(conn_state->connector);
1396 conn_state->crtc = crtc;
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001397
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +02001398 DRM_DEBUG_ATOMIC("Link connector state %p to [CRTC:%d:%s]\n",
1399 conn_state, crtc->base.id, crtc->name);
Chris Wilsone2d800a2016-05-06 12:47:45 +01001400 } else {
Daniel Vetter17a38d92015-02-22 12:24:16 +01001401 DRM_DEBUG_ATOMIC("Link connector state %p to [NOCRTC]\n",
1402 conn_state);
Chris Wilsone2d800a2016-05-06 12:47:45 +01001403 }
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001404
1405 return 0;
1406}
1407EXPORT_SYMBOL(drm_atomic_set_crtc_for_connector);
1408
1409/**
1410 * drm_atomic_add_affected_connectors - add connectors for crtc
1411 * @state: atomic state
1412 * @crtc: DRM crtc
1413 *
1414 * This function walks the current configuration and adds all connectors
1415 * currently using @crtc to the atomic configuration @state. Note that this
1416 * function must acquire the connection mutex. This can potentially cause
1417 * unneeded seralization if the update is just for the planes on one crtc. Hence
1418 * drivers and helpers should only call this when really needed (e.g. when a
1419 * full modeset needs to happen due to some change).
1420 *
1421 * Returns:
1422 * 0 on success or can fail with -EDEADLK or -ENOMEM. When the error is EDEADLK
1423 * then the w/w mutex code has detected a deadlock and the entire atomic
1424 * sequence must be restarted. All other errors are fatal.
1425 */
1426int
1427drm_atomic_add_affected_connectors(struct drm_atomic_state *state,
1428 struct drm_crtc *crtc)
1429{
1430 struct drm_mode_config *config = &state->dev->mode_config;
1431 struct drm_connector *connector;
1432 struct drm_connector_state *conn_state;
Daniel Vetter613051d2016-12-14 00:08:06 +01001433 struct drm_connector_list_iter conn_iter;
Maarten Lankhorst5351bbd2017-01-16 10:37:39 +01001434 struct drm_crtc_state *crtc_state;
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001435 int ret;
1436
Maarten Lankhorst5351bbd2017-01-16 10:37:39 +01001437 crtc_state = drm_atomic_get_crtc_state(state, crtc);
1438 if (IS_ERR(crtc_state))
1439 return PTR_ERR(crtc_state);
1440
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001441 ret = drm_modeset_lock(&config->connection_mutex, state->acquire_ctx);
1442 if (ret)
1443 return ret;
1444
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +02001445 DRM_DEBUG_ATOMIC("Adding all current connectors for [CRTC:%d:%s] to %p\n",
1446 crtc->base.id, crtc->name, state);
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001447
1448 /*
Maarten Lankhorst5351bbd2017-01-16 10:37:39 +01001449 * Changed connectors are already in @state, so only need to look
1450 * at the connector_mask in crtc_state.
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001451 */
Daniel Vetter613051d2016-12-14 00:08:06 +01001452 drm_connector_list_iter_get(state->dev, &conn_iter);
1453 drm_for_each_connector_iter(connector, &conn_iter) {
Maarten Lankhorst5351bbd2017-01-16 10:37:39 +01001454 if (!(crtc_state->connector_mask & (1 << drm_connector_index(connector))))
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001455 continue;
1456
1457 conn_state = drm_atomic_get_connector_state(state, connector);
Daniel Vetter613051d2016-12-14 00:08:06 +01001458 if (IS_ERR(conn_state)) {
1459 drm_connector_list_iter_put(&conn_iter);
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001460 return PTR_ERR(conn_state);
Daniel Vetter613051d2016-12-14 00:08:06 +01001461 }
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001462 }
Daniel Vetter613051d2016-12-14 00:08:06 +01001463 drm_connector_list_iter_put(&conn_iter);
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001464
1465 return 0;
1466}
1467EXPORT_SYMBOL(drm_atomic_add_affected_connectors);
1468
1469/**
Maarten Lankhorste01e9f72015-05-19 16:41:02 +02001470 * drm_atomic_add_affected_planes - add planes for crtc
1471 * @state: atomic state
1472 * @crtc: DRM crtc
1473 *
1474 * This function walks the current configuration and adds all planes
1475 * currently used by @crtc to the atomic configuration @state. This is useful
1476 * when an atomic commit also needs to check all currently enabled plane on
1477 * @crtc, e.g. when changing the mode. It's also useful when re-enabling a CRTC
1478 * to avoid special code to force-enable all planes.
1479 *
1480 * Since acquiring a plane state will always also acquire the w/w mutex of the
1481 * current CRTC for that plane (if there is any) adding all the plane states for
1482 * a CRTC will not reduce parallism of atomic updates.
1483 *
1484 * Returns:
1485 * 0 on success or can fail with -EDEADLK or -ENOMEM. When the error is EDEADLK
1486 * then the w/w mutex code has detected a deadlock and the entire atomic
1487 * sequence must be restarted. All other errors are fatal.
1488 */
1489int
1490drm_atomic_add_affected_planes(struct drm_atomic_state *state,
1491 struct drm_crtc *crtc)
1492{
1493 struct drm_plane *plane;
1494
1495 WARN_ON(!drm_atomic_get_existing_crtc_state(state, crtc));
1496
1497 drm_for_each_plane_mask(plane, state->dev, crtc->state->plane_mask) {
1498 struct drm_plane_state *plane_state =
1499 drm_atomic_get_plane_state(state, plane);
1500
1501 if (IS_ERR(plane_state))
1502 return PTR_ERR(plane_state);
1503 }
1504 return 0;
1505}
1506EXPORT_SYMBOL(drm_atomic_add_affected_planes);
1507
1508/**
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001509 * drm_atomic_legacy_backoff - locking backoff for legacy ioctls
1510 * @state: atomic state
1511 *
1512 * This function should be used by legacy entry points which don't understand
1513 * -EDEADLK semantics. For simplicity this one will grab all modeset locks after
John Hunter16d78bc2e2015-04-07 19:38:50 +08001514 * the slowpath completed.
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001515 */
1516void drm_atomic_legacy_backoff(struct drm_atomic_state *state)
1517{
Maarten Lankhorst81e257e2016-06-23 13:45:06 +02001518 struct drm_device *dev = state->dev;
1519 unsigned crtc_mask = 0;
1520 struct drm_crtc *crtc;
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001521 int ret;
Maarten Lankhorst81e257e2016-06-23 13:45:06 +02001522 bool global = false;
1523
1524 drm_for_each_crtc(crtc, dev) {
1525 if (crtc->acquire_ctx != state->acquire_ctx)
1526 continue;
1527
1528 crtc_mask |= drm_crtc_mask(crtc);
1529 crtc->acquire_ctx = NULL;
1530 }
1531
1532 if (WARN_ON(dev->mode_config.acquire_ctx == state->acquire_ctx)) {
1533 global = true;
1534
1535 dev->mode_config.acquire_ctx = NULL;
1536 }
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001537
1538retry:
1539 drm_modeset_backoff(state->acquire_ctx);
1540
Maarten Lankhorst81e257e2016-06-23 13:45:06 +02001541 ret = drm_modeset_lock_all_ctx(dev, state->acquire_ctx);
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001542 if (ret)
1543 goto retry;
Maarten Lankhorst81e257e2016-06-23 13:45:06 +02001544
1545 drm_for_each_crtc(crtc, dev)
1546 if (drm_crtc_mask(crtc) & crtc_mask)
1547 crtc->acquire_ctx = state->acquire_ctx;
1548
1549 if (global)
1550 dev->mode_config.acquire_ctx = state->acquire_ctx;
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001551}
1552EXPORT_SYMBOL(drm_atomic_legacy_backoff);
1553
1554/**
1555 * drm_atomic_check_only - check whether a given config would work
1556 * @state: atomic configuration to check
1557 *
1558 * Note that this function can return -EDEADLK if the driver needed to acquire
1559 * more locks but encountered a deadlock. The caller must then do the usual w/w
1560 * backoff dance and restart. All other errors are fatal.
1561 *
1562 * Returns:
1563 * 0 on success, negative error code on failure.
1564 */
1565int drm_atomic_check_only(struct drm_atomic_state *state)
1566{
Rob Clark5e743732014-12-18 16:01:51 -05001567 struct drm_device *dev = state->dev;
1568 struct drm_mode_config *config = &dev->mode_config;
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001569 struct drm_plane *plane;
1570 struct drm_plane_state *plane_state;
1571 struct drm_crtc *crtc;
1572 struct drm_crtc_state *crtc_state;
Rob Clark5e743732014-12-18 16:01:51 -05001573 int i, ret = 0;
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001574
Daniel Vetter17a38d92015-02-22 12:24:16 +01001575 DRM_DEBUG_ATOMIC("checking %p\n", state);
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001576
Maarten Lankhorst5721a382017-01-16 10:37:40 +01001577 for_each_new_plane_in_state(state, plane, plane_state, i) {
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001578 ret = drm_atomic_plane_check(plane, plane_state);
Rob Clark5e743732014-12-18 16:01:51 -05001579 if (ret) {
Ville Syrjälä9f4c97a2015-12-08 18:41:54 +02001580 DRM_DEBUG_ATOMIC("[PLANE:%d:%s] atomic core check failed\n",
1581 plane->base.id, plane->name);
Rob Clark5e743732014-12-18 16:01:51 -05001582 return ret;
1583 }
1584 }
1585
Maarten Lankhorst5721a382017-01-16 10:37:40 +01001586 for_each_new_crtc_in_state(state, crtc, crtc_state, i) {
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001587 ret = drm_atomic_crtc_check(crtc, crtc_state);
Rob Clark5e743732014-12-18 16:01:51 -05001588 if (ret) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +02001589 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] atomic core check failed\n",
1590 crtc->base.id, crtc->name);
Rob Clark5e743732014-12-18 16:01:51 -05001591 return ret;
1592 }
1593 }
1594
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001595 if (config->funcs->atomic_check)
Rob Clark5e743732014-12-18 16:01:51 -05001596 ret = config->funcs->atomic_check(state->dev, state);
1597
Rob Clarkd34f20d2014-12-18 16:01:56 -05001598 if (!state->allow_modeset) {
Maarten Lankhorst5721a382017-01-16 10:37:40 +01001599 for_each_new_crtc_in_state(state, crtc, crtc_state, i) {
Daniel Vetter2465ff62015-06-18 09:58:55 +02001600 if (drm_atomic_crtc_needs_modeset(crtc_state)) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +02001601 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] requires full modeset\n",
1602 crtc->base.id, crtc->name);
Rob Clarkd34f20d2014-12-18 16:01:56 -05001603 return -EINVAL;
1604 }
1605 }
1606 }
1607
Rob Clark5e743732014-12-18 16:01:51 -05001608 return ret;
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001609}
1610EXPORT_SYMBOL(drm_atomic_check_only);
1611
1612/**
1613 * drm_atomic_commit - commit configuration atomically
1614 * @state: atomic configuration to check
1615 *
1616 * Note that this function can return -EDEADLK if the driver needed to acquire
1617 * more locks but encountered a deadlock. The caller must then do the usual w/w
1618 * backoff dance and restart. All other errors are fatal.
1619 *
Maarten Lankhorst76fede22017-01-04 12:34:00 +01001620 * This function will take its own reference on @state.
1621 * Callers should always release their reference with drm_atomic_state_put().
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001622 *
1623 * Returns:
1624 * 0 on success, negative error code on failure.
1625 */
1626int drm_atomic_commit(struct drm_atomic_state *state)
1627{
1628 struct drm_mode_config *config = &state->dev->mode_config;
1629 int ret;
1630
1631 ret = drm_atomic_check_only(state);
1632 if (ret)
1633 return ret;
1634
Daniel Vetter17a38d92015-02-22 12:24:16 +01001635 DRM_DEBUG_ATOMIC("commiting %p\n", state);
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001636
1637 return config->funcs->atomic_commit(state->dev, state, false);
1638}
1639EXPORT_SYMBOL(drm_atomic_commit);
1640
1641/**
Daniel Vetterd5745282017-01-25 07:26:45 +01001642 * drm_atomic_nonblocking_commit - atomic nonblocking commit
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001643 * @state: atomic configuration to check
1644 *
1645 * Note that this function can return -EDEADLK if the driver needed to acquire
1646 * more locks but encountered a deadlock. The caller must then do the usual w/w
1647 * backoff dance and restart. All other errors are fatal.
1648 *
Maarten Lankhorst76fede22017-01-04 12:34:00 +01001649 * This function will take its own reference on @state.
1650 * Callers should always release their reference with drm_atomic_state_put().
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001651 *
1652 * Returns:
1653 * 0 on success, negative error code on failure.
1654 */
Maarten Lankhorstb837ba02016-04-26 16:11:35 +02001655int drm_atomic_nonblocking_commit(struct drm_atomic_state *state)
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001656{
1657 struct drm_mode_config *config = &state->dev->mode_config;
1658 int ret;
1659
1660 ret = drm_atomic_check_only(state);
1661 if (ret)
1662 return ret;
1663
Maarten Lankhorstb837ba02016-04-26 16:11:35 +02001664 DRM_DEBUG_ATOMIC("commiting %p nonblocking\n", state);
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001665
1666 return config->funcs->atomic_commit(state->dev, state, true);
1667}
Maarten Lankhorstb837ba02016-04-26 16:11:35 +02001668EXPORT_SYMBOL(drm_atomic_nonblocking_commit);
Rob Clarkd34f20d2014-12-18 16:01:56 -05001669
Rob Clarkfceffb322016-11-05 11:08:09 -04001670static void drm_atomic_print_state(const struct drm_atomic_state *state)
1671{
1672 struct drm_printer p = drm_info_printer(state->dev->dev);
1673 struct drm_plane *plane;
1674 struct drm_plane_state *plane_state;
1675 struct drm_crtc *crtc;
1676 struct drm_crtc_state *crtc_state;
1677 struct drm_connector *connector;
1678 struct drm_connector_state *connector_state;
1679 int i;
1680
1681 DRM_DEBUG_ATOMIC("checking %p\n", state);
1682
Maarten Lankhorst5721a382017-01-16 10:37:40 +01001683 for_each_new_plane_in_state(state, plane, plane_state, i)
Rob Clarkfceffb322016-11-05 11:08:09 -04001684 drm_atomic_plane_print_state(&p, plane_state);
1685
Maarten Lankhorst5721a382017-01-16 10:37:40 +01001686 for_each_new_crtc_in_state(state, crtc, crtc_state, i)
Rob Clarkfceffb322016-11-05 11:08:09 -04001687 drm_atomic_crtc_print_state(&p, crtc_state);
1688
Maarten Lankhorst5721a382017-01-16 10:37:40 +01001689 for_each_new_connector_in_state(state, connector, connector_state, i)
Rob Clarkfceffb322016-11-05 11:08:09 -04001690 drm_atomic_connector_print_state(&p, connector_state);
1691}
1692
Rob Clark6559c902016-11-05 11:08:10 -04001693/**
1694 * drm_state_dump - dump entire device atomic state
1695 * @dev: the drm device
1696 * @p: where to print the state to
1697 *
1698 * Just for debugging. Drivers might want an option to dump state
1699 * to dmesg in case of error irq's. (Hint, you probably want to
1700 * ratelimit this!)
1701 *
1702 * The caller must drm_modeset_lock_all(), or if this is called
1703 * from error irq handler, it should not be enabled by default.
1704 * (Ie. if you are debugging errors you might not care that this
1705 * is racey. But calling this without all modeset locks held is
1706 * not inherently safe.)
1707 */
1708void drm_state_dump(struct drm_device *dev, struct drm_printer *p)
1709{
1710 struct drm_mode_config *config = &dev->mode_config;
1711 struct drm_plane *plane;
1712 struct drm_crtc *crtc;
1713 struct drm_connector *connector;
Daniel Vetter613051d2016-12-14 00:08:06 +01001714 struct drm_connector_list_iter conn_iter;
Rob Clark6559c902016-11-05 11:08:10 -04001715
1716 if (!drm_core_check_feature(dev, DRIVER_ATOMIC))
1717 return;
1718
1719 list_for_each_entry(plane, &config->plane_list, head)
1720 drm_atomic_plane_print_state(p, plane->state);
1721
1722 list_for_each_entry(crtc, &config->crtc_list, head)
1723 drm_atomic_crtc_print_state(p, crtc->state);
1724
Daniel Vetter613051d2016-12-14 00:08:06 +01001725 drm_connector_list_iter_get(dev, &conn_iter);
1726 drm_for_each_connector_iter(connector, &conn_iter)
Rob Clark6559c902016-11-05 11:08:10 -04001727 drm_atomic_connector_print_state(p, connector->state);
Daniel Vetter613051d2016-12-14 00:08:06 +01001728 drm_connector_list_iter_put(&conn_iter);
Rob Clark6559c902016-11-05 11:08:10 -04001729}
1730EXPORT_SYMBOL(drm_state_dump);
1731
1732#ifdef CONFIG_DEBUG_FS
1733static int drm_state_info(struct seq_file *m, void *data)
1734{
1735 struct drm_info_node *node = (struct drm_info_node *) m->private;
1736 struct drm_device *dev = node->minor->dev;
1737 struct drm_printer p = drm_seq_file_printer(m);
1738
1739 drm_modeset_lock_all(dev);
1740 drm_state_dump(dev, &p);
1741 drm_modeset_unlock_all(dev);
1742
1743 return 0;
1744}
1745
1746/* any use in debugfs files to dump individual planes/crtc/etc? */
1747static const struct drm_info_list drm_atomic_debugfs_list[] = {
1748 {"state", drm_state_info, 0},
1749};
1750
1751int drm_atomic_debugfs_init(struct drm_minor *minor)
1752{
1753 return drm_debugfs_create_files(drm_atomic_debugfs_list,
1754 ARRAY_SIZE(drm_atomic_debugfs_list),
1755 minor->debugfs_root, minor);
1756}
1757#endif
1758
Rob Clarkd34f20d2014-12-18 16:01:56 -05001759/*
1760 * The big monstor ioctl
1761 */
1762
1763static struct drm_pending_vblank_event *create_vblank_event(
Gustavo Padovanbeaf5af2016-11-16 22:00:21 +09001764 struct drm_device *dev, uint64_t user_data)
Rob Clarkd34f20d2014-12-18 16:01:56 -05001765{
1766 struct drm_pending_vblank_event *e = NULL;
Rob Clarkd34f20d2014-12-18 16:01:56 -05001767
1768 e = kzalloc(sizeof *e, GFP_KERNEL);
Daniel Vetter2dd500f2016-01-11 22:40:56 +01001769 if (!e)
1770 return NULL;
Rob Clarkd34f20d2014-12-18 16:01:56 -05001771
1772 e->event.base.type = DRM_EVENT_FLIP_COMPLETE;
Daniel Vetter2dd500f2016-01-11 22:40:56 +01001773 e->event.base.length = sizeof(e->event);
Rob Clarkd34f20d2014-12-18 16:01:56 -05001774 e->event.user_data = user_data;
Rob Clarkd34f20d2014-12-18 16:01:56 -05001775
Rob Clarkd34f20d2014-12-18 16:01:56 -05001776 return e;
1777}
1778
Rob Clarkd34f20d2014-12-18 16:01:56 -05001779static int atomic_set_prop(struct drm_atomic_state *state,
1780 struct drm_mode_object *obj, struct drm_property *prop,
1781 uint64_t prop_value)
1782{
1783 struct drm_mode_object *ref;
1784 int ret;
1785
1786 if (!drm_property_change_valid_get(prop, prop_value, &ref))
1787 return -EINVAL;
1788
1789 switch (obj->type) {
1790 case DRM_MODE_OBJECT_CONNECTOR: {
1791 struct drm_connector *connector = obj_to_connector(obj);
1792 struct drm_connector_state *connector_state;
1793
1794 connector_state = drm_atomic_get_connector_state(state, connector);
1795 if (IS_ERR(connector_state)) {
1796 ret = PTR_ERR(connector_state);
1797 break;
1798 }
1799
1800 ret = drm_atomic_connector_set_property(connector,
1801 connector_state, prop, prop_value);
1802 break;
1803 }
1804 case DRM_MODE_OBJECT_CRTC: {
1805 struct drm_crtc *crtc = obj_to_crtc(obj);
1806 struct drm_crtc_state *crtc_state;
1807
1808 crtc_state = drm_atomic_get_crtc_state(state, crtc);
1809 if (IS_ERR(crtc_state)) {
1810 ret = PTR_ERR(crtc_state);
1811 break;
1812 }
1813
1814 ret = drm_atomic_crtc_set_property(crtc,
1815 crtc_state, prop, prop_value);
1816 break;
1817 }
1818 case DRM_MODE_OBJECT_PLANE: {
1819 struct drm_plane *plane = obj_to_plane(obj);
1820 struct drm_plane_state *plane_state;
1821
1822 plane_state = drm_atomic_get_plane_state(state, plane);
1823 if (IS_ERR(plane_state)) {
1824 ret = PTR_ERR(plane_state);
1825 break;
1826 }
1827
1828 ret = drm_atomic_plane_set_property(plane,
1829 plane_state, prop, prop_value);
1830 break;
1831 }
1832 default:
1833 ret = -EINVAL;
1834 break;
1835 }
1836
1837 drm_property_change_valid_put(prop, ref);
1838 return ret;
1839}
1840
Maarten Lankhorst0f45c262015-11-11 11:29:09 +01001841/**
Maarten Lankhorst9744bf42015-11-24 10:34:34 +01001842 * drm_atomic_clean_old_fb -- Unset old_fb pointers and set plane->fb pointers.
Maarten Lankhorst0f45c262015-11-11 11:29:09 +01001843 *
1844 * @dev: drm device to check.
1845 * @plane_mask: plane mask for planes that were updated.
1846 * @ret: return value, can be -EDEADLK for a retry.
1847 *
Daniel Vetterd5745282017-01-25 07:26:45 +01001848 * Before doing an update &drm_plane.old_fb is set to &drm_plane.fb, but before
1849 * dropping the locks old_fb needs to be set to NULL and plane->fb updated. This
1850 * is a common operation for each atomic update, so this call is split off as a
1851 * helper.
Maarten Lankhorst0f45c262015-11-11 11:29:09 +01001852 */
1853void drm_atomic_clean_old_fb(struct drm_device *dev,
1854 unsigned plane_mask,
1855 int ret)
1856{
1857 struct drm_plane *plane;
1858
1859 /* if succeeded, fixup legacy plane crtc/fb ptrs before dropping
1860 * locks (ie. while it is still safe to deref plane->state). We
1861 * need to do this here because the driver entry points cannot
1862 * distinguish between legacy and atomic ioctls.
1863 */
1864 drm_for_each_plane_mask(plane, dev, plane_mask) {
1865 if (ret == 0) {
1866 struct drm_framebuffer *new_fb = plane->state->fb;
1867 if (new_fb)
1868 drm_framebuffer_reference(new_fb);
1869 plane->fb = new_fb;
1870 plane->crtc = plane->state->crtc;
1871
1872 if (plane->old_fb)
1873 drm_framebuffer_unreference(plane->old_fb);
1874 }
1875 plane->old_fb = NULL;
1876 }
1877}
1878EXPORT_SYMBOL(drm_atomic_clean_old_fb);
1879
Gustavo Padovan9a83a712016-11-22 09:11:28 +09001880/**
1881 * DOC: explicit fencing properties
1882 *
1883 * Explicit fencing allows userspace to control the buffer synchronization
1884 * between devices. A Fence or a group of fences are transfered to/from
1885 * userspace using Sync File fds and there are two DRM properties for that.
1886 * IN_FENCE_FD on each DRM Plane to send fences to the kernel and
1887 * OUT_FENCE_PTR on each DRM CRTC to receive fences from the kernel.
1888 *
1889 * As a contrast, with implicit fencing the kernel keeps track of any
1890 * ongoing rendering, and automatically ensures that the atomic update waits
1891 * for any pending rendering to complete. For shared buffers represented with
Daniel Vetterd5745282017-01-25 07:26:45 +01001892 * a &struct dma_buf this is tracked in &struct reservation_object.
Gustavo Padovan9a83a712016-11-22 09:11:28 +09001893 * Implicit syncing is how Linux traditionally worked (e.g. DRI2/3 on X.org),
1894 * whereas explicit fencing is what Android wants.
1895 *
1896 * "IN_FENCE_FD”:
1897 * Use this property to pass a fence that DRM should wait on before
1898 * proceeding with the Atomic Commit request and show the framebuffer for
1899 * the plane on the screen. The fence can be either a normal fence or a
1900 * merged one, the sync_file framework will handle both cases and use a
1901 * fence_array if a merged fence is received. Passing -1 here means no
1902 * fences to wait on.
1903 *
1904 * If the Atomic Commit request has the DRM_MODE_ATOMIC_TEST_ONLY flag
1905 * it will only check if the Sync File is a valid one.
1906 *
1907 * On the driver side the fence is stored on the @fence parameter of
Daniel Vetterea0dd852016-12-29 21:48:26 +01001908 * &struct drm_plane_state. Drivers which also support implicit fencing
Gustavo Padovan9a83a712016-11-22 09:11:28 +09001909 * should set the implicit fence using drm_atomic_set_fence_for_plane(),
1910 * to make sure there's consistent behaviour between drivers in precedence
1911 * of implicit vs. explicit fencing.
1912 *
1913 * "OUT_FENCE_PTR”:
1914 * Use this property to pass a file descriptor pointer to DRM. Once the
1915 * Atomic Commit request call returns OUT_FENCE_PTR will be filled with
1916 * the file descriptor number of a Sync File. This Sync File contains the
1917 * CRTC fence that will be signaled when all framebuffers present on the
1918 * Atomic Commit * request for that given CRTC are scanned out on the
1919 * screen.
1920 *
1921 * The Atomic Commit request fails if a invalid pointer is passed. If the
1922 * Atomic Commit request fails for any other reason the out fence fd
1923 * returned will be -1. On a Atomic Commit with the
1924 * DRM_MODE_ATOMIC_TEST_ONLY flag the out fence will also be set to -1.
1925 *
1926 * Note that out-fences don't have a special interface to drivers and are
Daniel Vetterea0dd852016-12-29 21:48:26 +01001927 * internally represented by a &struct drm_pending_vblank_event in struct
Gustavo Padovan9a83a712016-11-22 09:11:28 +09001928 * &drm_crtc_state, which is also used by the nonblocking atomic commit
1929 * helpers and for the DRM event handling for existing userspace.
1930 */
1931
Gustavo Padovanbeaf5af2016-11-16 22:00:21 +09001932struct drm_out_fence_state {
Gustavo Padovan7e9081c2017-01-13 12:22:09 -02001933 s32 __user *out_fence_ptr;
Gustavo Padovanbeaf5af2016-11-16 22:00:21 +09001934 struct sync_file *sync_file;
1935 int fd;
1936};
1937
1938static int setup_out_fence(struct drm_out_fence_state *fence_state,
1939 struct dma_fence *fence)
1940{
1941 fence_state->fd = get_unused_fd_flags(O_CLOEXEC);
1942 if (fence_state->fd < 0)
1943 return fence_state->fd;
1944
1945 if (put_user(fence_state->fd, fence_state->out_fence_ptr))
1946 return -EFAULT;
1947
1948 fence_state->sync_file = sync_file_create(fence);
1949 if (!fence_state->sync_file)
1950 return -ENOMEM;
1951
1952 return 0;
1953}
1954
1955static int prepare_crtc_signaling(struct drm_device *dev,
1956 struct drm_atomic_state *state,
1957 struct drm_mode_atomic *arg,
1958 struct drm_file *file_priv,
1959 struct drm_out_fence_state **fence_state,
1960 unsigned int *num_fences)
1961{
1962 struct drm_crtc *crtc;
1963 struct drm_crtc_state *crtc_state;
1964 int i, ret;
1965
1966 if (arg->flags & DRM_MODE_ATOMIC_TEST_ONLY)
1967 return 0;
1968
Maarten Lankhorst5721a382017-01-16 10:37:40 +01001969 for_each_new_crtc_in_state(state, crtc, crtc_state, i) {
Gustavo Padovan7e9081c2017-01-13 12:22:09 -02001970 s32 __user *fence_ptr;
Gustavo Padovanbeaf5af2016-11-16 22:00:21 +09001971
1972 fence_ptr = get_out_fence_for_crtc(crtc_state->state, crtc);
1973
1974 if (arg->flags & DRM_MODE_PAGE_FLIP_EVENT || fence_ptr) {
1975 struct drm_pending_vblank_event *e;
1976
1977 e = create_vblank_event(dev, arg->user_data);
1978 if (!e)
1979 return -ENOMEM;
1980
1981 crtc_state->event = e;
1982 }
1983
1984 if (arg->flags & DRM_MODE_PAGE_FLIP_EVENT) {
1985 struct drm_pending_vblank_event *e = crtc_state->event;
1986
1987 if (!file_priv)
1988 continue;
1989
1990 ret = drm_event_reserve_init(dev, file_priv, &e->base,
1991 &e->event.base);
1992 if (ret) {
1993 kfree(e);
1994 crtc_state->event = NULL;
1995 return ret;
1996 }
1997 }
1998
1999 if (fence_ptr) {
2000 struct dma_fence *fence;
2001 struct drm_out_fence_state *f;
2002
2003 f = krealloc(*fence_state, sizeof(**fence_state) *
2004 (*num_fences + 1), GFP_KERNEL);
2005 if (!f)
2006 return -ENOMEM;
2007
2008 memset(&f[*num_fences], 0, sizeof(*f));
2009
2010 f[*num_fences].out_fence_ptr = fence_ptr;
2011 *fence_state = f;
2012
Gustavo Padovan35f8cc32016-12-06 15:47:17 -02002013 fence = drm_crtc_create_fence(crtc);
Gustavo Padovanbeaf5af2016-11-16 22:00:21 +09002014 if (!fence)
2015 return -ENOMEM;
2016
2017 ret = setup_out_fence(&f[(*num_fences)++], fence);
2018 if (ret) {
2019 dma_fence_put(fence);
2020 return ret;
2021 }
2022
2023 crtc_state->event->base.fence = fence;
2024 }
2025 }
2026
2027 return 0;
2028}
2029
2030static void complete_crtc_signaling(struct drm_device *dev,
2031 struct drm_atomic_state *state,
2032 struct drm_out_fence_state *fence_state,
2033 unsigned int num_fences,
2034 bool install_fds)
2035{
2036 struct drm_crtc *crtc;
2037 struct drm_crtc_state *crtc_state;
2038 int i;
2039
2040 if (install_fds) {
2041 for (i = 0; i < num_fences; i++)
2042 fd_install(fence_state[i].fd,
2043 fence_state[i].sync_file->file);
2044
2045 kfree(fence_state);
2046 return;
2047 }
2048
Maarten Lankhorst5721a382017-01-16 10:37:40 +01002049 for_each_new_crtc_in_state(state, crtc, crtc_state, i) {
Maarten Lankhorst92c715f2017-01-31 10:25:25 +01002050 struct drm_pending_vblank_event *event = crtc_state->event;
Gustavo Padovanbeaf5af2016-11-16 22:00:21 +09002051 /*
Maarten Lankhorst92c715f2017-01-31 10:25:25 +01002052 * Free the allocated event. drm_atomic_helper_setup_commit
2053 * can allocate an event too, so only free it if it's ours
2054 * to prevent a double free in drm_atomic_state_clear.
Gustavo Padovanbeaf5af2016-11-16 22:00:21 +09002055 */
Maarten Lankhorst92c715f2017-01-31 10:25:25 +01002056 if (event && (event->base.fence || event->base.file_priv)) {
2057 drm_event_cancel_free(dev, &event->base);
2058 crtc_state->event = NULL;
2059 }
Gustavo Padovanbeaf5af2016-11-16 22:00:21 +09002060 }
2061
2062 if (!fence_state)
2063 return;
2064
2065 for (i = 0; i < num_fences; i++) {
2066 if (fence_state[i].sync_file)
2067 fput(fence_state[i].sync_file->file);
2068 if (fence_state[i].fd >= 0)
2069 put_unused_fd(fence_state[i].fd);
2070
2071 /* If this fails log error to the user */
2072 if (fence_state[i].out_fence_ptr &&
2073 put_user(-1, fence_state[i].out_fence_ptr))
2074 DRM_DEBUG_ATOMIC("Couldn't clear out_fence_ptr\n");
2075 }
2076
2077 kfree(fence_state);
2078}
2079
Maarten Lankhorstdb8f6402017-02-21 14:51:41 +01002080int drm_atomic_remove_fb(struct drm_framebuffer *fb)
2081{
2082 struct drm_modeset_acquire_ctx ctx;
2083 struct drm_device *dev = fb->dev;
2084 struct drm_atomic_state *state;
2085 struct drm_plane *plane;
2086 struct drm_connector *conn;
2087 struct drm_connector_state *conn_state;
2088 int i, ret = 0;
2089 unsigned plane_mask;
2090
2091 state = drm_atomic_state_alloc(dev);
2092 if (!state)
2093 return -ENOMEM;
2094
2095 drm_modeset_acquire_init(&ctx, 0);
2096 state->acquire_ctx = &ctx;
2097
2098retry:
2099 plane_mask = 0;
2100 ret = drm_modeset_lock_all_ctx(dev, &ctx);
2101 if (ret)
2102 goto unlock;
2103
2104 drm_for_each_plane(plane, dev) {
2105 struct drm_plane_state *plane_state;
2106
2107 if (plane->state->fb != fb)
2108 continue;
2109
2110 plane_state = drm_atomic_get_plane_state(state, plane);
2111 if (IS_ERR(plane_state)) {
2112 ret = PTR_ERR(plane_state);
2113 goto unlock;
2114 }
2115
2116 if (plane_state->crtc->primary == plane) {
2117 struct drm_crtc_state *crtc_state;
2118
2119 crtc_state = drm_atomic_get_existing_crtc_state(state, plane_state->crtc);
2120
2121 ret = drm_atomic_add_affected_connectors(state, plane_state->crtc);
2122 if (ret)
2123 goto unlock;
2124
2125 crtc_state->active = false;
2126 ret = drm_atomic_set_mode_for_crtc(crtc_state, NULL);
2127 if (ret)
2128 goto unlock;
2129 }
2130
2131 drm_atomic_set_fb_for_plane(plane_state, NULL);
2132 ret = drm_atomic_set_crtc_for_plane(plane_state, NULL);
2133 if (ret)
2134 goto unlock;
2135
2136 plane_mask |= BIT(drm_plane_index(plane));
2137
2138 plane->old_fb = plane->fb;
2139 }
2140
2141 for_each_connector_in_state(state, conn, conn_state, i) {
2142 ret = drm_atomic_set_crtc_for_connector(conn_state, NULL);
2143
2144 if (ret)
2145 goto unlock;
2146 }
2147
2148 if (plane_mask)
2149 ret = drm_atomic_commit(state);
2150
2151unlock:
2152 if (plane_mask)
2153 drm_atomic_clean_old_fb(dev, plane_mask, ret);
2154
2155 if (ret == -EDEADLK) {
2156 drm_modeset_backoff(&ctx);
2157 goto retry;
2158 }
2159
2160 drm_atomic_state_put(state);
2161
2162 drm_modeset_drop_locks(&ctx);
2163 drm_modeset_acquire_fini(&ctx);
2164
2165 return ret;
2166}
2167
Rob Clarkd34f20d2014-12-18 16:01:56 -05002168int drm_mode_atomic_ioctl(struct drm_device *dev,
2169 void *data, struct drm_file *file_priv)
2170{
2171 struct drm_mode_atomic *arg = data;
2172 uint32_t __user *objs_ptr = (uint32_t __user *)(unsigned long)(arg->objs_ptr);
2173 uint32_t __user *count_props_ptr = (uint32_t __user *)(unsigned long)(arg->count_props_ptr);
2174 uint32_t __user *props_ptr = (uint32_t __user *)(unsigned long)(arg->props_ptr);
2175 uint64_t __user *prop_values_ptr = (uint64_t __user *)(unsigned long)(arg->prop_values_ptr);
2176 unsigned int copied_objs, copied_props;
2177 struct drm_atomic_state *state;
2178 struct drm_modeset_acquire_ctx ctx;
2179 struct drm_plane *plane;
Gustavo Padovanbeaf5af2016-11-16 22:00:21 +09002180 struct drm_out_fence_state *fence_state = NULL;
Maarten Lankhorst45723722015-11-11 11:29:08 +01002181 unsigned plane_mask;
Rob Clarkd34f20d2014-12-18 16:01:56 -05002182 int ret = 0;
Gustavo Padovanbeaf5af2016-11-16 22:00:21 +09002183 unsigned int i, j, num_fences = 0;
Rob Clarkd34f20d2014-12-18 16:01:56 -05002184
2185 /* disallow for drivers not supporting atomic: */
2186 if (!drm_core_check_feature(dev, DRIVER_ATOMIC))
2187 return -EINVAL;
2188
2189 /* disallow for userspace that has not enabled atomic cap (even
2190 * though this may be a bit overkill, since legacy userspace
2191 * wouldn't know how to call this ioctl)
2192 */
2193 if (!file_priv->atomic)
2194 return -EINVAL;
2195
2196 if (arg->flags & ~DRM_MODE_ATOMIC_FLAGS)
2197 return -EINVAL;
2198
2199 if (arg->reserved)
2200 return -EINVAL;
2201
2202 if ((arg->flags & DRM_MODE_PAGE_FLIP_ASYNC) &&
2203 !dev->mode_config.async_page_flip)
2204 return -EINVAL;
2205
2206 /* can't test and expect an event at the same time. */
2207 if ((arg->flags & DRM_MODE_ATOMIC_TEST_ONLY) &&
2208 (arg->flags & DRM_MODE_PAGE_FLIP_EVENT))
2209 return -EINVAL;
2210
2211 drm_modeset_acquire_init(&ctx, 0);
2212
2213 state = drm_atomic_state_alloc(dev);
2214 if (!state)
2215 return -ENOMEM;
2216
2217 state->acquire_ctx = &ctx;
2218 state->allow_modeset = !!(arg->flags & DRM_MODE_ATOMIC_ALLOW_MODESET);
2219
2220retry:
Maarten Lankhorst45723722015-11-11 11:29:08 +01002221 plane_mask = 0;
Rob Clarkd34f20d2014-12-18 16:01:56 -05002222 copied_objs = 0;
2223 copied_props = 0;
2224
2225 for (i = 0; i < arg->count_objs; i++) {
2226 uint32_t obj_id, count_props;
2227 struct drm_mode_object *obj;
2228
2229 if (get_user(obj_id, objs_ptr + copied_objs)) {
2230 ret = -EFAULT;
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02002231 goto out;
Rob Clarkd34f20d2014-12-18 16:01:56 -05002232 }
2233
2234 obj = drm_mode_object_find(dev, obj_id, DRM_MODE_OBJECT_ANY);
Dave Airlieb164d312016-04-27 11:10:09 +10002235 if (!obj) {
2236 ret = -ENOENT;
2237 goto out;
2238 }
2239
2240 if (!obj->properties) {
Thierry Reding020a2182017-02-28 15:46:38 +01002241 drm_mode_object_put(obj);
Rob Clarkd34f20d2014-12-18 16:01:56 -05002242 ret = -ENOENT;
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02002243 goto out;
Rob Clarkd34f20d2014-12-18 16:01:56 -05002244 }
2245
Rob Clarkd34f20d2014-12-18 16:01:56 -05002246 if (get_user(count_props, count_props_ptr + copied_objs)) {
Thierry Reding020a2182017-02-28 15:46:38 +01002247 drm_mode_object_put(obj);
Rob Clarkd34f20d2014-12-18 16:01:56 -05002248 ret = -EFAULT;
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02002249 goto out;
Rob Clarkd34f20d2014-12-18 16:01:56 -05002250 }
2251
2252 copied_objs++;
2253
2254 for (j = 0; j < count_props; j++) {
2255 uint32_t prop_id;
2256 uint64_t prop_value;
2257 struct drm_property *prop;
2258
2259 if (get_user(prop_id, props_ptr + copied_props)) {
Thierry Reding020a2182017-02-28 15:46:38 +01002260 drm_mode_object_put(obj);
Rob Clarkd34f20d2014-12-18 16:01:56 -05002261 ret = -EFAULT;
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02002262 goto out;
Rob Clarkd34f20d2014-12-18 16:01:56 -05002263 }
2264
Maarten Lankhorstf92f0532016-09-08 12:30:01 +02002265 prop = drm_mode_obj_find_prop_id(obj, prop_id);
Rob Clarkd34f20d2014-12-18 16:01:56 -05002266 if (!prop) {
Thierry Reding020a2182017-02-28 15:46:38 +01002267 drm_mode_object_put(obj);
Rob Clarkd34f20d2014-12-18 16:01:56 -05002268 ret = -ENOENT;
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02002269 goto out;
Rob Clarkd34f20d2014-12-18 16:01:56 -05002270 }
2271
Guenter Roeck42c58142015-01-12 21:12:17 -08002272 if (copy_from_user(&prop_value,
2273 prop_values_ptr + copied_props,
2274 sizeof(prop_value))) {
Thierry Reding020a2182017-02-28 15:46:38 +01002275 drm_mode_object_put(obj);
Rob Clarkd34f20d2014-12-18 16:01:56 -05002276 ret = -EFAULT;
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02002277 goto out;
Rob Clarkd34f20d2014-12-18 16:01:56 -05002278 }
2279
2280 ret = atomic_set_prop(state, obj, prop, prop_value);
Dave Airlieb164d312016-04-27 11:10:09 +10002281 if (ret) {
Thierry Reding020a2182017-02-28 15:46:38 +01002282 drm_mode_object_put(obj);
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02002283 goto out;
Dave Airlieb164d312016-04-27 11:10:09 +10002284 }
Rob Clarkd34f20d2014-12-18 16:01:56 -05002285
2286 copied_props++;
2287 }
Maarten Lankhorsta9cc54e2015-06-24 08:59:24 +02002288
Maarten Lankhorstc4749c92015-08-31 12:25:04 +02002289 if (obj->type == DRM_MODE_OBJECT_PLANE && count_props &&
2290 !(arg->flags & DRM_MODE_ATOMIC_TEST_ONLY)) {
Maarten Lankhorsta9cc54e2015-06-24 08:59:24 +02002291 plane = obj_to_plane(obj);
2292 plane_mask |= (1 << drm_plane_index(plane));
2293 plane->old_fb = plane->fb;
2294 }
Thierry Reding020a2182017-02-28 15:46:38 +01002295 drm_mode_object_put(obj);
Rob Clarkd34f20d2014-12-18 16:01:56 -05002296 }
2297
Gustavo Padovanbeaf5af2016-11-16 22:00:21 +09002298 ret = prepare_crtc_signaling(dev, state, arg, file_priv, &fence_state,
2299 &num_fences);
2300 if (ret)
2301 goto out;
Rob Clarkd34f20d2014-12-18 16:01:56 -05002302
2303 if (arg->flags & DRM_MODE_ATOMIC_TEST_ONLY) {
2304 ret = drm_atomic_check_only(state);
Rob Clarkd34f20d2014-12-18 16:01:56 -05002305 } else if (arg->flags & DRM_MODE_ATOMIC_NONBLOCK) {
Maarten Lankhorstb837ba02016-04-26 16:11:35 +02002306 ret = drm_atomic_nonblocking_commit(state);
Rob Clarkd34f20d2014-12-18 16:01:56 -05002307 } else {
Rob Clarkfceffb322016-11-05 11:08:09 -04002308 if (unlikely(drm_debug & DRM_UT_STATE))
2309 drm_atomic_print_state(state);
2310
Rob Clarkd34f20d2014-12-18 16:01:56 -05002311 ret = drm_atomic_commit(state);
2312 }
2313
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02002314out:
Maarten Lankhorst0f45c262015-11-11 11:29:09 +01002315 drm_atomic_clean_old_fb(dev, plane_mask, ret);
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02002316
Gustavo Padovanbeaf5af2016-11-16 22:00:21 +09002317 complete_crtc_signaling(dev, state, fence_state, num_fences, !ret);
Maarten Lankhorstc4749c92015-08-31 12:25:04 +02002318
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02002319 if (ret == -EDEADLK) {
2320 drm_atomic_state_clear(state);
2321 drm_modeset_backoff(&ctx);
2322 goto retry;
2323 }
2324
Chris Wilson08536952016-10-14 13:18:18 +01002325 drm_atomic_state_put(state);
Rob Clarkd34f20d2014-12-18 16:01:56 -05002326
2327 drm_modeset_drop_locks(&ctx);
2328 drm_modeset_acquire_fini(&ctx);
2329
2330 return ret;
Rob Clarkd34f20d2014-12-18 16:01:56 -05002331}