blob: 087391f08a69ac0d2048e1157284b4a8c10ee7b5 [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{
423 struct drm_device *dev = crtc->dev;
424 struct drm_property_blob *new_blob = NULL;
425
426 if (blob_id != 0) {
427 new_blob = drm_property_lookup_blob(dev, blob_id);
428 if (new_blob == NULL)
429 return -EINVAL;
430 if (expected_size > 0 && expected_size != new_blob->length)
431 return -EINVAL;
432 }
433
434 drm_atomic_replace_property_blob(blob, new_blob, replaced);
435
436 return 0;
437}
438
439/**
Rob Clark40ecc692014-12-18 16:01:46 -0500440 * drm_atomic_crtc_set_property - set property on CRTC
441 * @crtc: the drm CRTC to set a property on
442 * @state: the state object to update with the new property value
443 * @property: the property to set
444 * @val: the new property value
445 *
446 * Use this instead of calling crtc->atomic_set_property directly.
447 * This function handles generic/core properties and calls out to
448 * driver's ->atomic_set_property() for driver properties. To ensure
449 * consistent behavior you must call this function rather than the
450 * driver hook directly.
451 *
452 * RETURNS:
453 * Zero on success, error code on failure
454 */
455int drm_atomic_crtc_set_property(struct drm_crtc *crtc,
456 struct drm_crtc_state *state, struct drm_property *property,
457 uint64_t val)
458{
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100459 struct drm_device *dev = crtc->dev;
460 struct drm_mode_config *config = &dev->mode_config;
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000461 bool replaced = false;
Daniel Stone955f3c32015-05-25 19:11:52 +0100462 int ret;
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100463
Daniel Stone27798362015-03-19 04:33:26 +0000464 if (property == config->prop_active)
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100465 state->active = val;
Daniel Stone955f3c32015-05-25 19:11:52 +0100466 else if (property == config->prop_mode_id) {
467 struct drm_property_blob *mode =
468 drm_property_lookup_blob(dev, val);
469 ret = drm_atomic_set_mode_prop_for_crtc(state, mode);
Markus Elfring5f911902015-11-06 12:03:46 +0100470 drm_property_unreference_blob(mode);
Daniel Stone955f3c32015-05-25 19:11:52 +0100471 return ret;
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000472 } else if (property == config->degamma_lut_property) {
473 ret = drm_atomic_replace_property_blob_from_id(crtc,
474 &state->degamma_lut,
475 val,
476 -1,
477 &replaced);
478 state->color_mgmt_changed = replaced;
479 return ret;
480 } else if (property == config->ctm_property) {
481 ret = drm_atomic_replace_property_blob_from_id(crtc,
482 &state->ctm,
483 val,
484 sizeof(struct drm_color_ctm),
485 &replaced);
486 state->color_mgmt_changed = replaced;
487 return ret;
488 } else if (property == config->gamma_lut_property) {
489 ret = drm_atomic_replace_property_blob_from_id(crtc,
490 &state->gamma_lut,
491 val,
492 -1,
493 &replaced);
494 state->color_mgmt_changed = replaced;
495 return ret;
496 } else if (crtc->funcs->atomic_set_property)
Rob Clark40ecc692014-12-18 16:01:46 -0500497 return crtc->funcs->atomic_set_property(crtc, state, property, val);
Daniel Stone27798362015-03-19 04:33:26 +0000498 else
499 return -EINVAL;
500
501 return 0;
Rob Clark40ecc692014-12-18 16:01:46 -0500502}
503EXPORT_SYMBOL(drm_atomic_crtc_set_property);
504
Daniel Vetterc0714fc2015-12-04 09:45:57 +0100505/**
506 * drm_atomic_crtc_get_property - get property value from CRTC state
507 * @crtc: the drm CRTC to set a property on
508 * @state: the state object to get the property value from
509 * @property: the property to set
510 * @val: return location for the property value
511 *
Rob Clarkac9c9252014-12-18 16:01:47 -0500512 * This function handles generic/core properties and calls out to
513 * driver's ->atomic_get_property() for driver properties. To ensure
514 * consistent behavior you must call this function rather than the
515 * driver hook directly.
Daniel Vetterc0714fc2015-12-04 09:45:57 +0100516 *
517 * RETURNS:
518 * Zero on success, error code on failure
Rob Clarkac9c9252014-12-18 16:01:47 -0500519 */
Geliang Tangbf22f3b2015-09-24 03:01:03 -0700520static int
521drm_atomic_crtc_get_property(struct drm_crtc *crtc,
Rob Clarkac9c9252014-12-18 16:01:47 -0500522 const struct drm_crtc_state *state,
523 struct drm_property *property, uint64_t *val)
524{
Daniel Stone8f164ce2015-03-19 04:33:25 +0000525 struct drm_device *dev = crtc->dev;
526 struct drm_mode_config *config = &dev->mode_config;
527
528 if (property == config->prop_active)
529 *val = state->active;
Daniel Stone955f3c32015-05-25 19:11:52 +0100530 else if (property == config->prop_mode_id)
531 *val = (state->mode_blob) ? state->mode_blob->base.id : 0;
Lionel Landwerlin5488dc12016-02-26 17:05:00 +0000532 else if (property == config->degamma_lut_property)
533 *val = (state->degamma_lut) ? state->degamma_lut->base.id : 0;
534 else if (property == config->ctm_property)
535 *val = (state->ctm) ? state->ctm->base.id : 0;
536 else if (property == config->gamma_lut_property)
537 *val = (state->gamma_lut) ? state->gamma_lut->base.id : 0;
Daniel Stone8f164ce2015-03-19 04:33:25 +0000538 else if (crtc->funcs->atomic_get_property)
Rob Clarkac9c9252014-12-18 16:01:47 -0500539 return crtc->funcs->atomic_get_property(crtc, state, property, val);
Daniel Stone8f164ce2015-03-19 04:33:25 +0000540 else
541 return -EINVAL;
542
543 return 0;
Rob Clarkac9c9252014-12-18 16:01:47 -0500544}
Rob Clarkac9c9252014-12-18 16:01:47 -0500545
546/**
Rob Clark5e743732014-12-18 16:01:51 -0500547 * drm_atomic_crtc_check - check crtc state
548 * @crtc: crtc to check
549 * @state: crtc state to check
550 *
551 * Provides core sanity checks for crtc state.
552 *
553 * RETURNS:
554 * Zero on success, error code on failure
555 */
556static int drm_atomic_crtc_check(struct drm_crtc *crtc,
557 struct drm_crtc_state *state)
558{
559 /* NOTE: we explicitly don't enforce constraints such as primary
560 * layer covering entire screen, since that is something we want
561 * to allow (on hw that supports it). For hw that does not, it
562 * should be checked in driver's crtc->atomic_check() vfunc.
563 *
564 * TODO: Add generic modeset state checks once we support those.
565 */
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100566
567 if (state->active && !state->enable) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200568 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] active without enabled\n",
569 crtc->base.id, crtc->name);
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100570 return -EINVAL;
571 }
572
Daniel Stone99cf4a22015-05-25 19:11:51 +0100573 /* The state->enable vs. state->mode_blob checks can be WARN_ON,
574 * as this is a kernel-internal detail that userspace should never
575 * be able to trigger. */
576 if (drm_core_check_feature(crtc->dev, DRIVER_ATOMIC) &&
577 WARN_ON(state->enable && !state->mode_blob)) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200578 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] enabled without mode blob\n",
579 crtc->base.id, crtc->name);
Daniel Stone99cf4a22015-05-25 19:11:51 +0100580 return -EINVAL;
581 }
582
583 if (drm_core_check_feature(crtc->dev, DRIVER_ATOMIC) &&
584 WARN_ON(!state->enable && state->mode_blob)) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200585 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] disabled with mode blob\n",
586 crtc->base.id, crtc->name);
Daniel Stone99cf4a22015-05-25 19:11:51 +0100587 return -EINVAL;
588 }
589
Daniel Vetter4cba6852015-12-08 09:49:20 +0100590 /*
591 * Reject event generation for when a CRTC is off and stays off.
592 * It wouldn't be hard to implement this, but userspace has a track
593 * record of happily burning through 100% cpu (or worse, crash) when the
594 * display pipe is suspended. To avoid all that fun just reject updates
595 * that ask for events since likely that indicates a bug in the
596 * compositor's drawing loop. This is consistent with the vblank IOCTL
597 * and legacy page_flip IOCTL which also reject service on a disabled
598 * pipe.
599 */
600 if (state->event && !state->active && !crtc->state->active) {
601 DRM_DEBUG_ATOMIC("[CRTC:%d] requesting event but off\n",
602 crtc->base.id);
603 return -EINVAL;
604 }
605
Rob Clark5e743732014-12-18 16:01:51 -0500606 return 0;
607}
608
609/**
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200610 * drm_atomic_get_plane_state - get plane state
611 * @state: global atomic state object
612 * @plane: plane to get state object for
613 *
614 * This function returns the plane state for the given plane, allocating it if
615 * needed. It will also grab the relevant plane lock to make sure that the state
616 * is consistent.
617 *
618 * Returns:
619 *
620 * Either the allocated state or the error code encoded into the pointer. When
621 * the error is EDEADLK then the w/w mutex code has detected a deadlock and the
622 * entire atomic sequence must be restarted. All other errors are fatal.
623 */
624struct drm_plane_state *
625drm_atomic_get_plane_state(struct drm_atomic_state *state,
626 struct drm_plane *plane)
627{
Maarten Lankhorst1b26a5e2015-05-13 10:37:25 +0200628 int ret, index = drm_plane_index(plane);
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200629 struct drm_plane_state *plane_state;
630
Maarten Lankhorst7f4eaa82016-05-03 11:12:31 +0200631 WARN_ON(!state->acquire_ctx);
632
Maarten Lankhorst1b26a5e2015-05-13 10:37:25 +0200633 plane_state = drm_atomic_get_existing_plane_state(state, plane);
634 if (plane_state)
635 return plane_state;
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200636
Daniel Vetter4d02e2d2014-11-11 10:12:00 +0100637 ret = drm_modeset_lock(&plane->mutex, state->acquire_ctx);
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200638 if (ret)
639 return ERR_PTR(ret);
640
641 plane_state = plane->funcs->atomic_duplicate_state(plane);
642 if (!plane_state)
643 return ERR_PTR(-ENOMEM);
644
Daniel Vetterb8b53422016-06-02 00:06:33 +0200645 state->planes[index].state = plane_state;
646 state->planes[index].ptr = plane;
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200647 plane_state->state = state;
648
Ville Syrjälä9f4c97a2015-12-08 18:41:54 +0200649 DRM_DEBUG_ATOMIC("Added [PLANE:%d:%s] %p state to %p\n",
650 plane->base.id, plane->name, plane_state, state);
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200651
652 if (plane_state->crtc) {
653 struct drm_crtc_state *crtc_state;
654
655 crtc_state = drm_atomic_get_crtc_state(state,
656 plane_state->crtc);
657 if (IS_ERR(crtc_state))
658 return ERR_CAST(crtc_state);
659 }
660
661 return plane_state;
662}
663EXPORT_SYMBOL(drm_atomic_get_plane_state);
664
665/**
Rob Clark40ecc692014-12-18 16:01:46 -0500666 * drm_atomic_plane_set_property - set property on plane
667 * @plane: the drm plane to set a property on
668 * @state: the state object to update with the new property value
669 * @property: the property to set
670 * @val: the new property value
671 *
672 * Use this instead of calling plane->atomic_set_property directly.
673 * This function handles generic/core properties and calls out to
674 * driver's ->atomic_set_property() for driver properties. To ensure
675 * consistent behavior you must call this function rather than the
676 * driver hook directly.
677 *
678 * RETURNS:
679 * Zero on success, error code on failure
680 */
681int drm_atomic_plane_set_property(struct drm_plane *plane,
682 struct drm_plane_state *state, struct drm_property *property,
683 uint64_t val)
684{
Rob Clark6b4959f2014-12-18 16:01:53 -0500685 struct drm_device *dev = plane->dev;
686 struct drm_mode_config *config = &dev->mode_config;
687
688 if (property == config->prop_fb_id) {
689 struct drm_framebuffer *fb = drm_framebuffer_lookup(dev, val);
690 drm_atomic_set_fb_for_plane(state, fb);
691 if (fb)
692 drm_framebuffer_unreference(fb);
693 } else if (property == config->prop_crtc_id) {
694 struct drm_crtc *crtc = drm_crtc_find(dev, val);
695 return drm_atomic_set_crtc_for_plane(state, crtc);
696 } else if (property == config->prop_crtc_x) {
697 state->crtc_x = U642I64(val);
698 } else if (property == config->prop_crtc_y) {
699 state->crtc_y = U642I64(val);
700 } else if (property == config->prop_crtc_w) {
701 state->crtc_w = val;
702 } else if (property == config->prop_crtc_h) {
703 state->crtc_h = val;
704 } else if (property == config->prop_src_x) {
705 state->src_x = val;
706 } else if (property == config->prop_src_y) {
707 state->src_y = val;
708 } else if (property == config->prop_src_w) {
709 state->src_w = val;
710 } else if (property == config->prop_src_h) {
711 state->src_h = val;
Matt Roper1da30622015-01-21 16:35:40 -0800712 } else if (property == config->rotation_property) {
713 state->rotation = val;
Marek Szyprowski44d1240d2016-06-13 11:11:26 +0200714 } else if (property == plane->zpos_property) {
715 state->zpos = val;
Rob Clark6b4959f2014-12-18 16:01:53 -0500716 } else if (plane->funcs->atomic_set_property) {
717 return plane->funcs->atomic_set_property(plane, state,
718 property, val);
719 } else {
720 return -EINVAL;
721 }
722
723 return 0;
Rob Clark40ecc692014-12-18 16:01:46 -0500724}
725EXPORT_SYMBOL(drm_atomic_plane_set_property);
726
Daniel Vetterc0714fc2015-12-04 09:45:57 +0100727/**
728 * drm_atomic_plane_get_property - get property value from plane state
729 * @plane: the drm plane to set a property on
730 * @state: the state object to get the property value from
731 * @property: the property to set
732 * @val: return location for the property value
733 *
Rob Clarkac9c9252014-12-18 16:01:47 -0500734 * This function handles generic/core properties and calls out to
735 * driver's ->atomic_get_property() for driver properties. To ensure
736 * consistent behavior you must call this function rather than the
737 * driver hook directly.
Daniel Vetterc0714fc2015-12-04 09:45:57 +0100738 *
739 * RETURNS:
740 * Zero on success, error code on failure
Rob Clarkac9c9252014-12-18 16:01:47 -0500741 */
Daniel Vettera97df1c2014-12-18 22:49:02 +0100742static int
743drm_atomic_plane_get_property(struct drm_plane *plane,
Rob Clarkac9c9252014-12-18 16:01:47 -0500744 const struct drm_plane_state *state,
745 struct drm_property *property, uint64_t *val)
746{
Rob Clark6b4959f2014-12-18 16:01:53 -0500747 struct drm_device *dev = plane->dev;
748 struct drm_mode_config *config = &dev->mode_config;
749
750 if (property == config->prop_fb_id) {
751 *val = (state->fb) ? state->fb->base.id : 0;
752 } else if (property == config->prop_crtc_id) {
753 *val = (state->crtc) ? state->crtc->base.id : 0;
754 } else if (property == config->prop_crtc_x) {
755 *val = I642U64(state->crtc_x);
756 } else if (property == config->prop_crtc_y) {
757 *val = I642U64(state->crtc_y);
758 } else if (property == config->prop_crtc_w) {
759 *val = state->crtc_w;
760 } else if (property == config->prop_crtc_h) {
761 *val = state->crtc_h;
762 } else if (property == config->prop_src_x) {
763 *val = state->src_x;
764 } else if (property == config->prop_src_y) {
765 *val = state->src_y;
766 } else if (property == config->prop_src_w) {
767 *val = state->src_w;
768 } else if (property == config->prop_src_h) {
769 *val = state->src_h;
Tvrtko Ursulin4cda09c2015-02-26 13:49:17 +0000770 } else if (property == config->rotation_property) {
771 *val = state->rotation;
Marek Szyprowski44d1240d2016-06-13 11:11:26 +0200772 } else if (property == plane->zpos_property) {
773 *val = state->zpos;
Rob Clark6b4959f2014-12-18 16:01:53 -0500774 } else if (plane->funcs->atomic_get_property) {
Rob Clarkac9c9252014-12-18 16:01:47 -0500775 return plane->funcs->atomic_get_property(plane, state, property, val);
Rob Clark6b4959f2014-12-18 16:01:53 -0500776 } else {
777 return -EINVAL;
778 }
779
780 return 0;
Rob Clarkac9c9252014-12-18 16:01:47 -0500781}
Rob Clarkac9c9252014-12-18 16:01:47 -0500782
Daniel Vetterf8aeb412015-08-26 21:49:42 +0200783static bool
784plane_switching_crtc(struct drm_atomic_state *state,
785 struct drm_plane *plane,
786 struct drm_plane_state *plane_state)
787{
788 if (!plane->state->crtc || !plane_state->crtc)
789 return false;
790
791 if (plane->state->crtc == plane_state->crtc)
792 return false;
793
794 /* This could be refined, but currently there's no helper or driver code
795 * to implement direct switching of active planes nor userspace to take
796 * advantage of more direct plane switching without the intermediate
797 * full OFF state.
798 */
799 return true;
800}
801
Rob Clarkac9c9252014-12-18 16:01:47 -0500802/**
Rob Clark5e743732014-12-18 16:01:51 -0500803 * drm_atomic_plane_check - check plane state
804 * @plane: plane to check
805 * @state: plane state to check
806 *
807 * Provides core sanity checks for plane state.
808 *
809 * RETURNS:
810 * Zero on success, error code on failure
811 */
812static int drm_atomic_plane_check(struct drm_plane *plane,
813 struct drm_plane_state *state)
814{
815 unsigned int fb_width, fb_height;
Laurent Pinchartead86102015-03-05 02:25:43 +0200816 int ret;
Rob Clark5e743732014-12-18 16:01:51 -0500817
818 /* either *both* CRTC and FB must be set, or neither */
819 if (WARN_ON(state->crtc && !state->fb)) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100820 DRM_DEBUG_ATOMIC("CRTC set but no FB\n");
Rob Clark5e743732014-12-18 16:01:51 -0500821 return -EINVAL;
822 } else if (WARN_ON(state->fb && !state->crtc)) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100823 DRM_DEBUG_ATOMIC("FB set but no CRTC\n");
Rob Clark5e743732014-12-18 16:01:51 -0500824 return -EINVAL;
825 }
826
827 /* if disabled, we don't care about the rest of the state: */
828 if (!state->crtc)
829 return 0;
830
831 /* Check whether this plane is usable on this CRTC */
832 if (!(plane->possible_crtcs & drm_crtc_mask(state->crtc))) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100833 DRM_DEBUG_ATOMIC("Invalid crtc for plane\n");
Rob Clark5e743732014-12-18 16:01:51 -0500834 return -EINVAL;
835 }
836
837 /* Check whether this plane supports the fb pixel format. */
Laurent Pinchartead86102015-03-05 02:25:43 +0200838 ret = drm_plane_check_pixel_format(plane, state->fb->pixel_format);
839 if (ret) {
Eric Engestrom90844f02016-08-15 01:02:38 +0100840 const char *format_name = drm_get_format_name(state->fb->pixel_format);
841 DRM_DEBUG_ATOMIC("Invalid pixel format %s\n", format_name);
842 kfree(format_name);
Laurent Pinchartead86102015-03-05 02:25:43 +0200843 return ret;
Rob Clark5e743732014-12-18 16:01:51 -0500844 }
845
846 /* Give drivers some help against integer overflows */
847 if (state->crtc_w > INT_MAX ||
848 state->crtc_x > INT_MAX - (int32_t) state->crtc_w ||
849 state->crtc_h > INT_MAX ||
850 state->crtc_y > INT_MAX - (int32_t) state->crtc_h) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100851 DRM_DEBUG_ATOMIC("Invalid CRTC coordinates %ux%u+%d+%d\n",
852 state->crtc_w, state->crtc_h,
853 state->crtc_x, state->crtc_y);
Rob Clark5e743732014-12-18 16:01:51 -0500854 return -ERANGE;
855 }
856
857 fb_width = state->fb->width << 16;
858 fb_height = state->fb->height << 16;
859
860 /* Make sure source coordinates are inside the fb. */
861 if (state->src_w > fb_width ||
862 state->src_x > fb_width - state->src_w ||
863 state->src_h > fb_height ||
864 state->src_y > fb_height - state->src_h) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100865 DRM_DEBUG_ATOMIC("Invalid source coordinates "
866 "%u.%06ux%u.%06u+%u.%06u+%u.%06u\n",
867 state->src_w >> 16, ((state->src_w & 0xffff) * 15625) >> 10,
868 state->src_h >> 16, ((state->src_h & 0xffff) * 15625) >> 10,
869 state->src_x >> 16, ((state->src_x & 0xffff) * 15625) >> 10,
870 state->src_y >> 16, ((state->src_y & 0xffff) * 15625) >> 10);
Rob Clark5e743732014-12-18 16:01:51 -0500871 return -ENOSPC;
872 }
873
Daniel Vetterf8aeb412015-08-26 21:49:42 +0200874 if (plane_switching_crtc(state->state, plane, state)) {
Ville Syrjälä9f4c97a2015-12-08 18:41:54 +0200875 DRM_DEBUG_ATOMIC("[PLANE:%d:%s] switching CRTC directly\n",
876 plane->base.id, plane->name);
Daniel Vetterf8aeb412015-08-26 21:49:42 +0200877 return -EINVAL;
878 }
879
Rob Clark5e743732014-12-18 16:01:51 -0500880 return 0;
881}
882
883/**
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200884 * drm_atomic_get_connector_state - get connector state
885 * @state: global atomic state object
886 * @connector: connector to get state object for
887 *
888 * This function returns the connector state for the given connector,
889 * allocating it if needed. It will also grab the relevant connector lock to
890 * make sure that the state is consistent.
891 *
892 * Returns:
893 *
894 * Either the allocated state or the error code encoded into the pointer. When
895 * the error is EDEADLK then the w/w mutex code has detected a deadlock and the
896 * entire atomic sequence must be restarted. All other errors are fatal.
897 */
898struct drm_connector_state *
899drm_atomic_get_connector_state(struct drm_atomic_state *state,
900 struct drm_connector *connector)
901{
902 int ret, index;
903 struct drm_mode_config *config = &connector->dev->mode_config;
904 struct drm_connector_state *connector_state;
905
Maarten Lankhorst7f4eaa82016-05-03 11:12:31 +0200906 WARN_ON(!state->acquire_ctx);
907
Daniel Vetterc7eb76f2014-11-19 18:38:06 +0100908 ret = drm_modeset_lock(&config->connection_mutex, state->acquire_ctx);
909 if (ret)
910 return ERR_PTR(ret);
911
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200912 index = drm_connector_index(connector);
913
Daniel Vetterf52b69f12014-11-19 18:38:08 +0100914 if (index >= state->num_connector) {
Daniel Vetter63e83c12016-06-02 00:06:32 +0200915 struct __drm_connnectors_state *c;
Maarten Lankhorst5fff80b2016-02-17 08:32:05 +0100916 int alloc = max(index + 1, config->num_connector);
917
918 c = krealloc(state->connectors, alloc * sizeof(*state->connectors), GFP_KERNEL);
919 if (!c)
920 return ERR_PTR(-ENOMEM);
921
922 state->connectors = c;
923 memset(&state->connectors[state->num_connector], 0,
924 sizeof(*state->connectors) * (alloc - state->num_connector));
925
Maarten Lankhorst5fff80b2016-02-17 08:32:05 +0100926 state->num_connector = alloc;
Daniel Vetterf52b69f12014-11-19 18:38:08 +0100927 }
928
Daniel Vetter63e83c12016-06-02 00:06:32 +0200929 if (state->connectors[index].state)
930 return state->connectors[index].state;
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200931
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200932 connector_state = connector->funcs->atomic_duplicate_state(connector);
933 if (!connector_state)
934 return ERR_PTR(-ENOMEM);
935
Dave Airlieb164d312016-04-27 11:10:09 +1000936 drm_connector_reference(connector);
Daniel Vetter63e83c12016-06-02 00:06:32 +0200937 state->connectors[index].state = connector_state;
938 state->connectors[index].ptr = connector;
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200939 connector_state->state = state;
940
Daniel Vetter17a38d92015-02-22 12:24:16 +0100941 DRM_DEBUG_ATOMIC("Added [CONNECTOR:%d] %p state to %p\n",
942 connector->base.id, connector_state, state);
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200943
944 if (connector_state->crtc) {
945 struct drm_crtc_state *crtc_state;
946
947 crtc_state = drm_atomic_get_crtc_state(state,
948 connector_state->crtc);
949 if (IS_ERR(crtc_state))
950 return ERR_CAST(crtc_state);
951 }
952
953 return connector_state;
954}
955EXPORT_SYMBOL(drm_atomic_get_connector_state);
956
957/**
Rob Clark40ecc692014-12-18 16:01:46 -0500958 * drm_atomic_connector_set_property - set property on connector.
959 * @connector: the drm connector to set a property on
960 * @state: the state object to update with the new property value
961 * @property: the property to set
962 * @val: the new property value
963 *
964 * Use this instead of calling connector->atomic_set_property directly.
965 * This function handles generic/core properties and calls out to
966 * driver's ->atomic_set_property() for driver properties. To ensure
967 * consistent behavior you must call this function rather than the
968 * driver hook directly.
969 *
970 * RETURNS:
971 * Zero on success, error code on failure
972 */
973int drm_atomic_connector_set_property(struct drm_connector *connector,
974 struct drm_connector_state *state, struct drm_property *property,
975 uint64_t val)
976{
977 struct drm_device *dev = connector->dev;
978 struct drm_mode_config *config = &dev->mode_config;
979
Rob Clarkae16c592014-12-18 16:01:54 -0500980 if (property == config->prop_crtc_id) {
981 struct drm_crtc *crtc = drm_crtc_find(dev, val);
982 return drm_atomic_set_crtc_for_connector(state, crtc);
983 } else if (property == config->dpms_property) {
Rob Clark40ecc692014-12-18 16:01:46 -0500984 /* setting DPMS property requires special handling, which
985 * is done in legacy setprop path for us. Disallow (for
986 * now?) atomic writes to DPMS property:
987 */
988 return -EINVAL;
989 } else if (connector->funcs->atomic_set_property) {
990 return connector->funcs->atomic_set_property(connector,
991 state, property, val);
992 } else {
993 return -EINVAL;
994 }
995}
996EXPORT_SYMBOL(drm_atomic_connector_set_property);
997
Daniel Vetterc0714fc2015-12-04 09:45:57 +0100998/**
999 * drm_atomic_connector_get_property - get property value from connector state
1000 * @connector: the drm connector to set a property on
1001 * @state: the state object to get the property value from
1002 * @property: the property to set
1003 * @val: return location for the property value
1004 *
Rob Clarkac9c9252014-12-18 16:01:47 -05001005 * This function handles generic/core properties and calls out to
1006 * driver's ->atomic_get_property() for driver properties. To ensure
1007 * consistent behavior you must call this function rather than the
1008 * driver hook directly.
Daniel Vetterc0714fc2015-12-04 09:45:57 +01001009 *
1010 * RETURNS:
1011 * Zero on success, error code on failure
Rob Clarkac9c9252014-12-18 16:01:47 -05001012 */
Daniel Vettera97df1c2014-12-18 22:49:02 +01001013static int
1014drm_atomic_connector_get_property(struct drm_connector *connector,
Rob Clarkac9c9252014-12-18 16:01:47 -05001015 const struct drm_connector_state *state,
1016 struct drm_property *property, uint64_t *val)
1017{
1018 struct drm_device *dev = connector->dev;
1019 struct drm_mode_config *config = &dev->mode_config;
1020
Rob Clarkae16c592014-12-18 16:01:54 -05001021 if (property == config->prop_crtc_id) {
1022 *val = (state->crtc) ? state->crtc->base.id : 0;
1023 } else if (property == config->dpms_property) {
Rob Clarkac9c9252014-12-18 16:01:47 -05001024 *val = connector->dpms;
1025 } else if (connector->funcs->atomic_get_property) {
1026 return connector->funcs->atomic_get_property(connector,
1027 state, property, val);
1028 } else {
1029 return -EINVAL;
1030 }
1031
1032 return 0;
1033}
Rob Clarkac9c9252014-12-18 16:01:47 -05001034
Rob Clark88a48e22014-12-18 16:01:50 -05001035int drm_atomic_get_property(struct drm_mode_object *obj,
1036 struct drm_property *property, uint64_t *val)
1037{
1038 struct drm_device *dev = property->dev;
1039 int ret;
1040
1041 switch (obj->type) {
1042 case DRM_MODE_OBJECT_CONNECTOR: {
1043 struct drm_connector *connector = obj_to_connector(obj);
1044 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
1045 ret = drm_atomic_connector_get_property(connector,
1046 connector->state, property, val);
1047 break;
1048 }
1049 case DRM_MODE_OBJECT_CRTC: {
1050 struct drm_crtc *crtc = obj_to_crtc(obj);
1051 WARN_ON(!drm_modeset_is_locked(&crtc->mutex));
1052 ret = drm_atomic_crtc_get_property(crtc,
1053 crtc->state, property, val);
1054 break;
1055 }
1056 case DRM_MODE_OBJECT_PLANE: {
1057 struct drm_plane *plane = obj_to_plane(obj);
1058 WARN_ON(!drm_modeset_is_locked(&plane->mutex));
1059 ret = drm_atomic_plane_get_property(plane,
1060 plane->state, property, val);
1061 break;
1062 }
1063 default:
1064 ret = -EINVAL;
1065 break;
1066 }
1067
1068 return ret;
1069}
1070
1071/**
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001072 * drm_atomic_set_crtc_for_plane - set crtc for plane
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01001073 * @plane_state: the plane whose incoming state to update
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001074 * @crtc: crtc to use for the plane
1075 *
1076 * Changing the assigned crtc for a plane requires us to grab the lock and state
1077 * for the new crtc, as needed. This function takes care of all these details
1078 * besides updating the pointer in the state object itself.
1079 *
1080 * Returns:
1081 * 0 on success or can fail with -EDEADLK or -ENOMEM. When the error is EDEADLK
1082 * then the w/w mutex code has detected a deadlock and the entire atomic
1083 * sequence must be restarted. All other errors are fatal.
1084 */
1085int
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01001086drm_atomic_set_crtc_for_plane(struct drm_plane_state *plane_state,
1087 struct drm_crtc *crtc)
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001088{
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01001089 struct drm_plane *plane = plane_state->plane;
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001090 struct drm_crtc_state *crtc_state;
1091
Rob Clark6ddd3882014-11-21 15:28:31 -05001092 if (plane_state->crtc) {
1093 crtc_state = drm_atomic_get_crtc_state(plane_state->state,
1094 plane_state->crtc);
1095 if (WARN_ON(IS_ERR(crtc_state)))
1096 return PTR_ERR(crtc_state);
1097
1098 crtc_state->plane_mask &= ~(1 << drm_plane_index(plane));
1099 }
1100
1101 plane_state->crtc = crtc;
1102
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001103 if (crtc) {
1104 crtc_state = drm_atomic_get_crtc_state(plane_state->state,
1105 crtc);
1106 if (IS_ERR(crtc_state))
1107 return PTR_ERR(crtc_state);
Rob Clark6ddd3882014-11-21 15:28:31 -05001108 crtc_state->plane_mask |= (1 << drm_plane_index(plane));
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001109 }
1110
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001111 if (crtc)
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +02001112 DRM_DEBUG_ATOMIC("Link plane state %p to [CRTC:%d:%s]\n",
1113 plane_state, crtc->base.id, crtc->name);
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001114 else
Daniel Vetter17a38d92015-02-22 12:24:16 +01001115 DRM_DEBUG_ATOMIC("Link plane state %p to [NOCRTC]\n",
1116 plane_state);
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001117
1118 return 0;
1119}
1120EXPORT_SYMBOL(drm_atomic_set_crtc_for_plane);
1121
1122/**
John Hunter16d78bc2e2015-04-07 19:38:50 +08001123 * drm_atomic_set_fb_for_plane - set framebuffer for plane
Daniel Vetter321ebf02014-11-04 22:57:27 +01001124 * @plane_state: atomic state object for the plane
1125 * @fb: fb to use for the plane
1126 *
1127 * Changing the assigned framebuffer for a plane requires us to grab a reference
1128 * to the new fb and drop the reference to the old fb, if there is one. This
1129 * function takes care of all these details besides updating the pointer in the
1130 * state object itself.
1131 */
1132void
1133drm_atomic_set_fb_for_plane(struct drm_plane_state *plane_state,
1134 struct drm_framebuffer *fb)
1135{
1136 if (plane_state->fb)
1137 drm_framebuffer_unreference(plane_state->fb);
1138 if (fb)
1139 drm_framebuffer_reference(fb);
1140 plane_state->fb = fb;
1141
1142 if (fb)
Daniel Vetter17a38d92015-02-22 12:24:16 +01001143 DRM_DEBUG_ATOMIC("Set [FB:%d] for plane state %p\n",
1144 fb->base.id, plane_state);
Daniel Vetter321ebf02014-11-04 22:57:27 +01001145 else
Daniel Vetter17a38d92015-02-22 12:24:16 +01001146 DRM_DEBUG_ATOMIC("Set [NOFB] for plane state %p\n",
1147 plane_state);
Daniel Vetter321ebf02014-11-04 22:57:27 +01001148}
1149EXPORT_SYMBOL(drm_atomic_set_fb_for_plane);
1150
1151/**
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001152 * drm_atomic_set_crtc_for_connector - set crtc for connector
1153 * @conn_state: atomic state object for the connector
1154 * @crtc: crtc to use for the connector
1155 *
1156 * Changing the assigned crtc for a connector requires us to grab the lock and
1157 * state for the new crtc, as needed. This function takes care of all these
1158 * details besides updating the pointer in the state object itself.
1159 *
1160 * Returns:
1161 * 0 on success or can fail with -EDEADLK or -ENOMEM. When the error is EDEADLK
1162 * then the w/w mutex code has detected a deadlock and the entire atomic
1163 * sequence must be restarted. All other errors are fatal.
1164 */
1165int
1166drm_atomic_set_crtc_for_connector(struct drm_connector_state *conn_state,
1167 struct drm_crtc *crtc)
1168{
1169 struct drm_crtc_state *crtc_state;
1170
Chris Wilsone2d800a2016-05-06 12:47:45 +01001171 if (conn_state->crtc == crtc)
1172 return 0;
1173
1174 if (conn_state->crtc) {
Maarten Lankhorst4cd9fa52016-01-04 12:53:18 +01001175 crtc_state = drm_atomic_get_existing_crtc_state(conn_state->state,
1176 conn_state->crtc);
1177
1178 crtc_state->connector_mask &=
1179 ~(1 << drm_connector_index(conn_state->connector));
Chris Wilsone2d800a2016-05-06 12:47:45 +01001180
1181 drm_connector_unreference(conn_state->connector);
1182 conn_state->crtc = NULL;
Maarten Lankhorst4cd9fa52016-01-04 12:53:18 +01001183 }
1184
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001185 if (crtc) {
1186 crtc_state = drm_atomic_get_crtc_state(conn_state->state, crtc);
1187 if (IS_ERR(crtc_state))
1188 return PTR_ERR(crtc_state);
Maarten Lankhorst4cd9fa52016-01-04 12:53:18 +01001189
1190 crtc_state->connector_mask |=
1191 1 << drm_connector_index(conn_state->connector);
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001192
Chris Wilsone2d800a2016-05-06 12:47:45 +01001193 drm_connector_reference(conn_state->connector);
1194 conn_state->crtc = crtc;
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001195
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +02001196 DRM_DEBUG_ATOMIC("Link connector state %p to [CRTC:%d:%s]\n",
1197 conn_state, crtc->base.id, crtc->name);
Chris Wilsone2d800a2016-05-06 12:47:45 +01001198 } else {
Daniel Vetter17a38d92015-02-22 12:24:16 +01001199 DRM_DEBUG_ATOMIC("Link connector state %p to [NOCRTC]\n",
1200 conn_state);
Chris Wilsone2d800a2016-05-06 12:47:45 +01001201 }
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001202
1203 return 0;
1204}
1205EXPORT_SYMBOL(drm_atomic_set_crtc_for_connector);
1206
1207/**
1208 * drm_atomic_add_affected_connectors - add connectors for crtc
1209 * @state: atomic state
1210 * @crtc: DRM crtc
1211 *
1212 * This function walks the current configuration and adds all connectors
1213 * currently using @crtc to the atomic configuration @state. Note that this
1214 * function must acquire the connection mutex. This can potentially cause
1215 * unneeded seralization if the update is just for the planes on one crtc. Hence
1216 * drivers and helpers should only call this when really needed (e.g. when a
1217 * full modeset needs to happen due to some change).
1218 *
1219 * Returns:
1220 * 0 on success or can fail with -EDEADLK or -ENOMEM. When the error is EDEADLK
1221 * then the w/w mutex code has detected a deadlock and the entire atomic
1222 * sequence must be restarted. All other errors are fatal.
1223 */
1224int
1225drm_atomic_add_affected_connectors(struct drm_atomic_state *state,
1226 struct drm_crtc *crtc)
1227{
1228 struct drm_mode_config *config = &state->dev->mode_config;
1229 struct drm_connector *connector;
1230 struct drm_connector_state *conn_state;
1231 int ret;
1232
1233 ret = drm_modeset_lock(&config->connection_mutex, state->acquire_ctx);
1234 if (ret)
1235 return ret;
1236
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +02001237 DRM_DEBUG_ATOMIC("Adding all current connectors for [CRTC:%d:%s] to %p\n",
1238 crtc->base.id, crtc->name, state);
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001239
1240 /*
1241 * Changed connectors are already in @state, so only need to look at the
1242 * current configuration.
1243 */
Daniel Vetter9a9f5ce2015-07-09 23:44:34 +02001244 drm_for_each_connector(connector, state->dev) {
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001245 if (connector->state->crtc != crtc)
1246 continue;
1247
1248 conn_state = drm_atomic_get_connector_state(state, connector);
1249 if (IS_ERR(conn_state))
1250 return PTR_ERR(conn_state);
1251 }
1252
1253 return 0;
1254}
1255EXPORT_SYMBOL(drm_atomic_add_affected_connectors);
1256
1257/**
Maarten Lankhorste01e9f72015-05-19 16:41:02 +02001258 * drm_atomic_add_affected_planes - add planes for crtc
1259 * @state: atomic state
1260 * @crtc: DRM crtc
1261 *
1262 * This function walks the current configuration and adds all planes
1263 * currently used by @crtc to the atomic configuration @state. This is useful
1264 * when an atomic commit also needs to check all currently enabled plane on
1265 * @crtc, e.g. when changing the mode. It's also useful when re-enabling a CRTC
1266 * to avoid special code to force-enable all planes.
1267 *
1268 * Since acquiring a plane state will always also acquire the w/w mutex of the
1269 * current CRTC for that plane (if there is any) adding all the plane states for
1270 * a CRTC will not reduce parallism of atomic updates.
1271 *
1272 * Returns:
1273 * 0 on success or can fail with -EDEADLK or -ENOMEM. When the error is EDEADLK
1274 * then the w/w mutex code has detected a deadlock and the entire atomic
1275 * sequence must be restarted. All other errors are fatal.
1276 */
1277int
1278drm_atomic_add_affected_planes(struct drm_atomic_state *state,
1279 struct drm_crtc *crtc)
1280{
1281 struct drm_plane *plane;
1282
1283 WARN_ON(!drm_atomic_get_existing_crtc_state(state, crtc));
1284
1285 drm_for_each_plane_mask(plane, state->dev, crtc->state->plane_mask) {
1286 struct drm_plane_state *plane_state =
1287 drm_atomic_get_plane_state(state, plane);
1288
1289 if (IS_ERR(plane_state))
1290 return PTR_ERR(plane_state);
1291 }
1292 return 0;
1293}
1294EXPORT_SYMBOL(drm_atomic_add_affected_planes);
1295
1296/**
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001297 * drm_atomic_legacy_backoff - locking backoff for legacy ioctls
1298 * @state: atomic state
1299 *
1300 * This function should be used by legacy entry points which don't understand
1301 * -EDEADLK semantics. For simplicity this one will grab all modeset locks after
John Hunter16d78bc2e2015-04-07 19:38:50 +08001302 * the slowpath completed.
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001303 */
1304void drm_atomic_legacy_backoff(struct drm_atomic_state *state)
1305{
Maarten Lankhorst81e257e2016-06-23 13:45:06 +02001306 struct drm_device *dev = state->dev;
1307 unsigned crtc_mask = 0;
1308 struct drm_crtc *crtc;
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001309 int ret;
Maarten Lankhorst81e257e2016-06-23 13:45:06 +02001310 bool global = false;
1311
1312 drm_for_each_crtc(crtc, dev) {
1313 if (crtc->acquire_ctx != state->acquire_ctx)
1314 continue;
1315
1316 crtc_mask |= drm_crtc_mask(crtc);
1317 crtc->acquire_ctx = NULL;
1318 }
1319
1320 if (WARN_ON(dev->mode_config.acquire_ctx == state->acquire_ctx)) {
1321 global = true;
1322
1323 dev->mode_config.acquire_ctx = NULL;
1324 }
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001325
1326retry:
1327 drm_modeset_backoff(state->acquire_ctx);
1328
Maarten Lankhorst81e257e2016-06-23 13:45:06 +02001329 ret = drm_modeset_lock_all_ctx(dev, state->acquire_ctx);
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001330 if (ret)
1331 goto retry;
Maarten Lankhorst81e257e2016-06-23 13:45:06 +02001332
1333 drm_for_each_crtc(crtc, dev)
1334 if (drm_crtc_mask(crtc) & crtc_mask)
1335 crtc->acquire_ctx = state->acquire_ctx;
1336
1337 if (global)
1338 dev->mode_config.acquire_ctx = state->acquire_ctx;
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001339}
1340EXPORT_SYMBOL(drm_atomic_legacy_backoff);
1341
1342/**
1343 * drm_atomic_check_only - check whether a given config would work
1344 * @state: atomic configuration to check
1345 *
1346 * Note that this function can return -EDEADLK if the driver needed to acquire
1347 * more locks but encountered a deadlock. The caller must then do the usual w/w
1348 * backoff dance and restart. All other errors are fatal.
1349 *
1350 * Returns:
1351 * 0 on success, negative error code on failure.
1352 */
1353int drm_atomic_check_only(struct drm_atomic_state *state)
1354{
Rob Clark5e743732014-12-18 16:01:51 -05001355 struct drm_device *dev = state->dev;
1356 struct drm_mode_config *config = &dev->mode_config;
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001357 struct drm_plane *plane;
1358 struct drm_plane_state *plane_state;
1359 struct drm_crtc *crtc;
1360 struct drm_crtc_state *crtc_state;
Rob Clark5e743732014-12-18 16:01:51 -05001361 int i, ret = 0;
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001362
Daniel Vetter17a38d92015-02-22 12:24:16 +01001363 DRM_DEBUG_ATOMIC("checking %p\n", state);
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001364
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001365 for_each_plane_in_state(state, plane, plane_state, i) {
1366 ret = drm_atomic_plane_check(plane, plane_state);
Rob Clark5e743732014-12-18 16:01:51 -05001367 if (ret) {
Ville Syrjälä9f4c97a2015-12-08 18:41:54 +02001368 DRM_DEBUG_ATOMIC("[PLANE:%d:%s] atomic core check failed\n",
1369 plane->base.id, plane->name);
Rob Clark5e743732014-12-18 16:01:51 -05001370 return ret;
1371 }
1372 }
1373
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001374 for_each_crtc_in_state(state, crtc, crtc_state, i) {
1375 ret = drm_atomic_crtc_check(crtc, crtc_state);
Rob Clark5e743732014-12-18 16:01:51 -05001376 if (ret) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +02001377 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] atomic core check failed\n",
1378 crtc->base.id, crtc->name);
Rob Clark5e743732014-12-18 16:01:51 -05001379 return ret;
1380 }
1381 }
1382
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001383 if (config->funcs->atomic_check)
Rob Clark5e743732014-12-18 16:01:51 -05001384 ret = config->funcs->atomic_check(state->dev, state);
1385
Rob Clarkd34f20d2014-12-18 16:01:56 -05001386 if (!state->allow_modeset) {
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001387 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Daniel Vetter2465ff62015-06-18 09:58:55 +02001388 if (drm_atomic_crtc_needs_modeset(crtc_state)) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +02001389 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] requires full modeset\n",
1390 crtc->base.id, crtc->name);
Rob Clarkd34f20d2014-12-18 16:01:56 -05001391 return -EINVAL;
1392 }
1393 }
1394 }
1395
Rob Clark5e743732014-12-18 16:01:51 -05001396 return ret;
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001397}
1398EXPORT_SYMBOL(drm_atomic_check_only);
1399
1400/**
1401 * drm_atomic_commit - commit configuration atomically
1402 * @state: atomic configuration to check
1403 *
1404 * Note that this function can return -EDEADLK if the driver needed to acquire
1405 * more locks but encountered a deadlock. The caller must then do the usual w/w
1406 * backoff dance and restart. All other errors are fatal.
1407 *
1408 * Also note that on successful execution ownership of @state is transferred
1409 * from the caller of this function to the function itself. The caller must not
1410 * free or in any other way access @state. If the function fails then the caller
1411 * must clean up @state itself.
1412 *
1413 * Returns:
1414 * 0 on success, negative error code on failure.
1415 */
1416int drm_atomic_commit(struct drm_atomic_state *state)
1417{
1418 struct drm_mode_config *config = &state->dev->mode_config;
1419 int ret;
1420
1421 ret = drm_atomic_check_only(state);
1422 if (ret)
1423 return ret;
1424
Daniel Vetter17a38d92015-02-22 12:24:16 +01001425 DRM_DEBUG_ATOMIC("commiting %p\n", state);
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001426
1427 return config->funcs->atomic_commit(state->dev, state, false);
1428}
1429EXPORT_SYMBOL(drm_atomic_commit);
1430
1431/**
Maarten Lankhorstb837ba02016-04-26 16:11:35 +02001432 * drm_atomic_nonblocking_commit - atomic&nonblocking configuration commit
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001433 * @state: atomic configuration to check
1434 *
1435 * Note that this function can return -EDEADLK if the driver needed to acquire
1436 * more locks but encountered a deadlock. The caller must then do the usual w/w
1437 * backoff dance and restart. All other errors are fatal.
1438 *
1439 * Also note that on successful execution ownership of @state is transferred
1440 * from the caller of this function to the function itself. The caller must not
1441 * free or in any other way access @state. If the function fails then the caller
1442 * must clean up @state itself.
1443 *
1444 * Returns:
1445 * 0 on success, negative error code on failure.
1446 */
Maarten Lankhorstb837ba02016-04-26 16:11:35 +02001447int drm_atomic_nonblocking_commit(struct drm_atomic_state *state)
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001448{
1449 struct drm_mode_config *config = &state->dev->mode_config;
1450 int ret;
1451
1452 ret = drm_atomic_check_only(state);
1453 if (ret)
1454 return ret;
1455
Maarten Lankhorstb837ba02016-04-26 16:11:35 +02001456 DRM_DEBUG_ATOMIC("commiting %p nonblocking\n", state);
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001457
1458 return config->funcs->atomic_commit(state->dev, state, true);
1459}
Maarten Lankhorstb837ba02016-04-26 16:11:35 +02001460EXPORT_SYMBOL(drm_atomic_nonblocking_commit);
Rob Clarkd34f20d2014-12-18 16:01:56 -05001461
1462/*
1463 * The big monstor ioctl
1464 */
1465
1466static struct drm_pending_vblank_event *create_vblank_event(
Gustavo Padovan1b47aaf2016-06-02 00:06:35 +02001467 struct drm_device *dev, struct drm_file *file_priv,
1468 struct fence *fence, uint64_t user_data)
Rob Clarkd34f20d2014-12-18 16:01:56 -05001469{
1470 struct drm_pending_vblank_event *e = NULL;
Daniel Vetter2dd500f2016-01-11 22:40:56 +01001471 int ret;
Rob Clarkd34f20d2014-12-18 16:01:56 -05001472
1473 e = kzalloc(sizeof *e, GFP_KERNEL);
Daniel Vetter2dd500f2016-01-11 22:40:56 +01001474 if (!e)
1475 return NULL;
Rob Clarkd34f20d2014-12-18 16:01:56 -05001476
1477 e->event.base.type = DRM_EVENT_FLIP_COMPLETE;
Daniel Vetter2dd500f2016-01-11 22:40:56 +01001478 e->event.base.length = sizeof(e->event);
Rob Clarkd34f20d2014-12-18 16:01:56 -05001479 e->event.user_data = user_data;
Rob Clarkd34f20d2014-12-18 16:01:56 -05001480
Gustavo Padovan1b47aaf2016-06-02 00:06:35 +02001481 if (file_priv) {
1482 ret = drm_event_reserve_init(dev, file_priv, &e->base,
1483 &e->event.base);
1484 if (ret) {
1485 kfree(e);
1486 return NULL;
1487 }
Daniel Vetter2dd500f2016-01-11 22:40:56 +01001488 }
1489
Gustavo Padovan1b47aaf2016-06-02 00:06:35 +02001490 e->base.fence = fence;
1491
Rob Clarkd34f20d2014-12-18 16:01:56 -05001492 return e;
1493}
1494
Rob Clarkd34f20d2014-12-18 16:01:56 -05001495static int atomic_set_prop(struct drm_atomic_state *state,
1496 struct drm_mode_object *obj, struct drm_property *prop,
1497 uint64_t prop_value)
1498{
1499 struct drm_mode_object *ref;
1500 int ret;
1501
1502 if (!drm_property_change_valid_get(prop, prop_value, &ref))
1503 return -EINVAL;
1504
1505 switch (obj->type) {
1506 case DRM_MODE_OBJECT_CONNECTOR: {
1507 struct drm_connector *connector = obj_to_connector(obj);
1508 struct drm_connector_state *connector_state;
1509
1510 connector_state = drm_atomic_get_connector_state(state, connector);
1511 if (IS_ERR(connector_state)) {
1512 ret = PTR_ERR(connector_state);
1513 break;
1514 }
1515
1516 ret = drm_atomic_connector_set_property(connector,
1517 connector_state, prop, prop_value);
1518 break;
1519 }
1520 case DRM_MODE_OBJECT_CRTC: {
1521 struct drm_crtc *crtc = obj_to_crtc(obj);
1522 struct drm_crtc_state *crtc_state;
1523
1524 crtc_state = drm_atomic_get_crtc_state(state, crtc);
1525 if (IS_ERR(crtc_state)) {
1526 ret = PTR_ERR(crtc_state);
1527 break;
1528 }
1529
1530 ret = drm_atomic_crtc_set_property(crtc,
1531 crtc_state, prop, prop_value);
1532 break;
1533 }
1534 case DRM_MODE_OBJECT_PLANE: {
1535 struct drm_plane *plane = obj_to_plane(obj);
1536 struct drm_plane_state *plane_state;
1537
1538 plane_state = drm_atomic_get_plane_state(state, plane);
1539 if (IS_ERR(plane_state)) {
1540 ret = PTR_ERR(plane_state);
1541 break;
1542 }
1543
1544 ret = drm_atomic_plane_set_property(plane,
1545 plane_state, prop, prop_value);
1546 break;
1547 }
1548 default:
1549 ret = -EINVAL;
1550 break;
1551 }
1552
1553 drm_property_change_valid_put(prop, ref);
1554 return ret;
1555}
1556
Maarten Lankhorst0f45c262015-11-11 11:29:09 +01001557/**
Maarten Lankhorst9744bf42015-11-24 10:34:34 +01001558 * drm_atomic_clean_old_fb -- Unset old_fb pointers and set plane->fb pointers.
Maarten Lankhorst0f45c262015-11-11 11:29:09 +01001559 *
1560 * @dev: drm device to check.
1561 * @plane_mask: plane mask for planes that were updated.
1562 * @ret: return value, can be -EDEADLK for a retry.
1563 *
1564 * Before doing an update plane->old_fb is set to plane->fb,
1565 * but before dropping the locks old_fb needs to be set to NULL
1566 * and plane->fb updated. This is a common operation for each
1567 * atomic update, so this call is split off as a helper.
1568 */
1569void drm_atomic_clean_old_fb(struct drm_device *dev,
1570 unsigned plane_mask,
1571 int ret)
1572{
1573 struct drm_plane *plane;
1574
1575 /* if succeeded, fixup legacy plane crtc/fb ptrs before dropping
1576 * locks (ie. while it is still safe to deref plane->state). We
1577 * need to do this here because the driver entry points cannot
1578 * distinguish between legacy and atomic ioctls.
1579 */
1580 drm_for_each_plane_mask(plane, dev, plane_mask) {
1581 if (ret == 0) {
1582 struct drm_framebuffer *new_fb = plane->state->fb;
1583 if (new_fb)
1584 drm_framebuffer_reference(new_fb);
1585 plane->fb = new_fb;
1586 plane->crtc = plane->state->crtc;
1587
1588 if (plane->old_fb)
1589 drm_framebuffer_unreference(plane->old_fb);
1590 }
1591 plane->old_fb = NULL;
1592 }
1593}
1594EXPORT_SYMBOL(drm_atomic_clean_old_fb);
1595
Rob Clarkd34f20d2014-12-18 16:01:56 -05001596int drm_mode_atomic_ioctl(struct drm_device *dev,
1597 void *data, struct drm_file *file_priv)
1598{
1599 struct drm_mode_atomic *arg = data;
1600 uint32_t __user *objs_ptr = (uint32_t __user *)(unsigned long)(arg->objs_ptr);
1601 uint32_t __user *count_props_ptr = (uint32_t __user *)(unsigned long)(arg->count_props_ptr);
1602 uint32_t __user *props_ptr = (uint32_t __user *)(unsigned long)(arg->props_ptr);
1603 uint64_t __user *prop_values_ptr = (uint64_t __user *)(unsigned long)(arg->prop_values_ptr);
1604 unsigned int copied_objs, copied_props;
1605 struct drm_atomic_state *state;
1606 struct drm_modeset_acquire_ctx ctx;
1607 struct drm_plane *plane;
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001608 struct drm_crtc *crtc;
1609 struct drm_crtc_state *crtc_state;
Maarten Lankhorst45723722015-11-11 11:29:08 +01001610 unsigned plane_mask;
Rob Clarkd34f20d2014-12-18 16:01:56 -05001611 int ret = 0;
1612 unsigned int i, j;
1613
1614 /* disallow for drivers not supporting atomic: */
1615 if (!drm_core_check_feature(dev, DRIVER_ATOMIC))
1616 return -EINVAL;
1617
1618 /* disallow for userspace that has not enabled atomic cap (even
1619 * though this may be a bit overkill, since legacy userspace
1620 * wouldn't know how to call this ioctl)
1621 */
1622 if (!file_priv->atomic)
1623 return -EINVAL;
1624
1625 if (arg->flags & ~DRM_MODE_ATOMIC_FLAGS)
1626 return -EINVAL;
1627
1628 if (arg->reserved)
1629 return -EINVAL;
1630
1631 if ((arg->flags & DRM_MODE_PAGE_FLIP_ASYNC) &&
1632 !dev->mode_config.async_page_flip)
1633 return -EINVAL;
1634
1635 /* can't test and expect an event at the same time. */
1636 if ((arg->flags & DRM_MODE_ATOMIC_TEST_ONLY) &&
1637 (arg->flags & DRM_MODE_PAGE_FLIP_EVENT))
1638 return -EINVAL;
1639
1640 drm_modeset_acquire_init(&ctx, 0);
1641
1642 state = drm_atomic_state_alloc(dev);
1643 if (!state)
1644 return -ENOMEM;
1645
1646 state->acquire_ctx = &ctx;
1647 state->allow_modeset = !!(arg->flags & DRM_MODE_ATOMIC_ALLOW_MODESET);
1648
1649retry:
Maarten Lankhorst45723722015-11-11 11:29:08 +01001650 plane_mask = 0;
Rob Clarkd34f20d2014-12-18 16:01:56 -05001651 copied_objs = 0;
1652 copied_props = 0;
1653
1654 for (i = 0; i < arg->count_objs; i++) {
1655 uint32_t obj_id, count_props;
1656 struct drm_mode_object *obj;
1657
1658 if (get_user(obj_id, objs_ptr + copied_objs)) {
1659 ret = -EFAULT;
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02001660 goto out;
Rob Clarkd34f20d2014-12-18 16:01:56 -05001661 }
1662
1663 obj = drm_mode_object_find(dev, obj_id, DRM_MODE_OBJECT_ANY);
Dave Airlieb164d312016-04-27 11:10:09 +10001664 if (!obj) {
1665 ret = -ENOENT;
1666 goto out;
1667 }
1668
1669 if (!obj->properties) {
1670 drm_mode_object_unreference(obj);
Rob Clarkd34f20d2014-12-18 16:01:56 -05001671 ret = -ENOENT;
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02001672 goto out;
Rob Clarkd34f20d2014-12-18 16:01:56 -05001673 }
1674
Rob Clarkd34f20d2014-12-18 16:01:56 -05001675 if (get_user(count_props, count_props_ptr + copied_objs)) {
Dave Airlieb164d312016-04-27 11:10:09 +10001676 drm_mode_object_unreference(obj);
Rob Clarkd34f20d2014-12-18 16:01:56 -05001677 ret = -EFAULT;
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02001678 goto out;
Rob Clarkd34f20d2014-12-18 16:01:56 -05001679 }
1680
1681 copied_objs++;
1682
1683 for (j = 0; j < count_props; j++) {
1684 uint32_t prop_id;
1685 uint64_t prop_value;
1686 struct drm_property *prop;
1687
1688 if (get_user(prop_id, props_ptr + copied_props)) {
Dave Airlieb164d312016-04-27 11:10:09 +10001689 drm_mode_object_unreference(obj);
Rob Clarkd34f20d2014-12-18 16:01:56 -05001690 ret = -EFAULT;
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02001691 goto out;
Rob Clarkd34f20d2014-12-18 16:01:56 -05001692 }
1693
1694 prop = drm_property_find(dev, prop_id);
1695 if (!prop) {
Dave Airlieb164d312016-04-27 11:10:09 +10001696 drm_mode_object_unreference(obj);
Rob Clarkd34f20d2014-12-18 16:01:56 -05001697 ret = -ENOENT;
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02001698 goto out;
Rob Clarkd34f20d2014-12-18 16:01:56 -05001699 }
1700
Guenter Roeck42c58142015-01-12 21:12:17 -08001701 if (copy_from_user(&prop_value,
1702 prop_values_ptr + copied_props,
1703 sizeof(prop_value))) {
Dave Airlieb164d312016-04-27 11:10:09 +10001704 drm_mode_object_unreference(obj);
Rob Clarkd34f20d2014-12-18 16:01:56 -05001705 ret = -EFAULT;
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02001706 goto out;
Rob Clarkd34f20d2014-12-18 16:01:56 -05001707 }
1708
1709 ret = atomic_set_prop(state, obj, prop, prop_value);
Dave Airlieb164d312016-04-27 11:10:09 +10001710 if (ret) {
1711 drm_mode_object_unreference(obj);
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02001712 goto out;
Dave Airlieb164d312016-04-27 11:10:09 +10001713 }
Rob Clarkd34f20d2014-12-18 16:01:56 -05001714
1715 copied_props++;
1716 }
Maarten Lankhorsta9cc54e2015-06-24 08:59:24 +02001717
Maarten Lankhorstc4749c92015-08-31 12:25:04 +02001718 if (obj->type == DRM_MODE_OBJECT_PLANE && count_props &&
1719 !(arg->flags & DRM_MODE_ATOMIC_TEST_ONLY)) {
Maarten Lankhorsta9cc54e2015-06-24 08:59:24 +02001720 plane = obj_to_plane(obj);
1721 plane_mask |= (1 << drm_plane_index(plane));
1722 plane->old_fb = plane->fb;
1723 }
Dave Airlieb164d312016-04-27 11:10:09 +10001724 drm_mode_object_unreference(obj);
Rob Clarkd34f20d2014-12-18 16:01:56 -05001725 }
1726
1727 if (arg->flags & DRM_MODE_PAGE_FLIP_EVENT) {
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001728 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Rob Clarkd34f20d2014-12-18 16:01:56 -05001729 struct drm_pending_vblank_event *e;
1730
Gustavo Padovan1b47aaf2016-06-02 00:06:35 +02001731 e = create_vblank_event(dev, file_priv, NULL,
1732 arg->user_data);
Rob Clarkd34f20d2014-12-18 16:01:56 -05001733 if (!e) {
1734 ret = -ENOMEM;
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02001735 goto out;
Rob Clarkd34f20d2014-12-18 16:01:56 -05001736 }
1737
1738 crtc_state->event = e;
1739 }
1740 }
1741
1742 if (arg->flags & DRM_MODE_ATOMIC_TEST_ONLY) {
Maarten Lankhorstc4749c92015-08-31 12:25:04 +02001743 /*
1744 * Unlike commit, check_only does not clean up state.
1745 * Below we call drm_atomic_state_free for it.
1746 */
Rob Clarkd34f20d2014-12-18 16:01:56 -05001747 ret = drm_atomic_check_only(state);
Rob Clarkd34f20d2014-12-18 16:01:56 -05001748 } else if (arg->flags & DRM_MODE_ATOMIC_NONBLOCK) {
Maarten Lankhorstb837ba02016-04-26 16:11:35 +02001749 ret = drm_atomic_nonblocking_commit(state);
Rob Clarkd34f20d2014-12-18 16:01:56 -05001750 } else {
1751 ret = drm_atomic_commit(state);
1752 }
1753
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02001754out:
Maarten Lankhorst0f45c262015-11-11 11:29:09 +01001755 drm_atomic_clean_old_fb(dev, plane_mask, ret);
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02001756
Maarten Lankhorstc4749c92015-08-31 12:25:04 +02001757 if (ret && arg->flags & DRM_MODE_PAGE_FLIP_EVENT) {
1758 /*
1759 * TEST_ONLY and PAGE_FLIP_EVENT are mutually exclusive,
1760 * if they weren't, this code should be called on success
1761 * for TEST_ONLY too.
1762 */
1763
1764 for_each_crtc_in_state(state, crtc, crtc_state, i) {
1765 if (!crtc_state->event)
1766 continue;
1767
Daniel Vetter2dd500f2016-01-11 22:40:56 +01001768 drm_event_cancel_free(dev, &crtc_state->event->base);
Maarten Lankhorstc4749c92015-08-31 12:25:04 +02001769 }
1770 }
1771
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02001772 if (ret == -EDEADLK) {
1773 drm_atomic_state_clear(state);
1774 drm_modeset_backoff(&ctx);
1775 goto retry;
1776 }
1777
Maarten Lankhorstc4749c92015-08-31 12:25:04 +02001778 if (ret || arg->flags & DRM_MODE_ATOMIC_TEST_ONLY)
Maarten Lankhorstec9f9322015-06-24 08:59:25 +02001779 drm_atomic_state_free(state);
Rob Clarkd34f20d2014-12-18 16:01:56 -05001780
1781 drm_modeset_drop_locks(&ctx);
1782 drm_modeset_acquire_fini(&ctx);
1783
1784 return ret;
Rob Clarkd34f20d2014-12-18 16:01:56 -05001785}