blob: 7715c40d4e742746642376d121c1d42a743a72ac [file] [log] [blame]
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001/*
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#include <drm/drmP.h>
29#include <drm/drm_atomic.h>
30#include <drm/drm_plane_helper.h>
31#include <drm/drm_crtc_helper.h>
Daniel Vetter623369e2014-09-16 17:50:47 +020032#include <drm/drm_atomic_helper.h>
Daniel Vettere2330f02014-10-29 11:34:56 +010033#include <linux/fence.h>
Daniel Vetterc2fcd272014-11-05 00:14:14 +010034
Daniel Vetter3150c7d2014-11-06 20:53:29 +010035/**
36 * DOC: overview
37 *
38 * This helper library provides implementations of check and commit functions on
39 * top of the CRTC modeset helper callbacks and the plane helper callbacks. It
40 * also provides convenience implementations for the atomic state handling
41 * callbacks for drivers which don't need to subclass the drm core structures to
42 * add their own additional internal state.
43 *
44 * This library also provides default implementations for the check callback in
45 * drm_atomic_helper_check and for the commit callback with
46 * drm_atomic_helper_commit. But the individual stages and callbacks are expose
47 * to allow drivers to mix and match and e.g. use the plane helpers only
48 * together with a driver private modeset implementation.
49 *
50 * This library also provides implementations for all the legacy driver
51 * interfaces on top of the atomic interface. See drm_atomic_helper_set_config,
52 * drm_atomic_helper_disable_plane, drm_atomic_helper_disable_plane and the
53 * various functions to implement set_property callbacks. New drivers must not
54 * implement these functions themselves but must use the provided helpers.
55 */
Daniel Vetterc2fcd272014-11-05 00:14:14 +010056static void
57drm_atomic_helper_plane_changed(struct drm_atomic_state *state,
58 struct drm_plane_state *plane_state,
59 struct drm_plane *plane)
60{
61 struct drm_crtc_state *crtc_state;
62
63 if (plane->state->crtc) {
Rob Clark4b08eae2014-12-08 10:45:43 -050064 crtc_state = state->crtc_states[drm_crtc_index(plane->state->crtc)];
Daniel Vetterc2fcd272014-11-05 00:14:14 +010065
66 if (WARN_ON(!crtc_state))
67 return;
68
69 crtc_state->planes_changed = true;
70 }
71
72 if (plane_state->crtc) {
73 crtc_state =
74 state->crtc_states[drm_crtc_index(plane_state->crtc)];
75
76 if (WARN_ON(!crtc_state))
77 return;
78
79 crtc_state->planes_changed = true;
80 }
81}
82
Daniel Vetter623369e2014-09-16 17:50:47 +020083static struct drm_crtc *
84get_current_crtc_for_encoder(struct drm_device *dev,
85 struct drm_encoder *encoder)
86{
87 struct drm_mode_config *config = &dev->mode_config;
88 struct drm_connector *connector;
89
90 WARN_ON(!drm_modeset_is_locked(&config->connection_mutex));
91
92 list_for_each_entry(connector, &config->connector_list, head) {
93 if (connector->state->best_encoder != encoder)
94 continue;
95
96 return connector->state->crtc;
97 }
98
99 return NULL;
100}
101
102static int
103steal_encoder(struct drm_atomic_state *state,
104 struct drm_encoder *encoder,
105 struct drm_crtc *encoder_crtc)
106{
107 struct drm_mode_config *config = &state->dev->mode_config;
108 struct drm_crtc_state *crtc_state;
109 struct drm_connector *connector;
110 struct drm_connector_state *connector_state;
Daniel Vetter042652e2014-07-27 13:46:52 +0200111 int ret;
Daniel Vetter623369e2014-09-16 17:50:47 +0200112
113 /*
114 * We can only steal an encoder coming from a connector, which means we
115 * must already hold the connection_mutex.
116 */
117 WARN_ON(!drm_modeset_is_locked(&config->connection_mutex));
118
Daniel Vetter17a38d92015-02-22 12:24:16 +0100119 DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] in use on [CRTC:%d], stealing it\n",
120 encoder->base.id, encoder->name,
121 encoder_crtc->base.id);
Daniel Vetter623369e2014-09-16 17:50:47 +0200122
123 crtc_state = drm_atomic_get_crtc_state(state, encoder_crtc);
124 if (IS_ERR(crtc_state))
125 return PTR_ERR(crtc_state);
126
127 crtc_state->mode_changed = true;
128
129 list_for_each_entry(connector, &config->connector_list, head) {
130 if (connector->state->best_encoder != encoder)
131 continue;
132
Daniel Vetter17a38d92015-02-22 12:24:16 +0100133 DRM_DEBUG_ATOMIC("Stealing encoder from [CONNECTOR:%d:%s]\n",
134 connector->base.id,
135 connector->name);
Daniel Vetter623369e2014-09-16 17:50:47 +0200136
137 connector_state = drm_atomic_get_connector_state(state,
138 connector);
139 if (IS_ERR(connector_state))
140 return PTR_ERR(connector_state);
141
Daniel Vetter042652e2014-07-27 13:46:52 +0200142 ret = drm_atomic_set_crtc_for_connector(connector_state, NULL);
143 if (ret)
144 return ret;
Daniel Vetter623369e2014-09-16 17:50:47 +0200145 connector_state->best_encoder = NULL;
146 }
147
148 return 0;
149}
150
151static int
152update_connector_routing(struct drm_atomic_state *state, int conn_idx)
153{
154 struct drm_connector_helper_funcs *funcs;
155 struct drm_encoder *new_encoder;
156 struct drm_crtc *encoder_crtc;
157 struct drm_connector *connector;
158 struct drm_connector_state *connector_state;
159 struct drm_crtc_state *crtc_state;
160 int idx, ret;
161
162 connector = state->connectors[conn_idx];
163 connector_state = state->connector_states[conn_idx];
164
165 if (!connector)
166 return 0;
167
Daniel Vetter17a38d92015-02-22 12:24:16 +0100168 DRM_DEBUG_ATOMIC("Updating routing for [CONNECTOR:%d:%s]\n",
169 connector->base.id,
170 connector->name);
Daniel Vetter623369e2014-09-16 17:50:47 +0200171
172 if (connector->state->crtc != connector_state->crtc) {
173 if (connector->state->crtc) {
174 idx = drm_crtc_index(connector->state->crtc);
175
176 crtc_state = state->crtc_states[idx];
177 crtc_state->mode_changed = true;
178 }
179
180 if (connector_state->crtc) {
181 idx = drm_crtc_index(connector_state->crtc);
182
183 crtc_state = state->crtc_states[idx];
184 crtc_state->mode_changed = true;
185 }
186 }
187
188 if (!connector_state->crtc) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100189 DRM_DEBUG_ATOMIC("Disabling [CONNECTOR:%d:%s]\n",
Daniel Vetter623369e2014-09-16 17:50:47 +0200190 connector->base.id,
191 connector->name);
192
193 connector_state->best_encoder = NULL;
194
195 return 0;
196 }
197
198 funcs = connector->helper_private;
199 new_encoder = funcs->best_encoder(connector);
200
201 if (!new_encoder) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100202 DRM_DEBUG_ATOMIC("No suitable encoder found for [CONNECTOR:%d:%s]\n",
203 connector->base.id,
204 connector->name);
Daniel Vetter623369e2014-09-16 17:50:47 +0200205 return -EINVAL;
206 }
207
208 if (new_encoder == connector_state->best_encoder) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100209 DRM_DEBUG_ATOMIC("[CONNECTOR:%d:%s] keeps [ENCODER:%d:%s], now on [CRTC:%d]\n",
210 connector->base.id,
211 connector->name,
212 new_encoder->base.id,
213 new_encoder->name,
214 connector_state->crtc->base.id);
Daniel Vetter623369e2014-09-16 17:50:47 +0200215
216 return 0;
217 }
218
219 encoder_crtc = get_current_crtc_for_encoder(state->dev,
220 new_encoder);
221
222 if (encoder_crtc) {
223 ret = steal_encoder(state, new_encoder, encoder_crtc);
224 if (ret) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100225 DRM_DEBUG_ATOMIC("Encoder stealing failed for [CONNECTOR:%d:%s]\n",
226 connector->base.id,
227 connector->name);
Daniel Vetter623369e2014-09-16 17:50:47 +0200228 return ret;
229 }
230 }
231
232 connector_state->best_encoder = new_encoder;
233 idx = drm_crtc_index(connector_state->crtc);
234
235 crtc_state = state->crtc_states[idx];
236 crtc_state->mode_changed = true;
237
Daniel Vetter17a38d92015-02-22 12:24:16 +0100238 DRM_DEBUG_ATOMIC("[CONNECTOR:%d:%s] using [ENCODER:%d:%s] on [CRTC:%d]\n",
239 connector->base.id,
240 connector->name,
241 new_encoder->base.id,
242 new_encoder->name,
243 connector_state->crtc->base.id);
Daniel Vetter623369e2014-09-16 17:50:47 +0200244
245 return 0;
246}
247
248static int
249mode_fixup(struct drm_atomic_state *state)
250{
251 int ncrtcs = state->dev->mode_config.num_crtc;
Daniel Vetter623369e2014-09-16 17:50:47 +0200252 struct drm_crtc_state *crtc_state;
253 struct drm_connector_state *conn_state;
254 int i;
255 bool ret;
256
257 for (i = 0; i < ncrtcs; i++) {
258 crtc_state = state->crtc_states[i];
259
260 if (!crtc_state || !crtc_state->mode_changed)
261 continue;
262
263 drm_mode_copy(&crtc_state->adjusted_mode, &crtc_state->mode);
264 }
265
Daniel Vetterf52b69f12014-11-19 18:38:08 +0100266 for (i = 0; i < state->num_connector; i++) {
Daniel Vetter623369e2014-09-16 17:50:47 +0200267 struct drm_encoder_helper_funcs *funcs;
268 struct drm_encoder *encoder;
269
270 conn_state = state->connector_states[i];
271
272 if (!conn_state)
273 continue;
274
275 WARN_ON(!!conn_state->best_encoder != !!conn_state->crtc);
276
277 if (!conn_state->crtc || !conn_state->best_encoder)
278 continue;
279
280 crtc_state =
281 state->crtc_states[drm_crtc_index(conn_state->crtc)];
282
283 /*
284 * Each encoder has at most one connector (since we always steal
285 * it away), so we won't call ->mode_fixup twice.
286 */
287 encoder = conn_state->best_encoder;
288 funcs = encoder->helper_private;
289
290 if (encoder->bridge && encoder->bridge->funcs->mode_fixup) {
291 ret = encoder->bridge->funcs->mode_fixup(
292 encoder->bridge, &crtc_state->mode,
293 &crtc_state->adjusted_mode);
294 if (!ret) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100295 DRM_DEBUG_ATOMIC("Bridge fixup failed\n");
Daniel Vetter623369e2014-09-16 17:50:47 +0200296 return -EINVAL;
297 }
298 }
299
Thierry Reding4cd4df82014-12-03 16:44:34 +0100300 if (funcs->atomic_check) {
301 ret = funcs->atomic_check(encoder, crtc_state,
302 conn_state);
303 if (ret) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100304 DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] check failed\n",
305 encoder->base.id, encoder->name);
Thierry Reding4cd4df82014-12-03 16:44:34 +0100306 return ret;
307 }
308 } else {
309 ret = funcs->mode_fixup(encoder, &crtc_state->mode,
310 &crtc_state->adjusted_mode);
311 if (!ret) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100312 DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] fixup failed\n",
313 encoder->base.id, encoder->name);
Thierry Reding4cd4df82014-12-03 16:44:34 +0100314 return -EINVAL;
315 }
Daniel Vetter623369e2014-09-16 17:50:47 +0200316 }
317 }
318
319 for (i = 0; i < ncrtcs; i++) {
320 struct drm_crtc_helper_funcs *funcs;
321 struct drm_crtc *crtc;
322
323 crtc_state = state->crtc_states[i];
324 crtc = state->crtcs[i];
325
326 if (!crtc_state || !crtc_state->mode_changed)
327 continue;
328
329 funcs = crtc->helper_private;
330 ret = funcs->mode_fixup(crtc, &crtc_state->mode,
331 &crtc_state->adjusted_mode);
332 if (!ret) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100333 DRM_DEBUG_ATOMIC("[CRTC:%d] fixup failed\n",
334 crtc->base.id);
Daniel Vetter623369e2014-09-16 17:50:47 +0200335 return -EINVAL;
336 }
337 }
338
339 return 0;
340}
341
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100342static bool
343needs_modeset(struct drm_crtc_state *state)
344{
345 return state->mode_changed || state->active_changed;
346}
347
Daniel Vetterd9b13622014-11-26 16:57:41 +0100348/**
349 * drm_atomic_helper_check - validate state object for modeset changes
350 * @dev: DRM device
351 * @state: the driver state object
352 *
353 * Check the state object to see if the requested state is physically possible.
354 * This does all the crtc and connector related computations for an atomic
355 * update. It computes and updates crtc_state->mode_changed, adds any additional
356 * connectors needed for full modesets and calls down into ->mode_fixup
357 * functions of the driver backend.
358 *
359 * IMPORTANT:
360 *
361 * Drivers which update ->mode_changed (e.g. in their ->atomic_check hooks if a
362 * plane update can't be done without a full modeset) _must_ call this function
363 * afterwards after that change. It is permitted to call this function multiple
364 * times for the same update, e.g. when the ->atomic_check functions depend upon
365 * the adjusted dotclock for fifo space allocation and watermark computation.
366 *
367 * RETURNS
368 * Zero for success or -errno
369 */
370int
Rob Clark934ce1c2014-11-19 16:41:33 -0500371drm_atomic_helper_check_modeset(struct drm_device *dev,
Daniel Vetter623369e2014-09-16 17:50:47 +0200372 struct drm_atomic_state *state)
373{
374 int ncrtcs = dev->mode_config.num_crtc;
Daniel Vetter623369e2014-09-16 17:50:47 +0200375 struct drm_crtc *crtc;
376 struct drm_crtc_state *crtc_state;
377 int i, ret;
378
379 for (i = 0; i < ncrtcs; i++) {
380 crtc = state->crtcs[i];
381 crtc_state = state->crtc_states[i];
382
383 if (!crtc)
384 continue;
385
386 if (!drm_mode_equal(&crtc->state->mode, &crtc_state->mode)) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100387 DRM_DEBUG_ATOMIC("[CRTC:%d] mode changed\n",
388 crtc->base.id);
Daniel Vetter623369e2014-09-16 17:50:47 +0200389 crtc_state->mode_changed = true;
390 }
391
392 if (crtc->state->enable != crtc_state->enable) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100393 DRM_DEBUG_ATOMIC("[CRTC:%d] enable changed\n",
394 crtc->base.id);
Daniel Vetter623369e2014-09-16 17:50:47 +0200395 crtc_state->mode_changed = true;
396 }
397 }
398
Daniel Vetterf52b69f12014-11-19 18:38:08 +0100399 for (i = 0; i < state->num_connector; i++) {
Daniel Vetter623369e2014-09-16 17:50:47 +0200400 /*
401 * This only sets crtc->mode_changed for routing changes,
402 * drivers must set crtc->mode_changed themselves when connector
403 * properties need to be updated.
404 */
405 ret = update_connector_routing(state, i);
406 if (ret)
407 return ret;
408 }
409
410 /*
411 * After all the routing has been prepared we need to add in any
412 * connector which is itself unchanged, but who's crtc changes it's
413 * configuration. This must be done before calling mode_fixup in case a
414 * crtc only changed its mode but has the same set of connectors.
415 */
416 for (i = 0; i < ncrtcs; i++) {
417 int num_connectors;
418
419 crtc = state->crtcs[i];
420 crtc_state = state->crtc_states[i];
421
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100422 if (!crtc)
Daniel Vetter623369e2014-09-16 17:50:47 +0200423 continue;
424
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100425 /*
426 * We must set ->active_changed after walking connectors for
427 * otherwise an update that only changes active would result in
428 * a full modeset because update_connector_routing force that.
429 */
430 if (crtc->state->active != crtc_state->active) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100431 DRM_DEBUG_ATOMIC("[CRTC:%d] active changed\n",
432 crtc->base.id);
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100433 crtc_state->active_changed = true;
434 }
435
436 if (!needs_modeset(crtc_state))
437 continue;
438
Daniel Vetter17a38d92015-02-22 12:24:16 +0100439 DRM_DEBUG_ATOMIC("[CRTC:%d] needs all connectors, enable: %c, active: %c\n",
440 crtc->base.id,
441 crtc_state->enable ? 'y' : 'n',
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100442 crtc_state->active ? 'y' : 'n');
Daniel Vetter623369e2014-09-16 17:50:47 +0200443
444 ret = drm_atomic_add_affected_connectors(state, crtc);
445 if (ret != 0)
446 return ret;
447
448 num_connectors = drm_atomic_connectors_for_crtc(state,
449 crtc);
450
451 if (crtc_state->enable != !!num_connectors) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100452 DRM_DEBUG_ATOMIC("[CRTC:%d] enabled/connectors mismatch\n",
453 crtc->base.id);
Daniel Vetter623369e2014-09-16 17:50:47 +0200454
455 return -EINVAL;
456 }
457 }
458
459 return mode_fixup(state);
460}
Daniel Vetterd9b13622014-11-26 16:57:41 +0100461EXPORT_SYMBOL(drm_atomic_helper_check_modeset);
Daniel Vetter623369e2014-09-16 17:50:47 +0200462
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100463/**
Daniel Vetterd9b13622014-11-26 16:57:41 +0100464 * drm_atomic_helper_check - validate state object for modeset changes
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100465 * @dev: DRM device
466 * @state: the driver state object
467 *
468 * Check the state object to see if the requested state is physically possible.
Daniel Vetterd9b13622014-11-26 16:57:41 +0100469 * This does all the plane update related checks using by calling into the
470 * ->atomic_check hooks provided by the driver.
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100471 *
472 * RETURNS
473 * Zero for success or -errno
474 */
Daniel Vetterd9b13622014-11-26 16:57:41 +0100475int
476drm_atomic_helper_check_planes(struct drm_device *dev,
477 struct drm_atomic_state *state)
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100478{
479 int nplanes = dev->mode_config.num_total_plane;
480 int ncrtcs = dev->mode_config.num_crtc;
481 int i, ret = 0;
482
483 for (i = 0; i < nplanes; i++) {
484 struct drm_plane_helper_funcs *funcs;
485 struct drm_plane *plane = state->planes[i];
486 struct drm_plane_state *plane_state = state->plane_states[i];
487
488 if (!plane)
489 continue;
490
491 funcs = plane->helper_private;
492
493 drm_atomic_helper_plane_changed(state, plane_state, plane);
494
495 if (!funcs || !funcs->atomic_check)
496 continue;
497
498 ret = funcs->atomic_check(plane, plane_state);
499 if (ret) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100500 DRM_DEBUG_ATOMIC("[PLANE:%d] atomic driver check failed\n",
501 plane->base.id);
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100502 return ret;
503 }
504 }
505
506 for (i = 0; i < ncrtcs; i++) {
507 struct drm_crtc_helper_funcs *funcs;
508 struct drm_crtc *crtc = state->crtcs[i];
509
510 if (!crtc)
511 continue;
512
513 funcs = crtc->helper_private;
514
515 if (!funcs || !funcs->atomic_check)
516 continue;
517
518 ret = funcs->atomic_check(crtc, state->crtc_states[i]);
519 if (ret) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100520 DRM_DEBUG_ATOMIC("[CRTC:%d] atomic driver check failed\n",
521 crtc->base.id);
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100522 return ret;
523 }
524 }
525
Daniel Vetterd9b13622014-11-26 16:57:41 +0100526 return ret;
527}
528EXPORT_SYMBOL(drm_atomic_helper_check_planes);
529
530/**
531 * drm_atomic_helper_check - validate state object
532 * @dev: DRM device
533 * @state: the driver state object
534 *
535 * Check the state object to see if the requested state is physically possible.
536 * Only crtcs and planes have check callbacks, so for any additional (global)
537 * checking that a driver needs it can simply wrap that around this function.
538 * Drivers without such needs can directly use this as their ->atomic_check()
539 * callback.
540 *
Daniel Vetterb4274fb2014-11-26 17:02:18 +0100541 * This just wraps the two parts of the state checking for planes and modeset
542 * state in the default order: First it calls drm_atomic_helper_check_modeset()
543 * and then drm_atomic_helper_check_planes(). The assumption is that the
544 * ->atomic_check functions depend upon an updated adjusted_mode.clock to
545 * e.g. properly compute watermarks.
546 *
Daniel Vetterd9b13622014-11-26 16:57:41 +0100547 * RETURNS
548 * Zero for success or -errno
549 */
550int drm_atomic_helper_check(struct drm_device *dev,
551 struct drm_atomic_state *state)
552{
553 int ret;
554
Daniel Vetterb4274fb2014-11-26 17:02:18 +0100555 ret = drm_atomic_helper_check_modeset(dev, state);
Daniel Vetterd9b13622014-11-26 16:57:41 +0100556 if (ret)
557 return ret;
558
Daniel Vetterb4274fb2014-11-26 17:02:18 +0100559 ret = drm_atomic_helper_check_planes(dev, state);
Rob Clark934ce1c2014-11-19 16:41:33 -0500560 if (ret)
561 return ret;
562
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100563 return ret;
564}
565EXPORT_SYMBOL(drm_atomic_helper_check);
566
Daniel Vetter623369e2014-09-16 17:50:47 +0200567static void
568disable_outputs(struct drm_device *dev, struct drm_atomic_state *old_state)
569{
570 int ncrtcs = old_state->dev->mode_config.num_crtc;
Daniel Vetter623369e2014-09-16 17:50:47 +0200571 int i;
572
Daniel Vetterf52b69f12014-11-19 18:38:08 +0100573 for (i = 0; i < old_state->num_connector; i++) {
Daniel Vetter623369e2014-09-16 17:50:47 +0200574 struct drm_connector_state *old_conn_state;
575 struct drm_connector *connector;
576 struct drm_encoder_helper_funcs *funcs;
577 struct drm_encoder *encoder;
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100578 struct drm_crtc_state *old_crtc_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200579
580 old_conn_state = old_state->connector_states[i];
581 connector = old_state->connectors[i];
582
583 /* Shut down everything that's in the changeset and currently
584 * still on. So need to check the old, saved state. */
585 if (!old_conn_state || !old_conn_state->crtc)
586 continue;
587
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100588 old_crtc_state = old_state->crtc_states[drm_crtc_index(old_conn_state->crtc)];
589
590 if (!old_crtc_state->active)
591 continue;
592
Rob Clark46df9ad2014-11-20 15:40:36 -0500593 encoder = old_conn_state->best_encoder;
Daniel Vetter623369e2014-09-16 17:50:47 +0200594
Rob Clark46df9ad2014-11-20 15:40:36 -0500595 /* We shouldn't get this far if we didn't previously have
596 * an encoder.. but WARN_ON() rather than explode.
597 */
598 if (WARN_ON(!encoder))
Daniel Vetter623369e2014-09-16 17:50:47 +0200599 continue;
600
601 funcs = encoder->helper_private;
602
Daniel Vetter17a38d92015-02-22 12:24:16 +0100603 DRM_DEBUG_ATOMIC("disabling [ENCODER:%d:%s]\n",
604 encoder->base.id, encoder->name);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100605
Daniel Vetter623369e2014-09-16 17:50:47 +0200606 /*
607 * Each encoder has at most one connector (since we always steal
608 * it away), so we won't call call disable hooks twice.
609 */
610 if (encoder->bridge)
611 encoder->bridge->funcs->disable(encoder->bridge);
612
613 /* Right function depends upon target state. */
Daniel Vetteree0a89c2015-01-22 16:36:24 +0100614 if (connector->state->crtc && funcs->prepare)
Daniel Vetter623369e2014-09-16 17:50:47 +0200615 funcs->prepare(encoder);
616 else if (funcs->disable)
617 funcs->disable(encoder);
618 else
619 funcs->dpms(encoder, DRM_MODE_DPMS_OFF);
620
621 if (encoder->bridge)
622 encoder->bridge->funcs->post_disable(encoder->bridge);
623 }
624
625 for (i = 0; i < ncrtcs; i++) {
626 struct drm_crtc_helper_funcs *funcs;
627 struct drm_crtc *crtc;
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100628 struct drm_crtc_state *old_crtc_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200629
630 crtc = old_state->crtcs[i];
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100631 old_crtc_state = old_state->crtc_states[i];
Daniel Vetter623369e2014-09-16 17:50:47 +0200632
633 /* Shut down everything that needs a full modeset. */
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100634 if (!crtc || !needs_modeset(crtc->state))
635 continue;
636
637 if (!old_crtc_state->active)
Daniel Vetter623369e2014-09-16 17:50:47 +0200638 continue;
639
640 funcs = crtc->helper_private;
641
Daniel Vetter17a38d92015-02-22 12:24:16 +0100642 DRM_DEBUG_ATOMIC("disabling [CRTC:%d]\n",
643 crtc->base.id);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100644
645
Daniel Vetter623369e2014-09-16 17:50:47 +0200646 /* Right function depends upon target state. */
Daniel Vetteree0a89c2015-01-22 16:36:24 +0100647 if (crtc->state->enable && funcs->prepare)
Daniel Vetter623369e2014-09-16 17:50:47 +0200648 funcs->prepare(crtc);
649 else if (funcs->disable)
650 funcs->disable(crtc);
651 else
652 funcs->dpms(crtc, DRM_MODE_DPMS_OFF);
653 }
654}
655
656static void
657set_routing_links(struct drm_device *dev, struct drm_atomic_state *old_state)
658{
Daniel Vetter623369e2014-09-16 17:50:47 +0200659 int ncrtcs = old_state->dev->mode_config.num_crtc;
660 int i;
661
662 /* clear out existing links */
Daniel Vetterf52b69f12014-11-19 18:38:08 +0100663 for (i = 0; i < old_state->num_connector; i++) {
Daniel Vetter623369e2014-09-16 17:50:47 +0200664 struct drm_connector *connector;
665
666 connector = old_state->connectors[i];
667
668 if (!connector || !connector->encoder)
669 continue;
670
671 WARN_ON(!connector->encoder->crtc);
672
673 connector->encoder->crtc = NULL;
674 connector->encoder = NULL;
675 }
676
677 /* set new links */
Daniel Vetterf52b69f12014-11-19 18:38:08 +0100678 for (i = 0; i < old_state->num_connector; i++) {
Daniel Vetter623369e2014-09-16 17:50:47 +0200679 struct drm_connector *connector;
680
681 connector = old_state->connectors[i];
682
683 if (!connector || !connector->state->crtc)
684 continue;
685
686 if (WARN_ON(!connector->state->best_encoder))
687 continue;
688
689 connector->encoder = connector->state->best_encoder;
690 connector->encoder->crtc = connector->state->crtc;
691 }
692
693 /* set legacy state in the crtc structure */
694 for (i = 0; i < ncrtcs; i++) {
695 struct drm_crtc *crtc;
696
697 crtc = old_state->crtcs[i];
698
699 if (!crtc)
700 continue;
701
702 crtc->mode = crtc->state->mode;
703 crtc->enabled = crtc->state->enable;
704 crtc->x = crtc->primary->state->src_x >> 16;
705 crtc->y = crtc->primary->state->src_y >> 16;
706 }
707}
708
709static void
710crtc_set_mode(struct drm_device *dev, struct drm_atomic_state *old_state)
711{
712 int ncrtcs = old_state->dev->mode_config.num_crtc;
Daniel Vetter623369e2014-09-16 17:50:47 +0200713 int i;
714
715 for (i = 0; i < ncrtcs; i++) {
716 struct drm_crtc_helper_funcs *funcs;
717 struct drm_crtc *crtc;
718
719 crtc = old_state->crtcs[i];
720
721 if (!crtc || !crtc->state->mode_changed)
722 continue;
723
724 funcs = crtc->helper_private;
725
Daniel Vetterc982bd92015-02-22 12:24:20 +0100726 if (crtc->state->enable && funcs->mode_set_nofb) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100727 DRM_DEBUG_ATOMIC("modeset on [CRTC:%d]\n",
728 crtc->base.id);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100729
Daniel Vetter623369e2014-09-16 17:50:47 +0200730 funcs->mode_set_nofb(crtc);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100731 }
Daniel Vetter623369e2014-09-16 17:50:47 +0200732 }
733
Daniel Vetterf52b69f12014-11-19 18:38:08 +0100734 for (i = 0; i < old_state->num_connector; i++) {
Daniel Vetter623369e2014-09-16 17:50:47 +0200735 struct drm_connector *connector;
736 struct drm_crtc_state *new_crtc_state;
737 struct drm_encoder_helper_funcs *funcs;
738 struct drm_encoder *encoder;
739 struct drm_display_mode *mode, *adjusted_mode;
740
741 connector = old_state->connectors[i];
742
743 if (!connector || !connector->state->best_encoder)
744 continue;
745
746 encoder = connector->state->best_encoder;
747 funcs = encoder->helper_private;
748 new_crtc_state = connector->state->crtc->state;
749 mode = &new_crtc_state->mode;
750 adjusted_mode = &new_crtc_state->adjusted_mode;
751
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100752 if (!new_crtc_state->mode_changed)
753 continue;
754
Daniel Vetter17a38d92015-02-22 12:24:16 +0100755 DRM_DEBUG_ATOMIC("modeset on [ENCODER:%d:%s]\n",
756 encoder->base.id, encoder->name);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100757
Daniel Vetter623369e2014-09-16 17:50:47 +0200758 /*
759 * Each encoder has at most one connector (since we always steal
760 * it away), so we won't call call mode_set hooks twice.
761 */
Daniel Vetterc982bd92015-02-22 12:24:20 +0100762 if (funcs->mode_set)
763 funcs->mode_set(encoder, mode, adjusted_mode);
Daniel Vetter623369e2014-09-16 17:50:47 +0200764
765 if (encoder->bridge && encoder->bridge->funcs->mode_set)
766 encoder->bridge->funcs->mode_set(encoder->bridge,
767 mode, adjusted_mode);
768 }
769}
770
771/**
Daniel Vetter1af434a2015-02-22 12:24:19 +0100772 * drm_atomic_helper_commit_modeset_disables - modeset commit to disable outputs
Daniel Vetter623369e2014-09-16 17:50:47 +0200773 * @dev: DRM device
Laurent Pincharta072f802015-02-22 12:24:18 +0100774 * @old_state: atomic state object with old state structures
Daniel Vetter623369e2014-09-16 17:50:47 +0200775 *
Daniel Vetter1af434a2015-02-22 12:24:19 +0100776 * This function shuts down all the outputs that need to be shut down and
Daniel Vetter623369e2014-09-16 17:50:47 +0200777 * prepares them (if required) with the new mode.
Daniel Vetter1af434a2015-02-22 12:24:19 +0100778 *
779 * For compatability with legacy crtc helpers this should be called before
780 * drm_atomic_helper_commit_planes(), which is what the default commit function
781 * does. But drivers with different needs can group the modeset commits together
782 * and do the plane commits at the end. This is useful for drivers doing runtime
783 * PM since planes updates then only happen when the CRTC is actually enabled.
Daniel Vetter623369e2014-09-16 17:50:47 +0200784 */
Daniel Vetter1af434a2015-02-22 12:24:19 +0100785void drm_atomic_helper_commit_modeset_disables(struct drm_device *dev,
786 struct drm_atomic_state *old_state)
Daniel Vetter623369e2014-09-16 17:50:47 +0200787{
Laurent Pincharta072f802015-02-22 12:24:18 +0100788 disable_outputs(dev, old_state);
789 set_routing_links(dev, old_state);
790 crtc_set_mode(dev, old_state);
Daniel Vetter623369e2014-09-16 17:50:47 +0200791}
Daniel Vetter1af434a2015-02-22 12:24:19 +0100792EXPORT_SYMBOL(drm_atomic_helper_commit_modeset_disables);
Daniel Vetter623369e2014-09-16 17:50:47 +0200793
794/**
Daniel Vetter1af434a2015-02-22 12:24:19 +0100795 * drm_atomic_helper_commit_modeset_enables - modeset commit to enable outputs
Daniel Vetter623369e2014-09-16 17:50:47 +0200796 * @dev: DRM device
797 * @old_state: atomic state object with old state structures
798 *
Daniel Vetter1af434a2015-02-22 12:24:19 +0100799 * This function enables all the outputs with the new configuration which had to
800 * be turned off for the update.
801 *
802 * For compatability with legacy crtc helpers this should be called after
803 * drm_atomic_helper_commit_planes(), which is what the default commit function
804 * does. But drivers with different needs can group the modeset commits together
805 * and do the plane commits at the end. This is useful for drivers doing runtime
806 * PM since planes updates then only happen when the CRTC is actually enabled.
Daniel Vetter623369e2014-09-16 17:50:47 +0200807 */
Daniel Vetter1af434a2015-02-22 12:24:19 +0100808void drm_atomic_helper_commit_modeset_enables(struct drm_device *dev,
809 struct drm_atomic_state *old_state)
Daniel Vetter623369e2014-09-16 17:50:47 +0200810{
811 int ncrtcs = old_state->dev->mode_config.num_crtc;
Daniel Vetter623369e2014-09-16 17:50:47 +0200812 int i;
813
814 for (i = 0; i < ncrtcs; i++) {
815 struct drm_crtc_helper_funcs *funcs;
816 struct drm_crtc *crtc;
817
818 crtc = old_state->crtcs[i];
819
820 /* Need to filter out CRTCs where only planes change. */
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100821 if (!crtc || !needs_modeset(crtc->state))
822 continue;
823
824 if (!crtc->state->active)
Daniel Vetter623369e2014-09-16 17:50:47 +0200825 continue;
826
827 funcs = crtc->helper_private;
828
Daniel Vetteree0a89c2015-01-22 16:36:24 +0100829 if (crtc->state->enable) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100830 DRM_DEBUG_ATOMIC("enabling [CRTC:%d]\n",
831 crtc->base.id);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100832
Daniel Vetteree0a89c2015-01-22 16:36:24 +0100833 if (funcs->enable)
834 funcs->enable(crtc);
835 else
836 funcs->commit(crtc);
837 }
Daniel Vetter623369e2014-09-16 17:50:47 +0200838 }
839
Daniel Vetterf52b69f12014-11-19 18:38:08 +0100840 for (i = 0; i < old_state->num_connector; i++) {
Daniel Vetter623369e2014-09-16 17:50:47 +0200841 struct drm_connector *connector;
842 struct drm_encoder_helper_funcs *funcs;
843 struct drm_encoder *encoder;
844
845 connector = old_state->connectors[i];
846
847 if (!connector || !connector->state->best_encoder)
848 continue;
849
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100850 if (!connector->state->crtc->state->active)
851 continue;
852
Daniel Vetter623369e2014-09-16 17:50:47 +0200853 encoder = connector->state->best_encoder;
854 funcs = encoder->helper_private;
855
Daniel Vetter17a38d92015-02-22 12:24:16 +0100856 DRM_DEBUG_ATOMIC("enabling [ENCODER:%d:%s]\n",
857 encoder->base.id, encoder->name);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100858
Daniel Vetter623369e2014-09-16 17:50:47 +0200859 /*
860 * Each encoder has at most one connector (since we always steal
861 * it away), so we won't call call enable hooks twice.
862 */
863 if (encoder->bridge)
864 encoder->bridge->funcs->pre_enable(encoder->bridge);
865
Daniel Vetteree0a89c2015-01-22 16:36:24 +0100866 if (funcs->enable)
867 funcs->enable(encoder);
868 else
869 funcs->commit(encoder);
Daniel Vetter623369e2014-09-16 17:50:47 +0200870
871 if (encoder->bridge)
872 encoder->bridge->funcs->enable(encoder->bridge);
873 }
874}
Daniel Vetter1af434a2015-02-22 12:24:19 +0100875EXPORT_SYMBOL(drm_atomic_helper_commit_modeset_enables);
Daniel Vetter623369e2014-09-16 17:50:47 +0200876
Daniel Vettere2330f02014-10-29 11:34:56 +0100877static void wait_for_fences(struct drm_device *dev,
878 struct drm_atomic_state *state)
879{
880 int nplanes = dev->mode_config.num_total_plane;
881 int i;
882
883 for (i = 0; i < nplanes; i++) {
884 struct drm_plane *plane = state->planes[i];
885
886 if (!plane || !plane->state->fence)
887 continue;
888
889 WARN_ON(!plane->state->fb);
890
891 fence_wait(plane->state->fence, false);
892 fence_put(plane->state->fence);
893 plane->state->fence = NULL;
894 }
895}
896
Daniel Vetterab58e332014-11-24 20:42:42 +0100897static bool framebuffer_changed(struct drm_device *dev,
898 struct drm_atomic_state *old_state,
899 struct drm_crtc *crtc)
900{
901 struct drm_plane *plane;
902 struct drm_plane_state *old_plane_state;
903 int nplanes = old_state->dev->mode_config.num_total_plane;
904 int i;
905
906 for (i = 0; i < nplanes; i++) {
907 plane = old_state->planes[i];
908 old_plane_state = old_state->plane_states[i];
909
910 if (!plane)
911 continue;
912
913 if (plane->state->crtc != crtc &&
914 old_plane_state->crtc != crtc)
915 continue;
916
917 if (plane->state->fb != old_plane_state->fb)
918 return true;
919 }
920
921 return false;
922}
923
Rob Clark5ee32292014-11-11 19:38:59 -0500924/**
925 * drm_atomic_helper_wait_for_vblanks - wait for vblank on crtcs
926 * @dev: DRM device
927 * @old_state: atomic state object with old state structures
928 *
929 * Helper to, after atomic commit, wait for vblanks on all effected
930 * crtcs (ie. before cleaning up old framebuffers using
Daniel Vetterab58e332014-11-24 20:42:42 +0100931 * drm_atomic_helper_cleanup_planes()). It will only wait on crtcs where the
932 * framebuffers have actually changed to optimize for the legacy cursor and
933 * plane update use-case.
Rob Clark5ee32292014-11-11 19:38:59 -0500934 */
935void
936drm_atomic_helper_wait_for_vblanks(struct drm_device *dev,
937 struct drm_atomic_state *old_state)
Daniel Vetter623369e2014-09-16 17:50:47 +0200938{
939 struct drm_crtc *crtc;
940 struct drm_crtc_state *old_crtc_state;
941 int ncrtcs = old_state->dev->mode_config.num_crtc;
942 int i, ret;
943
944 for (i = 0; i < ncrtcs; i++) {
945 crtc = old_state->crtcs[i];
946 old_crtc_state = old_state->crtc_states[i];
947
948 if (!crtc)
949 continue;
950
951 /* No one cares about the old state, so abuse it for tracking
952 * and store whether we hold a vblank reference (and should do a
953 * vblank wait) in the ->enable boolean. */
954 old_crtc_state->enable = false;
955
956 if (!crtc->state->enable)
957 continue;
958
Daniel Vetterf02ad902015-01-22 16:36:23 +0100959 /* Legacy cursor ioctls are completely unsynced, and userspace
960 * relies on that (by doing tons of cursor updates). */
961 if (old_state->legacy_cursor_update)
962 continue;
963
Daniel Vetterab58e332014-11-24 20:42:42 +0100964 if (!framebuffer_changed(dev, old_state, crtc))
965 continue;
966
Daniel Vetter623369e2014-09-16 17:50:47 +0200967 ret = drm_crtc_vblank_get(crtc);
968 if (ret != 0)
969 continue;
970
971 old_crtc_state->enable = true;
972 old_crtc_state->last_vblank_count = drm_vblank_count(dev, i);
973 }
974
975 for (i = 0; i < ncrtcs; i++) {
976 crtc = old_state->crtcs[i];
977 old_crtc_state = old_state->crtc_states[i];
978
979 if (!crtc || !old_crtc_state->enable)
980 continue;
981
982 ret = wait_event_timeout(dev->vblank[i].queue,
983 old_crtc_state->last_vblank_count !=
984 drm_vblank_count(dev, i),
985 msecs_to_jiffies(50));
986
987 drm_crtc_vblank_put(crtc);
988 }
989}
Rob Clark5ee32292014-11-11 19:38:59 -0500990EXPORT_SYMBOL(drm_atomic_helper_wait_for_vblanks);
Daniel Vetter623369e2014-09-16 17:50:47 +0200991
992/**
993 * drm_atomic_helper_commit - commit validated state object
994 * @dev: DRM device
995 * @state: the driver state object
996 * @async: asynchronous commit
997 *
998 * This function commits a with drm_atomic_helper_check() pre-validated state
999 * object. This can still fail when e.g. the framebuffer reservation fails. For
1000 * now this doesn't implement asynchronous commits.
1001 *
1002 * RETURNS
1003 * Zero for success or -errno.
1004 */
1005int drm_atomic_helper_commit(struct drm_device *dev,
1006 struct drm_atomic_state *state,
1007 bool async)
1008{
1009 int ret;
1010
1011 if (async)
1012 return -EBUSY;
1013
1014 ret = drm_atomic_helper_prepare_planes(dev, state);
1015 if (ret)
1016 return ret;
1017
1018 /*
1019 * This is the point of no return - everything below never fails except
1020 * when the hw goes bonghits. Which means we can commit the new state on
1021 * the software side now.
1022 */
1023
1024 drm_atomic_helper_swap_state(dev, state);
1025
1026 /*
1027 * Everything below can be run asynchronously without the need to grab
1028 * any modeset locks at all under one conditions: It must be guaranteed
1029 * that the asynchronous work has either been cancelled (if the driver
1030 * supports it, which at least requires that the framebuffers get
1031 * cleaned up with drm_atomic_helper_cleanup_planes()) or completed
1032 * before the new state gets committed on the software side with
1033 * drm_atomic_helper_swap_state().
1034 *
1035 * This scheme allows new atomic state updates to be prepared and
1036 * checked in parallel to the asynchronous completion of the previous
1037 * update. Which is important since compositors need to figure out the
1038 * composition of the next frame right after having submitted the
1039 * current layout.
1040 */
1041
Daniel Vettere2330f02014-10-29 11:34:56 +01001042 wait_for_fences(dev, state);
1043
Daniel Vetter1af434a2015-02-22 12:24:19 +01001044 drm_atomic_helper_commit_modeset_disables(dev, state);
Daniel Vetter623369e2014-09-16 17:50:47 +02001045
1046 drm_atomic_helper_commit_planes(dev, state);
1047
Daniel Vetter1af434a2015-02-22 12:24:19 +01001048 drm_atomic_helper_commit_modeset_enables(dev, state);
Daniel Vetter623369e2014-09-16 17:50:47 +02001049
Rob Clark5ee32292014-11-11 19:38:59 -05001050 drm_atomic_helper_wait_for_vblanks(dev, state);
Daniel Vetter623369e2014-09-16 17:50:47 +02001051
1052 drm_atomic_helper_cleanup_planes(dev, state);
1053
1054 drm_atomic_state_free(state);
1055
1056 return 0;
1057}
1058EXPORT_SYMBOL(drm_atomic_helper_commit);
1059
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001060/**
Daniel Vettere8c833a2014-07-27 18:30:19 +02001061 * DOC: implementing async commit
1062 *
1063 * For now the atomic helpers don't support async commit directly. If there is
1064 * real need it could be added though, using the dma-buf fence infrastructure
1065 * for generic synchronization with outstanding rendering.
1066 *
1067 * For now drivers have to implement async commit themselves, with the following
1068 * sequence being the recommended one:
1069 *
1070 * 1. Run drm_atomic_helper_prepare_planes() first. This is the only function
1071 * which commit needs to call which can fail, so we want to run it first and
1072 * synchronously.
1073 *
1074 * 2. Synchronize with any outstanding asynchronous commit worker threads which
1075 * might be affected the new state update. This can be done by either cancelling
1076 * or flushing the work items, depending upon whether the driver can deal with
1077 * cancelled updates. Note that it is important to ensure that the framebuffer
1078 * cleanup is still done when cancelling.
1079 *
1080 * For sufficient parallelism it is recommended to have a work item per crtc
1081 * (for updates which don't touch global state) and a global one. Then we only
1082 * need to synchronize with the crtc work items for changed crtcs and the global
1083 * work item, which allows nice concurrent updates on disjoint sets of crtcs.
1084 *
1085 * 3. The software state is updated synchronously with
1086 * drm_atomic_helper_swap_state. Doing this under the protection of all modeset
1087 * locks means concurrent callers never see inconsistent state. And doing this
1088 * while it's guaranteed that no relevant async worker runs means that async
1089 * workers do not need grab any locks. Actually they must not grab locks, for
1090 * otherwise the work flushing will deadlock.
1091 *
1092 * 4. Schedule a work item to do all subsequent steps, using the split-out
1093 * commit helpers: a) pre-plane commit b) plane commit c) post-plane commit and
1094 * then cleaning up the framebuffers after the old framebuffer is no longer
1095 * being displayed.
1096 */
1097
1098/**
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001099 * drm_atomic_helper_prepare_planes - prepare plane resources after commit
1100 * @dev: DRM device
1101 * @state: atomic state object with old state structures
1102 *
1103 * This function prepares plane state, specifically framebuffers, for the new
1104 * configuration. If any failure is encountered this function will call
1105 * ->cleanup_fb on any already successfully prepared framebuffer.
1106 *
1107 * Returns:
1108 * 0 on success, negative error code on failure.
1109 */
1110int drm_atomic_helper_prepare_planes(struct drm_device *dev,
1111 struct drm_atomic_state *state)
1112{
1113 int nplanes = dev->mode_config.num_total_plane;
1114 int ret, i;
1115
1116 for (i = 0; i < nplanes; i++) {
1117 struct drm_plane_helper_funcs *funcs;
1118 struct drm_plane *plane = state->planes[i];
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +00001119 struct drm_plane_state *plane_state = state->plane_states[i];
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001120 struct drm_framebuffer *fb;
1121
1122 if (!plane)
1123 continue;
1124
1125 funcs = plane->helper_private;
1126
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +00001127 fb = plane_state->fb;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001128
1129 if (fb && funcs->prepare_fb) {
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +00001130 ret = funcs->prepare_fb(plane, fb, plane_state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001131 if (ret)
1132 goto fail;
1133 }
1134 }
1135
1136 return 0;
1137
1138fail:
1139 for (i--; i >= 0; i--) {
1140 struct drm_plane_helper_funcs *funcs;
1141 struct drm_plane *plane = state->planes[i];
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +00001142 struct drm_plane_state *plane_state = state->plane_states[i];
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001143 struct drm_framebuffer *fb;
1144
1145 if (!plane)
1146 continue;
1147
1148 funcs = plane->helper_private;
1149
1150 fb = state->plane_states[i]->fb;
1151
1152 if (fb && funcs->cleanup_fb)
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +00001153 funcs->cleanup_fb(plane, fb, plane_state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001154
1155 }
1156
1157 return ret;
1158}
1159EXPORT_SYMBOL(drm_atomic_helper_prepare_planes);
1160
1161/**
1162 * drm_atomic_helper_commit_planes - commit plane state
1163 * @dev: DRM device
Daniel Vetterb0fcfc82014-11-19 18:38:11 +01001164 * @old_state: atomic state object with old state structures
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001165 *
1166 * This function commits the new plane state using the plane and atomic helper
1167 * functions for planes and crtcs. It assumes that the atomic state has already
1168 * been pushed into the relevant object state pointers, since this step can no
1169 * longer fail.
1170 *
Daniel Vetterb0fcfc82014-11-19 18:38:11 +01001171 * It still requires the global state object @old_state to know which planes and
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001172 * crtcs need to be updated though.
1173 */
1174void drm_atomic_helper_commit_planes(struct drm_device *dev,
Daniel Vetterb0fcfc82014-11-19 18:38:11 +01001175 struct drm_atomic_state *old_state)
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001176{
1177 int nplanes = dev->mode_config.num_total_plane;
1178 int ncrtcs = dev->mode_config.num_crtc;
1179 int i;
1180
1181 for (i = 0; i < ncrtcs; i++) {
1182 struct drm_crtc_helper_funcs *funcs;
Daniel Vetterb0fcfc82014-11-19 18:38:11 +01001183 struct drm_crtc *crtc = old_state->crtcs[i];
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001184
1185 if (!crtc)
1186 continue;
1187
1188 funcs = crtc->helper_private;
1189
1190 if (!funcs || !funcs->atomic_begin)
1191 continue;
1192
1193 funcs->atomic_begin(crtc);
1194 }
1195
1196 for (i = 0; i < nplanes; i++) {
1197 struct drm_plane_helper_funcs *funcs;
Daniel Vetterb0fcfc82014-11-19 18:38:11 +01001198 struct drm_plane *plane = old_state->planes[i];
Thierry Redingf1c37e12014-11-25 12:09:44 +01001199 struct drm_plane_state *old_plane_state;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001200
1201 if (!plane)
1202 continue;
1203
1204 funcs = plane->helper_private;
1205
Thierry Reding3cad4b62014-11-25 13:05:12 +01001206 if (!funcs)
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001207 continue;
1208
Thierry Redingf1c37e12014-11-25 12:09:44 +01001209 old_plane_state = old_state->plane_states[i];
1210
Thierry Reding407b8bd2014-11-20 12:05:50 +01001211 /*
1212 * Special-case disabling the plane if drivers support it.
1213 */
1214 if (drm_atomic_plane_disabling(plane, old_plane_state) &&
1215 funcs->atomic_disable)
1216 funcs->atomic_disable(plane, old_plane_state);
1217 else
1218 funcs->atomic_update(plane, old_plane_state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001219 }
1220
1221 for (i = 0; i < ncrtcs; i++) {
1222 struct drm_crtc_helper_funcs *funcs;
Daniel Vetterb0fcfc82014-11-19 18:38:11 +01001223 struct drm_crtc *crtc = old_state->crtcs[i];
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001224
1225 if (!crtc)
1226 continue;
1227
1228 funcs = crtc->helper_private;
1229
1230 if (!funcs || !funcs->atomic_flush)
1231 continue;
1232
1233 funcs->atomic_flush(crtc);
1234 }
1235}
1236EXPORT_SYMBOL(drm_atomic_helper_commit_planes);
1237
1238/**
1239 * drm_atomic_helper_cleanup_planes - cleanup plane resources after commit
1240 * @dev: DRM device
1241 * @old_state: atomic state object with old state structures
1242 *
1243 * This function cleans up plane state, specifically framebuffers, from the old
1244 * configuration. Hence the old configuration must be perserved in @old_state to
1245 * be able to call this function.
1246 *
1247 * This function must also be called on the new state when the atomic update
1248 * fails at any point after calling drm_atomic_helper_prepare_planes().
1249 */
1250void drm_atomic_helper_cleanup_planes(struct drm_device *dev,
1251 struct drm_atomic_state *old_state)
1252{
1253 int nplanes = dev->mode_config.num_total_plane;
1254 int i;
1255
1256 for (i = 0; i < nplanes; i++) {
1257 struct drm_plane_helper_funcs *funcs;
1258 struct drm_plane *plane = old_state->planes[i];
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +00001259 struct drm_plane_state *plane_state = old_state->plane_states[i];
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001260 struct drm_framebuffer *old_fb;
1261
1262 if (!plane)
1263 continue;
1264
1265 funcs = plane->helper_private;
1266
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +00001267 old_fb = plane_state->fb;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001268
1269 if (old_fb && funcs->cleanup_fb)
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +00001270 funcs->cleanup_fb(plane, old_fb, plane_state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001271 }
1272}
1273EXPORT_SYMBOL(drm_atomic_helper_cleanup_planes);
1274
1275/**
1276 * drm_atomic_helper_swap_state - store atomic state into current sw state
1277 * @dev: DRM device
1278 * @state: atomic state
1279 *
1280 * This function stores the atomic state into the current state pointers in all
1281 * driver objects. It should be called after all failing steps have been done
1282 * and succeeded, but before the actual hardware state is committed.
1283 *
1284 * For cleanup and error recovery the current state for all changed objects will
1285 * be swaped into @state.
1286 *
1287 * With that sequence it fits perfectly into the plane prepare/cleanup sequence:
1288 *
1289 * 1. Call drm_atomic_helper_prepare_planes() with the staged atomic state.
1290 *
1291 * 2. Do any other steps that might fail.
1292 *
1293 * 3. Put the staged state into the current state pointers with this function.
1294 *
1295 * 4. Actually commit the hardware state.
1296 *
1297 * 5. Call drm_atomic_helper_cleanup_planes with @state, which since step 3
1298 * contains the old state. Also do any other cleanup required with that state.
1299 */
1300void drm_atomic_helper_swap_state(struct drm_device *dev,
1301 struct drm_atomic_state *state)
1302{
1303 int i;
1304
1305 for (i = 0; i < dev->mode_config.num_connector; i++) {
1306 struct drm_connector *connector = state->connectors[i];
1307
1308 if (!connector)
1309 continue;
1310
1311 connector->state->state = state;
1312 swap(state->connector_states[i], connector->state);
1313 connector->state->state = NULL;
1314 }
1315
1316 for (i = 0; i < dev->mode_config.num_crtc; i++) {
1317 struct drm_crtc *crtc = state->crtcs[i];
1318
1319 if (!crtc)
1320 continue;
1321
1322 crtc->state->state = state;
1323 swap(state->crtc_states[i], crtc->state);
1324 crtc->state->state = NULL;
1325 }
1326
1327 for (i = 0; i < dev->mode_config.num_total_plane; i++) {
1328 struct drm_plane *plane = state->planes[i];
1329
1330 if (!plane)
1331 continue;
1332
1333 plane->state->state = state;
1334 swap(state->plane_states[i], plane->state);
1335 plane->state->state = NULL;
1336 }
1337}
1338EXPORT_SYMBOL(drm_atomic_helper_swap_state);
Daniel Vetter042652e2014-07-27 13:46:52 +02001339
1340/**
1341 * drm_atomic_helper_update_plane - Helper for primary plane update using atomic
1342 * @plane: plane object to update
1343 * @crtc: owning CRTC of owning plane
1344 * @fb: framebuffer to flip onto plane
1345 * @crtc_x: x offset of primary plane on crtc
1346 * @crtc_y: y offset of primary plane on crtc
1347 * @crtc_w: width of primary plane rectangle on crtc
1348 * @crtc_h: height of primary plane rectangle on crtc
1349 * @src_x: x offset of @fb for panning
1350 * @src_y: y offset of @fb for panning
1351 * @src_w: width of source rectangle in @fb
1352 * @src_h: height of source rectangle in @fb
1353 *
1354 * Provides a default plane update handler using the atomic driver interface.
1355 *
1356 * RETURNS:
1357 * Zero on success, error code on failure
1358 */
1359int drm_atomic_helper_update_plane(struct drm_plane *plane,
1360 struct drm_crtc *crtc,
1361 struct drm_framebuffer *fb,
1362 int crtc_x, int crtc_y,
1363 unsigned int crtc_w, unsigned int crtc_h,
1364 uint32_t src_x, uint32_t src_y,
1365 uint32_t src_w, uint32_t src_h)
1366{
1367 struct drm_atomic_state *state;
1368 struct drm_plane_state *plane_state;
1369 int ret = 0;
1370
1371 state = drm_atomic_state_alloc(plane->dev);
1372 if (!state)
1373 return -ENOMEM;
1374
1375 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
1376retry:
1377 plane_state = drm_atomic_get_plane_state(state, plane);
1378 if (IS_ERR(plane_state)) {
1379 ret = PTR_ERR(plane_state);
1380 goto fail;
1381 }
1382
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01001383 ret = drm_atomic_set_crtc_for_plane(plane_state, crtc);
Daniel Vetter042652e2014-07-27 13:46:52 +02001384 if (ret != 0)
1385 goto fail;
Daniel Vetter321ebf02014-11-04 22:57:27 +01001386 drm_atomic_set_fb_for_plane(plane_state, fb);
Daniel Vetter042652e2014-07-27 13:46:52 +02001387 plane_state->crtc_x = crtc_x;
1388 plane_state->crtc_y = crtc_y;
1389 plane_state->crtc_h = crtc_h;
1390 plane_state->crtc_w = crtc_w;
1391 plane_state->src_x = src_x;
1392 plane_state->src_y = src_y;
1393 plane_state->src_h = src_h;
1394 plane_state->src_w = src_w;
1395
1396 ret = drm_atomic_commit(state);
1397 if (ret != 0)
1398 goto fail;
1399
Daniel Vetterf02ad902015-01-22 16:36:23 +01001400 if (plane == crtc->cursor)
1401 state->legacy_cursor_update = true;
1402
Daniel Vetter042652e2014-07-27 13:46:52 +02001403 /* Driver takes ownership of state on successful commit. */
1404 return 0;
1405fail:
1406 if (ret == -EDEADLK)
1407 goto backoff;
1408
1409 drm_atomic_state_free(state);
1410
1411 return ret;
1412backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02001413 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01001414 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02001415
1416 /*
1417 * Someone might have exchanged the framebuffer while we dropped locks
1418 * in the backoff code. We need to fix up the fb refcount tracking the
1419 * core does for us.
1420 */
1421 plane->old_fb = plane->fb;
1422
1423 goto retry;
1424}
1425EXPORT_SYMBOL(drm_atomic_helper_update_plane);
1426
1427/**
1428 * drm_atomic_helper_disable_plane - Helper for primary plane disable using * atomic
1429 * @plane: plane to disable
1430 *
1431 * Provides a default plane disable handler using the atomic driver interface.
1432 *
1433 * RETURNS:
1434 * Zero on success, error code on failure
1435 */
1436int drm_atomic_helper_disable_plane(struct drm_plane *plane)
1437{
1438 struct drm_atomic_state *state;
1439 struct drm_plane_state *plane_state;
1440 int ret = 0;
1441
Jasper St. Pierreaa54e2e2014-11-20 19:59:15 -08001442 /*
1443 * FIXME: Without plane->crtc set we can't get at the implicit legacy
1444 * acquire context. The real fix will be to wire the acquire ctx through
1445 * everywhere we need it, but meanwhile prevent chaos by just skipping
1446 * this noop. The critical case is the cursor ioctls which a) only grab
1447 * crtc/cursor-plane locks (so we need the crtc to get at the right
1448 * acquire context) and b) can try to disable the plane multiple times.
1449 */
1450 if (!plane->crtc)
1451 return 0;
1452
Daniel Vetter042652e2014-07-27 13:46:52 +02001453 state = drm_atomic_state_alloc(plane->dev);
1454 if (!state)
1455 return -ENOMEM;
1456
1457 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(plane->crtc);
1458retry:
1459 plane_state = drm_atomic_get_plane_state(state, plane);
1460 if (IS_ERR(plane_state)) {
1461 ret = PTR_ERR(plane_state);
1462 goto fail;
1463 }
1464
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01001465 ret = drm_atomic_set_crtc_for_plane(plane_state, NULL);
Daniel Vetter042652e2014-07-27 13:46:52 +02001466 if (ret != 0)
1467 goto fail;
Daniel Vetter321ebf02014-11-04 22:57:27 +01001468 drm_atomic_set_fb_for_plane(plane_state, NULL);
Daniel Vetter042652e2014-07-27 13:46:52 +02001469 plane_state->crtc_x = 0;
1470 plane_state->crtc_y = 0;
1471 plane_state->crtc_h = 0;
1472 plane_state->crtc_w = 0;
1473 plane_state->src_x = 0;
1474 plane_state->src_y = 0;
1475 plane_state->src_h = 0;
1476 plane_state->src_w = 0;
1477
Daniel Vetterf02ad902015-01-22 16:36:23 +01001478 if (plane == plane->crtc->cursor)
1479 state->legacy_cursor_update = true;
1480
Daniel Vetter042652e2014-07-27 13:46:52 +02001481 ret = drm_atomic_commit(state);
1482 if (ret != 0)
1483 goto fail;
1484
1485 /* Driver takes ownership of state on successful commit. */
1486 return 0;
1487fail:
1488 if (ret == -EDEADLK)
1489 goto backoff;
1490
1491 drm_atomic_state_free(state);
1492
1493 return ret;
1494backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02001495 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01001496 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02001497
1498 /*
1499 * Someone might have exchanged the framebuffer while we dropped locks
1500 * in the backoff code. We need to fix up the fb refcount tracking the
1501 * core does for us.
1502 */
1503 plane->old_fb = plane->fb;
1504
1505 goto retry;
1506}
1507EXPORT_SYMBOL(drm_atomic_helper_disable_plane);
1508
1509static int update_output_state(struct drm_atomic_state *state,
1510 struct drm_mode_set *set)
1511{
1512 struct drm_device *dev = set->crtc->dev;
1513 struct drm_connector_state *conn_state;
Daniel Vetter042652e2014-07-27 13:46:52 +02001514 int ncrtcs = state->dev->mode_config.num_crtc;
1515 int ret, i, j;
1516
1517 ret = drm_modeset_lock(&dev->mode_config.connection_mutex,
1518 state->acquire_ctx);
1519 if (ret)
1520 return ret;
1521
1522 /* First grab all affected connector/crtc states. */
1523 for (i = 0; i < set->num_connectors; i++) {
1524 conn_state = drm_atomic_get_connector_state(state,
1525 set->connectors[i]);
1526 if (IS_ERR(conn_state))
1527 return PTR_ERR(conn_state);
1528 }
1529
1530 for (i = 0; i < ncrtcs; i++) {
1531 struct drm_crtc *crtc = state->crtcs[i];
1532
1533 if (!crtc)
1534 continue;
1535
1536 ret = drm_atomic_add_affected_connectors(state, crtc);
1537 if (ret)
1538 return ret;
1539 }
1540
1541 /* Then recompute connector->crtc links and crtc enabling state. */
Daniel Vetterf52b69f12014-11-19 18:38:08 +01001542 for (i = 0; i < state->num_connector; i++) {
Daniel Vetter042652e2014-07-27 13:46:52 +02001543 struct drm_connector *connector;
1544
1545 connector = state->connectors[i];
1546 conn_state = state->connector_states[i];
1547
1548 if (!connector)
1549 continue;
1550
1551 if (conn_state->crtc == set->crtc) {
1552 ret = drm_atomic_set_crtc_for_connector(conn_state,
1553 NULL);
1554 if (ret)
1555 return ret;
1556 }
1557
1558 for (j = 0; j < set->num_connectors; j++) {
1559 if (set->connectors[j] == connector) {
1560 ret = drm_atomic_set_crtc_for_connector(conn_state,
1561 set->crtc);
1562 if (ret)
1563 return ret;
1564 break;
1565 }
1566 }
1567 }
1568
1569 for (i = 0; i < ncrtcs; i++) {
1570 struct drm_crtc *crtc = state->crtcs[i];
1571 struct drm_crtc_state *crtc_state = state->crtc_states[i];
1572
1573 if (!crtc)
1574 continue;
1575
1576 /* Don't update ->enable for the CRTC in the set_config request,
1577 * since a mismatch would indicate a bug in the upper layers.
1578 * The actual modeset code later on will catch any
1579 * inconsistencies here. */
1580 if (crtc == set->crtc)
1581 continue;
1582
1583 crtc_state->enable =
1584 drm_atomic_connectors_for_crtc(state, crtc);
1585 }
1586
1587 return 0;
1588}
1589
1590/**
1591 * drm_atomic_helper_set_config - set a new config from userspace
1592 * @set: mode set configuration
1593 *
1594 * Provides a default crtc set_config handler using the atomic driver interface.
1595 *
1596 * Returns:
1597 * Returns 0 on success, negative errno numbers on failure.
1598 */
1599int drm_atomic_helper_set_config(struct drm_mode_set *set)
1600{
1601 struct drm_atomic_state *state;
1602 struct drm_crtc *crtc = set->crtc;
1603 struct drm_crtc_state *crtc_state;
1604 struct drm_plane_state *primary_state;
1605 int ret = 0;
1606
1607 state = drm_atomic_state_alloc(crtc->dev);
1608 if (!state)
1609 return -ENOMEM;
1610
1611 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
1612retry:
1613 crtc_state = drm_atomic_get_crtc_state(state, crtc);
1614 if (IS_ERR(crtc_state)) {
1615 ret = PTR_ERR(crtc_state);
1616 goto fail;
1617 }
1618
Rob Clarke5b53412014-11-26 18:58:04 -05001619 primary_state = drm_atomic_get_plane_state(state, crtc->primary);
1620 if (IS_ERR(primary_state)) {
1621 ret = PTR_ERR(primary_state);
1622 goto fail;
1623 }
1624
Daniel Vetter042652e2014-07-27 13:46:52 +02001625 if (!set->mode) {
1626 WARN_ON(set->fb);
1627 WARN_ON(set->num_connectors);
1628
1629 crtc_state->enable = false;
Daniel Vettereab3bbe2015-01-22 16:36:21 +01001630 crtc_state->active = false;
Rob Clarke5b53412014-11-26 18:58:04 -05001631
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01001632 ret = drm_atomic_set_crtc_for_plane(primary_state, NULL);
Rob Clarke5b53412014-11-26 18:58:04 -05001633 if (ret != 0)
1634 goto fail;
1635
1636 drm_atomic_set_fb_for_plane(primary_state, NULL);
1637
Daniel Vetter042652e2014-07-27 13:46:52 +02001638 goto commit;
1639 }
1640
1641 WARN_ON(!set->fb);
1642 WARN_ON(!set->num_connectors);
1643
1644 crtc_state->enable = true;
Daniel Vettereab3bbe2015-01-22 16:36:21 +01001645 crtc_state->active = true;
Daniel Vetter042652e2014-07-27 13:46:52 +02001646 drm_mode_copy(&crtc_state->mode, set->mode);
1647
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01001648 ret = drm_atomic_set_crtc_for_plane(primary_state, crtc);
Daniel Vetter042652e2014-07-27 13:46:52 +02001649 if (ret != 0)
1650 goto fail;
Daniel Vetter321ebf02014-11-04 22:57:27 +01001651 drm_atomic_set_fb_for_plane(primary_state, set->fb);
Daniel Vetter042652e2014-07-27 13:46:52 +02001652 primary_state->crtc_x = 0;
1653 primary_state->crtc_y = 0;
1654 primary_state->crtc_h = set->mode->vdisplay;
1655 primary_state->crtc_w = set->mode->hdisplay;
1656 primary_state->src_x = set->x << 16;
1657 primary_state->src_y = set->y << 16;
1658 primary_state->src_h = set->mode->vdisplay << 16;
1659 primary_state->src_w = set->mode->hdisplay << 16;
1660
1661commit:
1662 ret = update_output_state(state, set);
1663 if (ret)
1664 goto fail;
1665
1666 ret = drm_atomic_commit(state);
1667 if (ret != 0)
1668 goto fail;
1669
1670 /* Driver takes ownership of state on successful commit. */
1671 return 0;
1672fail:
1673 if (ret == -EDEADLK)
1674 goto backoff;
1675
1676 drm_atomic_state_free(state);
1677
1678 return ret;
1679backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02001680 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01001681 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02001682
1683 /*
1684 * Someone might have exchanged the framebuffer while we dropped locks
1685 * in the backoff code. We need to fix up the fb refcount tracking the
1686 * core does for us.
1687 */
1688 crtc->primary->old_fb = crtc->primary->fb;
1689
1690 goto retry;
1691}
1692EXPORT_SYMBOL(drm_atomic_helper_set_config);
1693
1694/**
Laurent Pinchart7f500022015-02-23 02:50:23 +02001695 * drm_atomic_helper_crtc_set_property - helper for crtc properties
Daniel Vetter042652e2014-07-27 13:46:52 +02001696 * @crtc: DRM crtc
1697 * @property: DRM property
1698 * @val: value of property
1699 *
Laurent Pinchart7f500022015-02-23 02:50:23 +02001700 * Provides a default crtc set_property handler using the atomic driver
1701 * interface.
Daniel Vetter042652e2014-07-27 13:46:52 +02001702 *
1703 * RETURNS:
1704 * Zero on success, error code on failure
1705 */
1706int
1707drm_atomic_helper_crtc_set_property(struct drm_crtc *crtc,
1708 struct drm_property *property,
1709 uint64_t val)
1710{
1711 struct drm_atomic_state *state;
1712 struct drm_crtc_state *crtc_state;
1713 int ret = 0;
1714
1715 state = drm_atomic_state_alloc(crtc->dev);
1716 if (!state)
1717 return -ENOMEM;
1718
1719 /* ->set_property is always called with all locks held. */
1720 state->acquire_ctx = crtc->dev->mode_config.acquire_ctx;
1721retry:
1722 crtc_state = drm_atomic_get_crtc_state(state, crtc);
1723 if (IS_ERR(crtc_state)) {
1724 ret = PTR_ERR(crtc_state);
1725 goto fail;
1726 }
1727
Rob Clark40ecc692014-12-18 16:01:46 -05001728 ret = drm_atomic_crtc_set_property(crtc, crtc_state,
1729 property, val);
Daniel Vetter042652e2014-07-27 13:46:52 +02001730 if (ret)
1731 goto fail;
1732
1733 ret = drm_atomic_commit(state);
1734 if (ret != 0)
1735 goto fail;
1736
1737 /* Driver takes ownership of state on successful commit. */
1738 return 0;
1739fail:
1740 if (ret == -EDEADLK)
1741 goto backoff;
1742
1743 drm_atomic_state_free(state);
1744
1745 return ret;
1746backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02001747 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01001748 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02001749
1750 goto retry;
1751}
1752EXPORT_SYMBOL(drm_atomic_helper_crtc_set_property);
1753
1754/**
Laurent Pinchart7f500022015-02-23 02:50:23 +02001755 * drm_atomic_helper_plane_set_property - helper for plane properties
Daniel Vetter042652e2014-07-27 13:46:52 +02001756 * @plane: DRM plane
1757 * @property: DRM property
1758 * @val: value of property
1759 *
Laurent Pinchart7f500022015-02-23 02:50:23 +02001760 * Provides a default plane set_property handler using the atomic driver
1761 * interface.
Daniel Vetter042652e2014-07-27 13:46:52 +02001762 *
1763 * RETURNS:
1764 * Zero on success, error code on failure
1765 */
1766int
1767drm_atomic_helper_plane_set_property(struct drm_plane *plane,
1768 struct drm_property *property,
1769 uint64_t val)
1770{
1771 struct drm_atomic_state *state;
1772 struct drm_plane_state *plane_state;
1773 int ret = 0;
1774
1775 state = drm_atomic_state_alloc(plane->dev);
1776 if (!state)
1777 return -ENOMEM;
1778
1779 /* ->set_property is always called with all locks held. */
1780 state->acquire_ctx = plane->dev->mode_config.acquire_ctx;
1781retry:
1782 plane_state = drm_atomic_get_plane_state(state, plane);
1783 if (IS_ERR(plane_state)) {
1784 ret = PTR_ERR(plane_state);
1785 goto fail;
1786 }
1787
Rob Clark40ecc692014-12-18 16:01:46 -05001788 ret = drm_atomic_plane_set_property(plane, plane_state,
1789 property, val);
Daniel Vetter042652e2014-07-27 13:46:52 +02001790 if (ret)
1791 goto fail;
1792
1793 ret = drm_atomic_commit(state);
1794 if (ret != 0)
1795 goto fail;
1796
1797 /* Driver takes ownership of state on successful commit. */
1798 return 0;
1799fail:
1800 if (ret == -EDEADLK)
1801 goto backoff;
1802
1803 drm_atomic_state_free(state);
1804
1805 return ret;
1806backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02001807 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01001808 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02001809
1810 goto retry;
1811}
1812EXPORT_SYMBOL(drm_atomic_helper_plane_set_property);
1813
1814/**
Laurent Pinchart7f500022015-02-23 02:50:23 +02001815 * drm_atomic_helper_connector_set_property - helper for connector properties
Daniel Vetter042652e2014-07-27 13:46:52 +02001816 * @connector: DRM connector
1817 * @property: DRM property
1818 * @val: value of property
1819 *
Laurent Pinchart7f500022015-02-23 02:50:23 +02001820 * Provides a default connector set_property handler using the atomic driver
1821 * interface.
Daniel Vetter042652e2014-07-27 13:46:52 +02001822 *
1823 * RETURNS:
1824 * Zero on success, error code on failure
1825 */
1826int
1827drm_atomic_helper_connector_set_property(struct drm_connector *connector,
1828 struct drm_property *property,
1829 uint64_t val)
1830{
1831 struct drm_atomic_state *state;
1832 struct drm_connector_state *connector_state;
1833 int ret = 0;
1834
1835 state = drm_atomic_state_alloc(connector->dev);
1836 if (!state)
1837 return -ENOMEM;
1838
1839 /* ->set_property is always called with all locks held. */
1840 state->acquire_ctx = connector->dev->mode_config.acquire_ctx;
1841retry:
1842 connector_state = drm_atomic_get_connector_state(state, connector);
1843 if (IS_ERR(connector_state)) {
1844 ret = PTR_ERR(connector_state);
1845 goto fail;
1846 }
1847
Rob Clark40ecc692014-12-18 16:01:46 -05001848 ret = drm_atomic_connector_set_property(connector, connector_state,
1849 property, val);
Daniel Vetter042652e2014-07-27 13:46:52 +02001850 if (ret)
1851 goto fail;
1852
1853 ret = drm_atomic_commit(state);
1854 if (ret != 0)
1855 goto fail;
1856
1857 /* Driver takes ownership of state on successful commit. */
1858 return 0;
1859fail:
1860 if (ret == -EDEADLK)
1861 goto backoff;
1862
1863 drm_atomic_state_free(state);
1864
1865 return ret;
1866backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02001867 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01001868 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02001869
1870 goto retry;
1871}
1872EXPORT_SYMBOL(drm_atomic_helper_connector_set_property);
Daniel Vetter8bc0f312014-07-27 18:42:37 +02001873
1874/**
1875 * drm_atomic_helper_page_flip - execute a legacy page flip
1876 * @crtc: DRM crtc
1877 * @fb: DRM framebuffer
1878 * @event: optional DRM event to signal upon completion
1879 * @flags: flip flags for non-vblank sync'ed updates
1880 *
1881 * Provides a default page flip implementation using the atomic driver interface.
1882 *
1883 * Note that for now so called async page flips (i.e. updates which are not
1884 * synchronized to vblank) are not supported, since the atomic interfaces have
1885 * no provisions for this yet.
1886 *
1887 * Returns:
1888 * Returns 0 on success, negative errno numbers on failure.
1889 */
1890int drm_atomic_helper_page_flip(struct drm_crtc *crtc,
1891 struct drm_framebuffer *fb,
1892 struct drm_pending_vblank_event *event,
1893 uint32_t flags)
1894{
1895 struct drm_plane *plane = crtc->primary;
1896 struct drm_atomic_state *state;
1897 struct drm_plane_state *plane_state;
1898 struct drm_crtc_state *crtc_state;
1899 int ret = 0;
1900
1901 if (flags & DRM_MODE_PAGE_FLIP_ASYNC)
1902 return -EINVAL;
1903
1904 state = drm_atomic_state_alloc(plane->dev);
1905 if (!state)
1906 return -ENOMEM;
1907
1908 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
1909retry:
1910 crtc_state = drm_atomic_get_crtc_state(state, crtc);
1911 if (IS_ERR(crtc_state)) {
1912 ret = PTR_ERR(crtc_state);
1913 goto fail;
1914 }
1915 crtc_state->event = event;
1916
1917 plane_state = drm_atomic_get_plane_state(state, plane);
1918 if (IS_ERR(plane_state)) {
1919 ret = PTR_ERR(plane_state);
1920 goto fail;
1921 }
1922
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01001923 ret = drm_atomic_set_crtc_for_plane(plane_state, crtc);
Daniel Vetter8bc0f312014-07-27 18:42:37 +02001924 if (ret != 0)
1925 goto fail;
Daniel Vetter321ebf02014-11-04 22:57:27 +01001926 drm_atomic_set_fb_for_plane(plane_state, fb);
Daniel Vetter8bc0f312014-07-27 18:42:37 +02001927
1928 ret = drm_atomic_async_commit(state);
1929 if (ret != 0)
1930 goto fail;
1931
1932 /* TODO: ->page_flip is the only driver callback where the core
1933 * doesn't update plane->fb. For now patch it up here. */
1934 plane->fb = plane->state->fb;
1935
1936 /* Driver takes ownership of state on successful async commit. */
1937 return 0;
1938fail:
1939 if (ret == -EDEADLK)
1940 goto backoff;
1941
1942 drm_atomic_state_free(state);
1943
1944 return ret;
1945backoff:
Daniel Vetter8bc0f312014-07-27 18:42:37 +02001946 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01001947 drm_atomic_legacy_backoff(state);
Daniel Vetter8bc0f312014-07-27 18:42:37 +02001948
1949 /*
1950 * Someone might have exchanged the framebuffer while we dropped locks
1951 * in the backoff code. We need to fix up the fb refcount tracking the
1952 * core does for us.
1953 */
1954 plane->old_fb = plane->fb;
1955
1956 goto retry;
1957}
1958EXPORT_SYMBOL(drm_atomic_helper_page_flip);
Daniel Vetterd4617012014-11-03 15:56:43 +01001959
1960/**
Daniel Vetterb486e0e2015-01-22 18:53:05 +01001961 * drm_atomic_helper_connector_dpms() - connector dpms helper implementation
1962 * @connector: affected connector
1963 * @mode: DPMS mode
1964 *
1965 * This is the main helper function provided by the atomic helper framework for
1966 * implementing the legacy DPMS connector interface. It computes the new desired
1967 * ->active state for the corresponding CRTC (if the connector is enabled) and
1968 * updates it.
1969 */
1970void drm_atomic_helper_connector_dpms(struct drm_connector *connector,
1971 int mode)
1972{
1973 struct drm_mode_config *config = &connector->dev->mode_config;
1974 struct drm_atomic_state *state;
1975 struct drm_crtc_state *crtc_state;
1976 struct drm_crtc *crtc;
1977 struct drm_connector *tmp_connector;
1978 int ret;
1979 bool active = false;
1980
1981 if (mode != DRM_MODE_DPMS_ON)
1982 mode = DRM_MODE_DPMS_OFF;
1983
1984 connector->dpms = mode;
1985 crtc = connector->state->crtc;
1986
1987 if (!crtc)
1988 return;
1989
1990 /* FIXME: ->dpms has no return value so can't forward the -ENOMEM. */
1991 state = drm_atomic_state_alloc(connector->dev);
1992 if (!state)
1993 return;
1994
1995 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
1996retry:
1997 crtc_state = drm_atomic_get_crtc_state(state, crtc);
1998 if (IS_ERR(crtc_state))
1999 return;
2000
2001 WARN_ON(!drm_modeset_is_locked(&config->connection_mutex));
2002
2003 list_for_each_entry(tmp_connector, &config->connector_list, head) {
2004 if (connector->state->crtc != crtc)
2005 continue;
2006
2007 if (connector->dpms == DRM_MODE_DPMS_ON) {
2008 active = true;
2009 break;
2010 }
2011 }
2012 crtc_state->active = active;
2013
2014 ret = drm_atomic_commit(state);
2015 if (ret != 0)
2016 goto fail;
2017
2018 /* Driver takes ownership of state on successful async commit. */
2019 return;
2020fail:
2021 if (ret == -EDEADLK)
2022 goto backoff;
2023
2024 drm_atomic_state_free(state);
2025
2026 WARN(1, "Driver bug: Changing ->active failed with ret=%i\n", ret);
2027
2028 return;
2029backoff:
2030 drm_atomic_state_clear(state);
2031 drm_atomic_legacy_backoff(state);
2032
2033 goto retry;
2034}
2035EXPORT_SYMBOL(drm_atomic_helper_connector_dpms);
2036
2037/**
Daniel Vetter3150c7d2014-11-06 20:53:29 +01002038 * DOC: atomic state reset and initialization
2039 *
2040 * Both the drm core and the atomic helpers assume that there is always the full
2041 * and correct atomic software state for all connectors, CRTCs and planes
2042 * available. Which is a bit a problem on driver load and also after system
2043 * suspend. One way to solve this is to have a hardware state read-out
2044 * infrastructure which reconstructs the full software state (e.g. the i915
2045 * driver).
2046 *
2047 * The simpler solution is to just reset the software state to everything off,
2048 * which is easiest to do by calling drm_mode_config_reset(). To facilitate this
2049 * the atomic helpers provide default reset implementations for all hooks.
2050 */
2051
2052/**
Daniel Vetterd4617012014-11-03 15:56:43 +01002053 * drm_atomic_helper_crtc_reset - default ->reset hook for CRTCs
2054 * @crtc: drm CRTC
2055 *
2056 * Resets the atomic state for @crtc by freeing the state pointer (which might
2057 * be NULL, e.g. at driver load time) and allocating a new empty state object.
2058 */
2059void drm_atomic_helper_crtc_reset(struct drm_crtc *crtc)
2060{
2061 kfree(crtc->state);
2062 crtc->state = kzalloc(sizeof(*crtc->state), GFP_KERNEL);
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01002063
2064 if (crtc->state)
2065 crtc->state->crtc = crtc;
Daniel Vetterd4617012014-11-03 15:56:43 +01002066}
2067EXPORT_SYMBOL(drm_atomic_helper_crtc_reset);
2068
2069/**
2070 * drm_atomic_helper_crtc_duplicate_state - default state duplicate hook
2071 * @crtc: drm CRTC
2072 *
2073 * Default CRTC state duplicate hook for drivers which don't have their own
2074 * subclassed CRTC state structure.
2075 */
2076struct drm_crtc_state *
2077drm_atomic_helper_crtc_duplicate_state(struct drm_crtc *crtc)
2078{
2079 struct drm_crtc_state *state;
2080
2081 if (WARN_ON(!crtc->state))
2082 return NULL;
2083
2084 state = kmemdup(crtc->state, sizeof(*crtc->state), GFP_KERNEL);
2085
2086 if (state) {
2087 state->mode_changed = false;
Daniel Vettereab3bbe2015-01-22 16:36:21 +01002088 state->active_changed = false;
Daniel Vetterd4617012014-11-03 15:56:43 +01002089 state->planes_changed = false;
2090 state->event = NULL;
2091 }
2092
2093 return state;
2094}
2095EXPORT_SYMBOL(drm_atomic_helper_crtc_duplicate_state);
2096
2097/**
2098 * drm_atomic_helper_crtc_destroy_state - default state destroy hook
2099 * @crtc: drm CRTC
2100 * @state: CRTC state object to release
2101 *
2102 * Default CRTC state destroy hook for drivers which don't have their own
2103 * subclassed CRTC state structure.
2104 */
2105void drm_atomic_helper_crtc_destroy_state(struct drm_crtc *crtc,
2106 struct drm_crtc_state *state)
2107{
2108 kfree(state);
2109}
2110EXPORT_SYMBOL(drm_atomic_helper_crtc_destroy_state);
2111
2112/**
2113 * drm_atomic_helper_plane_reset - default ->reset hook for planes
2114 * @plane: drm plane
2115 *
2116 * Resets the atomic state for @plane by freeing the state pointer (which might
2117 * be NULL, e.g. at driver load time) and allocating a new empty state object.
2118 */
2119void drm_atomic_helper_plane_reset(struct drm_plane *plane)
2120{
Daniel Vetter321ebf02014-11-04 22:57:27 +01002121 if (plane->state && plane->state->fb)
2122 drm_framebuffer_unreference(plane->state->fb);
2123
Daniel Vetterd4617012014-11-03 15:56:43 +01002124 kfree(plane->state);
2125 plane->state = kzalloc(sizeof(*plane->state), GFP_KERNEL);
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01002126
2127 if (plane->state)
2128 plane->state->plane = plane;
Daniel Vetterd4617012014-11-03 15:56:43 +01002129}
2130EXPORT_SYMBOL(drm_atomic_helper_plane_reset);
2131
2132/**
2133 * drm_atomic_helper_plane_duplicate_state - default state duplicate hook
2134 * @plane: drm plane
2135 *
2136 * Default plane state duplicate hook for drivers which don't have their own
2137 * subclassed plane state structure.
2138 */
2139struct drm_plane_state *
2140drm_atomic_helper_plane_duplicate_state(struct drm_plane *plane)
2141{
Daniel Vetter321ebf02014-11-04 22:57:27 +01002142 struct drm_plane_state *state;
2143
Daniel Vetterd4617012014-11-03 15:56:43 +01002144 if (WARN_ON(!plane->state))
2145 return NULL;
2146
Daniel Vetter321ebf02014-11-04 22:57:27 +01002147 state = kmemdup(plane->state, sizeof(*plane->state), GFP_KERNEL);
2148
2149 if (state && state->fb)
2150 drm_framebuffer_reference(state->fb);
2151
2152 return state;
Daniel Vetterd4617012014-11-03 15:56:43 +01002153}
2154EXPORT_SYMBOL(drm_atomic_helper_plane_duplicate_state);
2155
2156/**
2157 * drm_atomic_helper_plane_destroy_state - default state destroy hook
2158 * @plane: drm plane
2159 * @state: plane state object to release
2160 *
2161 * Default plane state destroy hook for drivers which don't have their own
2162 * subclassed plane state structure.
2163 */
2164void drm_atomic_helper_plane_destroy_state(struct drm_plane *plane,
Daniel Vetter321ebf02014-11-04 22:57:27 +01002165 struct drm_plane_state *state)
Daniel Vetterd4617012014-11-03 15:56:43 +01002166{
Daniel Vetter321ebf02014-11-04 22:57:27 +01002167 if (state->fb)
2168 drm_framebuffer_unreference(state->fb);
2169
Daniel Vetterd4617012014-11-03 15:56:43 +01002170 kfree(state);
2171}
2172EXPORT_SYMBOL(drm_atomic_helper_plane_destroy_state);
2173
2174/**
2175 * drm_atomic_helper_connector_reset - default ->reset hook for connectors
2176 * @connector: drm connector
2177 *
2178 * Resets the atomic state for @connector by freeing the state pointer (which
2179 * might be NULL, e.g. at driver load time) and allocating a new empty state
2180 * object.
2181 */
2182void drm_atomic_helper_connector_reset(struct drm_connector *connector)
2183{
2184 kfree(connector->state);
2185 connector->state = kzalloc(sizeof(*connector->state), GFP_KERNEL);
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01002186
2187 if (connector->state)
2188 connector->state->connector = connector;
Daniel Vetterd4617012014-11-03 15:56:43 +01002189}
2190EXPORT_SYMBOL(drm_atomic_helper_connector_reset);
2191
2192/**
2193 * drm_atomic_helper_connector_duplicate_state - default state duplicate hook
2194 * @connector: drm connector
2195 *
2196 * Default connector state duplicate hook for drivers which don't have their own
2197 * subclassed connector state structure.
2198 */
2199struct drm_connector_state *
2200drm_atomic_helper_connector_duplicate_state(struct drm_connector *connector)
2201{
2202 if (WARN_ON(!connector->state))
2203 return NULL;
2204
2205 return kmemdup(connector->state, sizeof(*connector->state), GFP_KERNEL);
2206}
2207EXPORT_SYMBOL(drm_atomic_helper_connector_duplicate_state);
2208
2209/**
2210 * drm_atomic_helper_connector_destroy_state - default state destroy hook
2211 * @connector: drm connector
2212 * @state: connector state object to release
2213 *
2214 * Default connector state destroy hook for drivers which don't have their own
2215 * subclassed connector state structure.
2216 */
2217void drm_atomic_helper_connector_destroy_state(struct drm_connector *connector,
2218 struct drm_connector_state *state)
2219{
2220 kfree(state);
2221}
2222EXPORT_SYMBOL(drm_atomic_helper_connector_destroy_state);