blob: 684c9d3a1d6cb1abcb705f01b24a26579a7c5afb [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>
Rob Clarkfceffb322016-11-05 11:08:09 -040032#include <drm/drm_print.h>
Brian Starkey935774c2017-03-29 17:42:32 +010033#include <drm/drm_writeback.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"
Noralf Trønnesf02b6042017-11-07 20:13:41 +010037#include "drm_internal.h"
Thierry Redingbe35f942016-04-28 15:19:56 +020038
Daniel Vetterb3ba3f62016-12-21 14:03:35 +010039void __drm_crtc_commit_free(struct kref *kref)
Daniel Vetter3b24f7d2016-06-08 14:19:00 +020040{
41 struct drm_crtc_commit *commit =
42 container_of(kref, struct drm_crtc_commit, ref);
43
44 kfree(commit);
45}
Daniel Vetterb3ba3f62016-12-21 14:03:35 +010046EXPORT_SYMBOL(__drm_crtc_commit_free);
Daniel Vetter3b24f7d2016-06-08 14:19:00 +020047
Maarten Lankhorst036ef572015-05-18 10:06:40 +020048/**
49 * drm_atomic_state_default_release -
50 * release memory initialized by drm_atomic_state_init
51 * @state: atomic state
52 *
53 * Free all the memory allocated by drm_atomic_state_init.
Daniel Vetterda6c0592017-12-14 21:30:53 +010054 * This should only be used by drivers which are still subclassing
55 * &drm_atomic_state and haven't switched to &drm_private_state yet.
Maarten Lankhorst036ef572015-05-18 10:06:40 +020056 */
57void drm_atomic_state_default_release(struct drm_atomic_state *state)
Daniel Vettercc4ceb42014-07-25 21:30:38 +020058{
59 kfree(state->connectors);
Daniel Vettercc4ceb42014-07-25 21:30:38 +020060 kfree(state->crtcs);
Daniel Vettercc4ceb42014-07-25 21:30:38 +020061 kfree(state->planes);
Pandiyan, Dhinakaranb430c272017-04-20 22:51:30 -070062 kfree(state->private_objs);
Daniel Vettercc4ceb42014-07-25 21:30:38 +020063}
Maarten Lankhorst036ef572015-05-18 10:06:40 +020064EXPORT_SYMBOL(drm_atomic_state_default_release);
Daniel Vettercc4ceb42014-07-25 21:30:38 +020065
66/**
Maarten Lankhorst036ef572015-05-18 10:06:40 +020067 * drm_atomic_state_init - init new atomic state
Daniel Vettercc4ceb42014-07-25 21:30:38 +020068 * @dev: DRM device
Maarten Lankhorst036ef572015-05-18 10:06:40 +020069 * @state: atomic state
Daniel Vettercc4ceb42014-07-25 21:30:38 +020070 *
Maarten Lankhorst036ef572015-05-18 10:06:40 +020071 * Default implementation for filling in a new atomic state.
Daniel Vetterda6c0592017-12-14 21:30:53 +010072 * This should only be used by drivers which are still subclassing
73 * &drm_atomic_state and haven't switched to &drm_private_state yet.
Daniel Vettercc4ceb42014-07-25 21:30:38 +020074 */
Maarten Lankhorst036ef572015-05-18 10:06:40 +020075int
76drm_atomic_state_init(struct drm_device *dev, struct drm_atomic_state *state)
Daniel Vettercc4ceb42014-07-25 21:30:38 +020077{
Chris Wilson08536952016-10-14 13:18:18 +010078 kref_init(&state->ref);
79
Rob Clarkd34f20d2014-12-18 16:01:56 -050080 /* TODO legacy paths should maybe do a better job about
81 * setting this appropriately?
82 */
83 state->allow_modeset = true;
84
Daniel Vettercc4ceb42014-07-25 21:30:38 +020085 state->crtcs = kcalloc(dev->mode_config.num_crtc,
86 sizeof(*state->crtcs), GFP_KERNEL);
87 if (!state->crtcs)
88 goto fail;
Daniel Vettercc4ceb42014-07-25 21:30:38 +020089 state->planes = kcalloc(dev->mode_config.num_total_plane,
90 sizeof(*state->planes), GFP_KERNEL);
91 if (!state->planes)
92 goto fail;
Daniel Vettercc4ceb42014-07-25 21:30:38 +020093
94 state->dev = dev;
95
Maarten Lankhorst036ef572015-05-18 10:06:40 +020096 DRM_DEBUG_ATOMIC("Allocated atomic state %p\n", state);
Daniel Vettercc4ceb42014-07-25 21:30:38 +020097
Maarten Lankhorst036ef572015-05-18 10:06:40 +020098 return 0;
Daniel Vettercc4ceb42014-07-25 21:30:38 +020099fail:
Maarten Lankhorst036ef572015-05-18 10:06:40 +0200100 drm_atomic_state_default_release(state);
101 return -ENOMEM;
102}
103EXPORT_SYMBOL(drm_atomic_state_init);
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200104
Maarten Lankhorst036ef572015-05-18 10:06:40 +0200105/**
106 * drm_atomic_state_alloc - allocate atomic state
107 * @dev: DRM device
108 *
109 * This allocates an empty atomic state to track updates.
110 */
111struct drm_atomic_state *
112drm_atomic_state_alloc(struct drm_device *dev)
113{
114 struct drm_mode_config *config = &dev->mode_config;
Maarten Lankhorst036ef572015-05-18 10:06:40 +0200115
116 if (!config->funcs->atomic_state_alloc) {
Dawid Kurekac7c7482017-06-15 19:45:56 +0200117 struct drm_atomic_state *state;
118
Maarten Lankhorst036ef572015-05-18 10:06:40 +0200119 state = kzalloc(sizeof(*state), GFP_KERNEL);
120 if (!state)
121 return NULL;
122 if (drm_atomic_state_init(dev, state) < 0) {
123 kfree(state);
124 return NULL;
125 }
126 return state;
127 }
128
129 return config->funcs->atomic_state_alloc(dev);
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200130}
131EXPORT_SYMBOL(drm_atomic_state_alloc);
132
133/**
Maarten Lankhorst036ef572015-05-18 10:06:40 +0200134 * drm_atomic_state_default_clear - clear base atomic state
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200135 * @state: atomic state
136 *
Maarten Lankhorst036ef572015-05-18 10:06:40 +0200137 * Default implementation for clearing atomic state.
Daniel Vetterda6c0592017-12-14 21:30:53 +0100138 * This should only be used by drivers which are still subclassing
139 * &drm_atomic_state and haven't switched to &drm_private_state yet.
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200140 */
Maarten Lankhorst036ef572015-05-18 10:06:40 +0200141void drm_atomic_state_default_clear(struct drm_atomic_state *state)
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200142{
143 struct drm_device *dev = state->dev;
Daniel Vetter6f75cea2014-11-19 18:38:07 +0100144 struct drm_mode_config *config = &dev->mode_config;
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200145 int i;
146
Daniel Vetter17a38d92015-02-22 12:24:16 +0100147 DRM_DEBUG_ATOMIC("Clearing atomic state %p\n", state);
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200148
Daniel Vetterf52b69f12014-11-19 18:38:08 +0100149 for (i = 0; i < state->num_connector; i++) {
Daniel Vetter63e83c12016-06-02 00:06:32 +0200150 struct drm_connector *connector = state->connectors[i].ptr;
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200151
152 if (!connector)
153 continue;
154
Dave Airlied2307de2016-04-27 11:27:39 +1000155 connector->funcs->atomic_destroy_state(connector,
Daniel Vetter63e83c12016-06-02 00:06:32 +0200156 state->connectors[i].state);
157 state->connectors[i].ptr = NULL;
158 state->connectors[i].state = NULL;
Ville Syrjäläf0b408e2018-05-02 21:32:47 +0300159 state->connectors[i].old_state = NULL;
160 state->connectors[i].new_state = NULL;
Thierry Redingad093602017-02-28 15:46:39 +0100161 drm_connector_put(connector);
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200162 }
163
Daniel Vetter6f75cea2014-11-19 18:38:07 +0100164 for (i = 0; i < config->num_crtc; i++) {
Daniel Vetter5d943aa62016-06-02 00:06:34 +0200165 struct drm_crtc *crtc = state->crtcs[i].ptr;
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200166
167 if (!crtc)
168 continue;
169
170 crtc->funcs->atomic_destroy_state(crtc,
Daniel Vetter5d943aa62016-06-02 00:06:34 +0200171 state->crtcs[i].state);
Daniel Vetter3b24f7d2016-06-08 14:19:00 +0200172
Daniel Vetter5d943aa62016-06-02 00:06:34 +0200173 state->crtcs[i].ptr = NULL;
174 state->crtcs[i].state = NULL;
Ville Syrjäläf0b408e2018-05-02 21:32:47 +0300175 state->crtcs[i].old_state = NULL;
176 state->crtcs[i].new_state = NULL;
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200177 }
178
Daniel Vetter6f75cea2014-11-19 18:38:07 +0100179 for (i = 0; i < config->num_total_plane; i++) {
Daniel Vetterb8b53422016-06-02 00:06:33 +0200180 struct drm_plane *plane = state->planes[i].ptr;
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200181
182 if (!plane)
183 continue;
184
185 plane->funcs->atomic_destroy_state(plane,
Daniel Vetterb8b53422016-06-02 00:06:33 +0200186 state->planes[i].state);
187 state->planes[i].ptr = NULL;
188 state->planes[i].state = NULL;
Ville Syrjäläf0b408e2018-05-02 21:32:47 +0300189 state->planes[i].old_state = NULL;
190 state->planes[i].new_state = NULL;
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200191 }
Pandiyan, Dhinakaranb430c272017-04-20 22:51:30 -0700192
193 for (i = 0; i < state->num_private_objs; i++) {
Ville Syrjäläa4370c72017-07-12 18:51:02 +0300194 struct drm_private_obj *obj = state->private_objs[i].ptr;
Pandiyan, Dhinakaranb430c272017-04-20 22:51:30 -0700195
Ville Syrjäläa4370c72017-07-12 18:51:02 +0300196 obj->funcs->atomic_destroy_state(obj,
197 state->private_objs[i].state);
198 state->private_objs[i].ptr = NULL;
199 state->private_objs[i].state = NULL;
Ville Syrjäläb5cb2e52018-05-02 21:32:47 +0300200 state->private_objs[i].old_state = NULL;
201 state->private_objs[i].new_state = NULL;
Pandiyan, Dhinakaranb430c272017-04-20 22:51:30 -0700202 }
203 state->num_private_objs = 0;
204
Maarten Lankhorst21a01ab2017-09-04 12:48:37 +0200205 if (state->fake_commit) {
206 drm_crtc_commit_put(state->fake_commit);
207 state->fake_commit = NULL;
208 }
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200209}
Maarten Lankhorst036ef572015-05-18 10:06:40 +0200210EXPORT_SYMBOL(drm_atomic_state_default_clear);
211
212/**
213 * drm_atomic_state_clear - clear state object
214 * @state: atomic state
215 *
216 * When the w/w mutex algorithm detects a deadlock we need to back off and drop
217 * all locks. So someone else could sneak in and change the current modeset
218 * configuration. Which means that all the state assembled in @state is no
219 * longer an atomic update to the current state, but to some arbitrary earlier
Daniel Vetterd5745282017-01-25 07:26:45 +0100220 * state. Which could break assumptions the driver's
221 * &drm_mode_config_funcs.atomic_check likely relies on.
Maarten Lankhorst036ef572015-05-18 10:06:40 +0200222 *
223 * Hence we must clear all cached state and completely start over, using this
224 * function.
225 */
226void drm_atomic_state_clear(struct drm_atomic_state *state)
227{
228 struct drm_device *dev = state->dev;
229 struct drm_mode_config *config = &dev->mode_config;
230
231 if (config->funcs->atomic_state_clear)
232 config->funcs->atomic_state_clear(state);
233 else
234 drm_atomic_state_default_clear(state);
235}
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200236EXPORT_SYMBOL(drm_atomic_state_clear);
237
238/**
Chris Wilson08536952016-10-14 13:18:18 +0100239 * __drm_atomic_state_free - free all memory for an atomic state
240 * @ref: This atomic state to deallocate
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200241 *
242 * This frees all memory associated with an atomic state, including all the
243 * per-object state for planes, crtcs and connectors.
244 */
Chris Wilson08536952016-10-14 13:18:18 +0100245void __drm_atomic_state_free(struct kref *ref)
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200246{
Chris Wilson08536952016-10-14 13:18:18 +0100247 struct drm_atomic_state *state = container_of(ref, typeof(*state), ref);
248 struct drm_mode_config *config = &state->dev->mode_config;
Maarten Lankhorst036ef572015-05-18 10:06:40 +0200249
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200250 drm_atomic_state_clear(state);
251
Daniel Vetter17a38d92015-02-22 12:24:16 +0100252 DRM_DEBUG_ATOMIC("Freeing atomic state %p\n", state);
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200253
Maarten Lankhorst036ef572015-05-18 10:06:40 +0200254 if (config->funcs->atomic_state_free) {
255 config->funcs->atomic_state_free(state);
256 } else {
257 drm_atomic_state_default_release(state);
258 kfree(state);
259 }
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200260}
Chris Wilson08536952016-10-14 13:18:18 +0100261EXPORT_SYMBOL(__drm_atomic_state_free);
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200262
263/**
264 * drm_atomic_get_crtc_state - get crtc state
265 * @state: global atomic state object
266 * @crtc: crtc to get state object for
267 *
268 * This function returns the crtc state for the given crtc, allocating it if
269 * needed. It will also grab the relevant crtc lock to make sure that the state
270 * is consistent.
271 *
272 * Returns:
273 *
274 * Either the allocated state or the error code encoded into the pointer. When
275 * the error is EDEADLK then the w/w mutex code has detected a deadlock and the
276 * entire atomic sequence must be restarted. All other errors are fatal.
277 */
278struct drm_crtc_state *
279drm_atomic_get_crtc_state(struct drm_atomic_state *state,
280 struct drm_crtc *crtc)
281{
Maarten Lankhorst1b26a5e2015-05-13 10:37:25 +0200282 int ret, index = drm_crtc_index(crtc);
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200283 struct drm_crtc_state *crtc_state;
284
Maarten Lankhorst7f4eaa82016-05-03 11:12:31 +0200285 WARN_ON(!state->acquire_ctx);
286
Maarten Lankhorst1b26a5e2015-05-13 10:37:25 +0200287 crtc_state = drm_atomic_get_existing_crtc_state(state, crtc);
288 if (crtc_state)
289 return crtc_state;
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200290
291 ret = drm_modeset_lock(&crtc->mutex, state->acquire_ctx);
292 if (ret)
293 return ERR_PTR(ret);
294
295 crtc_state = crtc->funcs->atomic_duplicate_state(crtc);
296 if (!crtc_state)
297 return ERR_PTR(-ENOMEM);
298
Daniel Vetter5d943aa62016-06-02 00:06:34 +0200299 state->crtcs[index].state = crtc_state;
Maarten Lankhorst581e49f2017-01-16 10:37:38 +0100300 state->crtcs[index].old_state = crtc->state;
301 state->crtcs[index].new_state = crtc_state;
Daniel Vetter5d943aa62016-06-02 00:06:34 +0200302 state->crtcs[index].ptr = crtc;
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200303 crtc_state->state = state;
304
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200305 DRM_DEBUG_ATOMIC("Added [CRTC:%d:%s] %p state to %p\n",
306 crtc->base.id, crtc->name, crtc_state, state);
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200307
308 return crtc_state;
309}
310EXPORT_SYMBOL(drm_atomic_get_crtc_state);
311
Gustavo Padovanbeaf5af2016-11-16 22:00:21 +0900312static void set_out_fence_for_crtc(struct drm_atomic_state *state,
Gustavo Padovan7e9081c2017-01-13 12:22:09 -0200313 struct drm_crtc *crtc, s32 __user *fence_ptr)
Gustavo Padovanbeaf5af2016-11-16 22:00:21 +0900314{
315 state->crtcs[drm_crtc_index(crtc)].out_fence_ptr = fence_ptr;
316}
317
Gustavo Padovan7e9081c2017-01-13 12:22:09 -0200318static s32 __user *get_out_fence_for_crtc(struct drm_atomic_state *state,
Gustavo Padovanbeaf5af2016-11-16 22:00:21 +0900319 struct drm_crtc *crtc)
320{
Gustavo Padovan7e9081c2017-01-13 12:22:09 -0200321 s32 __user *fence_ptr;
Gustavo Padovanbeaf5af2016-11-16 22:00:21 +0900322
323 fence_ptr = state->crtcs[drm_crtc_index(crtc)].out_fence_ptr;
324 state->crtcs[drm_crtc_index(crtc)].out_fence_ptr = NULL;
325
326 return fence_ptr;
327}
328
Brian Starkeyb13cc8d2017-03-29 17:42:33 +0100329static int set_out_fence_for_connector(struct drm_atomic_state *state,
330 struct drm_connector *connector,
331 s32 __user *fence_ptr)
332{
333 unsigned int index = drm_connector_index(connector);
334
335 if (!fence_ptr)
336 return 0;
337
338 if (put_user(-1, fence_ptr))
339 return -EFAULT;
340
341 state->connectors[index].out_fence_ptr = fence_ptr;
342
343 return 0;
344}
345
346static s32 __user *get_out_fence_for_connector(struct drm_atomic_state *state,
347 struct drm_connector *connector)
348{
349 unsigned int index = drm_connector_index(connector);
350 s32 __user *fence_ptr;
351
352 fence_ptr = state->connectors[index].out_fence_ptr;
353 state->connectors[index].out_fence_ptr = NULL;
354
355 return fence_ptr;
356}
357
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200358/**
Daniel Stone819364d2015-05-26 14:36:48 +0100359 * drm_atomic_set_mode_for_crtc - set mode for CRTC
360 * @state: the CRTC whose incoming state to update
361 * @mode: kernel-internal mode to use for the CRTC, or NULL to disable
362 *
Dhinakaran Pandiyancbef9092017-01-30 22:18:38 -0800363 * Set a mode (originating from the kernel) on the desired CRTC state and update
364 * the enable property.
Daniel Stone819364d2015-05-26 14:36:48 +0100365 *
366 * RETURNS:
367 * Zero on success, error code on failure. Cannot return -EDEADLK.
368 */
369int drm_atomic_set_mode_for_crtc(struct drm_crtc_state *state,
Ville Syrjälä91110a42017-05-18 22:38:36 +0300370 const struct drm_display_mode *mode)
Daniel Stone819364d2015-05-26 14:36:48 +0100371{
Ville Syrjäläb6f690a2018-06-11 22:34:01 +0300372 struct drm_crtc *crtc = state->crtc;
Daniel Stone99cf4a22015-05-25 19:11:51 +0100373 struct drm_mode_modeinfo umode;
374
Daniel Stone819364d2015-05-26 14:36:48 +0100375 /* Early return for no change. */
376 if (mode && memcmp(&state->mode, mode, sizeof(*mode)) == 0)
377 return 0;
378
Thierry Reding6472e502017-02-28 15:46:42 +0100379 drm_property_blob_put(state->mode_blob);
Daniel Stone99cf4a22015-05-25 19:11:51 +0100380 state->mode_blob = NULL;
381
Daniel Stone819364d2015-05-26 14:36:48 +0100382 if (mode) {
Daniel Stone99cf4a22015-05-25 19:11:51 +0100383 drm_mode_convert_to_umode(&umode, mode);
384 state->mode_blob =
385 drm_property_create_blob(state->crtc->dev,
386 sizeof(umode),
387 &umode);
388 if (IS_ERR(state->mode_blob))
389 return PTR_ERR(state->mode_blob);
390
Daniel Stone819364d2015-05-26 14:36:48 +0100391 drm_mode_copy(&state->mode, mode);
392 state->enable = true;
Ville Syrjäläb6f690a2018-06-11 22:34:01 +0300393 DRM_DEBUG_ATOMIC("Set [MODE:%s] for [CRTC:%d:%s] state %p\n",
394 mode->name, crtc->base.id, crtc->name, state);
Daniel Stone819364d2015-05-26 14:36:48 +0100395 } else {
396 memset(&state->mode, 0, sizeof(state->mode));
397 state->enable = false;
Ville Syrjäläb6f690a2018-06-11 22:34:01 +0300398 DRM_DEBUG_ATOMIC("Set [NOMODE] for [CRTC:%d:%s] state %p\n",
399 crtc->base.id, crtc->name, state);
Daniel Stone819364d2015-05-26 14:36:48 +0100400 }
401
402 return 0;
403}
404EXPORT_SYMBOL(drm_atomic_set_mode_for_crtc);
405
Daniel Stone819364d2015-05-26 14:36:48 +0100406/**
Daniel Stone955f3c32015-05-25 19:11:52 +0100407 * drm_atomic_set_mode_prop_for_crtc - set mode for CRTC
408 * @state: the CRTC whose incoming state to update
409 * @blob: pointer to blob property to use for mode
410 *
411 * Set a mode (originating from a blob property) on the desired CRTC state.
412 * This function will take a reference on the blob property for the CRTC state,
413 * and release the reference held on the state's existing mode property, if any
414 * was set.
415 *
416 * RETURNS:
417 * Zero on success, error code on failure. Cannot return -EDEADLK.
418 */
419int drm_atomic_set_mode_prop_for_crtc(struct drm_crtc_state *state,
420 struct drm_property_blob *blob)
421{
Ville Syrjäläb6f690a2018-06-11 22:34:01 +0300422 struct drm_crtc *crtc = state->crtc;
423
Daniel Stone955f3c32015-05-25 19:11:52 +0100424 if (blob == state->mode_blob)
425 return 0;
426
Thierry Reding6472e502017-02-28 15:46:42 +0100427 drm_property_blob_put(state->mode_blob);
Daniel Stone955f3c32015-05-25 19:11:52 +0100428 state->mode_blob = NULL;
429
Tomi Valkeinen67098872016-05-31 15:03:17 +0300430 memset(&state->mode, 0, sizeof(state->mode));
431
Daniel Stone955f3c32015-05-25 19:11:52 +0100432 if (blob) {
Ville Syrjälä6ab0edf2018-06-11 22:34:02 +0300433 int ret;
434
435 if (blob->length != sizeof(struct drm_mode_modeinfo)) {
436 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] bad mode blob length: %zu\n",
437 crtc->base.id, crtc->name,
438 blob->length);
Daniel Stone955f3c32015-05-25 19:11:52 +0100439 return -EINVAL;
Ville Syrjälä6ab0edf2018-06-11 22:34:02 +0300440 }
441
442 ret = drm_mode_convert_umode(crtc->dev,
443 &state->mode, blob->data);
444 if (ret) {
445 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] invalid mode (ret=%d, status=%s):\n",
446 crtc->base.id, crtc->name,
447 ret, drm_get_mode_status_name(state->mode.status));
448 drm_mode_debug_printmodeline(&state->mode);
449 return -EINVAL;
450 }
Daniel Stone955f3c32015-05-25 19:11:52 +0100451
Thierry Reding6472e502017-02-28 15:46:42 +0100452 state->mode_blob = drm_property_blob_get(blob);
Daniel Stone955f3c32015-05-25 19:11:52 +0100453 state->enable = true;
Ville Syrjäläb6f690a2018-06-11 22:34:01 +0300454 DRM_DEBUG_ATOMIC("Set [MODE:%s] for [CRTC:%d:%s] state %p\n",
455 state->mode.name, crtc->base.id, crtc->name,
456 state);
Daniel Stone955f3c32015-05-25 19:11:52 +0100457 } else {
Daniel Stone955f3c32015-05-25 19:11:52 +0100458 state->enable = false;
Ville Syrjäläb6f690a2018-06-11 22:34:01 +0300459 DRM_DEBUG_ATOMIC("Set [NOMODE] for [CRTC:%d:%s] state %p\n",
460 crtc->base.id, crtc->name, state);
Daniel Stone955f3c32015-05-25 19:11:52 +0100461 }
462
463 return 0;
464}
465EXPORT_SYMBOL(drm_atomic_set_mode_prop_for_crtc);
466
Ville Syrjäläd2a24ed2018-03-15 17:22:41 +0200467/**
468 * drm_atomic_replace_property_blob_from_id - lookup the new blob and replace the old one with it
469 * @dev: DRM device
470 * @blob: a pointer to the member blob to be replaced
471 * @blob_id: ID of the new blob
472 * @expected_size: total expected size of the blob data (in bytes)
473 * @expected_elem_size: expected element size of the blob data (in bytes)
474 * @replaced: did the blob get replaced?
475 *
476 * Replace @blob with another blob with the ID @blob_id. If @blob_id is zero
477 * @blob becomes NULL.
478 *
479 * If @expected_size is positive the new blob length is expected to be equal
480 * to @expected_size bytes. If @expected_elem_size is positive the new blob
481 * length is expected to be a multiple of @expected_elem_size bytes. Otherwise
482 * an error is returned.
483 *
484 * @replaced will indicate to the caller whether the blob was replaced or not.
485 * If the old and new blobs were in fact the same blob @replaced will be false
486 * otherwise it will be true.
487 *
488 * RETURNS:
489 * Zero on success, error code on failure.
490 */
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000491static int
Jyri Sarhadafee602017-04-21 12:51:13 +0300492drm_atomic_replace_property_blob_from_id(struct drm_device *dev,
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000493 struct drm_property_blob **blob,
494 uint64_t blob_id,
495 ssize_t expected_size,
Ville Syrjäläd2a24ed2018-03-15 17:22:41 +0200496 ssize_t expected_elem_size,
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000497 bool *replaced)
498{
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000499 struct drm_property_blob *new_blob = NULL;
500
501 if (blob_id != 0) {
Jyri Sarhadafee602017-04-21 12:51:13 +0300502 new_blob = drm_property_lookup_blob(dev, blob_id);
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000503 if (new_blob == NULL)
504 return -EINVAL;
Felix Monningercac5fced2016-10-25 22:28:08 +0100505
Ville Syrjäläd2a24ed2018-03-15 17:22:41 +0200506 if (expected_size > 0 &&
507 new_blob->length != expected_size) {
508 drm_property_blob_put(new_blob);
509 return -EINVAL;
510 }
511 if (expected_elem_size > 0 &&
512 new_blob->length % expected_elem_size != 0) {
Thierry Reding6472e502017-02-28 15:46:42 +0100513 drm_property_blob_put(new_blob);
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000514 return -EINVAL;
Felix Monningercac5fced2016-10-25 22:28:08 +0100515 }
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000516 }
517
Peter Rosin5f057ff2017-07-13 18:25:25 +0200518 *replaced |= drm_property_replace_blob(blob, new_blob);
Thierry Reding6472e502017-02-28 15:46:42 +0100519 drm_property_blob_put(new_blob);
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000520
521 return 0;
522}
523
524/**
Rob Clark40ecc692014-12-18 16:01:46 -0500525 * drm_atomic_crtc_set_property - set property on CRTC
526 * @crtc: the drm CRTC to set a property on
527 * @state: the state object to update with the new property value
528 * @property: the property to set
529 * @val: the new property value
530 *
Daniel Vetterd5745282017-01-25 07:26:45 +0100531 * This function handles generic/core properties and calls out to driver's
532 * &drm_crtc_funcs.atomic_set_property for driver properties. To ensure
533 * consistent behavior you must call this function rather than the driver hook
534 * directly.
Rob Clark40ecc692014-12-18 16:01:46 -0500535 *
536 * RETURNS:
537 * Zero on success, error code on failure
538 */
539int drm_atomic_crtc_set_property(struct drm_crtc *crtc,
540 struct drm_crtc_state *state, struct drm_property *property,
541 uint64_t val)
542{
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100543 struct drm_device *dev = crtc->dev;
544 struct drm_mode_config *config = &dev->mode_config;
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000545 bool replaced = false;
Daniel Stone955f3c32015-05-25 19:11:52 +0100546 int ret;
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100547
Daniel Stone27798362015-03-19 04:33:26 +0000548 if (property == config->prop_active)
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100549 state->active = val;
Daniel Stone955f3c32015-05-25 19:11:52 +0100550 else if (property == config->prop_mode_id) {
551 struct drm_property_blob *mode =
552 drm_property_lookup_blob(dev, val);
553 ret = drm_atomic_set_mode_prop_for_crtc(state, mode);
Thierry Reding6472e502017-02-28 15:46:42 +0100554 drm_property_blob_put(mode);
Daniel Stone955f3c32015-05-25 19:11:52 +0100555 return ret;
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000556 } else if (property == config->degamma_lut_property) {
Jyri Sarhadafee602017-04-21 12:51:13 +0300557 ret = drm_atomic_replace_property_blob_from_id(dev,
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000558 &state->degamma_lut,
559 val,
Ville Syrjäläd2a24ed2018-03-15 17:22:41 +0200560 -1, sizeof(struct drm_color_lut),
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000561 &replaced);
Mario Kleineradd1fa72016-08-27 01:02:28 +0200562 state->color_mgmt_changed |= replaced;
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000563 return ret;
564 } else if (property == config->ctm_property) {
Jyri Sarhadafee602017-04-21 12:51:13 +0300565 ret = drm_atomic_replace_property_blob_from_id(dev,
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000566 &state->ctm,
567 val,
Ville Syrjäläd2a24ed2018-03-15 17:22:41 +0200568 sizeof(struct drm_color_ctm), -1,
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000569 &replaced);
Mario Kleineradd1fa72016-08-27 01:02:28 +0200570 state->color_mgmt_changed |= replaced;
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000571 return ret;
572 } else if (property == config->gamma_lut_property) {
Jyri Sarhadafee602017-04-21 12:51:13 +0300573 ret = drm_atomic_replace_property_blob_from_id(dev,
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000574 &state->gamma_lut,
575 val,
Ville Syrjäläd2a24ed2018-03-15 17:22:41 +0200576 -1, sizeof(struct drm_color_lut),
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000577 &replaced);
Mario Kleineradd1fa72016-08-27 01:02:28 +0200578 state->color_mgmt_changed |= replaced;
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000579 return ret;
Gustavo Padovanbeaf5af2016-11-16 22:00:21 +0900580 } else if (property == config->prop_out_fence_ptr) {
Gustavo Padovan7e9081c2017-01-13 12:22:09 -0200581 s32 __user *fence_ptr = u64_to_user_ptr(val);
Gustavo Padovanbeaf5af2016-11-16 22:00:21 +0900582
583 if (!fence_ptr)
584 return 0;
585
586 if (put_user(-1, fence_ptr))
587 return -EFAULT;
588
589 set_out_fence_for_crtc(state->state, crtc, fence_ptr);
Ville Syrjäläb6f690a2018-06-11 22:34:01 +0300590 } else if (crtc->funcs->atomic_set_property) {
Rob Clark40ecc692014-12-18 16:01:46 -0500591 return crtc->funcs->atomic_set_property(crtc, state, property, val);
Ville Syrjäläb6f690a2018-06-11 22:34:01 +0300592 } else {
593 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] unknown property [PROP:%d:%s]]\n",
594 crtc->base.id, crtc->name,
595 property->base.id, property->name);
Daniel Stone27798362015-03-19 04:33:26 +0000596 return -EINVAL;
Ville Syrjäläb6f690a2018-06-11 22:34:01 +0300597 }
Daniel Stone27798362015-03-19 04:33:26 +0000598
599 return 0;
Rob Clark40ecc692014-12-18 16:01:46 -0500600}
601EXPORT_SYMBOL(drm_atomic_crtc_set_property);
602
Daniel Vetterc0714fc2015-12-04 09:45:57 +0100603/**
604 * drm_atomic_crtc_get_property - get property value from CRTC state
605 * @crtc: the drm CRTC to set a property on
606 * @state: the state object to get the property value from
607 * @property: the property to set
608 * @val: return location for the property value
609 *
Daniel Vetterd5745282017-01-25 07:26:45 +0100610 * This function handles generic/core properties and calls out to driver's
611 * &drm_crtc_funcs.atomic_get_property for driver properties. To ensure
612 * consistent behavior you must call this function rather than the driver hook
613 * directly.
Daniel Vetterc0714fc2015-12-04 09:45:57 +0100614 *
615 * RETURNS:
616 * Zero on success, error code on failure
Rob Clarkac9c9252014-12-18 16:01:47 -0500617 */
Geliang Tangbf22f3b2015-09-24 03:01:03 -0700618static int
619drm_atomic_crtc_get_property(struct drm_crtc *crtc,
Rob Clarkac9c9252014-12-18 16:01:47 -0500620 const struct drm_crtc_state *state,
621 struct drm_property *property, uint64_t *val)
622{
Daniel Stone8f164ce2015-03-19 04:33:25 +0000623 struct drm_device *dev = crtc->dev;
624 struct drm_mode_config *config = &dev->mode_config;
625
626 if (property == config->prop_active)
627 *val = state->active;
Daniel Stone955f3c32015-05-25 19:11:52 +0100628 else if (property == config->prop_mode_id)
629 *val = (state->mode_blob) ? state->mode_blob->base.id : 0;
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000630 else if (property == config->degamma_lut_property)
631 *val = (state->degamma_lut) ? state->degamma_lut->base.id : 0;
632 else if (property == config->ctm_property)
633 *val = (state->ctm) ? state->ctm->base.id : 0;
634 else if (property == config->gamma_lut_property)
635 *val = (state->gamma_lut) ? state->gamma_lut->base.id : 0;
Gustavo Padovanbeaf5af2016-11-16 22:00:21 +0900636 else if (property == config->prop_out_fence_ptr)
637 *val = 0;
Daniel Stone8f164ce2015-03-19 04:33:25 +0000638 else if (crtc->funcs->atomic_get_property)
Rob Clarkac9c9252014-12-18 16:01:47 -0500639 return crtc->funcs->atomic_get_property(crtc, state, property, val);
Daniel Stone8f164ce2015-03-19 04:33:25 +0000640 else
641 return -EINVAL;
642
643 return 0;
Rob Clarkac9c9252014-12-18 16:01:47 -0500644}
Rob Clarkac9c9252014-12-18 16:01:47 -0500645
646/**
Rob Clark5e743732014-12-18 16:01:51 -0500647 * drm_atomic_crtc_check - check crtc state
648 * @crtc: crtc to check
649 * @state: crtc state to check
650 *
651 * Provides core sanity checks for crtc state.
652 *
653 * RETURNS:
654 * Zero on success, error code on failure
655 */
656static int drm_atomic_crtc_check(struct drm_crtc *crtc,
657 struct drm_crtc_state *state)
658{
659 /* NOTE: we explicitly don't enforce constraints such as primary
660 * layer covering entire screen, since that is something we want
661 * to allow (on hw that supports it). For hw that does not, it
662 * should be checked in driver's crtc->atomic_check() vfunc.
663 *
664 * TODO: Add generic modeset state checks once we support those.
665 */
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100666
667 if (state->active && !state->enable) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200668 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] active without enabled\n",
669 crtc->base.id, crtc->name);
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100670 return -EINVAL;
671 }
672
Daniel Stone99cf4a22015-05-25 19:11:51 +0100673 /* The state->enable vs. state->mode_blob checks can be WARN_ON,
674 * as this is a kernel-internal detail that userspace should never
675 * be able to trigger. */
676 if (drm_core_check_feature(crtc->dev, DRIVER_ATOMIC) &&
677 WARN_ON(state->enable && !state->mode_blob)) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200678 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] enabled without mode blob\n",
679 crtc->base.id, crtc->name);
Daniel Stone99cf4a22015-05-25 19:11:51 +0100680 return -EINVAL;
681 }
682
683 if (drm_core_check_feature(crtc->dev, DRIVER_ATOMIC) &&
684 WARN_ON(!state->enable && state->mode_blob)) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200685 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] disabled with mode blob\n",
686 crtc->base.id, crtc->name);
Daniel Stone99cf4a22015-05-25 19:11:51 +0100687 return -EINVAL;
688 }
689
Daniel Vetter4cba6852015-12-08 09:49:20 +0100690 /*
691 * Reject event generation for when a CRTC is off and stays off.
692 * It wouldn't be hard to implement this, but userspace has a track
693 * record of happily burning through 100% cpu (or worse, crash) when the
694 * display pipe is suspended. To avoid all that fun just reject updates
695 * that ask for events since likely that indicates a bug in the
696 * compositor's drawing loop. This is consistent with the vblank IOCTL
697 * and legacy page_flip IOCTL which also reject service on a disabled
698 * pipe.
699 */
700 if (state->event && !state->active && !crtc->state->active) {
Russell King6ac7c542017-02-13 12:27:03 +0000701 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] requesting event but off\n",
702 crtc->base.id, crtc->name);
Daniel Vetter4cba6852015-12-08 09:49:20 +0100703 return -EINVAL;
704 }
705
Rob Clark5e743732014-12-18 16:01:51 -0500706 return 0;
707}
708
Rob Clarkfceffb322016-11-05 11:08:09 -0400709static void drm_atomic_crtc_print_state(struct drm_printer *p,
710 const struct drm_crtc_state *state)
711{
712 struct drm_crtc *crtc = state->crtc;
713
714 drm_printf(p, "crtc[%u]: %s\n", crtc->base.id, crtc->name);
715 drm_printf(p, "\tenable=%d\n", state->enable);
716 drm_printf(p, "\tactive=%d\n", state->active);
717 drm_printf(p, "\tplanes_changed=%d\n", state->planes_changed);
718 drm_printf(p, "\tmode_changed=%d\n", state->mode_changed);
719 drm_printf(p, "\tactive_changed=%d\n", state->active_changed);
720 drm_printf(p, "\tconnectors_changed=%d\n", state->connectors_changed);
721 drm_printf(p, "\tcolor_mgmt_changed=%d\n", state->color_mgmt_changed);
722 drm_printf(p, "\tplane_mask=%x\n", state->plane_mask);
723 drm_printf(p, "\tconnector_mask=%x\n", state->connector_mask);
724 drm_printf(p, "\tencoder_mask=%x\n", state->encoder_mask);
725 drm_printf(p, "\tmode: " DRM_MODE_FMT "\n", DRM_MODE_ARG(&state->mode));
726
727 if (crtc->funcs->atomic_print_state)
728 crtc->funcs->atomic_print_state(p, state);
729}
730
Rob Clark5e743732014-12-18 16:01:51 -0500731/**
Brian Starkey935774c2017-03-29 17:42:32 +0100732 * drm_atomic_connector_check - check connector state
733 * @connector: connector to check
734 * @state: connector state to check
735 *
736 * Provides core sanity checks for connector state.
737 *
738 * RETURNS:
739 * Zero on success, error code on failure
740 */
741static int drm_atomic_connector_check(struct drm_connector *connector,
742 struct drm_connector_state *state)
743{
744 struct drm_crtc_state *crtc_state;
745 struct drm_writeback_job *writeback_job = state->writeback_job;
746
747 if ((connector->connector_type != DRM_MODE_CONNECTOR_WRITEBACK) || !writeback_job)
748 return 0;
749
750 if (writeback_job->fb && !state->crtc) {
751 DRM_DEBUG_ATOMIC("[CONNECTOR:%d:%s] framebuffer without CRTC\n",
752 connector->base.id, connector->name);
753 return -EINVAL;
754 }
755
756 if (state->crtc)
757 crtc_state = drm_atomic_get_existing_crtc_state(state->state,
758 state->crtc);
759
760 if (writeback_job->fb && !crtc_state->active) {
761 DRM_DEBUG_ATOMIC("[CONNECTOR:%d:%s] has framebuffer, but [CRTC:%d] is off\n",
762 connector->base.id, connector->name,
763 state->crtc->base.id);
764 return -EINVAL;
765 }
766
Brian Starkeyb13cc8d2017-03-29 17:42:33 +0100767 if (writeback_job->out_fence && !writeback_job->fb) {
768 DRM_DEBUG_ATOMIC("[CONNECTOR:%d:%s] requesting out-fence without framebuffer\n",
769 connector->base.id, connector->name);
770 return -EINVAL;
771 }
772
Brian Starkey935774c2017-03-29 17:42:32 +0100773 return 0;
774}
775
776/**
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200777 * drm_atomic_get_plane_state - get plane state
778 * @state: global atomic state object
779 * @plane: plane to get state object for
780 *
781 * This function returns the plane state for the given plane, allocating it if
782 * needed. It will also grab the relevant plane lock to make sure that the state
783 * is consistent.
784 *
785 * Returns:
786 *
787 * Either the allocated state or the error code encoded into the pointer. When
788 * the error is EDEADLK then the w/w mutex code has detected a deadlock and the
789 * entire atomic sequence must be restarted. All other errors are fatal.
790 */
791struct drm_plane_state *
792drm_atomic_get_plane_state(struct drm_atomic_state *state,
793 struct drm_plane *plane)
794{
Maarten Lankhorst1b26a5e2015-05-13 10:37:25 +0200795 int ret, index = drm_plane_index(plane);
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200796 struct drm_plane_state *plane_state;
797
Maarten Lankhorst7f4eaa82016-05-03 11:12:31 +0200798 WARN_ON(!state->acquire_ctx);
799
Ville Syrjäläe00fb852018-05-25 21:50:45 +0300800 /* the legacy pointers should never be set */
801 WARN_ON(plane->fb);
802 WARN_ON(plane->old_fb);
803 WARN_ON(plane->crtc);
804
Maarten Lankhorst1b26a5e2015-05-13 10:37:25 +0200805 plane_state = drm_atomic_get_existing_plane_state(state, plane);
806 if (plane_state)
807 return plane_state;
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200808
Daniel Vetter4d02e2d2014-11-11 10:12:00 +0100809 ret = drm_modeset_lock(&plane->mutex, state->acquire_ctx);
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200810 if (ret)
811 return ERR_PTR(ret);
812
813 plane_state = plane->funcs->atomic_duplicate_state(plane);
814 if (!plane_state)
815 return ERR_PTR(-ENOMEM);
816
Daniel Vetterb8b53422016-06-02 00:06:33 +0200817 state->planes[index].state = plane_state;
818 state->planes[index].ptr = plane;
Maarten Lankhorst581e49f2017-01-16 10:37:38 +0100819 state->planes[index].old_state = plane->state;
820 state->planes[index].new_state = plane_state;
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200821 plane_state->state = state;
822
Ville Syrjälä9f4c97a2015-12-08 18:41:54 +0200823 DRM_DEBUG_ATOMIC("Added [PLANE:%d:%s] %p state to %p\n",
824 plane->base.id, plane->name, plane_state, state);
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200825
826 if (plane_state->crtc) {
827 struct drm_crtc_state *crtc_state;
828
829 crtc_state = drm_atomic_get_crtc_state(state,
830 plane_state->crtc);
831 if (IS_ERR(crtc_state))
832 return ERR_CAST(crtc_state);
833 }
834
835 return plane_state;
836}
837EXPORT_SYMBOL(drm_atomic_get_plane_state);
838
839/**
Rob Clark40ecc692014-12-18 16:01:46 -0500840 * drm_atomic_plane_set_property - set property on plane
841 * @plane: the drm plane to set a property on
842 * @state: the state object to update with the new property value
843 * @property: the property to set
844 * @val: the new property value
845 *
Daniel Vetterd5745282017-01-25 07:26:45 +0100846 * This function handles generic/core properties and calls out to driver's
847 * &drm_plane_funcs.atomic_set_property for driver properties. To ensure
848 * consistent behavior you must call this function rather than the driver hook
849 * directly.
Rob Clark40ecc692014-12-18 16:01:46 -0500850 *
851 * RETURNS:
852 * Zero on success, error code on failure
853 */
Daniel Vettere90271b2017-07-25 10:01:19 +0200854static int drm_atomic_plane_set_property(struct drm_plane *plane,
Rob Clark40ecc692014-12-18 16:01:46 -0500855 struct drm_plane_state *state, struct drm_property *property,
856 uint64_t val)
857{
Rob Clark6b4959f2014-12-18 16:01:53 -0500858 struct drm_device *dev = plane->dev;
859 struct drm_mode_config *config = &dev->mode_config;
860
861 if (property == config->prop_fb_id) {
Keith Packard418da172017-03-14 23:25:07 -0700862 struct drm_framebuffer *fb = drm_framebuffer_lookup(dev, NULL, val);
Rob Clark6b4959f2014-12-18 16:01:53 -0500863 drm_atomic_set_fb_for_plane(state, fb);
864 if (fb)
Thierry Redinga4a69da2017-02-28 15:46:40 +0100865 drm_framebuffer_put(fb);
Gustavo Padovan96260142016-11-15 22:06:39 +0900866 } else if (property == config->prop_in_fence_fd) {
867 if (state->fence)
868 return -EINVAL;
869
870 if (U642I64(val) == -1)
871 return 0;
872
873 state->fence = sync_file_get_fence(val);
874 if (!state->fence)
875 return -EINVAL;
876
Rob Clark6b4959f2014-12-18 16:01:53 -0500877 } else if (property == config->prop_crtc_id) {
Keith Packard418da172017-03-14 23:25:07 -0700878 struct drm_crtc *crtc = drm_crtc_find(dev, NULL, val);
Rob Clark6b4959f2014-12-18 16:01:53 -0500879 return drm_atomic_set_crtc_for_plane(state, crtc);
880 } else if (property == config->prop_crtc_x) {
881 state->crtc_x = U642I64(val);
882 } else if (property == config->prop_crtc_y) {
883 state->crtc_y = U642I64(val);
884 } else if (property == config->prop_crtc_w) {
885 state->crtc_w = val;
886 } else if (property == config->prop_crtc_h) {
887 state->crtc_h = val;
888 } else if (property == config->prop_src_x) {
889 state->src_x = val;
890 } else if (property == config->prop_src_y) {
891 state->src_y = val;
892 } else if (property == config->prop_src_w) {
893 state->src_w = val;
894 } else if (property == config->prop_src_h) {
895 state->src_h = val;
Maxime Ripardae0e2822018-04-11 09:39:25 +0200896 } else if (property == plane->alpha_property) {
897 state->alpha = val;
Ville Syrjälä6686df82016-10-21 22:22:45 +0300898 } else if (property == plane->rotation_property) {
Ville Syrjäläb6f690a2018-06-11 22:34:01 +0300899 if (!is_power_of_2(val & DRM_MODE_ROTATE_MASK)) {
900 DRM_DEBUG_ATOMIC("[PLANE:%d:%s] bad rotation bitmask: 0x%llx\n",
901 plane->base.id, plane->name, val);
Ville Syrjälä6e0c7c32016-09-26 19:30:47 +0300902 return -EINVAL;
Ville Syrjäläb6f690a2018-06-11 22:34:01 +0300903 }
Matt Roper1da30622015-01-21 16:35:40 -0800904 state->rotation = val;
Marek Szyprowski44d1240d2016-06-13 11:11:26 +0200905 } else if (property == plane->zpos_property) {
906 state->zpos = val;
Jyri Sarha80f690e2018-02-19 22:28:23 +0200907 } else if (property == plane->color_encoding_property) {
908 state->color_encoding = val;
909 } else if (property == plane->color_range_property) {
910 state->color_range = val;
Rob Clark6b4959f2014-12-18 16:01:53 -0500911 } else if (plane->funcs->atomic_set_property) {
912 return plane->funcs->atomic_set_property(plane, state,
913 property, val);
914 } else {
Ville Syrjäläb6f690a2018-06-11 22:34:01 +0300915 DRM_DEBUG_ATOMIC("[PLANE:%d:%s] unknown property [PROP:%d:%s]]\n",
916 plane->base.id, plane->name,
917 property->base.id, property->name);
Rob Clark6b4959f2014-12-18 16:01:53 -0500918 return -EINVAL;
919 }
920
921 return 0;
Rob Clark40ecc692014-12-18 16:01:46 -0500922}
Rob Clark40ecc692014-12-18 16:01:46 -0500923
Daniel Vetterc0714fc2015-12-04 09:45:57 +0100924/**
925 * drm_atomic_plane_get_property - get property value from plane state
926 * @plane: the drm plane to set a property on
927 * @state: the state object to get the property value from
928 * @property: the property to set
929 * @val: return location for the property value
930 *
Daniel Vetterd5745282017-01-25 07:26:45 +0100931 * This function handles generic/core properties and calls out to driver's
932 * &drm_plane_funcs.atomic_get_property for driver properties. To ensure
933 * consistent behavior you must call this function rather than the driver hook
934 * directly.
Daniel Vetterc0714fc2015-12-04 09:45:57 +0100935 *
936 * RETURNS:
937 * Zero on success, error code on failure
Rob Clarkac9c9252014-12-18 16:01:47 -0500938 */
Daniel Vettera97df1c2014-12-18 22:49:02 +0100939static int
940drm_atomic_plane_get_property(struct drm_plane *plane,
Rob Clarkac9c9252014-12-18 16:01:47 -0500941 const struct drm_plane_state *state,
942 struct drm_property *property, uint64_t *val)
943{
Rob Clark6b4959f2014-12-18 16:01:53 -0500944 struct drm_device *dev = plane->dev;
945 struct drm_mode_config *config = &dev->mode_config;
946
947 if (property == config->prop_fb_id) {
948 *val = (state->fb) ? state->fb->base.id : 0;
Gustavo Padovan96260142016-11-15 22:06:39 +0900949 } else if (property == config->prop_in_fence_fd) {
950 *val = -1;
Rob Clark6b4959f2014-12-18 16:01:53 -0500951 } else if (property == config->prop_crtc_id) {
952 *val = (state->crtc) ? state->crtc->base.id : 0;
953 } else if (property == config->prop_crtc_x) {
954 *val = I642U64(state->crtc_x);
955 } else if (property == config->prop_crtc_y) {
956 *val = I642U64(state->crtc_y);
957 } else if (property == config->prop_crtc_w) {
958 *val = state->crtc_w;
959 } else if (property == config->prop_crtc_h) {
960 *val = state->crtc_h;
961 } else if (property == config->prop_src_x) {
962 *val = state->src_x;
963 } else if (property == config->prop_src_y) {
964 *val = state->src_y;
965 } else if (property == config->prop_src_w) {
966 *val = state->src_w;
967 } else if (property == config->prop_src_h) {
968 *val = state->src_h;
Maxime Ripardae0e2822018-04-11 09:39:25 +0200969 } else if (property == plane->alpha_property) {
970 *val = state->alpha;
Ville Syrjälä6686df82016-10-21 22:22:45 +0300971 } else if (property == plane->rotation_property) {
Tvrtko Ursulin4cda09c2015-02-26 13:49:17 +0000972 *val = state->rotation;
Marek Szyprowski44d1240d2016-06-13 11:11:26 +0200973 } else if (property == plane->zpos_property) {
974 *val = state->zpos;
Jyri Sarha80f690e2018-02-19 22:28:23 +0200975 } else if (property == plane->color_encoding_property) {
976 *val = state->color_encoding;
977 } else if (property == plane->color_range_property) {
978 *val = state->color_range;
Rob Clark6b4959f2014-12-18 16:01:53 -0500979 } else if (plane->funcs->atomic_get_property) {
Rob Clarkac9c9252014-12-18 16:01:47 -0500980 return plane->funcs->atomic_get_property(plane, state, property, val);
Rob Clark6b4959f2014-12-18 16:01:53 -0500981 } else {
982 return -EINVAL;
983 }
984
985 return 0;
Rob Clarkac9c9252014-12-18 16:01:47 -0500986}
Rob Clarkac9c9252014-12-18 16:01:47 -0500987
Daniel Vetterf8aeb412015-08-26 21:49:42 +0200988static bool
989plane_switching_crtc(struct drm_atomic_state *state,
990 struct drm_plane *plane,
991 struct drm_plane_state *plane_state)
992{
993 if (!plane->state->crtc || !plane_state->crtc)
994 return false;
995
996 if (plane->state->crtc == plane_state->crtc)
997 return false;
998
999 /* This could be refined, but currently there's no helper or driver code
1000 * to implement direct switching of active planes nor userspace to take
1001 * advantage of more direct plane switching without the intermediate
1002 * full OFF state.
1003 */
1004 return true;
1005}
1006
Rob Clarkac9c9252014-12-18 16:01:47 -05001007/**
Rob Clark5e743732014-12-18 16:01:51 -05001008 * drm_atomic_plane_check - check plane state
1009 * @plane: plane to check
1010 * @state: plane state to check
1011 *
1012 * Provides core sanity checks for plane state.
1013 *
1014 * RETURNS:
1015 * Zero on success, error code on failure
1016 */
1017static int drm_atomic_plane_check(struct drm_plane *plane,
1018 struct drm_plane_state *state)
1019{
1020 unsigned int fb_width, fb_height;
Laurent Pinchartead86102015-03-05 02:25:43 +02001021 int ret;
Rob Clark5e743732014-12-18 16:01:51 -05001022
1023 /* either *both* CRTC and FB must be set, or neither */
Maarten Lankhorstfa5aaee2018-01-30 11:27:04 +01001024 if (state->crtc && !state->fb) {
Ville Syrjäläb6f690a2018-06-11 22:34:01 +03001025 DRM_DEBUG_ATOMIC("[PLANE:%d:%s] CRTC set but no FB\n",
1026 plane->base.id, plane->name);
Rob Clark5e743732014-12-18 16:01:51 -05001027 return -EINVAL;
Maarten Lankhorstfa5aaee2018-01-30 11:27:04 +01001028 } else if (state->fb && !state->crtc) {
Ville Syrjäläb6f690a2018-06-11 22:34:01 +03001029 DRM_DEBUG_ATOMIC("[PLANE:%d:%s] FB set but no CRTC\n",
1030 plane->base.id, plane->name);
Rob Clark5e743732014-12-18 16:01:51 -05001031 return -EINVAL;
1032 }
1033
1034 /* if disabled, we don't care about the rest of the state: */
1035 if (!state->crtc)
1036 return 0;
1037
1038 /* Check whether this plane is usable on this CRTC */
1039 if (!(plane->possible_crtcs & drm_crtc_mask(state->crtc))) {
Ville Syrjäläb6f690a2018-06-11 22:34:01 +03001040 DRM_DEBUG_ATOMIC("Invalid [CRTC:%d:%s] for [PLANE:%d:%s]\n",
1041 state->crtc->base.id, state->crtc->name,
1042 plane->base.id, plane->name);
Rob Clark5e743732014-12-18 16:01:51 -05001043 return -EINVAL;
1044 }
1045
1046 /* Check whether this plane supports the fb pixel format. */
Ville Syrjälä23163a72017-12-22 21:22:30 +02001047 ret = drm_plane_check_pixel_format(plane, state->fb->format->format,
1048 state->fb->modifier);
Laurent Pinchartead86102015-03-05 02:25:43 +02001049 if (ret) {
Eric Engestromb3c11ac2016-11-12 01:12:56 +00001050 struct drm_format_name_buf format_name;
Ville Syrjäläb6f690a2018-06-11 22:34:01 +03001051 DRM_DEBUG_ATOMIC("[PLANE:%d:%s] invalid pixel format %s, modifier 0x%llx\n",
1052 plane->base.id, plane->name,
Ville Syrjälä23163a72017-12-22 21:22:30 +02001053 drm_get_format_name(state->fb->format->format,
1054 &format_name),
1055 state->fb->modifier);
Laurent Pinchartead86102015-03-05 02:25:43 +02001056 return ret;
Rob Clark5e743732014-12-18 16:01:51 -05001057 }
1058
1059 /* Give drivers some help against integer overflows */
1060 if (state->crtc_w > INT_MAX ||
1061 state->crtc_x > INT_MAX - (int32_t) state->crtc_w ||
1062 state->crtc_h > INT_MAX ||
1063 state->crtc_y > INT_MAX - (int32_t) state->crtc_h) {
Ville Syrjäläb6f690a2018-06-11 22:34:01 +03001064 DRM_DEBUG_ATOMIC("[PLANE:%d:%s] invalid CRTC coordinates %ux%u+%d+%d\n",
1065 plane->base.id, plane->name,
Daniel Vetter17a38d92015-02-22 12:24:16 +01001066 state->crtc_w, state->crtc_h,
1067 state->crtc_x, state->crtc_y);
Rob Clark5e743732014-12-18 16:01:51 -05001068 return -ERANGE;
1069 }
1070
1071 fb_width = state->fb->width << 16;
1072 fb_height = state->fb->height << 16;
1073
1074 /* Make sure source coordinates are inside the fb. */
1075 if (state->src_w > fb_width ||
1076 state->src_x > fb_width - state->src_w ||
1077 state->src_h > fb_height ||
1078 state->src_y > fb_height - state->src_h) {
Ville Syrjäläb6f690a2018-06-11 22:34:01 +03001079 DRM_DEBUG_ATOMIC("[PLANE:%d:%s] invalid source coordinates "
Ville Syrjälä0338f0d2017-11-01 20:35:33 +02001080 "%u.%06ux%u.%06u+%u.%06u+%u.%06u (fb %ux%u)\n",
Ville Syrjäläb6f690a2018-06-11 22:34:01 +03001081 plane->base.id, plane->name,
Daniel Vetter17a38d92015-02-22 12:24:16 +01001082 state->src_w >> 16, ((state->src_w & 0xffff) * 15625) >> 10,
1083 state->src_h >> 16, ((state->src_h & 0xffff) * 15625) >> 10,
1084 state->src_x >> 16, ((state->src_x & 0xffff) * 15625) >> 10,
Ville Syrjälä0338f0d2017-11-01 20:35:33 +02001085 state->src_y >> 16, ((state->src_y & 0xffff) * 15625) >> 10,
1086 state->fb->width, state->fb->height);
Rob Clark5e743732014-12-18 16:01:51 -05001087 return -ENOSPC;
1088 }
1089
Daniel Vetterf8aeb412015-08-26 21:49:42 +02001090 if (plane_switching_crtc(state->state, plane, state)) {
Ville Syrjälä9f4c97a2015-12-08 18:41:54 +02001091 DRM_DEBUG_ATOMIC("[PLANE:%d:%s] switching CRTC directly\n",
1092 plane->base.id, plane->name);
Daniel Vetterf8aeb412015-08-26 21:49:42 +02001093 return -EINVAL;
1094 }
1095
Rob Clark5e743732014-12-18 16:01:51 -05001096 return 0;
1097}
1098
Rob Clarkfceffb322016-11-05 11:08:09 -04001099static void drm_atomic_plane_print_state(struct drm_printer *p,
1100 const struct drm_plane_state *state)
1101{
1102 struct drm_plane *plane = state->plane;
1103 struct drm_rect src = drm_plane_state_src(state);
1104 struct drm_rect dest = drm_plane_state_dest(state);
1105
1106 drm_printf(p, "plane[%u]: %s\n", plane->base.id, plane->name);
1107 drm_printf(p, "\tcrtc=%s\n", state->crtc ? state->crtc->name : "(null)");
1108 drm_printf(p, "\tfb=%u\n", state->fb ? state->fb->base.id : 0);
Noralf Trønnesf02b6042017-11-07 20:13:41 +01001109 if (state->fb)
1110 drm_framebuffer_print_info(p, 2, state->fb);
Rob Clarkfceffb322016-11-05 11:08:09 -04001111 drm_printf(p, "\tcrtc-pos=" DRM_RECT_FMT "\n", DRM_RECT_ARG(&dest));
1112 drm_printf(p, "\tsrc-pos=" DRM_RECT_FP_FMT "\n", DRM_RECT_FP_ARG(&src));
1113 drm_printf(p, "\trotation=%x\n", state->rotation);
Ville Syrjälä56dbbaf2018-02-19 22:28:46 +02001114 drm_printf(p, "\tcolor-encoding=%s\n",
1115 drm_get_color_encoding_name(state->color_encoding));
1116 drm_printf(p, "\tcolor-range=%s\n",
1117 drm_get_color_range_name(state->color_range));
Rob Clarkfceffb322016-11-05 11:08:09 -04001118
1119 if (plane->funcs->atomic_print_state)
1120 plane->funcs->atomic_print_state(p, state);
1121}
1122
Rob Clark5e743732014-12-18 16:01:51 -05001123/**
Daniel Vetterda6c0592017-12-14 21:30:53 +01001124 * DOC: handling driver private state
1125 *
1126 * Very often the DRM objects exposed to userspace in the atomic modeset api
1127 * (&drm_connector, &drm_crtc and &drm_plane) do not map neatly to the
1128 * underlying hardware. Especially for any kind of shared resources (e.g. shared
1129 * clocks, scaler units, bandwidth and fifo limits shared among a group of
1130 * planes or CRTCs, and so on) it makes sense to model these as independent
1131 * objects. Drivers then need to do similar state tracking and commit ordering for
1132 * such private (since not exposed to userpace) objects as the atomic core and
1133 * helpers already provide for connectors, planes and CRTCs.
1134 *
1135 * To make this easier on drivers the atomic core provides some support to track
1136 * driver private state objects using struct &drm_private_obj, with the
1137 * associated state struct &drm_private_state.
1138 *
1139 * Similar to userspace-exposed objects, private state structures can be
1140 * acquired by calling drm_atomic_get_private_obj_state(). Since this function
1141 * does not take care of locking, drivers should wrap it for each type of
1142 * private state object they have with the required call to drm_modeset_lock()
1143 * for the corresponding &drm_modeset_lock.
1144 *
1145 * All private state structures contained in a &drm_atomic_state update can be
1146 * iterated using for_each_oldnew_private_obj_in_state(),
1147 * for_each_new_private_obj_in_state() and for_each_old_private_obj_in_state().
1148 * Drivers are recommended to wrap these for each type of driver private state
1149 * object they have, filtering on &drm_private_obj.funcs using for_each_if(), at
1150 * least if they want to iterate over all objects of a given type.
1151 *
1152 * An earlier way to handle driver private state was by subclassing struct
1153 * &drm_atomic_state. But since that encourages non-standard ways to implement
1154 * the check/commit split atomic requires (by using e.g. "check and rollback or
1155 * commit instead" of "duplicate state, check, then either commit or release
1156 * duplicated state) it is deprecated in favour of using &drm_private_state.
1157 */
1158
1159/**
Ville Syrjäläa4370c72017-07-12 18:51:02 +03001160 * drm_atomic_private_obj_init - initialize private object
1161 * @obj: private object
1162 * @state: initial private object state
1163 * @funcs: pointer to the struct of function pointers that identify the object
1164 * type
1165 *
1166 * Initialize the private object, which can be embedded into any
1167 * driver private object that needs its own atomic state.
1168 */
1169void
1170drm_atomic_private_obj_init(struct drm_private_obj *obj,
1171 struct drm_private_state *state,
1172 const struct drm_private_state_funcs *funcs)
1173{
1174 memset(obj, 0, sizeof(*obj));
1175
1176 obj->state = state;
1177 obj->funcs = funcs;
1178}
1179EXPORT_SYMBOL(drm_atomic_private_obj_init);
1180
1181/**
1182 * drm_atomic_private_obj_fini - finalize private object
1183 * @obj: private object
1184 *
1185 * Finalize the private object.
1186 */
1187void
1188drm_atomic_private_obj_fini(struct drm_private_obj *obj)
1189{
1190 obj->funcs->atomic_destroy_state(obj, obj->state);
1191}
1192EXPORT_SYMBOL(drm_atomic_private_obj_fini);
1193
1194/**
Pandiyan, Dhinakaranb430c272017-04-20 22:51:30 -07001195 * drm_atomic_get_private_obj_state - get private object state
1196 * @state: global atomic state
1197 * @obj: private object to get the state for
Pandiyan, Dhinakaranb430c272017-04-20 22:51:30 -07001198 *
1199 * This function returns the private object state for the given private object,
1200 * allocating the state if needed. It does not grab any locks as the caller is
1201 * expected to care of any required locking.
1202 *
1203 * RETURNS:
1204 *
1205 * Either the allocated state or the error code encoded into a pointer.
1206 */
Ville Syrjäläa4370c72017-07-12 18:51:02 +03001207struct drm_private_state *
1208drm_atomic_get_private_obj_state(struct drm_atomic_state *state,
1209 struct drm_private_obj *obj)
Pandiyan, Dhinakaranb430c272017-04-20 22:51:30 -07001210{
1211 int index, num_objs, i;
1212 size_t size;
1213 struct __drm_private_objs_state *arr;
Ville Syrjäläa4370c72017-07-12 18:51:02 +03001214 struct drm_private_state *obj_state;
Pandiyan, Dhinakaranb430c272017-04-20 22:51:30 -07001215
1216 for (i = 0; i < state->num_private_objs; i++)
Ville Syrjäläa4370c72017-07-12 18:51:02 +03001217 if (obj == state->private_objs[i].ptr)
1218 return state->private_objs[i].state;
Pandiyan, Dhinakaranb430c272017-04-20 22:51:30 -07001219
1220 num_objs = state->num_private_objs + 1;
1221 size = sizeof(*state->private_objs) * num_objs;
1222 arr = krealloc(state->private_objs, size, GFP_KERNEL);
1223 if (!arr)
1224 return ERR_PTR(-ENOMEM);
1225
1226 state->private_objs = arr;
1227 index = state->num_private_objs;
1228 memset(&state->private_objs[index], 0, sizeof(*state->private_objs));
1229
Ville Syrjäläa4370c72017-07-12 18:51:02 +03001230 obj_state = obj->funcs->atomic_duplicate_state(obj);
1231 if (!obj_state)
Pandiyan, Dhinakaranb430c272017-04-20 22:51:30 -07001232 return ERR_PTR(-ENOMEM);
1233
Ville Syrjäläa4370c72017-07-12 18:51:02 +03001234 state->private_objs[index].state = obj_state;
1235 state->private_objs[index].old_state = obj->state;
1236 state->private_objs[index].new_state = obj_state;
1237 state->private_objs[index].ptr = obj;
Alexandru Gheorghee89ea352018-05-30 18:30:52 +01001238 obj_state->state = state;
Ville Syrjäläa4370c72017-07-12 18:51:02 +03001239
Pandiyan, Dhinakaranb430c272017-04-20 22:51:30 -07001240 state->num_private_objs = num_objs;
1241
Ville Syrjäläa4370c72017-07-12 18:51:02 +03001242 DRM_DEBUG_ATOMIC("Added new private object %p state %p to %p\n",
1243 obj, obj_state, state);
Pandiyan, Dhinakaranb430c272017-04-20 22:51:30 -07001244
Ville Syrjäläa4370c72017-07-12 18:51:02 +03001245 return obj_state;
Pandiyan, Dhinakaranb430c272017-04-20 22:51:30 -07001246}
1247EXPORT_SYMBOL(drm_atomic_get_private_obj_state);
1248
1249/**
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001250 * drm_atomic_get_connector_state - get connector state
1251 * @state: global atomic state object
1252 * @connector: connector to get state object for
1253 *
1254 * This function returns the connector state for the given connector,
1255 * allocating it if needed. It will also grab the relevant connector lock to
1256 * make sure that the state is consistent.
1257 *
1258 * Returns:
1259 *
1260 * Either the allocated state or the error code encoded into the pointer. When
1261 * the error is EDEADLK then the w/w mutex code has detected a deadlock and the
1262 * entire atomic sequence must be restarted. All other errors are fatal.
1263 */
1264struct drm_connector_state *
1265drm_atomic_get_connector_state(struct drm_atomic_state *state,
1266 struct drm_connector *connector)
1267{
1268 int ret, index;
1269 struct drm_mode_config *config = &connector->dev->mode_config;
1270 struct drm_connector_state *connector_state;
1271
Maarten Lankhorst7f4eaa82016-05-03 11:12:31 +02001272 WARN_ON(!state->acquire_ctx);
1273
Daniel Vetterc7eb76f2014-11-19 18:38:06 +01001274 ret = drm_modeset_lock(&config->connection_mutex, state->acquire_ctx);
1275 if (ret)
1276 return ERR_PTR(ret);
1277
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001278 index = drm_connector_index(connector);
1279
Daniel Vetterf52b69f12014-11-19 18:38:08 +01001280 if (index >= state->num_connector) {
Daniel Vetter63e83c12016-06-02 00:06:32 +02001281 struct __drm_connnectors_state *c;
Maarten Lankhorst5fff80b2016-02-17 08:32:05 +01001282 int alloc = max(index + 1, config->num_connector);
1283
1284 c = krealloc(state->connectors, alloc * sizeof(*state->connectors), GFP_KERNEL);
1285 if (!c)
1286 return ERR_PTR(-ENOMEM);
1287
1288 state->connectors = c;
1289 memset(&state->connectors[state->num_connector], 0,
1290 sizeof(*state->connectors) * (alloc - state->num_connector));
1291
Maarten Lankhorst5fff80b2016-02-17 08:32:05 +01001292 state->num_connector = alloc;
Daniel Vetterf52b69f12014-11-19 18:38:08 +01001293 }
1294
Daniel Vetter63e83c12016-06-02 00:06:32 +02001295 if (state->connectors[index].state)
1296 return state->connectors[index].state;
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001297
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001298 connector_state = connector->funcs->atomic_duplicate_state(connector);
1299 if (!connector_state)
1300 return ERR_PTR(-ENOMEM);
1301
Thierry Redingad093602017-02-28 15:46:39 +01001302 drm_connector_get(connector);
Daniel Vetter63e83c12016-06-02 00:06:32 +02001303 state->connectors[index].state = connector_state;
Maarten Lankhorst581e49f2017-01-16 10:37:38 +01001304 state->connectors[index].old_state = connector->state;
1305 state->connectors[index].new_state = connector_state;
Daniel Vetter63e83c12016-06-02 00:06:32 +02001306 state->connectors[index].ptr = connector;
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001307 connector_state->state = state;
1308
Russell King6ac7c542017-02-13 12:27:03 +00001309 DRM_DEBUG_ATOMIC("Added [CONNECTOR:%d:%s] %p state to %p\n",
1310 connector->base.id, connector->name,
1311 connector_state, state);
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001312
1313 if (connector_state->crtc) {
1314 struct drm_crtc_state *crtc_state;
1315
1316 crtc_state = drm_atomic_get_crtc_state(state,
1317 connector_state->crtc);
1318 if (IS_ERR(crtc_state))
1319 return ERR_CAST(crtc_state);
1320 }
1321
1322 return connector_state;
1323}
1324EXPORT_SYMBOL(drm_atomic_get_connector_state);
1325
1326/**
Rob Clark40ecc692014-12-18 16:01:46 -05001327 * drm_atomic_connector_set_property - set property on connector.
1328 * @connector: the drm connector to set a property on
1329 * @state: the state object to update with the new property value
1330 * @property: the property to set
1331 * @val: the new property value
1332 *
Daniel Vetterd5745282017-01-25 07:26:45 +01001333 * This function handles generic/core properties and calls out to driver's
1334 * &drm_connector_funcs.atomic_set_property for driver properties. To ensure
1335 * consistent behavior you must call this function rather than the driver hook
1336 * directly.
Rob Clark40ecc692014-12-18 16:01:46 -05001337 *
1338 * RETURNS:
1339 * Zero on success, error code on failure
1340 */
Daniel Vetter482b0e32017-07-25 10:01:20 +02001341static int drm_atomic_connector_set_property(struct drm_connector *connector,
Rob Clark40ecc692014-12-18 16:01:46 -05001342 struct drm_connector_state *state, struct drm_property *property,
1343 uint64_t val)
1344{
1345 struct drm_device *dev = connector->dev;
1346 struct drm_mode_config *config = &dev->mode_config;
1347
Rob Clarkae16c592014-12-18 16:01:54 -05001348 if (property == config->prop_crtc_id) {
Keith Packard418da172017-03-14 23:25:07 -07001349 struct drm_crtc *crtc = drm_crtc_find(dev, NULL, val);
Rob Clarkae16c592014-12-18 16:01:54 -05001350 return drm_atomic_set_crtc_for_connector(state, crtc);
1351 } else if (property == config->dpms_property) {
Rob Clark40ecc692014-12-18 16:01:46 -05001352 /* setting DPMS property requires special handling, which
1353 * is done in legacy setprop path for us. Disallow (for
1354 * now?) atomic writes to DPMS property:
1355 */
1356 return -EINVAL;
Boris Brezillon299a16b2016-12-02 14:48:09 +01001357 } else if (property == config->tv_select_subconnector_property) {
1358 state->tv.subconnector = val;
1359 } else if (property == config->tv_left_margin_property) {
1360 state->tv.margins.left = val;
1361 } else if (property == config->tv_right_margin_property) {
1362 state->tv.margins.right = val;
1363 } else if (property == config->tv_top_margin_property) {
1364 state->tv.margins.top = val;
1365 } else if (property == config->tv_bottom_margin_property) {
1366 state->tv.margins.bottom = val;
1367 } else if (property == config->tv_mode_property) {
1368 state->tv.mode = val;
1369 } else if (property == config->tv_brightness_property) {
1370 state->tv.brightness = val;
1371 } else if (property == config->tv_contrast_property) {
1372 state->tv.contrast = val;
1373 } else if (property == config->tv_flicker_reduction_property) {
1374 state->tv.flicker_reduction = val;
1375 } else if (property == config->tv_overscan_property) {
1376 state->tv.overscan = val;
1377 } else if (property == config->tv_saturation_property) {
1378 state->tv.saturation = val;
1379 } else if (property == config->tv_hue_property) {
1380 state->tv.hue = val;
Manasi Navare40ee6fb2016-12-16 12:29:06 +02001381 } else if (property == config->link_status_property) {
1382 /* Never downgrade from GOOD to BAD on userspace's request here,
1383 * only hw issues can do that.
1384 *
1385 * For an atomic property the userspace doesn't need to be able
1386 * to understand all the properties, but needs to be able to
1387 * restore the state it wants on VT switch. So if the userspace
1388 * tries to change the link_status from GOOD to BAD, driver
1389 * silently rejects it and returns a 0. This prevents userspace
1390 * from accidently breaking the display when it restores the
1391 * state.
1392 */
1393 if (state->link_status != DRM_LINK_STATUS_GOOD)
1394 state->link_status = val;
Maarten Lankhorst0e9f25d2017-05-01 15:37:53 +02001395 } else if (property == config->aspect_ratio_property) {
1396 state->picture_aspect_ratio = val;
Stanislav Lisovskiy50525c32018-05-15 16:59:27 +03001397 } else if (property == config->content_type_property) {
1398 state->content_type = val;
Maarten Lankhorst8f6e1e22017-05-01 15:37:54 +02001399 } else if (property == connector->scaling_mode_property) {
1400 state->scaling_mode = val;
Sean Paul24557862018-01-08 14:55:37 -05001401 } else if (property == connector->content_protection_property) {
1402 if (val == DRM_MODE_CONTENT_PROTECTION_ENABLED) {
1403 DRM_DEBUG_KMS("only drivers can set CP Enabled\n");
1404 return -EINVAL;
1405 }
1406 state->content_protection = val;
Brian Starkey935774c2017-03-29 17:42:32 +01001407 } else if (property == config->writeback_fb_id_property) {
1408 struct drm_framebuffer *fb = drm_framebuffer_lookup(dev, NULL, val);
1409 int ret = drm_atomic_set_writeback_fb_for_connector(state, fb);
1410 if (fb)
1411 drm_framebuffer_put(fb);
1412 return ret;
Brian Starkeyb13cc8d2017-03-29 17:42:33 +01001413 } else if (property == config->writeback_out_fence_ptr_property) {
1414 s32 __user *fence_ptr = u64_to_user_ptr(val);
1415
1416 return set_out_fence_for_connector(state->state, connector,
1417 fence_ptr);
Rob Clark40ecc692014-12-18 16:01:46 -05001418 } else if (connector->funcs->atomic_set_property) {
1419 return connector->funcs->atomic_set_property(connector,
1420 state, property, val);
1421 } else {
Ville Syrjäläb6f690a2018-06-11 22:34:01 +03001422 DRM_DEBUG_ATOMIC("[CONNECTOR:%d:%s] unknown property [PROP:%d:%s]]\n",
1423 connector->base.id, connector->name,
1424 property->base.id, property->name);
Rob Clark40ecc692014-12-18 16:01:46 -05001425 return -EINVAL;
1426 }
Boris Brezillon299a16b2016-12-02 14:48:09 +01001427
1428 return 0;
Rob Clark40ecc692014-12-18 16:01:46 -05001429}
Rob Clark40ecc692014-12-18 16:01:46 -05001430
Rob Clarkfceffb322016-11-05 11:08:09 -04001431static void drm_atomic_connector_print_state(struct drm_printer *p,
1432 const struct drm_connector_state *state)
1433{
1434 struct drm_connector *connector = state->connector;
1435
1436 drm_printf(p, "connector[%u]: %s\n", connector->base.id, connector->name);
1437 drm_printf(p, "\tcrtc=%s\n", state->crtc ? state->crtc->name : "(null)");
1438
1439 if (connector->funcs->atomic_print_state)
1440 connector->funcs->atomic_print_state(p, state);
1441}
1442
Daniel Vetterc0714fc2015-12-04 09:45:57 +01001443/**
1444 * drm_atomic_connector_get_property - get property value from connector state
1445 * @connector: the drm connector to set a property on
1446 * @state: the state object to get the property value from
1447 * @property: the property to set
1448 * @val: return location for the property value
1449 *
Daniel Vetterd5745282017-01-25 07:26:45 +01001450 * This function handles generic/core properties and calls out to driver's
1451 * &drm_connector_funcs.atomic_get_property for driver properties. To ensure
1452 * consistent behavior you must call this function rather than the driver hook
1453 * directly.
Daniel Vetterc0714fc2015-12-04 09:45:57 +01001454 *
1455 * RETURNS:
1456 * Zero on success, error code on failure
Rob Clarkac9c9252014-12-18 16:01:47 -05001457 */
Daniel Vettera97df1c2014-12-18 22:49:02 +01001458static int
1459drm_atomic_connector_get_property(struct drm_connector *connector,
Rob Clarkac9c9252014-12-18 16:01:47 -05001460 const struct drm_connector_state *state,
1461 struct drm_property *property, uint64_t *val)
1462{
1463 struct drm_device *dev = connector->dev;
1464 struct drm_mode_config *config = &dev->mode_config;
1465
Rob Clarkae16c592014-12-18 16:01:54 -05001466 if (property == config->prop_crtc_id) {
1467 *val = (state->crtc) ? state->crtc->base.id : 0;
1468 } else if (property == config->dpms_property) {
Rob Clarkac9c9252014-12-18 16:01:47 -05001469 *val = connector->dpms;
Boris Brezillon299a16b2016-12-02 14:48:09 +01001470 } else if (property == config->tv_select_subconnector_property) {
1471 *val = state->tv.subconnector;
1472 } else if (property == config->tv_left_margin_property) {
1473 *val = state->tv.margins.left;
1474 } else if (property == config->tv_right_margin_property) {
1475 *val = state->tv.margins.right;
1476 } else if (property == config->tv_top_margin_property) {
1477 *val = state->tv.margins.top;
1478 } else if (property == config->tv_bottom_margin_property) {
1479 *val = state->tv.margins.bottom;
1480 } else if (property == config->tv_mode_property) {
1481 *val = state->tv.mode;
1482 } else if (property == config->tv_brightness_property) {
1483 *val = state->tv.brightness;
1484 } else if (property == config->tv_contrast_property) {
1485 *val = state->tv.contrast;
1486 } else if (property == config->tv_flicker_reduction_property) {
1487 *val = state->tv.flicker_reduction;
1488 } else if (property == config->tv_overscan_property) {
1489 *val = state->tv.overscan;
1490 } else if (property == config->tv_saturation_property) {
1491 *val = state->tv.saturation;
1492 } else if (property == config->tv_hue_property) {
1493 *val = state->tv.hue;
Manasi Navare40ee6fb2016-12-16 12:29:06 +02001494 } else if (property == config->link_status_property) {
1495 *val = state->link_status;
Maarten Lankhorst0e9f25d2017-05-01 15:37:53 +02001496 } else if (property == config->aspect_ratio_property) {
1497 *val = state->picture_aspect_ratio;
Stanislav Lisovskiy50525c32018-05-15 16:59:27 +03001498 } else if (property == config->content_type_property) {
1499 *val = state->content_type;
Maarten Lankhorst8f6e1e22017-05-01 15:37:54 +02001500 } else if (property == connector->scaling_mode_property) {
1501 *val = state->scaling_mode;
Sean Paul24557862018-01-08 14:55:37 -05001502 } else if (property == connector->content_protection_property) {
1503 *val = state->content_protection;
Brian Starkey935774c2017-03-29 17:42:32 +01001504 } else if (property == config->writeback_fb_id_property) {
1505 /* Writeback framebuffer is one-shot, write and forget */
1506 *val = 0;
Brian Starkeyb13cc8d2017-03-29 17:42:33 +01001507 } else if (property == config->writeback_out_fence_ptr_property) {
1508 *val = 0;
Rob Clarkac9c9252014-12-18 16:01:47 -05001509 } else if (connector->funcs->atomic_get_property) {
1510 return connector->funcs->atomic_get_property(connector,
1511 state, property, val);
1512 } else {
1513 return -EINVAL;
1514 }
1515
1516 return 0;
1517}
Rob Clarkac9c9252014-12-18 16:01:47 -05001518
Rob Clark88a48e22014-12-18 16:01:50 -05001519int drm_atomic_get_property(struct drm_mode_object *obj,
1520 struct drm_property *property, uint64_t *val)
1521{
1522 struct drm_device *dev = property->dev;
1523 int ret;
1524
1525 switch (obj->type) {
1526 case DRM_MODE_OBJECT_CONNECTOR: {
1527 struct drm_connector *connector = obj_to_connector(obj);
1528 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
1529 ret = drm_atomic_connector_get_property(connector,
1530 connector->state, property, val);
1531 break;
1532 }
1533 case DRM_MODE_OBJECT_CRTC: {
1534 struct drm_crtc *crtc = obj_to_crtc(obj);
1535 WARN_ON(!drm_modeset_is_locked(&crtc->mutex));
1536 ret = drm_atomic_crtc_get_property(crtc,
1537 crtc->state, property, val);
1538 break;
1539 }
1540 case DRM_MODE_OBJECT_PLANE: {
1541 struct drm_plane *plane = obj_to_plane(obj);
1542 WARN_ON(!drm_modeset_is_locked(&plane->mutex));
1543 ret = drm_atomic_plane_get_property(plane,
1544 plane->state, property, val);
1545 break;
1546 }
1547 default:
1548 ret = -EINVAL;
1549 break;
1550 }
1551
1552 return ret;
1553}
1554
1555/**
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001556 * drm_atomic_set_crtc_for_plane - set crtc for plane
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01001557 * @plane_state: the plane whose incoming state to update
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001558 * @crtc: crtc to use for the plane
1559 *
1560 * Changing the assigned crtc for a plane requires us to grab the lock and state
1561 * for the new crtc, as needed. This function takes care of all these details
1562 * besides updating the pointer in the state object itself.
1563 *
1564 * Returns:
1565 * 0 on success or can fail with -EDEADLK or -ENOMEM. When the error is EDEADLK
1566 * then the w/w mutex code has detected a deadlock and the entire atomic
1567 * sequence must be restarted. All other errors are fatal.
1568 */
1569int
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01001570drm_atomic_set_crtc_for_plane(struct drm_plane_state *plane_state,
1571 struct drm_crtc *crtc)
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001572{
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01001573 struct drm_plane *plane = plane_state->plane;
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001574 struct drm_crtc_state *crtc_state;
Satendra Singh Thakurfc2a69f2018-05-03 11:19:32 +05301575 /* Nothing to do for same crtc*/
1576 if (plane_state->crtc == crtc)
1577 return 0;
Rob Clark6ddd3882014-11-21 15:28:31 -05001578 if (plane_state->crtc) {
1579 crtc_state = drm_atomic_get_crtc_state(plane_state->state,
1580 plane_state->crtc);
1581 if (WARN_ON(IS_ERR(crtc_state)))
1582 return PTR_ERR(crtc_state);
1583
Ville Syrjälä62f77ad2018-06-26 22:47:07 +03001584 crtc_state->plane_mask &= ~drm_plane_mask(plane);
Rob Clark6ddd3882014-11-21 15:28:31 -05001585 }
1586
1587 plane_state->crtc = crtc;
1588
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001589 if (crtc) {
1590 crtc_state = drm_atomic_get_crtc_state(plane_state->state,
1591 crtc);
1592 if (IS_ERR(crtc_state))
1593 return PTR_ERR(crtc_state);
Ville Syrjälä62f77ad2018-06-26 22:47:07 +03001594 crtc_state->plane_mask |= drm_plane_mask(plane);
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001595 }
1596
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001597 if (crtc)
Ville Syrjäläb6f690a2018-06-11 22:34:01 +03001598 DRM_DEBUG_ATOMIC("Link [PLANE:%d:%s] state %p to [CRTC:%d:%s]\n",
1599 plane->base.id, plane->name, plane_state,
1600 crtc->base.id, crtc->name);
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001601 else
Ville Syrjäläb6f690a2018-06-11 22:34:01 +03001602 DRM_DEBUG_ATOMIC("Link [PLANE:%d:%s] state %p to [NOCRTC]\n",
1603 plane->base.id, plane->name, plane_state);
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001604
1605 return 0;
1606}
1607EXPORT_SYMBOL(drm_atomic_set_crtc_for_plane);
1608
1609/**
John Hunter16d78bc2e2015-04-07 19:38:50 +08001610 * drm_atomic_set_fb_for_plane - set framebuffer for plane
Daniel Vetter321ebf02014-11-04 22:57:27 +01001611 * @plane_state: atomic state object for the plane
1612 * @fb: fb to use for the plane
1613 *
1614 * Changing the assigned framebuffer for a plane requires us to grab a reference
1615 * to the new fb and drop the reference to the old fb, if there is one. This
1616 * function takes care of all these details besides updating the pointer in the
1617 * state object itself.
1618 */
1619void
1620drm_atomic_set_fb_for_plane(struct drm_plane_state *plane_state,
1621 struct drm_framebuffer *fb)
1622{
Ville Syrjäläb6f690a2018-06-11 22:34:01 +03001623 struct drm_plane *plane = plane_state->plane;
1624
Daniel Vetter321ebf02014-11-04 22:57:27 +01001625 if (fb)
Ville Syrjäläb6f690a2018-06-11 22:34:01 +03001626 DRM_DEBUG_ATOMIC("Set [FB:%d] for [PLANE:%d:%s] state %p\n",
1627 fb->base.id, plane->base.id, plane->name,
Daniel Vetter17a38d92015-02-22 12:24:16 +01001628 plane_state);
Ville Syrjäläb6f690a2018-06-11 22:34:01 +03001629 else
1630 DRM_DEBUG_ATOMIC("Set [NOFB] for [PLANE:%d:%s] state %p\n",
1631 plane->base.id, plane->name, plane_state);
Chris Wilson389f78b2016-11-25 15:32:30 +00001632
1633 drm_framebuffer_assign(&plane_state->fb, fb);
Daniel Vetter321ebf02014-11-04 22:57:27 +01001634}
1635EXPORT_SYMBOL(drm_atomic_set_fb_for_plane);
1636
1637/**
Gustavo Padovan13b55662016-11-07 19:03:30 +09001638 * drm_atomic_set_fence_for_plane - set fence for plane
1639 * @plane_state: atomic state object for the plane
1640 * @fence: dma_fence to use for the plane
1641 *
1642 * Helper to setup the plane_state fence in case it is not set yet.
1643 * By using this drivers doesn't need to worry if the user choose
1644 * implicit or explicit fencing.
1645 *
1646 * This function will not set the fence to the state if it was set
Daniel Vetterd5745282017-01-25 07:26:45 +01001647 * via explicit fencing interfaces on the atomic ioctl. In that case it will
1648 * drop the reference to the fence as we are not storing it anywhere.
1649 * Otherwise, if &drm_plane_state.fence is not set this function we just set it
1650 * with the received implicit fence. In both cases this function consumes a
1651 * reference for @fence.
Daniel Vetter30d23f22018-04-05 17:44:46 +02001652 *
1653 * This way explicit fencing can be used to overrule implicit fencing, which is
1654 * important to make explicit fencing use-cases work: One example is using one
1655 * buffer for 2 screens with different refresh rates. Implicit fencing will
1656 * clamp rendering to the refresh rate of the slower screen, whereas explicit
1657 * fence allows 2 independent render and display loops on a single buffer. If a
1658 * driver allows obeys both implicit and explicit fences for plane updates, then
1659 * it will break all the benefits of explicit fencing.
Gustavo Padovan13b55662016-11-07 19:03:30 +09001660 */
1661void
1662drm_atomic_set_fence_for_plane(struct drm_plane_state *plane_state,
1663 struct dma_fence *fence)
1664{
1665 if (plane_state->fence) {
1666 dma_fence_put(fence);
1667 return;
1668 }
1669
1670 plane_state->fence = fence;
1671}
1672EXPORT_SYMBOL(drm_atomic_set_fence_for_plane);
1673
1674/**
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001675 * drm_atomic_set_crtc_for_connector - set crtc for connector
1676 * @conn_state: atomic state object for the connector
1677 * @crtc: crtc to use for the connector
1678 *
1679 * Changing the assigned crtc for a connector requires us to grab the lock and
1680 * state for the new crtc, as needed. This function takes care of all these
1681 * details besides updating the pointer in the state object itself.
1682 *
1683 * Returns:
1684 * 0 on success or can fail with -EDEADLK or -ENOMEM. When the error is EDEADLK
1685 * then the w/w mutex code has detected a deadlock and the entire atomic
1686 * sequence must be restarted. All other errors are fatal.
1687 */
1688int
1689drm_atomic_set_crtc_for_connector(struct drm_connector_state *conn_state,
1690 struct drm_crtc *crtc)
1691{
Ville Syrjäläb6f690a2018-06-11 22:34:01 +03001692 struct drm_connector *connector = conn_state->connector;
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001693 struct drm_crtc_state *crtc_state;
1694
Chris Wilsone2d800a2016-05-06 12:47:45 +01001695 if (conn_state->crtc == crtc)
1696 return 0;
1697
1698 if (conn_state->crtc) {
Maarten Lankhorstb4d93672017-03-01 10:22:10 +01001699 crtc_state = drm_atomic_get_new_crtc_state(conn_state->state,
1700 conn_state->crtc);
Maarten Lankhorst4cd9fa52016-01-04 12:53:18 +01001701
1702 crtc_state->connector_mask &=
1703 ~(1 << drm_connector_index(conn_state->connector));
Chris Wilsone2d800a2016-05-06 12:47:45 +01001704
Thierry Redingad093602017-02-28 15:46:39 +01001705 drm_connector_put(conn_state->connector);
Chris Wilsone2d800a2016-05-06 12:47:45 +01001706 conn_state->crtc = NULL;
Maarten Lankhorst4cd9fa52016-01-04 12:53:18 +01001707 }
1708
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001709 if (crtc) {
1710 crtc_state = drm_atomic_get_crtc_state(conn_state->state, crtc);
1711 if (IS_ERR(crtc_state))
1712 return PTR_ERR(crtc_state);
Maarten Lankhorst4cd9fa52016-01-04 12:53:18 +01001713
1714 crtc_state->connector_mask |=
1715 1 << drm_connector_index(conn_state->connector);
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001716
Thierry Redingad093602017-02-28 15:46:39 +01001717 drm_connector_get(conn_state->connector);
Chris Wilsone2d800a2016-05-06 12:47:45 +01001718 conn_state->crtc = crtc;
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001719
Ville Syrjäläb6f690a2018-06-11 22:34:01 +03001720 DRM_DEBUG_ATOMIC("Link [CONNECTOR:%d:%s] state %p to [CRTC:%d:%s]\n",
1721 connector->base.id, connector->name,
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +02001722 conn_state, crtc->base.id, crtc->name);
Chris Wilsone2d800a2016-05-06 12:47:45 +01001723 } else {
Ville Syrjäläb6f690a2018-06-11 22:34:01 +03001724 DRM_DEBUG_ATOMIC("Link [CONNECTOR:%d:%s] state %p to [NOCRTC]\n",
1725 connector->base.id, connector->name,
Daniel Vetter17a38d92015-02-22 12:24:16 +01001726 conn_state);
Chris Wilsone2d800a2016-05-06 12:47:45 +01001727 }
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001728
1729 return 0;
1730}
1731EXPORT_SYMBOL(drm_atomic_set_crtc_for_connector);
1732
Brian Starkey935774c2017-03-29 17:42:32 +01001733/*
1734 * drm_atomic_get_writeback_job - return or allocate a writeback job
1735 * @conn_state: Connector state to get the job for
1736 *
1737 * Writeback jobs have a different lifetime to the atomic state they are
1738 * associated with. This convenience function takes care of allocating a job
1739 * if there isn't yet one associated with the connector state, otherwise
1740 * it just returns the existing job.
1741 *
1742 * Returns: The writeback job for the given connector state
1743 */
1744static struct drm_writeback_job *
1745drm_atomic_get_writeback_job(struct drm_connector_state *conn_state)
1746{
1747 WARN_ON(conn_state->connector->connector_type != DRM_MODE_CONNECTOR_WRITEBACK);
1748
1749 if (!conn_state->writeback_job)
1750 conn_state->writeback_job =
1751 kzalloc(sizeof(*conn_state->writeback_job), GFP_KERNEL);
1752
1753 return conn_state->writeback_job;
1754}
1755
1756/**
1757 * drm_atomic_set_writeback_fb_for_connector - set writeback framebuffer
1758 * @conn_state: atomic state object for the connector
1759 * @fb: fb to use for the connector
1760 *
1761 * This is used to set the framebuffer for a writeback connector, which outputs
1762 * to a buffer instead of an actual physical connector.
1763 * Changing the assigned framebuffer requires us to grab a reference to the new
1764 * fb and drop the reference to the old fb, if there is one. This function
1765 * takes care of all these details besides updating the pointer in the
1766 * state object itself.
1767 *
1768 * Note: The only way conn_state can already have an fb set is if the commit
1769 * sets the property more than once.
1770 *
1771 * See also: drm_writeback_connector_init()
1772 *
1773 * Returns: 0 on success
1774 */
1775int drm_atomic_set_writeback_fb_for_connector(
1776 struct drm_connector_state *conn_state,
1777 struct drm_framebuffer *fb)
1778{
1779 struct drm_writeback_job *job =
1780 drm_atomic_get_writeback_job(conn_state);
1781 if (!job)
1782 return -ENOMEM;
1783
1784 drm_framebuffer_assign(&job->fb, fb);
1785
1786 if (fb)
1787 DRM_DEBUG_ATOMIC("Set [FB:%d] for connector state %p\n",
1788 fb->base.id, conn_state);
1789 else
1790 DRM_DEBUG_ATOMIC("Set [NOFB] for connector state %p\n",
1791 conn_state);
1792
1793 return 0;
1794}
1795EXPORT_SYMBOL(drm_atomic_set_writeback_fb_for_connector);
1796
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001797/**
1798 * drm_atomic_add_affected_connectors - add connectors for crtc
1799 * @state: atomic state
1800 * @crtc: DRM crtc
1801 *
1802 * This function walks the current configuration and adds all connectors
1803 * currently using @crtc to the atomic configuration @state. Note that this
1804 * function must acquire the connection mutex. This can potentially cause
1805 * unneeded seralization if the update is just for the planes on one crtc. Hence
1806 * drivers and helpers should only call this when really needed (e.g. when a
1807 * full modeset needs to happen due to some change).
1808 *
1809 * Returns:
1810 * 0 on success or can fail with -EDEADLK or -ENOMEM. When the error is EDEADLK
1811 * then the w/w mutex code has detected a deadlock and the entire atomic
1812 * sequence must be restarted. All other errors are fatal.
1813 */
1814int
1815drm_atomic_add_affected_connectors(struct drm_atomic_state *state,
1816 struct drm_crtc *crtc)
1817{
1818 struct drm_mode_config *config = &state->dev->mode_config;
1819 struct drm_connector *connector;
1820 struct drm_connector_state *conn_state;
Daniel Vetter613051d2016-12-14 00:08:06 +01001821 struct drm_connector_list_iter conn_iter;
Maarten Lankhorst5351bbd2017-01-16 10:37:39 +01001822 struct drm_crtc_state *crtc_state;
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001823 int ret;
1824
Maarten Lankhorst5351bbd2017-01-16 10:37:39 +01001825 crtc_state = drm_atomic_get_crtc_state(state, crtc);
1826 if (IS_ERR(crtc_state))
1827 return PTR_ERR(crtc_state);
1828
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001829 ret = drm_modeset_lock(&config->connection_mutex, state->acquire_ctx);
1830 if (ret)
1831 return ret;
1832
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +02001833 DRM_DEBUG_ATOMIC("Adding all current connectors for [CRTC:%d:%s] to %p\n",
1834 crtc->base.id, crtc->name, state);
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001835
1836 /*
Maarten Lankhorst5351bbd2017-01-16 10:37:39 +01001837 * Changed connectors are already in @state, so only need to look
1838 * at the connector_mask in crtc_state.
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001839 */
Thierry Redingb982dab2017-02-28 15:46:43 +01001840 drm_connector_list_iter_begin(state->dev, &conn_iter);
Daniel Vetter613051d2016-12-14 00:08:06 +01001841 drm_for_each_connector_iter(connector, &conn_iter) {
Maarten Lankhorst5351bbd2017-01-16 10:37:39 +01001842 if (!(crtc_state->connector_mask & (1 << drm_connector_index(connector))))
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001843 continue;
1844
1845 conn_state = drm_atomic_get_connector_state(state, connector);
Daniel Vetter613051d2016-12-14 00:08:06 +01001846 if (IS_ERR(conn_state)) {
Thierry Redingb982dab2017-02-28 15:46:43 +01001847 drm_connector_list_iter_end(&conn_iter);
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001848 return PTR_ERR(conn_state);
Daniel Vetter613051d2016-12-14 00:08:06 +01001849 }
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001850 }
Thierry Redingb982dab2017-02-28 15:46:43 +01001851 drm_connector_list_iter_end(&conn_iter);
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001852
1853 return 0;
1854}
1855EXPORT_SYMBOL(drm_atomic_add_affected_connectors);
1856
1857/**
Maarten Lankhorste01e9f72015-05-19 16:41:02 +02001858 * drm_atomic_add_affected_planes - add planes for crtc
1859 * @state: atomic state
1860 * @crtc: DRM crtc
1861 *
1862 * This function walks the current configuration and adds all planes
1863 * currently used by @crtc to the atomic configuration @state. This is useful
1864 * when an atomic commit also needs to check all currently enabled plane on
1865 * @crtc, e.g. when changing the mode. It's also useful when re-enabling a CRTC
1866 * to avoid special code to force-enable all planes.
1867 *
1868 * Since acquiring a plane state will always also acquire the w/w mutex of the
1869 * current CRTC for that plane (if there is any) adding all the plane states for
1870 * a CRTC will not reduce parallism of atomic updates.
1871 *
1872 * Returns:
1873 * 0 on success or can fail with -EDEADLK or -ENOMEM. When the error is EDEADLK
1874 * then the w/w mutex code has detected a deadlock and the entire atomic
1875 * sequence must be restarted. All other errors are fatal.
1876 */
1877int
1878drm_atomic_add_affected_planes(struct drm_atomic_state *state,
1879 struct drm_crtc *crtc)
1880{
1881 struct drm_plane *plane;
1882
Maarten Lankhorstb4d93672017-03-01 10:22:10 +01001883 WARN_ON(!drm_atomic_get_new_crtc_state(state, crtc));
Maarten Lankhorste01e9f72015-05-19 16:41:02 +02001884
Ville Syrjäläb6f690a2018-06-11 22:34:01 +03001885 DRM_DEBUG_ATOMIC("Adding all current planes for [CRTC:%d:%s] to %p\n",
1886 crtc->base.id, crtc->name, state);
1887
Maarten Lankhorste01e9f72015-05-19 16:41:02 +02001888 drm_for_each_plane_mask(plane, state->dev, crtc->state->plane_mask) {
1889 struct drm_plane_state *plane_state =
1890 drm_atomic_get_plane_state(state, plane);
1891
1892 if (IS_ERR(plane_state))
1893 return PTR_ERR(plane_state);
1894 }
1895 return 0;
1896}
1897EXPORT_SYMBOL(drm_atomic_add_affected_planes);
1898
1899/**
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001900 * drm_atomic_check_only - check whether a given config would work
1901 * @state: atomic configuration to check
1902 *
1903 * Note that this function can return -EDEADLK if the driver needed to acquire
1904 * more locks but encountered a deadlock. The caller must then do the usual w/w
1905 * backoff dance and restart. All other errors are fatal.
1906 *
1907 * Returns:
1908 * 0 on success, negative error code on failure.
1909 */
1910int drm_atomic_check_only(struct drm_atomic_state *state)
1911{
Rob Clark5e743732014-12-18 16:01:51 -05001912 struct drm_device *dev = state->dev;
1913 struct drm_mode_config *config = &dev->mode_config;
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001914 struct drm_plane *plane;
1915 struct drm_plane_state *plane_state;
1916 struct drm_crtc *crtc;
1917 struct drm_crtc_state *crtc_state;
Brian Starkey935774c2017-03-29 17:42:32 +01001918 struct drm_connector *conn;
1919 struct drm_connector_state *conn_state;
Rob Clark5e743732014-12-18 16:01:51 -05001920 int i, ret = 0;
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001921
Daniel Vetter17a38d92015-02-22 12:24:16 +01001922 DRM_DEBUG_ATOMIC("checking %p\n", state);
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001923
Maarten Lankhorst5721a382017-01-16 10:37:40 +01001924 for_each_new_plane_in_state(state, plane, plane_state, i) {
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001925 ret = drm_atomic_plane_check(plane, plane_state);
Rob Clark5e743732014-12-18 16:01:51 -05001926 if (ret) {
Ville Syrjälä9f4c97a2015-12-08 18:41:54 +02001927 DRM_DEBUG_ATOMIC("[PLANE:%d:%s] atomic core check failed\n",
1928 plane->base.id, plane->name);
Rob Clark5e743732014-12-18 16:01:51 -05001929 return ret;
1930 }
1931 }
1932
Maarten Lankhorst5721a382017-01-16 10:37:40 +01001933 for_each_new_crtc_in_state(state, crtc, crtc_state, i) {
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001934 ret = drm_atomic_crtc_check(crtc, crtc_state);
Rob Clark5e743732014-12-18 16:01:51 -05001935 if (ret) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +02001936 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] atomic core check failed\n",
1937 crtc->base.id, crtc->name);
Rob Clark5e743732014-12-18 16:01:51 -05001938 return ret;
1939 }
1940 }
1941
Brian Starkey935774c2017-03-29 17:42:32 +01001942 for_each_new_connector_in_state(state, conn, conn_state, i) {
1943 ret = drm_atomic_connector_check(conn, conn_state);
1944 if (ret) {
1945 DRM_DEBUG_ATOMIC("[CONNECTOR:%d:%s] atomic core check failed\n",
1946 conn->base.id, conn->name);
1947 return ret;
1948 }
1949 }
1950
Lyude Paul14d4e522018-04-11 19:42:40 -04001951 if (config->funcs->atomic_check) {
Rob Clark5e743732014-12-18 16:01:51 -05001952 ret = config->funcs->atomic_check(state->dev, state);
1953
Lyude Paul14d4e522018-04-11 19:42:40 -04001954 if (ret) {
1955 DRM_DEBUG_ATOMIC("atomic driver check for %p failed: %d\n",
1956 state, ret);
1957 return ret;
1958 }
1959 }
Maarten Lankhorsta0ffc512017-08-15 11:57:06 +02001960
Rob Clarkd34f20d2014-12-18 16:01:56 -05001961 if (!state->allow_modeset) {
Maarten Lankhorst5721a382017-01-16 10:37:40 +01001962 for_each_new_crtc_in_state(state, crtc, crtc_state, i) {
Daniel Vetter2465ff62015-06-18 09:58:55 +02001963 if (drm_atomic_crtc_needs_modeset(crtc_state)) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +02001964 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] requires full modeset\n",
1965 crtc->base.id, crtc->name);
Rob Clarkd34f20d2014-12-18 16:01:56 -05001966 return -EINVAL;
1967 }
1968 }
1969 }
1970
Maarten Lankhorsta0ffc512017-08-15 11:57:06 +02001971 return 0;
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001972}
1973EXPORT_SYMBOL(drm_atomic_check_only);
1974
1975/**
1976 * drm_atomic_commit - commit configuration atomically
1977 * @state: atomic configuration to check
1978 *
1979 * Note that this function can return -EDEADLK if the driver needed to acquire
1980 * more locks but encountered a deadlock. The caller must then do the usual w/w
1981 * backoff dance and restart. All other errors are fatal.
1982 *
Maarten Lankhorst76fede22017-01-04 12:34:00 +01001983 * This function will take its own reference on @state.
1984 * Callers should always release their reference with drm_atomic_state_put().
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001985 *
1986 * Returns:
1987 * 0 on success, negative error code on failure.
1988 */
1989int drm_atomic_commit(struct drm_atomic_state *state)
1990{
1991 struct drm_mode_config *config = &state->dev->mode_config;
1992 int ret;
1993
1994 ret = drm_atomic_check_only(state);
1995 if (ret)
1996 return ret;
1997
Colin Ian Kinga0752d42017-04-12 17:27:22 +01001998 DRM_DEBUG_ATOMIC("committing %p\n", state);
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001999
2000 return config->funcs->atomic_commit(state->dev, state, false);
2001}
2002EXPORT_SYMBOL(drm_atomic_commit);
2003
2004/**
Daniel Vetterd5745282017-01-25 07:26:45 +01002005 * drm_atomic_nonblocking_commit - atomic nonblocking commit
Daniel Vettercc4ceb42014-07-25 21:30:38 +02002006 * @state: atomic configuration to check
2007 *
2008 * Note that this function can return -EDEADLK if the driver needed to acquire
2009 * more locks but encountered a deadlock. The caller must then do the usual w/w
2010 * backoff dance and restart. All other errors are fatal.
2011 *
Maarten Lankhorst76fede22017-01-04 12:34:00 +01002012 * This function will take its own reference on @state.
2013 * Callers should always release their reference with drm_atomic_state_put().
Daniel Vettercc4ceb42014-07-25 21:30:38 +02002014 *
2015 * Returns:
2016 * 0 on success, negative error code on failure.
2017 */
Maarten Lankhorstb837ba02016-04-26 16:11:35 +02002018int drm_atomic_nonblocking_commit(struct drm_atomic_state *state)
Daniel Vettercc4ceb42014-07-25 21:30:38 +02002019{
2020 struct drm_mode_config *config = &state->dev->mode_config;
2021 int ret;
2022
2023 ret = drm_atomic_check_only(state);
2024 if (ret)
2025 return ret;
2026
Colin Ian Kinga0752d42017-04-12 17:27:22 +01002027 DRM_DEBUG_ATOMIC("committing %p nonblocking\n", state);
Daniel Vettercc4ceb42014-07-25 21:30:38 +02002028
2029 return config->funcs->atomic_commit(state->dev, state, true);
2030}
Maarten Lankhorstb837ba02016-04-26 16:11:35 +02002031EXPORT_SYMBOL(drm_atomic_nonblocking_commit);
Rob Clarkd34f20d2014-12-18 16:01:56 -05002032
Rob Clarkfceffb322016-11-05 11:08:09 -04002033static void drm_atomic_print_state(const struct drm_atomic_state *state)
2034{
2035 struct drm_printer p = drm_info_printer(state->dev->dev);
2036 struct drm_plane *plane;
2037 struct drm_plane_state *plane_state;
2038 struct drm_crtc *crtc;
2039 struct drm_crtc_state *crtc_state;
2040 struct drm_connector *connector;
2041 struct drm_connector_state *connector_state;
2042 int i;
2043
2044 DRM_DEBUG_ATOMIC("checking %p\n", state);
2045
Maarten Lankhorst5721a382017-01-16 10:37:40 +01002046 for_each_new_plane_in_state(state, plane, plane_state, i)
Rob Clarkfceffb322016-11-05 11:08:09 -04002047 drm_atomic_plane_print_state(&p, plane_state);
2048
Maarten Lankhorst5721a382017-01-16 10:37:40 +01002049 for_each_new_crtc_in_state(state, crtc, crtc_state, i)
Rob Clarkfceffb322016-11-05 11:08:09 -04002050 drm_atomic_crtc_print_state(&p, crtc_state);
2051
Maarten Lankhorst5721a382017-01-16 10:37:40 +01002052 for_each_new_connector_in_state(state, connector, connector_state, i)
Rob Clarkfceffb322016-11-05 11:08:09 -04002053 drm_atomic_connector_print_state(&p, connector_state);
2054}
2055
Daniel Vetterc2d85562017-04-03 10:32:54 +02002056static void __drm_state_dump(struct drm_device *dev, struct drm_printer *p,
2057 bool take_locks)
2058{
2059 struct drm_mode_config *config = &dev->mode_config;
2060 struct drm_plane *plane;
2061 struct drm_crtc *crtc;
2062 struct drm_connector *connector;
2063 struct drm_connector_list_iter conn_iter;
2064
2065 if (!drm_core_check_feature(dev, DRIVER_ATOMIC))
2066 return;
2067
2068 list_for_each_entry(plane, &config->plane_list, head) {
2069 if (take_locks)
2070 drm_modeset_lock(&plane->mutex, NULL);
2071 drm_atomic_plane_print_state(p, plane->state);
2072 if (take_locks)
2073 drm_modeset_unlock(&plane->mutex);
2074 }
2075
2076 list_for_each_entry(crtc, &config->crtc_list, head) {
2077 if (take_locks)
2078 drm_modeset_lock(&crtc->mutex, NULL);
2079 drm_atomic_crtc_print_state(p, crtc->state);
2080 if (take_locks)
2081 drm_modeset_unlock(&crtc->mutex);
2082 }
2083
2084 drm_connector_list_iter_begin(dev, &conn_iter);
2085 if (take_locks)
2086 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
2087 drm_for_each_connector_iter(connector, &conn_iter)
2088 drm_atomic_connector_print_state(p, connector->state);
2089 if (take_locks)
2090 drm_modeset_unlock(&dev->mode_config.connection_mutex);
2091 drm_connector_list_iter_end(&conn_iter);
2092}
2093
Rob Clark6559c902016-11-05 11:08:10 -04002094/**
2095 * drm_state_dump - dump entire device atomic state
2096 * @dev: the drm device
2097 * @p: where to print the state to
2098 *
2099 * Just for debugging. Drivers might want an option to dump state
2100 * to dmesg in case of error irq's. (Hint, you probably want to
2101 * ratelimit this!)
2102 *
2103 * The caller must drm_modeset_lock_all(), or if this is called
2104 * from error irq handler, it should not be enabled by default.
2105 * (Ie. if you are debugging errors you might not care that this
2106 * is racey. But calling this without all modeset locks held is
2107 * not inherently safe.)
2108 */
2109void drm_state_dump(struct drm_device *dev, struct drm_printer *p)
2110{
Daniel Vetterc2d85562017-04-03 10:32:54 +02002111 __drm_state_dump(dev, p, false);
Rob Clark6559c902016-11-05 11:08:10 -04002112}
2113EXPORT_SYMBOL(drm_state_dump);
2114
2115#ifdef CONFIG_DEBUG_FS
2116static int drm_state_info(struct seq_file *m, void *data)
2117{
2118 struct drm_info_node *node = (struct drm_info_node *) m->private;
2119 struct drm_device *dev = node->minor->dev;
2120 struct drm_printer p = drm_seq_file_printer(m);
2121
Daniel Vetterc2d85562017-04-03 10:32:54 +02002122 __drm_state_dump(dev, &p, true);
Rob Clark6559c902016-11-05 11:08:10 -04002123
2124 return 0;
2125}
2126
2127/* any use in debugfs files to dump individual planes/crtc/etc? */
2128static const struct drm_info_list drm_atomic_debugfs_list[] = {
2129 {"state", drm_state_info, 0},
2130};
2131
2132int drm_atomic_debugfs_init(struct drm_minor *minor)
2133{
2134 return drm_debugfs_create_files(drm_atomic_debugfs_list,
2135 ARRAY_SIZE(drm_atomic_debugfs_list),
2136 minor->debugfs_root, minor);
2137}
2138#endif
2139
Rob Clarkd34f20d2014-12-18 16:01:56 -05002140/*
Liviu Dudau21be9152017-11-01 14:04:36 +00002141 * The big monster ioctl
Rob Clarkd34f20d2014-12-18 16:01:56 -05002142 */
2143
2144static struct drm_pending_vblank_event *create_vblank_event(
Keith Packardbd386e52017-07-05 14:34:23 -07002145 struct drm_crtc *crtc, uint64_t user_data)
Rob Clarkd34f20d2014-12-18 16:01:56 -05002146{
2147 struct drm_pending_vblank_event *e = NULL;
Rob Clarkd34f20d2014-12-18 16:01:56 -05002148
2149 e = kzalloc(sizeof *e, GFP_KERNEL);
Daniel Vetter2dd500f2016-01-11 22:40:56 +01002150 if (!e)
2151 return NULL;
Rob Clarkd34f20d2014-12-18 16:01:56 -05002152
2153 e->event.base.type = DRM_EVENT_FLIP_COMPLETE;
Daniel Vetter2dd500f2016-01-11 22:40:56 +01002154 e->event.base.length = sizeof(e->event);
Keith Packardbd386e52017-07-05 14:34:23 -07002155 e->event.vbl.crtc_id = crtc->base.id;
2156 e->event.vbl.user_data = user_data;
Rob Clarkd34f20d2014-12-18 16:01:56 -05002157
Rob Clarkd34f20d2014-12-18 16:01:56 -05002158 return e;
2159}
2160
Daniel Vetter144a7992017-07-25 14:02:04 +02002161int drm_atomic_connector_commit_dpms(struct drm_atomic_state *state,
2162 struct drm_connector *connector,
2163 int mode)
2164{
2165 struct drm_connector *tmp_connector;
2166 struct drm_connector_state *new_conn_state;
2167 struct drm_crtc *crtc;
2168 struct drm_crtc_state *crtc_state;
2169 int i, ret, old_mode = connector->dpms;
2170 bool active = false;
2171
2172 ret = drm_modeset_lock(&state->dev->mode_config.connection_mutex,
2173 state->acquire_ctx);
2174 if (ret)
2175 return ret;
2176
2177 if (mode != DRM_MODE_DPMS_ON)
2178 mode = DRM_MODE_DPMS_OFF;
2179 connector->dpms = mode;
2180
2181 crtc = connector->state->crtc;
2182 if (!crtc)
2183 goto out;
2184 ret = drm_atomic_add_affected_connectors(state, crtc);
2185 if (ret)
2186 goto out;
2187
2188 crtc_state = drm_atomic_get_crtc_state(state, crtc);
2189 if (IS_ERR(crtc_state)) {
2190 ret = PTR_ERR(crtc_state);
2191 goto out;
2192 }
2193
2194 for_each_new_connector_in_state(state, tmp_connector, new_conn_state, i) {
2195 if (new_conn_state->crtc != crtc)
2196 continue;
2197 if (tmp_connector->dpms == DRM_MODE_DPMS_ON) {
2198 active = true;
2199 break;
2200 }
2201 }
2202
2203 crtc_state->active = active;
2204 ret = drm_atomic_commit(state);
2205out:
2206 if (ret != 0)
2207 connector->dpms = old_mode;
2208 return ret;
2209}
2210
2211int drm_atomic_set_property(struct drm_atomic_state *state,
2212 struct drm_mode_object *obj,
2213 struct drm_property *prop,
2214 uint64_t prop_value)
Rob Clarkd34f20d2014-12-18 16:01:56 -05002215{
2216 struct drm_mode_object *ref;
2217 int ret;
2218
2219 if (!drm_property_change_valid_get(prop, prop_value, &ref))
2220 return -EINVAL;
2221
2222 switch (obj->type) {
2223 case DRM_MODE_OBJECT_CONNECTOR: {
2224 struct drm_connector *connector = obj_to_connector(obj);
2225 struct drm_connector_state *connector_state;
2226
2227 connector_state = drm_atomic_get_connector_state(state, connector);
2228 if (IS_ERR(connector_state)) {
2229 ret = PTR_ERR(connector_state);
2230 break;
2231 }
2232
2233 ret = drm_atomic_connector_set_property(connector,
2234 connector_state, prop, prop_value);
2235 break;
2236 }
2237 case DRM_MODE_OBJECT_CRTC: {
2238 struct drm_crtc *crtc = obj_to_crtc(obj);
2239 struct drm_crtc_state *crtc_state;
2240
2241 crtc_state = drm_atomic_get_crtc_state(state, crtc);
2242 if (IS_ERR(crtc_state)) {
2243 ret = PTR_ERR(crtc_state);
2244 break;
2245 }
2246
2247 ret = drm_atomic_crtc_set_property(crtc,
2248 crtc_state, prop, prop_value);
2249 break;
2250 }
2251 case DRM_MODE_OBJECT_PLANE: {
2252 struct drm_plane *plane = obj_to_plane(obj);
2253 struct drm_plane_state *plane_state;
2254
2255 plane_state = drm_atomic_get_plane_state(state, plane);
2256 if (IS_ERR(plane_state)) {
2257 ret = PTR_ERR(plane_state);
2258 break;
2259 }
2260
2261 ret = drm_atomic_plane_set_property(plane,
2262 plane_state, prop, prop_value);
2263 break;
2264 }
2265 default:
2266 ret = -EINVAL;
2267 break;
2268 }
2269
2270 drm_property_change_valid_put(prop, ref);
2271 return ret;
2272}
2273
Maarten Lankhorst0f45c262015-11-11 11:29:09 +01002274/**
Gustavo Padovan9a83a712016-11-22 09:11:28 +09002275 * DOC: explicit fencing properties
2276 *
2277 * Explicit fencing allows userspace to control the buffer synchronization
2278 * between devices. A Fence or a group of fences are transfered to/from
2279 * userspace using Sync File fds and there are two DRM properties for that.
2280 * IN_FENCE_FD on each DRM Plane to send fences to the kernel and
2281 * OUT_FENCE_PTR on each DRM CRTC to receive fences from the kernel.
2282 *
2283 * As a contrast, with implicit fencing the kernel keeps track of any
2284 * ongoing rendering, and automatically ensures that the atomic update waits
2285 * for any pending rendering to complete. For shared buffers represented with
Daniel Vetterd5745282017-01-25 07:26:45 +01002286 * a &struct dma_buf this is tracked in &struct reservation_object.
Gustavo Padovan9a83a712016-11-22 09:11:28 +09002287 * Implicit syncing is how Linux traditionally worked (e.g. DRI2/3 on X.org),
2288 * whereas explicit fencing is what Android wants.
2289 *
2290 * "IN_FENCE_FD”:
2291 * Use this property to pass a fence that DRM should wait on before
2292 * proceeding with the Atomic Commit request and show the framebuffer for
2293 * the plane on the screen. The fence can be either a normal fence or a
2294 * merged one, the sync_file framework will handle both cases and use a
2295 * fence_array if a merged fence is received. Passing -1 here means no
2296 * fences to wait on.
2297 *
2298 * If the Atomic Commit request has the DRM_MODE_ATOMIC_TEST_ONLY flag
2299 * it will only check if the Sync File is a valid one.
2300 *
2301 * On the driver side the fence is stored on the @fence parameter of
Daniel Vetterea0dd852016-12-29 21:48:26 +01002302 * &struct drm_plane_state. Drivers which also support implicit fencing
Gustavo Padovan9a83a712016-11-22 09:11:28 +09002303 * should set the implicit fence using drm_atomic_set_fence_for_plane(),
2304 * to make sure there's consistent behaviour between drivers in precedence
2305 * of implicit vs. explicit fencing.
2306 *
2307 * "OUT_FENCE_PTR”:
2308 * Use this property to pass a file descriptor pointer to DRM. Once the
2309 * Atomic Commit request call returns OUT_FENCE_PTR will be filled with
2310 * the file descriptor number of a Sync File. This Sync File contains the
2311 * CRTC fence that will be signaled when all framebuffers present on the
2312 * Atomic Commit * request for that given CRTC are scanned out on the
2313 * screen.
2314 *
2315 * The Atomic Commit request fails if a invalid pointer is passed. If the
2316 * Atomic Commit request fails for any other reason the out fence fd
2317 * returned will be -1. On a Atomic Commit with the
2318 * DRM_MODE_ATOMIC_TEST_ONLY flag the out fence will also be set to -1.
2319 *
2320 * Note that out-fences don't have a special interface to drivers and are
Daniel Vetterea0dd852016-12-29 21:48:26 +01002321 * internally represented by a &struct drm_pending_vblank_event in struct
Gustavo Padovan9a83a712016-11-22 09:11:28 +09002322 * &drm_crtc_state, which is also used by the nonblocking atomic commit
2323 * helpers and for the DRM event handling for existing userspace.
2324 */
2325
Gustavo Padovanbeaf5af2016-11-16 22:00:21 +09002326struct drm_out_fence_state {
Gustavo Padovan7e9081c2017-01-13 12:22:09 -02002327 s32 __user *out_fence_ptr;
Gustavo Padovanbeaf5af2016-11-16 22:00:21 +09002328 struct sync_file *sync_file;
2329 int fd;
2330};
2331
2332static int setup_out_fence(struct drm_out_fence_state *fence_state,
2333 struct dma_fence *fence)
2334{
2335 fence_state->fd = get_unused_fd_flags(O_CLOEXEC);
2336 if (fence_state->fd < 0)
2337 return fence_state->fd;
2338
2339 if (put_user(fence_state->fd, fence_state->out_fence_ptr))
2340 return -EFAULT;
2341
2342 fence_state->sync_file = sync_file_create(fence);
2343 if (!fence_state->sync_file)
2344 return -ENOMEM;
2345
2346 return 0;
2347}
2348
Brian Starkeyb13cc8d2017-03-29 17:42:33 +01002349static int prepare_signaling(struct drm_device *dev,
Gustavo Padovanbeaf5af2016-11-16 22:00:21 +09002350 struct drm_atomic_state *state,
2351 struct drm_mode_atomic *arg,
2352 struct drm_file *file_priv,
2353 struct drm_out_fence_state **fence_state,
2354 unsigned int *num_fences)
2355{
2356 struct drm_crtc *crtc;
2357 struct drm_crtc_state *crtc_state;
Brian Starkeyb13cc8d2017-03-29 17:42:33 +01002358 struct drm_connector *conn;
2359 struct drm_connector_state *conn_state;
Andrey Grodzovsky330c4222017-06-20 13:57:06 -04002360 int i, c = 0, ret;
Gustavo Padovanbeaf5af2016-11-16 22:00:21 +09002361
2362 if (arg->flags & DRM_MODE_ATOMIC_TEST_ONLY)
2363 return 0;
2364
Maarten Lankhorst5721a382017-01-16 10:37:40 +01002365 for_each_new_crtc_in_state(state, crtc, crtc_state, i) {
Gustavo Padovan7e9081c2017-01-13 12:22:09 -02002366 s32 __user *fence_ptr;
Gustavo Padovanbeaf5af2016-11-16 22:00:21 +09002367
2368 fence_ptr = get_out_fence_for_crtc(crtc_state->state, crtc);
2369
2370 if (arg->flags & DRM_MODE_PAGE_FLIP_EVENT || fence_ptr) {
2371 struct drm_pending_vblank_event *e;
2372
Keith Packardbd386e52017-07-05 14:34:23 -07002373 e = create_vblank_event(crtc, arg->user_data);
Gustavo Padovanbeaf5af2016-11-16 22:00:21 +09002374 if (!e)
2375 return -ENOMEM;
2376
2377 crtc_state->event = e;
2378 }
2379
2380 if (arg->flags & DRM_MODE_PAGE_FLIP_EVENT) {
2381 struct drm_pending_vblank_event *e = crtc_state->event;
2382
2383 if (!file_priv)
2384 continue;
2385
2386 ret = drm_event_reserve_init(dev, file_priv, &e->base,
2387 &e->event.base);
2388 if (ret) {
2389 kfree(e);
2390 crtc_state->event = NULL;
2391 return ret;
2392 }
2393 }
2394
2395 if (fence_ptr) {
2396 struct dma_fence *fence;
2397 struct drm_out_fence_state *f;
2398
2399 f = krealloc(*fence_state, sizeof(**fence_state) *
2400 (*num_fences + 1), GFP_KERNEL);
2401 if (!f)
2402 return -ENOMEM;
2403
2404 memset(&f[*num_fences], 0, sizeof(*f));
2405
2406 f[*num_fences].out_fence_ptr = fence_ptr;
2407 *fence_state = f;
2408
Gustavo Padovan35f8cc32016-12-06 15:47:17 -02002409 fence = drm_crtc_create_fence(crtc);
Gustavo Padovanbeaf5af2016-11-16 22:00:21 +09002410 if (!fence)
2411 return -ENOMEM;
2412
2413 ret = setup_out_fence(&f[(*num_fences)++], fence);
2414 if (ret) {
2415 dma_fence_put(fence);
2416 return ret;
2417 }
2418
2419 crtc_state->event->base.fence = fence;
2420 }
Andrey Grodzovsky330c4222017-06-20 13:57:06 -04002421
2422 c++;
Gustavo Padovanbeaf5af2016-11-16 22:00:21 +09002423 }
2424
Brian Starkeyb13cc8d2017-03-29 17:42:33 +01002425 for_each_new_connector_in_state(state, conn, conn_state, i) {
2426 struct drm_writeback_job *job;
2427 struct drm_out_fence_state *f;
2428 struct dma_fence *fence;
2429 s32 __user *fence_ptr;
2430
2431 fence_ptr = get_out_fence_for_connector(state, conn);
2432 if (!fence_ptr)
2433 continue;
2434
2435 job = drm_atomic_get_writeback_job(conn_state);
2436 if (!job)
2437 return -ENOMEM;
2438
2439 f = krealloc(*fence_state, sizeof(**fence_state) *
2440 (*num_fences + 1), GFP_KERNEL);
2441 if (!f)
2442 return -ENOMEM;
2443
2444 memset(&f[*num_fences], 0, sizeof(*f));
2445
2446 f[*num_fences].out_fence_ptr = fence_ptr;
2447 *fence_state = f;
2448
2449 fence = drm_writeback_get_out_fence((struct drm_writeback_connector *)conn);
2450 if (!fence)
2451 return -ENOMEM;
2452
2453 ret = setup_out_fence(&f[(*num_fences)++], fence);
2454 if (ret) {
2455 dma_fence_put(fence);
2456 return ret;
2457 }
2458
2459 job->out_fence = fence;
2460 }
2461
Andrey Grodzovsky330c4222017-06-20 13:57:06 -04002462 /*
2463 * Having this flag means user mode pends on event which will never
2464 * reach due to lack of at least one CRTC for signaling
2465 */
2466 if (c == 0 && (arg->flags & DRM_MODE_PAGE_FLIP_EVENT))
2467 return -EINVAL;
2468
Gustavo Padovanbeaf5af2016-11-16 22:00:21 +09002469 return 0;
2470}
2471
Brian Starkeyb13cc8d2017-03-29 17:42:33 +01002472static void complete_signaling(struct drm_device *dev,
2473 struct drm_atomic_state *state,
2474 struct drm_out_fence_state *fence_state,
2475 unsigned int num_fences,
2476 bool install_fds)
Gustavo Padovanbeaf5af2016-11-16 22:00:21 +09002477{
2478 struct drm_crtc *crtc;
2479 struct drm_crtc_state *crtc_state;
2480 int i;
2481
2482 if (install_fds) {
2483 for (i = 0; i < num_fences; i++)
2484 fd_install(fence_state[i].fd,
2485 fence_state[i].sync_file->file);
2486
2487 kfree(fence_state);
2488 return;
2489 }
2490
Maarten Lankhorst5721a382017-01-16 10:37:40 +01002491 for_each_new_crtc_in_state(state, crtc, crtc_state, i) {
Maarten Lankhorst92c715f2017-01-31 10:25:25 +01002492 struct drm_pending_vblank_event *event = crtc_state->event;
Gustavo Padovanbeaf5af2016-11-16 22:00:21 +09002493 /*
Maarten Lankhorst92c715f2017-01-31 10:25:25 +01002494 * Free the allocated event. drm_atomic_helper_setup_commit
2495 * can allocate an event too, so only free it if it's ours
2496 * to prevent a double free in drm_atomic_state_clear.
Gustavo Padovanbeaf5af2016-11-16 22:00:21 +09002497 */
Maarten Lankhorst92c715f2017-01-31 10:25:25 +01002498 if (event && (event->base.fence || event->base.file_priv)) {
2499 drm_event_cancel_free(dev, &event->base);
2500 crtc_state->event = NULL;
2501 }
Gustavo Padovanbeaf5af2016-11-16 22:00:21 +09002502 }
2503
2504 if (!fence_state)
2505 return;
2506
2507 for (i = 0; i < num_fences; i++) {
2508 if (fence_state[i].sync_file)
2509 fput(fence_state[i].sync_file->file);
2510 if (fence_state[i].fd >= 0)
2511 put_unused_fd(fence_state[i].fd);
2512
2513 /* If this fails log error to the user */
2514 if (fence_state[i].out_fence_ptr &&
2515 put_user(-1, fence_state[i].out_fence_ptr))
2516 DRM_DEBUG_ATOMIC("Couldn't clear out_fence_ptr\n");
2517 }
2518
2519 kfree(fence_state);
2520}
2521
Rob Clarkd34f20d2014-12-18 16:01:56 -05002522int drm_mode_atomic_ioctl(struct drm_device *dev,
2523 void *data, struct drm_file *file_priv)
2524{
2525 struct drm_mode_atomic *arg = data;
2526 uint32_t __user *objs_ptr = (uint32_t __user *)(unsigned long)(arg->objs_ptr);
2527 uint32_t __user *count_props_ptr = (uint32_t __user *)(unsigned long)(arg->count_props_ptr);
2528 uint32_t __user *props_ptr = (uint32_t __user *)(unsigned long)(arg->props_ptr);
2529 uint64_t __user *prop_values_ptr = (uint64_t __user *)(unsigned long)(arg->prop_values_ptr);
2530 unsigned int copied_objs, copied_props;
2531 struct drm_atomic_state *state;
2532 struct drm_modeset_acquire_ctx ctx;
Maarten Lankhorst7f5d6da2017-08-14 12:07:21 +02002533 struct drm_out_fence_state *fence_state;
Rob Clarkd34f20d2014-12-18 16:01:56 -05002534 int ret = 0;
Maarten Lankhorst7f5d6da2017-08-14 12:07:21 +02002535 unsigned int i, j, num_fences;
Rob Clarkd34f20d2014-12-18 16:01:56 -05002536
2537 /* disallow for drivers not supporting atomic: */
2538 if (!drm_core_check_feature(dev, DRIVER_ATOMIC))
2539 return -EINVAL;
2540
2541 /* disallow for userspace that has not enabled atomic cap (even
2542 * though this may be a bit overkill, since legacy userspace
2543 * wouldn't know how to call this ioctl)
2544 */
2545 if (!file_priv->atomic)
2546 return -EINVAL;
2547
2548 if (arg->flags & ~DRM_MODE_ATOMIC_FLAGS)
2549 return -EINVAL;
2550
2551 if (arg->reserved)
2552 return -EINVAL;
2553
2554 if ((arg->flags & DRM_MODE_PAGE_FLIP_ASYNC) &&
2555 !dev->mode_config.async_page_flip)
2556 return -EINVAL;
2557
2558 /* can't test and expect an event at the same time. */
2559 if ((arg->flags & DRM_MODE_ATOMIC_TEST_ONLY) &&
2560 (arg->flags & DRM_MODE_PAGE_FLIP_EVENT))
2561 return -EINVAL;
2562
Maarten Lankhorstdad56ce2017-09-12 15:37:45 +02002563 drm_modeset_acquire_init(&ctx, DRM_MODESET_ACQUIRE_INTERRUPTIBLE);
Rob Clarkd34f20d2014-12-18 16:01:56 -05002564
2565 state = drm_atomic_state_alloc(dev);
2566 if (!state)
2567 return -ENOMEM;
2568
2569 state->acquire_ctx = &ctx;
2570 state->allow_modeset = !!(arg->flags & DRM_MODE_ATOMIC_ALLOW_MODESET);
2571
2572retry:
2573 copied_objs = 0;
2574 copied_props = 0;
Maarten Lankhorst7f5d6da2017-08-14 12:07:21 +02002575 fence_state = NULL;
2576 num_fences = 0;
Rob Clarkd34f20d2014-12-18 16:01:56 -05002577
2578 for (i = 0; i < arg->count_objs; i++) {
2579 uint32_t obj_id, count_props;
2580 struct drm_mode_object *obj;
2581
2582 if (get_user(obj_id, objs_ptr + copied_objs)) {
2583 ret = -EFAULT;
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02002584 goto out;
Rob Clarkd34f20d2014-12-18 16:01:56 -05002585 }
2586
Keith Packard418da172017-03-14 23:25:07 -07002587 obj = drm_mode_object_find(dev, file_priv, obj_id, DRM_MODE_OBJECT_ANY);
Dave Airlieb164d312016-04-27 11:10:09 +10002588 if (!obj) {
2589 ret = -ENOENT;
2590 goto out;
2591 }
2592
2593 if (!obj->properties) {
Thierry Reding020a2182017-02-28 15:46:38 +01002594 drm_mode_object_put(obj);
Rob Clarkd34f20d2014-12-18 16:01:56 -05002595 ret = -ENOENT;
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02002596 goto out;
Rob Clarkd34f20d2014-12-18 16:01:56 -05002597 }
2598
Rob Clarkd34f20d2014-12-18 16:01:56 -05002599 if (get_user(count_props, count_props_ptr + copied_objs)) {
Thierry Reding020a2182017-02-28 15:46:38 +01002600 drm_mode_object_put(obj);
Rob Clarkd34f20d2014-12-18 16:01:56 -05002601 ret = -EFAULT;
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02002602 goto out;
Rob Clarkd34f20d2014-12-18 16:01:56 -05002603 }
2604
2605 copied_objs++;
2606
2607 for (j = 0; j < count_props; j++) {
2608 uint32_t prop_id;
2609 uint64_t prop_value;
2610 struct drm_property *prop;
2611
2612 if (get_user(prop_id, props_ptr + copied_props)) {
Thierry Reding020a2182017-02-28 15:46:38 +01002613 drm_mode_object_put(obj);
Rob Clarkd34f20d2014-12-18 16:01:56 -05002614 ret = -EFAULT;
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02002615 goto out;
Rob Clarkd34f20d2014-12-18 16:01:56 -05002616 }
2617
Maarten Lankhorstf92f0532016-09-08 12:30:01 +02002618 prop = drm_mode_obj_find_prop_id(obj, prop_id);
Rob Clarkd34f20d2014-12-18 16:01:56 -05002619 if (!prop) {
Thierry Reding020a2182017-02-28 15:46:38 +01002620 drm_mode_object_put(obj);
Rob Clarkd34f20d2014-12-18 16:01:56 -05002621 ret = -ENOENT;
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02002622 goto out;
Rob Clarkd34f20d2014-12-18 16:01:56 -05002623 }
2624
Guenter Roeck42c58142015-01-12 21:12:17 -08002625 if (copy_from_user(&prop_value,
2626 prop_values_ptr + copied_props,
2627 sizeof(prop_value))) {
Thierry Reding020a2182017-02-28 15:46:38 +01002628 drm_mode_object_put(obj);
Rob Clarkd34f20d2014-12-18 16:01:56 -05002629 ret = -EFAULT;
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02002630 goto out;
Rob Clarkd34f20d2014-12-18 16:01:56 -05002631 }
2632
Daniel Vetter144a7992017-07-25 14:02:04 +02002633 ret = drm_atomic_set_property(state, obj, prop,
2634 prop_value);
Dave Airlieb164d312016-04-27 11:10:09 +10002635 if (ret) {
Thierry Reding020a2182017-02-28 15:46:38 +01002636 drm_mode_object_put(obj);
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02002637 goto out;
Dave Airlieb164d312016-04-27 11:10:09 +10002638 }
Rob Clarkd34f20d2014-12-18 16:01:56 -05002639
2640 copied_props++;
2641 }
Maarten Lankhorsta9cc54e2015-06-24 08:59:24 +02002642
Thierry Reding020a2182017-02-28 15:46:38 +01002643 drm_mode_object_put(obj);
Rob Clarkd34f20d2014-12-18 16:01:56 -05002644 }
2645
Brian Starkeyb13cc8d2017-03-29 17:42:33 +01002646 ret = prepare_signaling(dev, state, arg, file_priv, &fence_state,
2647 &num_fences);
Gustavo Padovanbeaf5af2016-11-16 22:00:21 +09002648 if (ret)
2649 goto out;
Rob Clarkd34f20d2014-12-18 16:01:56 -05002650
2651 if (arg->flags & DRM_MODE_ATOMIC_TEST_ONLY) {
2652 ret = drm_atomic_check_only(state);
Rob Clarkd34f20d2014-12-18 16:01:56 -05002653 } else if (arg->flags & DRM_MODE_ATOMIC_NONBLOCK) {
Maarten Lankhorstb837ba02016-04-26 16:11:35 +02002654 ret = drm_atomic_nonblocking_commit(state);
Rob Clarkd34f20d2014-12-18 16:01:56 -05002655 } else {
Rob Clarkfceffb322016-11-05 11:08:09 -04002656 if (unlikely(drm_debug & DRM_UT_STATE))
2657 drm_atomic_print_state(state);
2658
Rob Clarkd34f20d2014-12-18 16:01:56 -05002659 ret = drm_atomic_commit(state);
2660 }
2661
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02002662out:
Brian Starkeyb13cc8d2017-03-29 17:42:33 +01002663 complete_signaling(dev, state, fence_state, num_fences, !ret);
Maarten Lankhorstc4749c92015-08-31 12:25:04 +02002664
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02002665 if (ret == -EDEADLK) {
2666 drm_atomic_state_clear(state);
Maarten Lankhorstdad56ce2017-09-12 15:37:45 +02002667 ret = drm_modeset_backoff(&ctx);
2668 if (!ret)
2669 goto retry;
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02002670 }
2671
Chris Wilson08536952016-10-14 13:18:18 +01002672 drm_atomic_state_put(state);
Rob Clarkd34f20d2014-12-18 16:01:56 -05002673
2674 drm_modeset_drop_locks(&ctx);
2675 drm_modeset_acquire_fini(&ctx);
2676
2677 return ret;
Rob Clarkd34f20d2014-12-18 16:01:56 -05002678}