blob: 34adde169a789616002b2e2f3af7186d5441023a [file] [log] [blame]
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001/*
2 * Copyright (C) 2014 Red Hat
3 * Copyright (C) 2014 Intel Corp.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
19 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
20 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
21 * OTHER DEALINGS IN THE SOFTWARE.
22 *
23 * Authors:
24 * Rob Clark <robdclark@gmail.com>
25 * Daniel Vetter <daniel.vetter@ffwll.ch>
26 */
27
28
29#include <drm/drmP.h>
30#include <drm/drm_atomic.h>
Lionel Landwerlin5488dc12016-02-26 17:05:00 +000031#include <drm/drm_mode.h>
Daniel Vettercc4ceb42014-07-25 21:30:38 +020032#include <drm/drm_plane_helper.h>
33
Thierry Redingbe35f942016-04-28 15:19:56 +020034#include "drm_crtc_internal.h"
35
Daniel Vetter3b24f7d2016-06-08 14:19:00 +020036static void crtc_commit_free(struct kref *kref)
37{
38 struct drm_crtc_commit *commit =
39 container_of(kref, struct drm_crtc_commit, ref);
40
41 kfree(commit);
42}
43
44void drm_crtc_commit_put(struct drm_crtc_commit *commit)
45{
46 kref_put(&commit->ref, crtc_commit_free);
47}
48EXPORT_SYMBOL(drm_crtc_commit_put);
49
Maarten Lankhorst036ef572015-05-18 10:06:40 +020050/**
51 * drm_atomic_state_default_release -
52 * release memory initialized by drm_atomic_state_init
53 * @state: atomic state
54 *
55 * Free all the memory allocated by drm_atomic_state_init.
56 * This is useful for drivers that subclass the atomic state.
57 */
58void drm_atomic_state_default_release(struct drm_atomic_state *state)
Daniel Vettercc4ceb42014-07-25 21:30:38 +020059{
60 kfree(state->connectors);
Daniel Vettercc4ceb42014-07-25 21:30:38 +020061 kfree(state->crtcs);
Daniel Vettercc4ceb42014-07-25 21:30:38 +020062 kfree(state->planes);
Daniel Vettercc4ceb42014-07-25 21:30:38 +020063}
Maarten Lankhorst036ef572015-05-18 10:06:40 +020064EXPORT_SYMBOL(drm_atomic_state_default_release);
Daniel Vettercc4ceb42014-07-25 21:30:38 +020065
66/**
Maarten Lankhorst036ef572015-05-18 10:06:40 +020067 * drm_atomic_state_init - init new atomic state
Daniel Vettercc4ceb42014-07-25 21:30:38 +020068 * @dev: DRM device
Maarten Lankhorst036ef572015-05-18 10:06:40 +020069 * @state: atomic state
Daniel Vettercc4ceb42014-07-25 21:30:38 +020070 *
Maarten Lankhorst036ef572015-05-18 10:06:40 +020071 * Default implementation for filling in a new atomic state.
72 * This is useful for drivers that subclass the atomic state.
Daniel Vettercc4ceb42014-07-25 21:30:38 +020073 */
Maarten Lankhorst036ef572015-05-18 10:06:40 +020074int
75drm_atomic_state_init(struct drm_device *dev, struct drm_atomic_state *state)
Daniel Vettercc4ceb42014-07-25 21:30:38 +020076{
Rob Clarkd34f20d2014-12-18 16:01:56 -050077 /* TODO legacy paths should maybe do a better job about
78 * setting this appropriately?
79 */
80 state->allow_modeset = true;
81
Daniel Vettercc4ceb42014-07-25 21:30:38 +020082 state->crtcs = kcalloc(dev->mode_config.num_crtc,
83 sizeof(*state->crtcs), GFP_KERNEL);
84 if (!state->crtcs)
85 goto fail;
Daniel Vettercc4ceb42014-07-25 21:30:38 +020086 state->planes = kcalloc(dev->mode_config.num_total_plane,
87 sizeof(*state->planes), GFP_KERNEL);
88 if (!state->planes)
89 goto fail;
Daniel Vettercc4ceb42014-07-25 21:30:38 +020090
91 state->dev = dev;
92
Maarten Lankhorst036ef572015-05-18 10:06:40 +020093 DRM_DEBUG_ATOMIC("Allocated atomic state %p\n", state);
Daniel Vettercc4ceb42014-07-25 21:30:38 +020094
Maarten Lankhorst036ef572015-05-18 10:06:40 +020095 return 0;
Daniel Vettercc4ceb42014-07-25 21:30:38 +020096fail:
Maarten Lankhorst036ef572015-05-18 10:06:40 +020097 drm_atomic_state_default_release(state);
98 return -ENOMEM;
99}
100EXPORT_SYMBOL(drm_atomic_state_init);
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200101
Maarten Lankhorst036ef572015-05-18 10:06:40 +0200102/**
103 * drm_atomic_state_alloc - allocate atomic state
104 * @dev: DRM device
105 *
106 * This allocates an empty atomic state to track updates.
107 */
108struct drm_atomic_state *
109drm_atomic_state_alloc(struct drm_device *dev)
110{
111 struct drm_mode_config *config = &dev->mode_config;
112 struct drm_atomic_state *state;
113
114 if (!config->funcs->atomic_state_alloc) {
115 state = kzalloc(sizeof(*state), GFP_KERNEL);
116 if (!state)
117 return NULL;
118 if (drm_atomic_state_init(dev, state) < 0) {
119 kfree(state);
120 return NULL;
121 }
122 return state;
123 }
124
125 return config->funcs->atomic_state_alloc(dev);
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200126}
127EXPORT_SYMBOL(drm_atomic_state_alloc);
128
129/**
Maarten Lankhorst036ef572015-05-18 10:06:40 +0200130 * drm_atomic_state_default_clear - clear base atomic state
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200131 * @state: atomic state
132 *
Maarten Lankhorst036ef572015-05-18 10:06:40 +0200133 * Default implementation for clearing atomic state.
134 * This is useful for drivers that subclass the atomic state.
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200135 */
Maarten Lankhorst036ef572015-05-18 10:06:40 +0200136void drm_atomic_state_default_clear(struct drm_atomic_state *state)
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200137{
138 struct drm_device *dev = state->dev;
Daniel Vetter6f75cea2014-11-19 18:38:07 +0100139 struct drm_mode_config *config = &dev->mode_config;
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200140 int i;
141
Daniel Vetter17a38d92015-02-22 12:24:16 +0100142 DRM_DEBUG_ATOMIC("Clearing atomic state %p\n", state);
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200143
Daniel Vetterf52b69f12014-11-19 18:38:08 +0100144 for (i = 0; i < state->num_connector; i++) {
Daniel Vetter63e83c12016-06-02 00:06:32 +0200145 struct drm_connector *connector = state->connectors[i].ptr;
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200146
147 if (!connector)
148 continue;
149
Dave Airlied2307de2016-04-27 11:27:39 +1000150 connector->funcs->atomic_destroy_state(connector,
Daniel Vetter63e83c12016-06-02 00:06:32 +0200151 state->connectors[i].state);
152 state->connectors[i].ptr = NULL;
153 state->connectors[i].state = NULL;
Dave Airlieb164d312016-04-27 11:10:09 +1000154 drm_connector_unreference(connector);
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200155 }
156
Daniel Vetter6f75cea2014-11-19 18:38:07 +0100157 for (i = 0; i < config->num_crtc; i++) {
Daniel Vetter5d943aa62016-06-02 00:06:34 +0200158 struct drm_crtc *crtc = state->crtcs[i].ptr;
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200159
160 if (!crtc)
161 continue;
162
163 crtc->funcs->atomic_destroy_state(crtc,
Daniel Vetter5d943aa62016-06-02 00:06:34 +0200164 state->crtcs[i].state);
Daniel Vetter3b24f7d2016-06-08 14:19:00 +0200165
166 if (state->crtcs[i].commit) {
167 kfree(state->crtcs[i].commit->event);
168 state->crtcs[i].commit->event = NULL;
169 drm_crtc_commit_put(state->crtcs[i].commit);
170 }
171
172 state->crtcs[i].commit = NULL;
Daniel Vetter5d943aa62016-06-02 00:06:34 +0200173 state->crtcs[i].ptr = NULL;
174 state->crtcs[i].state = NULL;
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200175 }
176
Daniel Vetter6f75cea2014-11-19 18:38:07 +0100177 for (i = 0; i < config->num_total_plane; i++) {
Daniel Vetterb8b53422016-06-02 00:06:33 +0200178 struct drm_plane *plane = state->planes[i].ptr;
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200179
180 if (!plane)
181 continue;
182
183 plane->funcs->atomic_destroy_state(plane,
Daniel Vetterb8b53422016-06-02 00:06:33 +0200184 state->planes[i].state);
185 state->planes[i].ptr = NULL;
186 state->planes[i].state = NULL;
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200187 }
188}
Maarten Lankhorst036ef572015-05-18 10:06:40 +0200189EXPORT_SYMBOL(drm_atomic_state_default_clear);
190
191/**
192 * drm_atomic_state_clear - clear state object
193 * @state: atomic state
194 *
195 * When the w/w mutex algorithm detects a deadlock we need to back off and drop
196 * all locks. So someone else could sneak in and change the current modeset
197 * configuration. Which means that all the state assembled in @state is no
198 * longer an atomic update to the current state, but to some arbitrary earlier
199 * state. Which could break assumptions the driver's ->atomic_check likely
200 * relies on.
201 *
202 * Hence we must clear all cached state and completely start over, using this
203 * function.
204 */
205void drm_atomic_state_clear(struct drm_atomic_state *state)
206{
207 struct drm_device *dev = state->dev;
208 struct drm_mode_config *config = &dev->mode_config;
209
210 if (config->funcs->atomic_state_clear)
211 config->funcs->atomic_state_clear(state);
212 else
213 drm_atomic_state_default_clear(state);
214}
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200215EXPORT_SYMBOL(drm_atomic_state_clear);
216
217/**
218 * drm_atomic_state_free - free all memory for an atomic state
219 * @state: atomic state to deallocate
220 *
221 * This frees all memory associated with an atomic state, including all the
222 * per-object state for planes, crtcs and connectors.
223 */
224void drm_atomic_state_free(struct drm_atomic_state *state)
225{
Maarten Lankhorst036ef572015-05-18 10:06:40 +0200226 struct drm_device *dev;
227 struct drm_mode_config *config;
228
Ander Conselvan de Oliveiraa0211bb2015-03-30 14:05:43 +0300229 if (!state)
230 return;
231
Maarten Lankhorst036ef572015-05-18 10:06:40 +0200232 dev = state->dev;
233 config = &dev->mode_config;
234
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200235 drm_atomic_state_clear(state);
236
Daniel Vetter17a38d92015-02-22 12:24:16 +0100237 DRM_DEBUG_ATOMIC("Freeing atomic state %p\n", state);
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200238
Maarten Lankhorst036ef572015-05-18 10:06:40 +0200239 if (config->funcs->atomic_state_free) {
240 config->funcs->atomic_state_free(state);
241 } else {
242 drm_atomic_state_default_release(state);
243 kfree(state);
244 }
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200245}
246EXPORT_SYMBOL(drm_atomic_state_free);
247
248/**
249 * drm_atomic_get_crtc_state - get crtc state
250 * @state: global atomic state object
251 * @crtc: crtc to get state object for
252 *
253 * This function returns the crtc state for the given crtc, allocating it if
254 * needed. It will also grab the relevant crtc lock to make sure that the state
255 * is consistent.
256 *
257 * Returns:
258 *
259 * Either the allocated state or the error code encoded into the pointer. When
260 * the error is EDEADLK then the w/w mutex code has detected a deadlock and the
261 * entire atomic sequence must be restarted. All other errors are fatal.
262 */
263struct drm_crtc_state *
264drm_atomic_get_crtc_state(struct drm_atomic_state *state,
265 struct drm_crtc *crtc)
266{
Maarten Lankhorst1b26a5e2015-05-13 10:37:25 +0200267 int ret, index = drm_crtc_index(crtc);
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200268 struct drm_crtc_state *crtc_state;
269
Maarten Lankhorst7f4eaa82016-05-03 11:12:31 +0200270 WARN_ON(!state->acquire_ctx);
271
Maarten Lankhorst1b26a5e2015-05-13 10:37:25 +0200272 crtc_state = drm_atomic_get_existing_crtc_state(state, crtc);
273 if (crtc_state)
274 return crtc_state;
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200275
276 ret = drm_modeset_lock(&crtc->mutex, state->acquire_ctx);
277 if (ret)
278 return ERR_PTR(ret);
279
280 crtc_state = crtc->funcs->atomic_duplicate_state(crtc);
281 if (!crtc_state)
282 return ERR_PTR(-ENOMEM);
283
Daniel Vetter5d943aa62016-06-02 00:06:34 +0200284 state->crtcs[index].state = crtc_state;
285 state->crtcs[index].ptr = crtc;
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200286 crtc_state->state = state;
287
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200288 DRM_DEBUG_ATOMIC("Added [CRTC:%d:%s] %p state to %p\n",
289 crtc->base.id, crtc->name, crtc_state, state);
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200290
291 return crtc_state;
292}
293EXPORT_SYMBOL(drm_atomic_get_crtc_state);
294
295/**
Daniel Stone819364d2015-05-26 14:36:48 +0100296 * drm_atomic_set_mode_for_crtc - set mode for CRTC
297 * @state: the CRTC whose incoming state to update
298 * @mode: kernel-internal mode to use for the CRTC, or NULL to disable
299 *
300 * Set a mode (originating from the kernel) on the desired CRTC state. Does
301 * not change any other state properties, including enable, active, or
302 * mode_changed.
303 *
304 * RETURNS:
305 * Zero on success, error code on failure. Cannot return -EDEADLK.
306 */
307int drm_atomic_set_mode_for_crtc(struct drm_crtc_state *state,
308 struct drm_display_mode *mode)
309{
Daniel Stone99cf4a22015-05-25 19:11:51 +0100310 struct drm_mode_modeinfo umode;
311
Daniel Stone819364d2015-05-26 14:36:48 +0100312 /* Early return for no change. */
313 if (mode && memcmp(&state->mode, mode, sizeof(*mode)) == 0)
314 return 0;
315
Markus Elfring5f911902015-11-06 12:03:46 +0100316 drm_property_unreference_blob(state->mode_blob);
Daniel Stone99cf4a22015-05-25 19:11:51 +0100317 state->mode_blob = NULL;
318
Daniel Stone819364d2015-05-26 14:36:48 +0100319 if (mode) {
Daniel Stone99cf4a22015-05-25 19:11:51 +0100320 drm_mode_convert_to_umode(&umode, mode);
321 state->mode_blob =
322 drm_property_create_blob(state->crtc->dev,
323 sizeof(umode),
324 &umode);
325 if (IS_ERR(state->mode_blob))
326 return PTR_ERR(state->mode_blob);
327
Daniel Stone819364d2015-05-26 14:36:48 +0100328 drm_mode_copy(&state->mode, mode);
329 state->enable = true;
330 DRM_DEBUG_ATOMIC("Set [MODE:%s] for CRTC state %p\n",
331 mode->name, state);
332 } else {
333 memset(&state->mode, 0, sizeof(state->mode));
334 state->enable = false;
335 DRM_DEBUG_ATOMIC("Set [NOMODE] for CRTC state %p\n",
336 state);
337 }
338
339 return 0;
340}
341EXPORT_SYMBOL(drm_atomic_set_mode_for_crtc);
342
Daniel Stone819364d2015-05-26 14:36:48 +0100343/**
Daniel Stone955f3c32015-05-25 19:11:52 +0100344 * drm_atomic_set_mode_prop_for_crtc - set mode for CRTC
345 * @state: the CRTC whose incoming state to update
346 * @blob: pointer to blob property to use for mode
347 *
348 * Set a mode (originating from a blob property) on the desired CRTC state.
349 * This function will take a reference on the blob property for the CRTC state,
350 * and release the reference held on the state's existing mode property, if any
351 * was set.
352 *
353 * RETURNS:
354 * Zero on success, error code on failure. Cannot return -EDEADLK.
355 */
356int drm_atomic_set_mode_prop_for_crtc(struct drm_crtc_state *state,
357 struct drm_property_blob *blob)
358{
359 if (blob == state->mode_blob)
360 return 0;
361
Markus Elfring5f911902015-11-06 12:03:46 +0100362 drm_property_unreference_blob(state->mode_blob);
Daniel Stone955f3c32015-05-25 19:11:52 +0100363 state->mode_blob = NULL;
364
Tomi Valkeinen67098872016-05-31 15:03:17 +0300365 memset(&state->mode, 0, sizeof(state->mode));
366
Daniel Stone955f3c32015-05-25 19:11:52 +0100367 if (blob) {
368 if (blob->length != sizeof(struct drm_mode_modeinfo) ||
369 drm_mode_convert_umode(&state->mode,
370 (const struct drm_mode_modeinfo *)
371 blob->data))
372 return -EINVAL;
373
374 state->mode_blob = drm_property_reference_blob(blob);
375 state->enable = true;
376 DRM_DEBUG_ATOMIC("Set [MODE:%s] for CRTC state %p\n",
377 state->mode.name, state);
378 } else {
Daniel Stone955f3c32015-05-25 19:11:52 +0100379 state->enable = false;
380 DRM_DEBUG_ATOMIC("Set [NOMODE] for CRTC state %p\n",
381 state);
382 }
383
384 return 0;
385}
386EXPORT_SYMBOL(drm_atomic_set_mode_prop_for_crtc);
387
388/**
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000389 * drm_atomic_replace_property_blob - replace a blob property
390 * @blob: a pointer to the member blob to be replaced
391 * @new_blob: the new blob to replace with
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000392 * @replaced: whether the blob has been replaced
393 *
394 * RETURNS:
395 * Zero on success, error code on failure
396 */
397static void
398drm_atomic_replace_property_blob(struct drm_property_blob **blob,
399 struct drm_property_blob *new_blob,
400 bool *replaced)
401{
402 struct drm_property_blob *old_blob = *blob;
403
404 if (old_blob == new_blob)
405 return;
406
Markus Elfringf35cbe62016-07-20 17:54:32 +0200407 drm_property_unreference_blob(old_blob);
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000408 if (new_blob)
409 drm_property_reference_blob(new_blob);
410 *blob = new_blob;
411 *replaced = true;
412
413 return;
414}
415
416static int
417drm_atomic_replace_property_blob_from_id(struct drm_crtc *crtc,
418 struct drm_property_blob **blob,
419 uint64_t blob_id,
420 ssize_t expected_size,
421 bool *replaced)
422{
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000423 struct drm_property_blob *new_blob = NULL;
424
425 if (blob_id != 0) {
Felix Monningercac5fced2016-10-25 22:28:08 +0100426 new_blob = drm_property_lookup_blob(crtc->dev, blob_id);
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000427 if (new_blob == NULL)
428 return -EINVAL;
Felix Monningercac5fced2016-10-25 22:28:08 +0100429
430 if (expected_size > 0 && expected_size != new_blob->length) {
431 drm_property_unreference_blob(new_blob);
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000432 return -EINVAL;
Felix Monningercac5fced2016-10-25 22:28:08 +0100433 }
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000434 }
435
436 drm_atomic_replace_property_blob(blob, new_blob, replaced);
Felix Monningercac5fced2016-10-25 22:28:08 +0100437 drm_property_unreference_blob(new_blob);
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000438
439 return 0;
440}
441
442/**
Rob Clark40ecc692014-12-18 16:01:46 -0500443 * drm_atomic_crtc_set_property - set property on CRTC
444 * @crtc: the drm CRTC to set a property on
445 * @state: the state object to update with the new property value
446 * @property: the property to set
447 * @val: the new property value
448 *
449 * Use this instead of calling crtc->atomic_set_property directly.
450 * This function handles generic/core properties and calls out to
451 * driver's ->atomic_set_property() for driver properties. To ensure
452 * consistent behavior you must call this function rather than the
453 * driver hook directly.
454 *
455 * RETURNS:
456 * Zero on success, error code on failure
457 */
458int drm_atomic_crtc_set_property(struct drm_crtc *crtc,
459 struct drm_crtc_state *state, struct drm_property *property,
460 uint64_t val)
461{
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100462 struct drm_device *dev = crtc->dev;
463 struct drm_mode_config *config = &dev->mode_config;
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000464 bool replaced = false;
Daniel Stone955f3c32015-05-25 19:11:52 +0100465 int ret;
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100466
Daniel Stone27798362015-03-19 04:33:26 +0000467 if (property == config->prop_active)
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100468 state->active = val;
Daniel Stone955f3c32015-05-25 19:11:52 +0100469 else if (property == config->prop_mode_id) {
470 struct drm_property_blob *mode =
471 drm_property_lookup_blob(dev, val);
472 ret = drm_atomic_set_mode_prop_for_crtc(state, mode);
Markus Elfring5f911902015-11-06 12:03:46 +0100473 drm_property_unreference_blob(mode);
Daniel Stone955f3c32015-05-25 19:11:52 +0100474 return ret;
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000475 } else if (property == config->degamma_lut_property) {
476 ret = drm_atomic_replace_property_blob_from_id(crtc,
477 &state->degamma_lut,
478 val,
479 -1,
480 &replaced);
Mario Kleineradd1fa72016-08-27 01:02:28 +0200481 state->color_mgmt_changed |= replaced;
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000482 return ret;
483 } else if (property == config->ctm_property) {
484 ret = drm_atomic_replace_property_blob_from_id(crtc,
485 &state->ctm,
486 val,
487 sizeof(struct drm_color_ctm),
488 &replaced);
Mario Kleineradd1fa72016-08-27 01:02:28 +0200489 state->color_mgmt_changed |= replaced;
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000490 return ret;
491 } else if (property == config->gamma_lut_property) {
492 ret = drm_atomic_replace_property_blob_from_id(crtc,
493 &state->gamma_lut,
494 val,
495 -1,
496 &replaced);
Mario Kleineradd1fa72016-08-27 01:02:28 +0200497 state->color_mgmt_changed |= replaced;
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000498 return ret;
499 } else if (crtc->funcs->atomic_set_property)
Rob Clark40ecc692014-12-18 16:01:46 -0500500 return crtc->funcs->atomic_set_property(crtc, state, property, val);
Daniel Stone27798362015-03-19 04:33:26 +0000501 else
502 return -EINVAL;
503
504 return 0;
Rob Clark40ecc692014-12-18 16:01:46 -0500505}
506EXPORT_SYMBOL(drm_atomic_crtc_set_property);
507
Daniel Vetterc0714fc2015-12-04 09:45:57 +0100508/**
509 * drm_atomic_crtc_get_property - get property value from CRTC state
510 * @crtc: the drm CRTC to set a property on
511 * @state: the state object to get the property value from
512 * @property: the property to set
513 * @val: return location for the property value
514 *
Rob Clarkac9c9252014-12-18 16:01:47 -0500515 * This function handles generic/core properties and calls out to
516 * driver's ->atomic_get_property() for driver properties. To ensure
517 * consistent behavior you must call this function rather than the
518 * driver hook directly.
Daniel Vetterc0714fc2015-12-04 09:45:57 +0100519 *
520 * RETURNS:
521 * Zero on success, error code on failure
Rob Clarkac9c9252014-12-18 16:01:47 -0500522 */
Geliang Tangbf22f3b2015-09-24 03:01:03 -0700523static int
524drm_atomic_crtc_get_property(struct drm_crtc *crtc,
Rob Clarkac9c9252014-12-18 16:01:47 -0500525 const struct drm_crtc_state *state,
526 struct drm_property *property, uint64_t *val)
527{
Daniel Stone8f164ce2015-03-19 04:33:25 +0000528 struct drm_device *dev = crtc->dev;
529 struct drm_mode_config *config = &dev->mode_config;
530
531 if (property == config->prop_active)
532 *val = state->active;
Daniel Stone955f3c32015-05-25 19:11:52 +0100533 else if (property == config->prop_mode_id)
534 *val = (state->mode_blob) ? state->mode_blob->base.id : 0;
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000535 else if (property == config->degamma_lut_property)
536 *val = (state->degamma_lut) ? state->degamma_lut->base.id : 0;
537 else if (property == config->ctm_property)
538 *val = (state->ctm) ? state->ctm->base.id : 0;
539 else if (property == config->gamma_lut_property)
540 *val = (state->gamma_lut) ? state->gamma_lut->base.id : 0;
Daniel Stone8f164ce2015-03-19 04:33:25 +0000541 else if (crtc->funcs->atomic_get_property)
Rob Clarkac9c9252014-12-18 16:01:47 -0500542 return crtc->funcs->atomic_get_property(crtc, state, property, val);
Daniel Stone8f164ce2015-03-19 04:33:25 +0000543 else
544 return -EINVAL;
545
546 return 0;
Rob Clarkac9c9252014-12-18 16:01:47 -0500547}
Rob Clarkac9c9252014-12-18 16:01:47 -0500548
549/**
Rob Clark5e743732014-12-18 16:01:51 -0500550 * drm_atomic_crtc_check - check crtc state
551 * @crtc: crtc to check
552 * @state: crtc state to check
553 *
554 * Provides core sanity checks for crtc state.
555 *
556 * RETURNS:
557 * Zero on success, error code on failure
558 */
559static int drm_atomic_crtc_check(struct drm_crtc *crtc,
560 struct drm_crtc_state *state)
561{
562 /* NOTE: we explicitly don't enforce constraints such as primary
563 * layer covering entire screen, since that is something we want
564 * to allow (on hw that supports it). For hw that does not, it
565 * should be checked in driver's crtc->atomic_check() vfunc.
566 *
567 * TODO: Add generic modeset state checks once we support those.
568 */
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100569
570 if (state->active && !state->enable) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200571 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] active without enabled\n",
572 crtc->base.id, crtc->name);
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100573 return -EINVAL;
574 }
575
Daniel Stone99cf4a22015-05-25 19:11:51 +0100576 /* The state->enable vs. state->mode_blob checks can be WARN_ON,
577 * as this is a kernel-internal detail that userspace should never
578 * be able to trigger. */
579 if (drm_core_check_feature(crtc->dev, DRIVER_ATOMIC) &&
580 WARN_ON(state->enable && !state->mode_blob)) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200581 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] enabled without mode blob\n",
582 crtc->base.id, crtc->name);
Daniel Stone99cf4a22015-05-25 19:11:51 +0100583 return -EINVAL;
584 }
585
586 if (drm_core_check_feature(crtc->dev, DRIVER_ATOMIC) &&
587 WARN_ON(!state->enable && state->mode_blob)) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200588 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] disabled with mode blob\n",
589 crtc->base.id, crtc->name);
Daniel Stone99cf4a22015-05-25 19:11:51 +0100590 return -EINVAL;
591 }
592
Daniel Vetter4cba6852015-12-08 09:49:20 +0100593 /*
594 * Reject event generation for when a CRTC is off and stays off.
595 * It wouldn't be hard to implement this, but userspace has a track
596 * record of happily burning through 100% cpu (or worse, crash) when the
597 * display pipe is suspended. To avoid all that fun just reject updates
598 * that ask for events since likely that indicates a bug in the
599 * compositor's drawing loop. This is consistent with the vblank IOCTL
600 * and legacy page_flip IOCTL which also reject service on a disabled
601 * pipe.
602 */
603 if (state->event && !state->active && !crtc->state->active) {
604 DRM_DEBUG_ATOMIC("[CRTC:%d] requesting event but off\n",
605 crtc->base.id);
606 return -EINVAL;
607 }
608
Rob Clark5e743732014-12-18 16:01:51 -0500609 return 0;
610}
611
612/**
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200613 * drm_atomic_get_plane_state - get plane state
614 * @state: global atomic state object
615 * @plane: plane to get state object for
616 *
617 * This function returns the plane state for the given plane, allocating it if
618 * needed. It will also grab the relevant plane lock to make sure that the state
619 * is consistent.
620 *
621 * Returns:
622 *
623 * Either the allocated state or the error code encoded into the pointer. When
624 * the error is EDEADLK then the w/w mutex code has detected a deadlock and the
625 * entire atomic sequence must be restarted. All other errors are fatal.
626 */
627struct drm_plane_state *
628drm_atomic_get_plane_state(struct drm_atomic_state *state,
629 struct drm_plane *plane)
630{
Maarten Lankhorst1b26a5e2015-05-13 10:37:25 +0200631 int ret, index = drm_plane_index(plane);
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200632 struct drm_plane_state *plane_state;
633
Maarten Lankhorst7f4eaa82016-05-03 11:12:31 +0200634 WARN_ON(!state->acquire_ctx);
635
Maarten Lankhorst1b26a5e2015-05-13 10:37:25 +0200636 plane_state = drm_atomic_get_existing_plane_state(state, plane);
637 if (plane_state)
638 return plane_state;
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200639
Daniel Vetter4d02e2d2014-11-11 10:12:00 +0100640 ret = drm_modeset_lock(&plane->mutex, state->acquire_ctx);
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200641 if (ret)
642 return ERR_PTR(ret);
643
644 plane_state = plane->funcs->atomic_duplicate_state(plane);
645 if (!plane_state)
646 return ERR_PTR(-ENOMEM);
647
Daniel Vetterb8b53422016-06-02 00:06:33 +0200648 state->planes[index].state = plane_state;
649 state->planes[index].ptr = plane;
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200650 plane_state->state = state;
651
Ville Syrjälä9f4c97a2015-12-08 18:41:54 +0200652 DRM_DEBUG_ATOMIC("Added [PLANE:%d:%s] %p state to %p\n",
653 plane->base.id, plane->name, plane_state, state);
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200654
655 if (plane_state->crtc) {
656 struct drm_crtc_state *crtc_state;
657
658 crtc_state = drm_atomic_get_crtc_state(state,
659 plane_state->crtc);
660 if (IS_ERR(crtc_state))
661 return ERR_CAST(crtc_state);
662 }
663
664 return plane_state;
665}
666EXPORT_SYMBOL(drm_atomic_get_plane_state);
667
668/**
Rob Clark40ecc692014-12-18 16:01:46 -0500669 * drm_atomic_plane_set_property - set property on plane
670 * @plane: the drm plane to set a property on
671 * @state: the state object to update with the new property value
672 * @property: the property to set
673 * @val: the new property value
674 *
675 * Use this instead of calling plane->atomic_set_property directly.
676 * This function handles generic/core properties and calls out to
677 * driver's ->atomic_set_property() for driver properties. To ensure
678 * consistent behavior you must call this function rather than the
679 * driver hook directly.
680 *
681 * RETURNS:
682 * Zero on success, error code on failure
683 */
684int drm_atomic_plane_set_property(struct drm_plane *plane,
685 struct drm_plane_state *state, struct drm_property *property,
686 uint64_t val)
687{
Rob Clark6b4959f2014-12-18 16:01:53 -0500688 struct drm_device *dev = plane->dev;
689 struct drm_mode_config *config = &dev->mode_config;
690
691 if (property == config->prop_fb_id) {
692 struct drm_framebuffer *fb = drm_framebuffer_lookup(dev, val);
693 drm_atomic_set_fb_for_plane(state, fb);
694 if (fb)
695 drm_framebuffer_unreference(fb);
696 } else if (property == config->prop_crtc_id) {
697 struct drm_crtc *crtc = drm_crtc_find(dev, val);
698 return drm_atomic_set_crtc_for_plane(state, crtc);
699 } else if (property == config->prop_crtc_x) {
700 state->crtc_x = U642I64(val);
701 } else if (property == config->prop_crtc_y) {
702 state->crtc_y = U642I64(val);
703 } else if (property == config->prop_crtc_w) {
704 state->crtc_w = val;
705 } else if (property == config->prop_crtc_h) {
706 state->crtc_h = val;
707 } else if (property == config->prop_src_x) {
708 state->src_x = val;
709 } else if (property == config->prop_src_y) {
710 state->src_y = val;
711 } else if (property == config->prop_src_w) {
712 state->src_w = val;
713 } else if (property == config->prop_src_h) {
714 state->src_h = val;
Matt Roper1da30622015-01-21 16:35:40 -0800715 } else if (property == config->rotation_property) {
716 state->rotation = val;
Marek Szyprowski44d1240d2016-06-13 11:11:26 +0200717 } else if (property == plane->zpos_property) {
718 state->zpos = val;
Rob Clark6b4959f2014-12-18 16:01:53 -0500719 } else if (plane->funcs->atomic_set_property) {
720 return plane->funcs->atomic_set_property(plane, state,
721 property, val);
722 } else {
723 return -EINVAL;
724 }
725
726 return 0;
Rob Clark40ecc692014-12-18 16:01:46 -0500727}
728EXPORT_SYMBOL(drm_atomic_plane_set_property);
729
Daniel Vetterc0714fc2015-12-04 09:45:57 +0100730/**
731 * drm_atomic_plane_get_property - get property value from plane state
732 * @plane: the drm plane to set a property on
733 * @state: the state object to get the property value from
734 * @property: the property to set
735 * @val: return location for the property value
736 *
Rob Clarkac9c9252014-12-18 16:01:47 -0500737 * This function handles generic/core properties and calls out to
738 * driver's ->atomic_get_property() for driver properties. To ensure
739 * consistent behavior you must call this function rather than the
740 * driver hook directly.
Daniel Vetterc0714fc2015-12-04 09:45:57 +0100741 *
742 * RETURNS:
743 * Zero on success, error code on failure
Rob Clarkac9c9252014-12-18 16:01:47 -0500744 */
Daniel Vettera97df1c2014-12-18 22:49:02 +0100745static int
746drm_atomic_plane_get_property(struct drm_plane *plane,
Rob Clarkac9c9252014-12-18 16:01:47 -0500747 const struct drm_plane_state *state,
748 struct drm_property *property, uint64_t *val)
749{
Rob Clark6b4959f2014-12-18 16:01:53 -0500750 struct drm_device *dev = plane->dev;
751 struct drm_mode_config *config = &dev->mode_config;
752
753 if (property == config->prop_fb_id) {
754 *val = (state->fb) ? state->fb->base.id : 0;
755 } else if (property == config->prop_crtc_id) {
756 *val = (state->crtc) ? state->crtc->base.id : 0;
757 } else if (property == config->prop_crtc_x) {
758 *val = I642U64(state->crtc_x);
759 } else if (property == config->prop_crtc_y) {
760 *val = I642U64(state->crtc_y);
761 } else if (property == config->prop_crtc_w) {
762 *val = state->crtc_w;
763 } else if (property == config->prop_crtc_h) {
764 *val = state->crtc_h;
765 } else if (property == config->prop_src_x) {
766 *val = state->src_x;
767 } else if (property == config->prop_src_y) {
768 *val = state->src_y;
769 } else if (property == config->prop_src_w) {
770 *val = state->src_w;
771 } else if (property == config->prop_src_h) {
772 *val = state->src_h;
Tvrtko Ursulin4cda09c2015-02-26 13:49:17 +0000773 } else if (property == config->rotation_property) {
774 *val = state->rotation;
Marek Szyprowski44d1240d2016-06-13 11:11:26 +0200775 } else if (property == plane->zpos_property) {
776 *val = state->zpos;
Rob Clark6b4959f2014-12-18 16:01:53 -0500777 } else if (plane->funcs->atomic_get_property) {
Rob Clarkac9c9252014-12-18 16:01:47 -0500778 return plane->funcs->atomic_get_property(plane, state, property, val);
Rob Clark6b4959f2014-12-18 16:01:53 -0500779 } else {
780 return -EINVAL;
781 }
782
783 return 0;
Rob Clarkac9c9252014-12-18 16:01:47 -0500784}
Rob Clarkac9c9252014-12-18 16:01:47 -0500785
Daniel Vetterf8aeb412015-08-26 21:49:42 +0200786static bool
787plane_switching_crtc(struct drm_atomic_state *state,
788 struct drm_plane *plane,
789 struct drm_plane_state *plane_state)
790{
791 if (!plane->state->crtc || !plane_state->crtc)
792 return false;
793
794 if (plane->state->crtc == plane_state->crtc)
795 return false;
796
797 /* This could be refined, but currently there's no helper or driver code
798 * to implement direct switching of active planes nor userspace to take
799 * advantage of more direct plane switching without the intermediate
800 * full OFF state.
801 */
802 return true;
803}
804
Rob Clarkac9c9252014-12-18 16:01:47 -0500805/**
Rob Clark5e743732014-12-18 16:01:51 -0500806 * drm_atomic_plane_check - check plane state
807 * @plane: plane to check
808 * @state: plane state to check
809 *
810 * Provides core sanity checks for plane state.
811 *
812 * RETURNS:
813 * Zero on success, error code on failure
814 */
815static int drm_atomic_plane_check(struct drm_plane *plane,
816 struct drm_plane_state *state)
817{
818 unsigned int fb_width, fb_height;
Laurent Pinchartead86102015-03-05 02:25:43 +0200819 int ret;
Rob Clark5e743732014-12-18 16:01:51 -0500820
821 /* either *both* CRTC and FB must be set, or neither */
822 if (WARN_ON(state->crtc && !state->fb)) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100823 DRM_DEBUG_ATOMIC("CRTC set but no FB\n");
Rob Clark5e743732014-12-18 16:01:51 -0500824 return -EINVAL;
825 } else if (WARN_ON(state->fb && !state->crtc)) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100826 DRM_DEBUG_ATOMIC("FB set but no CRTC\n");
Rob Clark5e743732014-12-18 16:01:51 -0500827 return -EINVAL;
828 }
829
830 /* if disabled, we don't care about the rest of the state: */
831 if (!state->crtc)
832 return 0;
833
834 /* Check whether this plane is usable on this CRTC */
835 if (!(plane->possible_crtcs & drm_crtc_mask(state->crtc))) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100836 DRM_DEBUG_ATOMIC("Invalid crtc for plane\n");
Rob Clark5e743732014-12-18 16:01:51 -0500837 return -EINVAL;
838 }
839
840 /* Check whether this plane supports the fb pixel format. */
Laurent Pinchartead86102015-03-05 02:25:43 +0200841 ret = drm_plane_check_pixel_format(plane, state->fb->pixel_format);
842 if (ret) {
Eric Engestromd3828142016-08-15 16:29:55 +0100843 char *format_name = drm_get_format_name(state->fb->pixel_format);
Eric Engestrom90844f02016-08-15 01:02:38 +0100844 DRM_DEBUG_ATOMIC("Invalid pixel format %s\n", format_name);
845 kfree(format_name);
Laurent Pinchartead86102015-03-05 02:25:43 +0200846 return ret;
Rob Clark5e743732014-12-18 16:01:51 -0500847 }
848
849 /* Give drivers some help against integer overflows */
850 if (state->crtc_w > INT_MAX ||
851 state->crtc_x > INT_MAX - (int32_t) state->crtc_w ||
852 state->crtc_h > INT_MAX ||
853 state->crtc_y > INT_MAX - (int32_t) state->crtc_h) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100854 DRM_DEBUG_ATOMIC("Invalid CRTC coordinates %ux%u+%d+%d\n",
855 state->crtc_w, state->crtc_h,
856 state->crtc_x, state->crtc_y);
Rob Clark5e743732014-12-18 16:01:51 -0500857 return -ERANGE;
858 }
859
860 fb_width = state->fb->width << 16;
861 fb_height = state->fb->height << 16;
862
863 /* Make sure source coordinates are inside the fb. */
864 if (state->src_w > fb_width ||
865 state->src_x > fb_width - state->src_w ||
866 state->src_h > fb_height ||
867 state->src_y > fb_height - state->src_h) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100868 DRM_DEBUG_ATOMIC("Invalid source coordinates "
869 "%u.%06ux%u.%06u+%u.%06u+%u.%06u\n",
870 state->src_w >> 16, ((state->src_w & 0xffff) * 15625) >> 10,
871 state->src_h >> 16, ((state->src_h & 0xffff) * 15625) >> 10,
872 state->src_x >> 16, ((state->src_x & 0xffff) * 15625) >> 10,
873 state->src_y >> 16, ((state->src_y & 0xffff) * 15625) >> 10);
Rob Clark5e743732014-12-18 16:01:51 -0500874 return -ENOSPC;
875 }
876
Daniel Vetterf8aeb412015-08-26 21:49:42 +0200877 if (plane_switching_crtc(state->state, plane, state)) {
Ville Syrjälä9f4c97a2015-12-08 18:41:54 +0200878 DRM_DEBUG_ATOMIC("[PLANE:%d:%s] switching CRTC directly\n",
879 plane->base.id, plane->name);
Daniel Vetterf8aeb412015-08-26 21:49:42 +0200880 return -EINVAL;
881 }
882
Rob Clark5e743732014-12-18 16:01:51 -0500883 return 0;
884}
885
886/**
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200887 * drm_atomic_get_connector_state - get connector state
888 * @state: global atomic state object
889 * @connector: connector to get state object for
890 *
891 * This function returns the connector state for the given connector,
892 * allocating it if needed. It will also grab the relevant connector lock to
893 * make sure that the state is consistent.
894 *
895 * Returns:
896 *
897 * Either the allocated state or the error code encoded into the pointer. When
898 * the error is EDEADLK then the w/w mutex code has detected a deadlock and the
899 * entire atomic sequence must be restarted. All other errors are fatal.
900 */
901struct drm_connector_state *
902drm_atomic_get_connector_state(struct drm_atomic_state *state,
903 struct drm_connector *connector)
904{
905 int ret, index;
906 struct drm_mode_config *config = &connector->dev->mode_config;
907 struct drm_connector_state *connector_state;
908
Maarten Lankhorst7f4eaa82016-05-03 11:12:31 +0200909 WARN_ON(!state->acquire_ctx);
910
Daniel Vetterc7eb76f2014-11-19 18:38:06 +0100911 ret = drm_modeset_lock(&config->connection_mutex, state->acquire_ctx);
912 if (ret)
913 return ERR_PTR(ret);
914
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200915 index = drm_connector_index(connector);
916
Daniel Vetterf52b69f12014-11-19 18:38:08 +0100917 if (index >= state->num_connector) {
Daniel Vetter63e83c12016-06-02 00:06:32 +0200918 struct __drm_connnectors_state *c;
Maarten Lankhorst5fff80b2016-02-17 08:32:05 +0100919 int alloc = max(index + 1, config->num_connector);
920
921 c = krealloc(state->connectors, alloc * sizeof(*state->connectors), GFP_KERNEL);
922 if (!c)
923 return ERR_PTR(-ENOMEM);
924
925 state->connectors = c;
926 memset(&state->connectors[state->num_connector], 0,
927 sizeof(*state->connectors) * (alloc - state->num_connector));
928
Maarten Lankhorst5fff80b2016-02-17 08:32:05 +0100929 state->num_connector = alloc;
Daniel Vetterf52b69f12014-11-19 18:38:08 +0100930 }
931
Daniel Vetter63e83c12016-06-02 00:06:32 +0200932 if (state->connectors[index].state)
933 return state->connectors[index].state;
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200934
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200935 connector_state = connector->funcs->atomic_duplicate_state(connector);
936 if (!connector_state)
937 return ERR_PTR(-ENOMEM);
938
Dave Airlieb164d312016-04-27 11:10:09 +1000939 drm_connector_reference(connector);
Daniel Vetter63e83c12016-06-02 00:06:32 +0200940 state->connectors[index].state = connector_state;
941 state->connectors[index].ptr = connector;
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200942 connector_state->state = state;
943
Daniel Vetter17a38d92015-02-22 12:24:16 +0100944 DRM_DEBUG_ATOMIC("Added [CONNECTOR:%d] %p state to %p\n",
945 connector->base.id, connector_state, state);
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200946
947 if (connector_state->crtc) {
948 struct drm_crtc_state *crtc_state;
949
950 crtc_state = drm_atomic_get_crtc_state(state,
951 connector_state->crtc);
952 if (IS_ERR(crtc_state))
953 return ERR_CAST(crtc_state);
954 }
955
956 return connector_state;
957}
958EXPORT_SYMBOL(drm_atomic_get_connector_state);
959
960/**
Rob Clark40ecc692014-12-18 16:01:46 -0500961 * drm_atomic_connector_set_property - set property on connector.
962 * @connector: the drm connector to set a property on
963 * @state: the state object to update with the new property value
964 * @property: the property to set
965 * @val: the new property value
966 *
967 * Use this instead of calling connector->atomic_set_property directly.
968 * This function handles generic/core properties and calls out to
969 * driver's ->atomic_set_property() for driver properties. To ensure
970 * consistent behavior you must call this function rather than the
971 * driver hook directly.
972 *
973 * RETURNS:
974 * Zero on success, error code on failure
975 */
976int drm_atomic_connector_set_property(struct drm_connector *connector,
977 struct drm_connector_state *state, struct drm_property *property,
978 uint64_t val)
979{
980 struct drm_device *dev = connector->dev;
981 struct drm_mode_config *config = &dev->mode_config;
982
Rob Clarkae16c592014-12-18 16:01:54 -0500983 if (property == config->prop_crtc_id) {
984 struct drm_crtc *crtc = drm_crtc_find(dev, val);
985 return drm_atomic_set_crtc_for_connector(state, crtc);
986 } else if (property == config->dpms_property) {
Rob Clark40ecc692014-12-18 16:01:46 -0500987 /* setting DPMS property requires special handling, which
988 * is done in legacy setprop path for us. Disallow (for
989 * now?) atomic writes to DPMS property:
990 */
991 return -EINVAL;
992 } else if (connector->funcs->atomic_set_property) {
993 return connector->funcs->atomic_set_property(connector,
994 state, property, val);
995 } else {
996 return -EINVAL;
997 }
998}
999EXPORT_SYMBOL(drm_atomic_connector_set_property);
1000
Daniel Vetterc0714fc2015-12-04 09:45:57 +01001001/**
1002 * drm_atomic_connector_get_property - get property value from connector state
1003 * @connector: the drm connector to set a property on
1004 * @state: the state object to get the property value from
1005 * @property: the property to set
1006 * @val: return location for the property value
1007 *
Rob Clarkac9c9252014-12-18 16:01:47 -05001008 * This function handles generic/core properties and calls out to
1009 * driver's ->atomic_get_property() for driver properties. To ensure
1010 * consistent behavior you must call this function rather than the
1011 * driver hook directly.
Daniel Vetterc0714fc2015-12-04 09:45:57 +01001012 *
1013 * RETURNS:
1014 * Zero on success, error code on failure
Rob Clarkac9c9252014-12-18 16:01:47 -05001015 */
Daniel Vettera97df1c2014-12-18 22:49:02 +01001016static int
1017drm_atomic_connector_get_property(struct drm_connector *connector,
Rob Clarkac9c9252014-12-18 16:01:47 -05001018 const struct drm_connector_state *state,
1019 struct drm_property *property, uint64_t *val)
1020{
1021 struct drm_device *dev = connector->dev;
1022 struct drm_mode_config *config = &dev->mode_config;
1023
Rob Clarkae16c592014-12-18 16:01:54 -05001024 if (property == config->prop_crtc_id) {
1025 *val = (state->crtc) ? state->crtc->base.id : 0;
1026 } else if (property == config->dpms_property) {
Rob Clarkac9c9252014-12-18 16:01:47 -05001027 *val = connector->dpms;
1028 } else if (connector->funcs->atomic_get_property) {
1029 return connector->funcs->atomic_get_property(connector,
1030 state, property, val);
1031 } else {
1032 return -EINVAL;
1033 }
1034
1035 return 0;
1036}
Rob Clarkac9c9252014-12-18 16:01:47 -05001037
Rob Clark88a48e22014-12-18 16:01:50 -05001038int drm_atomic_get_property(struct drm_mode_object *obj,
1039 struct drm_property *property, uint64_t *val)
1040{
1041 struct drm_device *dev = property->dev;
1042 int ret;
1043
1044 switch (obj->type) {
1045 case DRM_MODE_OBJECT_CONNECTOR: {
1046 struct drm_connector *connector = obj_to_connector(obj);
1047 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
1048 ret = drm_atomic_connector_get_property(connector,
1049 connector->state, property, val);
1050 break;
1051 }
1052 case DRM_MODE_OBJECT_CRTC: {
1053 struct drm_crtc *crtc = obj_to_crtc(obj);
1054 WARN_ON(!drm_modeset_is_locked(&crtc->mutex));
1055 ret = drm_atomic_crtc_get_property(crtc,
1056 crtc->state, property, val);
1057 break;
1058 }
1059 case DRM_MODE_OBJECT_PLANE: {
1060 struct drm_plane *plane = obj_to_plane(obj);
1061 WARN_ON(!drm_modeset_is_locked(&plane->mutex));
1062 ret = drm_atomic_plane_get_property(plane,
1063 plane->state, property, val);
1064 break;
1065 }
1066 default:
1067 ret = -EINVAL;
1068 break;
1069 }
1070
1071 return ret;
1072}
1073
1074/**
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001075 * drm_atomic_set_crtc_for_plane - set crtc for plane
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01001076 * @plane_state: the plane whose incoming state to update
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001077 * @crtc: crtc to use for the plane
1078 *
1079 * Changing the assigned crtc for a plane requires us to grab the lock and state
1080 * for the new crtc, as needed. This function takes care of all these details
1081 * besides updating the pointer in the state object itself.
1082 *
1083 * Returns:
1084 * 0 on success or can fail with -EDEADLK or -ENOMEM. When the error is EDEADLK
1085 * then the w/w mutex code has detected a deadlock and the entire atomic
1086 * sequence must be restarted. All other errors are fatal.
1087 */
1088int
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01001089drm_atomic_set_crtc_for_plane(struct drm_plane_state *plane_state,
1090 struct drm_crtc *crtc)
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001091{
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01001092 struct drm_plane *plane = plane_state->plane;
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001093 struct drm_crtc_state *crtc_state;
1094
Rob Clark6ddd3882014-11-21 15:28:31 -05001095 if (plane_state->crtc) {
1096 crtc_state = drm_atomic_get_crtc_state(plane_state->state,
1097 plane_state->crtc);
1098 if (WARN_ON(IS_ERR(crtc_state)))
1099 return PTR_ERR(crtc_state);
1100
1101 crtc_state->plane_mask &= ~(1 << drm_plane_index(plane));
1102 }
1103
1104 plane_state->crtc = crtc;
1105
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001106 if (crtc) {
1107 crtc_state = drm_atomic_get_crtc_state(plane_state->state,
1108 crtc);
1109 if (IS_ERR(crtc_state))
1110 return PTR_ERR(crtc_state);
Rob Clark6ddd3882014-11-21 15:28:31 -05001111 crtc_state->plane_mask |= (1 << drm_plane_index(plane));
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001112 }
1113
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001114 if (crtc)
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +02001115 DRM_DEBUG_ATOMIC("Link plane state %p to [CRTC:%d:%s]\n",
1116 plane_state, crtc->base.id, crtc->name);
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001117 else
Daniel Vetter17a38d92015-02-22 12:24:16 +01001118 DRM_DEBUG_ATOMIC("Link plane state %p to [NOCRTC]\n",
1119 plane_state);
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001120
1121 return 0;
1122}
1123EXPORT_SYMBOL(drm_atomic_set_crtc_for_plane);
1124
1125/**
John Hunter16d78bc2e2015-04-07 19:38:50 +08001126 * drm_atomic_set_fb_for_plane - set framebuffer for plane
Daniel Vetter321ebf02014-11-04 22:57:27 +01001127 * @plane_state: atomic state object for the plane
1128 * @fb: fb to use for the plane
1129 *
1130 * Changing the assigned framebuffer for a plane requires us to grab a reference
1131 * to the new fb and drop the reference to the old fb, if there is one. This
1132 * function takes care of all these details besides updating the pointer in the
1133 * state object itself.
1134 */
1135void
1136drm_atomic_set_fb_for_plane(struct drm_plane_state *plane_state,
1137 struct drm_framebuffer *fb)
1138{
1139 if (plane_state->fb)
1140 drm_framebuffer_unreference(plane_state->fb);
1141 if (fb)
1142 drm_framebuffer_reference(fb);
1143 plane_state->fb = fb;
1144
1145 if (fb)
Daniel Vetter17a38d92015-02-22 12:24:16 +01001146 DRM_DEBUG_ATOMIC("Set [FB:%d] for plane state %p\n",
1147 fb->base.id, plane_state);
Daniel Vetter321ebf02014-11-04 22:57:27 +01001148 else
Daniel Vetter17a38d92015-02-22 12:24:16 +01001149 DRM_DEBUG_ATOMIC("Set [NOFB] for plane state %p\n",
1150 plane_state);
Daniel Vetter321ebf02014-11-04 22:57:27 +01001151}
1152EXPORT_SYMBOL(drm_atomic_set_fb_for_plane);
1153
1154/**
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001155 * drm_atomic_set_crtc_for_connector - set crtc for connector
1156 * @conn_state: atomic state object for the connector
1157 * @crtc: crtc to use for the connector
1158 *
1159 * Changing the assigned crtc for a connector requires us to grab the lock and
1160 * state for the new crtc, as needed. This function takes care of all these
1161 * details besides updating the pointer in the state object itself.
1162 *
1163 * Returns:
1164 * 0 on success or can fail with -EDEADLK or -ENOMEM. When the error is EDEADLK
1165 * then the w/w mutex code has detected a deadlock and the entire atomic
1166 * sequence must be restarted. All other errors are fatal.
1167 */
1168int
1169drm_atomic_set_crtc_for_connector(struct drm_connector_state *conn_state,
1170 struct drm_crtc *crtc)
1171{
1172 struct drm_crtc_state *crtc_state;
1173
Chris Wilsone2d800a2016-05-06 12:47:45 +01001174 if (conn_state->crtc == crtc)
1175 return 0;
1176
1177 if (conn_state->crtc) {
Maarten Lankhorst4cd9fa52016-01-04 12:53:18 +01001178 crtc_state = drm_atomic_get_existing_crtc_state(conn_state->state,
1179 conn_state->crtc);
1180
1181 crtc_state->connector_mask &=
1182 ~(1 << drm_connector_index(conn_state->connector));
Chris Wilsone2d800a2016-05-06 12:47:45 +01001183
1184 drm_connector_unreference(conn_state->connector);
1185 conn_state->crtc = NULL;
Maarten Lankhorst4cd9fa52016-01-04 12:53:18 +01001186 }
1187
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001188 if (crtc) {
1189 crtc_state = drm_atomic_get_crtc_state(conn_state->state, crtc);
1190 if (IS_ERR(crtc_state))
1191 return PTR_ERR(crtc_state);
Maarten Lankhorst4cd9fa52016-01-04 12:53:18 +01001192
1193 crtc_state->connector_mask |=
1194 1 << drm_connector_index(conn_state->connector);
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001195
Chris Wilsone2d800a2016-05-06 12:47:45 +01001196 drm_connector_reference(conn_state->connector);
1197 conn_state->crtc = crtc;
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001198
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +02001199 DRM_DEBUG_ATOMIC("Link connector state %p to [CRTC:%d:%s]\n",
1200 conn_state, crtc->base.id, crtc->name);
Chris Wilsone2d800a2016-05-06 12:47:45 +01001201 } else {
Daniel Vetter17a38d92015-02-22 12:24:16 +01001202 DRM_DEBUG_ATOMIC("Link connector state %p to [NOCRTC]\n",
1203 conn_state);
Chris Wilsone2d800a2016-05-06 12:47:45 +01001204 }
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001205
1206 return 0;
1207}
1208EXPORT_SYMBOL(drm_atomic_set_crtc_for_connector);
1209
1210/**
1211 * drm_atomic_add_affected_connectors - add connectors for crtc
1212 * @state: atomic state
1213 * @crtc: DRM crtc
1214 *
1215 * This function walks the current configuration and adds all connectors
1216 * currently using @crtc to the atomic configuration @state. Note that this
1217 * function must acquire the connection mutex. This can potentially cause
1218 * unneeded seralization if the update is just for the planes on one crtc. Hence
1219 * drivers and helpers should only call this when really needed (e.g. when a
1220 * full modeset needs to happen due to some change).
1221 *
1222 * Returns:
1223 * 0 on success or can fail with -EDEADLK or -ENOMEM. When the error is EDEADLK
1224 * then the w/w mutex code has detected a deadlock and the entire atomic
1225 * sequence must be restarted. All other errors are fatal.
1226 */
1227int
1228drm_atomic_add_affected_connectors(struct drm_atomic_state *state,
1229 struct drm_crtc *crtc)
1230{
1231 struct drm_mode_config *config = &state->dev->mode_config;
1232 struct drm_connector *connector;
1233 struct drm_connector_state *conn_state;
1234 int ret;
1235
1236 ret = drm_modeset_lock(&config->connection_mutex, state->acquire_ctx);
1237 if (ret)
1238 return ret;
1239
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +02001240 DRM_DEBUG_ATOMIC("Adding all current connectors for [CRTC:%d:%s] to %p\n",
1241 crtc->base.id, crtc->name, state);
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001242
1243 /*
1244 * Changed connectors are already in @state, so only need to look at the
1245 * current configuration.
1246 */
Daniel Vetter9a9f5ce2015-07-09 23:44:34 +02001247 drm_for_each_connector(connector, state->dev) {
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001248 if (connector->state->crtc != crtc)
1249 continue;
1250
1251 conn_state = drm_atomic_get_connector_state(state, connector);
1252 if (IS_ERR(conn_state))
1253 return PTR_ERR(conn_state);
1254 }
1255
1256 return 0;
1257}
1258EXPORT_SYMBOL(drm_atomic_add_affected_connectors);
1259
1260/**
Maarten Lankhorste01e9f72015-05-19 16:41:02 +02001261 * drm_atomic_add_affected_planes - add planes for crtc
1262 * @state: atomic state
1263 * @crtc: DRM crtc
1264 *
1265 * This function walks the current configuration and adds all planes
1266 * currently used by @crtc to the atomic configuration @state. This is useful
1267 * when an atomic commit also needs to check all currently enabled plane on
1268 * @crtc, e.g. when changing the mode. It's also useful when re-enabling a CRTC
1269 * to avoid special code to force-enable all planes.
1270 *
1271 * Since acquiring a plane state will always also acquire the w/w mutex of the
1272 * current CRTC for that plane (if there is any) adding all the plane states for
1273 * a CRTC will not reduce parallism of atomic updates.
1274 *
1275 * Returns:
1276 * 0 on success or can fail with -EDEADLK or -ENOMEM. When the error is EDEADLK
1277 * then the w/w mutex code has detected a deadlock and the entire atomic
1278 * sequence must be restarted. All other errors are fatal.
1279 */
1280int
1281drm_atomic_add_affected_planes(struct drm_atomic_state *state,
1282 struct drm_crtc *crtc)
1283{
1284 struct drm_plane *plane;
1285
1286 WARN_ON(!drm_atomic_get_existing_crtc_state(state, crtc));
1287
1288 drm_for_each_plane_mask(plane, state->dev, crtc->state->plane_mask) {
1289 struct drm_plane_state *plane_state =
1290 drm_atomic_get_plane_state(state, plane);
1291
1292 if (IS_ERR(plane_state))
1293 return PTR_ERR(plane_state);
1294 }
1295 return 0;
1296}
1297EXPORT_SYMBOL(drm_atomic_add_affected_planes);
1298
1299/**
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001300 * drm_atomic_legacy_backoff - locking backoff for legacy ioctls
1301 * @state: atomic state
1302 *
1303 * This function should be used by legacy entry points which don't understand
1304 * -EDEADLK semantics. For simplicity this one will grab all modeset locks after
John Hunter16d78bc2e2015-04-07 19:38:50 +08001305 * the slowpath completed.
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001306 */
1307void drm_atomic_legacy_backoff(struct drm_atomic_state *state)
1308{
Maarten Lankhorst81e257e2016-06-23 13:45:06 +02001309 struct drm_device *dev = state->dev;
1310 unsigned crtc_mask = 0;
1311 struct drm_crtc *crtc;
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001312 int ret;
Maarten Lankhorst81e257e2016-06-23 13:45:06 +02001313 bool global = false;
1314
1315 drm_for_each_crtc(crtc, dev) {
1316 if (crtc->acquire_ctx != state->acquire_ctx)
1317 continue;
1318
1319 crtc_mask |= drm_crtc_mask(crtc);
1320 crtc->acquire_ctx = NULL;
1321 }
1322
1323 if (WARN_ON(dev->mode_config.acquire_ctx == state->acquire_ctx)) {
1324 global = true;
1325
1326 dev->mode_config.acquire_ctx = NULL;
1327 }
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001328
1329retry:
1330 drm_modeset_backoff(state->acquire_ctx);
1331
Maarten Lankhorst81e257e2016-06-23 13:45:06 +02001332 ret = drm_modeset_lock_all_ctx(dev, state->acquire_ctx);
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001333 if (ret)
1334 goto retry;
Maarten Lankhorst81e257e2016-06-23 13:45:06 +02001335
1336 drm_for_each_crtc(crtc, dev)
1337 if (drm_crtc_mask(crtc) & crtc_mask)
1338 crtc->acquire_ctx = state->acquire_ctx;
1339
1340 if (global)
1341 dev->mode_config.acquire_ctx = state->acquire_ctx;
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001342}
1343EXPORT_SYMBOL(drm_atomic_legacy_backoff);
1344
1345/**
1346 * drm_atomic_check_only - check whether a given config would work
1347 * @state: atomic configuration to check
1348 *
1349 * Note that this function can return -EDEADLK if the driver needed to acquire
1350 * more locks but encountered a deadlock. The caller must then do the usual w/w
1351 * backoff dance and restart. All other errors are fatal.
1352 *
1353 * Returns:
1354 * 0 on success, negative error code on failure.
1355 */
1356int drm_atomic_check_only(struct drm_atomic_state *state)
1357{
Rob Clark5e743732014-12-18 16:01:51 -05001358 struct drm_device *dev = state->dev;
1359 struct drm_mode_config *config = &dev->mode_config;
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001360 struct drm_plane *plane;
1361 struct drm_plane_state *plane_state;
1362 struct drm_crtc *crtc;
1363 struct drm_crtc_state *crtc_state;
Rob Clark5e743732014-12-18 16:01:51 -05001364 int i, ret = 0;
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001365
Daniel Vetter17a38d92015-02-22 12:24:16 +01001366 DRM_DEBUG_ATOMIC("checking %p\n", state);
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001367
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001368 for_each_plane_in_state(state, plane, plane_state, i) {
1369 ret = drm_atomic_plane_check(plane, plane_state);
Rob Clark5e743732014-12-18 16:01:51 -05001370 if (ret) {
Ville Syrjälä9f4c97a2015-12-08 18:41:54 +02001371 DRM_DEBUG_ATOMIC("[PLANE:%d:%s] atomic core check failed\n",
1372 plane->base.id, plane->name);
Rob Clark5e743732014-12-18 16:01:51 -05001373 return ret;
1374 }
1375 }
1376
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001377 for_each_crtc_in_state(state, crtc, crtc_state, i) {
1378 ret = drm_atomic_crtc_check(crtc, crtc_state);
Rob Clark5e743732014-12-18 16:01:51 -05001379 if (ret) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +02001380 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] atomic core check failed\n",
1381 crtc->base.id, crtc->name);
Rob Clark5e743732014-12-18 16:01:51 -05001382 return ret;
1383 }
1384 }
1385
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001386 if (config->funcs->atomic_check)
Rob Clark5e743732014-12-18 16:01:51 -05001387 ret = config->funcs->atomic_check(state->dev, state);
1388
Maarten Lankhorsteed96e72017-08-15 11:57:06 +02001389 if (ret)
1390 return ret;
1391
Rob Clarkd34f20d2014-12-18 16:01:56 -05001392 if (!state->allow_modeset) {
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001393 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Daniel Vetter2465ff62015-06-18 09:58:55 +02001394 if (drm_atomic_crtc_needs_modeset(crtc_state)) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +02001395 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] requires full modeset\n",
1396 crtc->base.id, crtc->name);
Rob Clarkd34f20d2014-12-18 16:01:56 -05001397 return -EINVAL;
1398 }
1399 }
1400 }
1401
Maarten Lankhorsteed96e72017-08-15 11:57:06 +02001402 return 0;
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001403}
1404EXPORT_SYMBOL(drm_atomic_check_only);
1405
1406/**
1407 * drm_atomic_commit - commit configuration atomically
1408 * @state: atomic configuration to check
1409 *
1410 * Note that this function can return -EDEADLK if the driver needed to acquire
1411 * more locks but encountered a deadlock. The caller must then do the usual w/w
1412 * backoff dance and restart. All other errors are fatal.
1413 *
1414 * Also note that on successful execution ownership of @state is transferred
1415 * from the caller of this function to the function itself. The caller must not
1416 * free or in any other way access @state. If the function fails then the caller
1417 * must clean up @state itself.
1418 *
1419 * Returns:
1420 * 0 on success, negative error code on failure.
1421 */
1422int drm_atomic_commit(struct drm_atomic_state *state)
1423{
1424 struct drm_mode_config *config = &state->dev->mode_config;
1425 int ret;
1426
1427 ret = drm_atomic_check_only(state);
1428 if (ret)
1429 return ret;
1430
Daniel Vetter17a38d92015-02-22 12:24:16 +01001431 DRM_DEBUG_ATOMIC("commiting %p\n", state);
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001432
1433 return config->funcs->atomic_commit(state->dev, state, false);
1434}
1435EXPORT_SYMBOL(drm_atomic_commit);
1436
1437/**
Maarten Lankhorstb837ba02016-04-26 16:11:35 +02001438 * drm_atomic_nonblocking_commit - atomic&nonblocking configuration commit
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001439 * @state: atomic configuration to check
1440 *
1441 * Note that this function can return -EDEADLK if the driver needed to acquire
1442 * more locks but encountered a deadlock. The caller must then do the usual w/w
1443 * backoff dance and restart. All other errors are fatal.
1444 *
1445 * Also note that on successful execution ownership of @state is transferred
1446 * from the caller of this function to the function itself. The caller must not
1447 * free or in any other way access @state. If the function fails then the caller
1448 * must clean up @state itself.
1449 *
1450 * Returns:
1451 * 0 on success, negative error code on failure.
1452 */
Maarten Lankhorstb837ba02016-04-26 16:11:35 +02001453int drm_atomic_nonblocking_commit(struct drm_atomic_state *state)
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001454{
1455 struct drm_mode_config *config = &state->dev->mode_config;
1456 int ret;
1457
1458 ret = drm_atomic_check_only(state);
1459 if (ret)
1460 return ret;
1461
Maarten Lankhorstb837ba02016-04-26 16:11:35 +02001462 DRM_DEBUG_ATOMIC("commiting %p nonblocking\n", state);
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001463
1464 return config->funcs->atomic_commit(state->dev, state, true);
1465}
Maarten Lankhorstb837ba02016-04-26 16:11:35 +02001466EXPORT_SYMBOL(drm_atomic_nonblocking_commit);
Rob Clarkd34f20d2014-12-18 16:01:56 -05001467
1468/*
1469 * The big monstor ioctl
1470 */
1471
1472static struct drm_pending_vblank_event *create_vblank_event(
Gustavo Padovan1b47aaf2016-06-02 00:06:35 +02001473 struct drm_device *dev, struct drm_file *file_priv,
1474 struct fence *fence, uint64_t user_data)
Rob Clarkd34f20d2014-12-18 16:01:56 -05001475{
1476 struct drm_pending_vblank_event *e = NULL;
Daniel Vetter2dd500f2016-01-11 22:40:56 +01001477 int ret;
Rob Clarkd34f20d2014-12-18 16:01:56 -05001478
1479 e = kzalloc(sizeof *e, GFP_KERNEL);
Daniel Vetter2dd500f2016-01-11 22:40:56 +01001480 if (!e)
1481 return NULL;
Rob Clarkd34f20d2014-12-18 16:01:56 -05001482
1483 e->event.base.type = DRM_EVENT_FLIP_COMPLETE;
Daniel Vetter2dd500f2016-01-11 22:40:56 +01001484 e->event.base.length = sizeof(e->event);
Rob Clarkd34f20d2014-12-18 16:01:56 -05001485 e->event.user_data = user_data;
Rob Clarkd34f20d2014-12-18 16:01:56 -05001486
Gustavo Padovan1b47aaf2016-06-02 00:06:35 +02001487 if (file_priv) {
1488 ret = drm_event_reserve_init(dev, file_priv, &e->base,
1489 &e->event.base);
1490 if (ret) {
1491 kfree(e);
1492 return NULL;
1493 }
Daniel Vetter2dd500f2016-01-11 22:40:56 +01001494 }
1495
Gustavo Padovan1b47aaf2016-06-02 00:06:35 +02001496 e->base.fence = fence;
1497
Rob Clarkd34f20d2014-12-18 16:01:56 -05001498 return e;
1499}
1500
Rob Clarkd34f20d2014-12-18 16:01:56 -05001501static int atomic_set_prop(struct drm_atomic_state *state,
1502 struct drm_mode_object *obj, struct drm_property *prop,
1503 uint64_t prop_value)
1504{
1505 struct drm_mode_object *ref;
1506 int ret;
1507
1508 if (!drm_property_change_valid_get(prop, prop_value, &ref))
1509 return -EINVAL;
1510
1511 switch (obj->type) {
1512 case DRM_MODE_OBJECT_CONNECTOR: {
1513 struct drm_connector *connector = obj_to_connector(obj);
1514 struct drm_connector_state *connector_state;
1515
1516 connector_state = drm_atomic_get_connector_state(state, connector);
1517 if (IS_ERR(connector_state)) {
1518 ret = PTR_ERR(connector_state);
1519 break;
1520 }
1521
1522 ret = drm_atomic_connector_set_property(connector,
1523 connector_state, prop, prop_value);
1524 break;
1525 }
1526 case DRM_MODE_OBJECT_CRTC: {
1527 struct drm_crtc *crtc = obj_to_crtc(obj);
1528 struct drm_crtc_state *crtc_state;
1529
1530 crtc_state = drm_atomic_get_crtc_state(state, crtc);
1531 if (IS_ERR(crtc_state)) {
1532 ret = PTR_ERR(crtc_state);
1533 break;
1534 }
1535
1536 ret = drm_atomic_crtc_set_property(crtc,
1537 crtc_state, prop, prop_value);
1538 break;
1539 }
1540 case DRM_MODE_OBJECT_PLANE: {
1541 struct drm_plane *plane = obj_to_plane(obj);
1542 struct drm_plane_state *plane_state;
1543
1544 plane_state = drm_atomic_get_plane_state(state, plane);
1545 if (IS_ERR(plane_state)) {
1546 ret = PTR_ERR(plane_state);
1547 break;
1548 }
1549
1550 ret = drm_atomic_plane_set_property(plane,
1551 plane_state, prop, prop_value);
1552 break;
1553 }
1554 default:
1555 ret = -EINVAL;
1556 break;
1557 }
1558
1559 drm_property_change_valid_put(prop, ref);
1560 return ret;
1561}
1562
Maarten Lankhorst0f45c262015-11-11 11:29:09 +01001563/**
Maarten Lankhorst9744bf42015-11-24 10:34:34 +01001564 * drm_atomic_clean_old_fb -- Unset old_fb pointers and set plane->fb pointers.
Maarten Lankhorst0f45c262015-11-11 11:29:09 +01001565 *
1566 * @dev: drm device to check.
1567 * @plane_mask: plane mask for planes that were updated.
1568 * @ret: return value, can be -EDEADLK for a retry.
1569 *
1570 * Before doing an update plane->old_fb is set to plane->fb,
1571 * but before dropping the locks old_fb needs to be set to NULL
1572 * and plane->fb updated. This is a common operation for each
1573 * atomic update, so this call is split off as a helper.
1574 */
1575void drm_atomic_clean_old_fb(struct drm_device *dev,
1576 unsigned plane_mask,
1577 int ret)
1578{
1579 struct drm_plane *plane;
1580
1581 /* if succeeded, fixup legacy plane crtc/fb ptrs before dropping
1582 * locks (ie. while it is still safe to deref plane->state). We
1583 * need to do this here because the driver entry points cannot
1584 * distinguish between legacy and atomic ioctls.
1585 */
1586 drm_for_each_plane_mask(plane, dev, plane_mask) {
1587 if (ret == 0) {
1588 struct drm_framebuffer *new_fb = plane->state->fb;
1589 if (new_fb)
1590 drm_framebuffer_reference(new_fb);
1591 plane->fb = new_fb;
1592 plane->crtc = plane->state->crtc;
1593
1594 if (plane->old_fb)
1595 drm_framebuffer_unreference(plane->old_fb);
1596 }
1597 plane->old_fb = NULL;
1598 }
1599}
1600EXPORT_SYMBOL(drm_atomic_clean_old_fb);
1601
Rob Clarkd34f20d2014-12-18 16:01:56 -05001602int drm_mode_atomic_ioctl(struct drm_device *dev,
1603 void *data, struct drm_file *file_priv)
1604{
1605 struct drm_mode_atomic *arg = data;
1606 uint32_t __user *objs_ptr = (uint32_t __user *)(unsigned long)(arg->objs_ptr);
1607 uint32_t __user *count_props_ptr = (uint32_t __user *)(unsigned long)(arg->count_props_ptr);
1608 uint32_t __user *props_ptr = (uint32_t __user *)(unsigned long)(arg->props_ptr);
1609 uint64_t __user *prop_values_ptr = (uint64_t __user *)(unsigned long)(arg->prop_values_ptr);
1610 unsigned int copied_objs, copied_props;
1611 struct drm_atomic_state *state;
1612 struct drm_modeset_acquire_ctx ctx;
1613 struct drm_plane *plane;
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001614 struct drm_crtc *crtc;
1615 struct drm_crtc_state *crtc_state;
Maarten Lankhorst45723722015-11-11 11:29:08 +01001616 unsigned plane_mask;
Rob Clarkd34f20d2014-12-18 16:01:56 -05001617 int ret = 0;
Maarten Lankhorstf92f0532016-09-08 12:30:01 +02001618 unsigned int i, j;
Rob Clarkd34f20d2014-12-18 16:01:56 -05001619
1620 /* disallow for drivers not supporting atomic: */
1621 if (!drm_core_check_feature(dev, DRIVER_ATOMIC))
1622 return -EINVAL;
1623
1624 /* disallow for userspace that has not enabled atomic cap (even
1625 * though this may be a bit overkill, since legacy userspace
1626 * wouldn't know how to call this ioctl)
1627 */
1628 if (!file_priv->atomic)
1629 return -EINVAL;
1630
1631 if (arg->flags & ~DRM_MODE_ATOMIC_FLAGS)
1632 return -EINVAL;
1633
1634 if (arg->reserved)
1635 return -EINVAL;
1636
1637 if ((arg->flags & DRM_MODE_PAGE_FLIP_ASYNC) &&
1638 !dev->mode_config.async_page_flip)
1639 return -EINVAL;
1640
1641 /* can't test and expect an event at the same time. */
1642 if ((arg->flags & DRM_MODE_ATOMIC_TEST_ONLY) &&
1643 (arg->flags & DRM_MODE_PAGE_FLIP_EVENT))
1644 return -EINVAL;
1645
1646 drm_modeset_acquire_init(&ctx, 0);
1647
1648 state = drm_atomic_state_alloc(dev);
1649 if (!state)
1650 return -ENOMEM;
1651
1652 state->acquire_ctx = &ctx;
1653 state->allow_modeset = !!(arg->flags & DRM_MODE_ATOMIC_ALLOW_MODESET);
1654
1655retry:
Maarten Lankhorst45723722015-11-11 11:29:08 +01001656 plane_mask = 0;
Rob Clarkd34f20d2014-12-18 16:01:56 -05001657 copied_objs = 0;
1658 copied_props = 0;
1659
1660 for (i = 0; i < arg->count_objs; i++) {
1661 uint32_t obj_id, count_props;
1662 struct drm_mode_object *obj;
1663
1664 if (get_user(obj_id, objs_ptr + copied_objs)) {
1665 ret = -EFAULT;
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02001666 goto out;
Rob Clarkd34f20d2014-12-18 16:01:56 -05001667 }
1668
1669 obj = drm_mode_object_find(dev, obj_id, DRM_MODE_OBJECT_ANY);
Dave Airlieb164d312016-04-27 11:10:09 +10001670 if (!obj) {
1671 ret = -ENOENT;
1672 goto out;
1673 }
1674
1675 if (!obj->properties) {
1676 drm_mode_object_unreference(obj);
Rob Clarkd34f20d2014-12-18 16:01:56 -05001677 ret = -ENOENT;
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02001678 goto out;
Rob Clarkd34f20d2014-12-18 16:01:56 -05001679 }
1680
Rob Clarkd34f20d2014-12-18 16:01:56 -05001681 if (get_user(count_props, count_props_ptr + copied_objs)) {
Dave Airlieb164d312016-04-27 11:10:09 +10001682 drm_mode_object_unreference(obj);
Rob Clarkd34f20d2014-12-18 16:01:56 -05001683 ret = -EFAULT;
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02001684 goto out;
Rob Clarkd34f20d2014-12-18 16:01:56 -05001685 }
1686
1687 copied_objs++;
1688
1689 for (j = 0; j < count_props; j++) {
1690 uint32_t prop_id;
1691 uint64_t prop_value;
1692 struct drm_property *prop;
1693
1694 if (get_user(prop_id, props_ptr + copied_props)) {
Dave Airlieb164d312016-04-27 11:10:09 +10001695 drm_mode_object_unreference(obj);
Rob Clarkd34f20d2014-12-18 16:01:56 -05001696 ret = -EFAULT;
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02001697 goto out;
Rob Clarkd34f20d2014-12-18 16:01:56 -05001698 }
1699
Maarten Lankhorstf92f0532016-09-08 12:30:01 +02001700 prop = drm_mode_obj_find_prop_id(obj, prop_id);
Rob Clarkd34f20d2014-12-18 16:01:56 -05001701 if (!prop) {
Dave Airlieb164d312016-04-27 11:10:09 +10001702 drm_mode_object_unreference(obj);
Rob Clarkd34f20d2014-12-18 16:01:56 -05001703 ret = -ENOENT;
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02001704 goto out;
Rob Clarkd34f20d2014-12-18 16:01:56 -05001705 }
1706
Guenter Roeck42c58142015-01-12 21:12:17 -08001707 if (copy_from_user(&prop_value,
1708 prop_values_ptr + copied_props,
1709 sizeof(prop_value))) {
Dave Airlieb164d312016-04-27 11:10:09 +10001710 drm_mode_object_unreference(obj);
Rob Clarkd34f20d2014-12-18 16:01:56 -05001711 ret = -EFAULT;
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02001712 goto out;
Rob Clarkd34f20d2014-12-18 16:01:56 -05001713 }
1714
1715 ret = atomic_set_prop(state, obj, prop, prop_value);
Dave Airlieb164d312016-04-27 11:10:09 +10001716 if (ret) {
1717 drm_mode_object_unreference(obj);
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02001718 goto out;
Dave Airlieb164d312016-04-27 11:10:09 +10001719 }
Rob Clarkd34f20d2014-12-18 16:01:56 -05001720
1721 copied_props++;
1722 }
Maarten Lankhorsta9cc54e2015-06-24 08:59:24 +02001723
Maarten Lankhorstc4749c92015-08-31 12:25:04 +02001724 if (obj->type == DRM_MODE_OBJECT_PLANE && count_props &&
1725 !(arg->flags & DRM_MODE_ATOMIC_TEST_ONLY)) {
Maarten Lankhorsta9cc54e2015-06-24 08:59:24 +02001726 plane = obj_to_plane(obj);
1727 plane_mask |= (1 << drm_plane_index(plane));
1728 plane->old_fb = plane->fb;
1729 }
Dave Airlieb164d312016-04-27 11:10:09 +10001730 drm_mode_object_unreference(obj);
Rob Clarkd34f20d2014-12-18 16:01:56 -05001731 }
1732
1733 if (arg->flags & DRM_MODE_PAGE_FLIP_EVENT) {
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001734 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Rob Clarkd34f20d2014-12-18 16:01:56 -05001735 struct drm_pending_vblank_event *e;
1736
Gustavo Padovan1b47aaf2016-06-02 00:06:35 +02001737 e = create_vblank_event(dev, file_priv, NULL,
1738 arg->user_data);
Rob Clarkd34f20d2014-12-18 16:01:56 -05001739 if (!e) {
1740 ret = -ENOMEM;
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02001741 goto out;
Rob Clarkd34f20d2014-12-18 16:01:56 -05001742 }
1743
1744 crtc_state->event = e;
1745 }
1746 }
1747
1748 if (arg->flags & DRM_MODE_ATOMIC_TEST_ONLY) {
Maarten Lankhorstc4749c92015-08-31 12:25:04 +02001749 /*
1750 * Unlike commit, check_only does not clean up state.
1751 * Below we call drm_atomic_state_free for it.
1752 */
Rob Clarkd34f20d2014-12-18 16:01:56 -05001753 ret = drm_atomic_check_only(state);
Rob Clarkd34f20d2014-12-18 16:01:56 -05001754 } else if (arg->flags & DRM_MODE_ATOMIC_NONBLOCK) {
Maarten Lankhorstb837ba02016-04-26 16:11:35 +02001755 ret = drm_atomic_nonblocking_commit(state);
Rob Clarkd34f20d2014-12-18 16:01:56 -05001756 } else {
1757 ret = drm_atomic_commit(state);
1758 }
1759
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02001760out:
Maarten Lankhorst0f45c262015-11-11 11:29:09 +01001761 drm_atomic_clean_old_fb(dev, plane_mask, ret);
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02001762
Maarten Lankhorstc4749c92015-08-31 12:25:04 +02001763 if (ret && arg->flags & DRM_MODE_PAGE_FLIP_EVENT) {
1764 /*
Maarten Lankhorst4cd462c2017-01-31 10:25:25 +01001765 * Free the allocated event. drm_atomic_helper_setup_commit
1766 * can allocate an event too, so only free it if it's ours
1767 * to prevent a double free in drm_atomic_state_clear.
Maarten Lankhorstc4749c92015-08-31 12:25:04 +02001768 */
Maarten Lankhorstc4749c92015-08-31 12:25:04 +02001769 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Maarten Lankhorst4cd462c2017-01-31 10:25:25 +01001770 struct drm_pending_vblank_event *event = crtc_state->event;
1771 if (event && (event->base.fence || event->base.file_priv)) {
1772 drm_event_cancel_free(dev, &event->base);
1773 crtc_state->event = NULL;
1774 }
Maarten Lankhorstc4749c92015-08-31 12:25:04 +02001775 }
1776 }
1777
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02001778 if (ret == -EDEADLK) {
1779 drm_atomic_state_clear(state);
1780 drm_modeset_backoff(&ctx);
1781 goto retry;
1782 }
1783
Maarten Lankhorstc4749c92015-08-31 12:25:04 +02001784 if (ret || arg->flags & DRM_MODE_ATOMIC_TEST_ONLY)
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02001785 drm_atomic_state_free(state);
Rob Clarkd34f20d2014-12-18 16:01:56 -05001786
1787 drm_modeset_drop_locks(&ctx);
1788 drm_modeset_acquire_fini(&ctx);
1789
1790 return ret;
Rob Clarkd34f20d2014-12-18 16:01:56 -05001791}