blob: d981d07d50cd0f13e8da3843a79b3d71c10a7570 [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) {
64 crtc_state = state->crtc_states[drm_crtc_index(plane->crtc)];
65
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
119 DRM_DEBUG_KMS("[ENCODER:%d:%s] in use on [CRTC:%d], stealing it\n",
120 encoder->base.id, encoder->name,
121 encoder_crtc->base.id);
122
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
133 DRM_DEBUG_KMS("Stealing encoder from [CONNECTOR:%d:%s]\n",
134 connector->base.id,
135 connector->name);
136
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
168 DRM_DEBUG_KMS("Updating routing for [CONNECTOR:%d:%s]\n",
169 connector->base.id,
170 connector->name);
171
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) {
189 DRM_DEBUG_KMS("Disabling [CONNECTOR:%d:%s]\n",
190 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) {
202 DRM_DEBUG_KMS("No suitable encoder found for [CONNECTOR:%d:%s]\n",
203 connector->base.id,
204 connector->name);
205 return -EINVAL;
206 }
207
208 if (new_encoder == connector_state->best_encoder) {
209 DRM_DEBUG_KMS("[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);
215
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) {
225 DRM_DEBUG_KMS("Encoder stealing failed for [CONNECTOR:%d:%s]\n",
226 connector->base.id,
227 connector->name);
228 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
238 DRM_DEBUG_KMS("[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);
244
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) {
295 DRM_DEBUG_KMS("Bridge fixup failed\n");
296 return -EINVAL;
297 }
298 }
299
300
301 ret = funcs->mode_fixup(encoder, &crtc_state->mode,
302 &crtc_state->adjusted_mode);
303 if (!ret) {
304 DRM_DEBUG_KMS("[ENCODER:%d:%s] fixup failed\n",
305 encoder->base.id, encoder->name);
306 return -EINVAL;
307 }
308 }
309
310 for (i = 0; i < ncrtcs; i++) {
311 struct drm_crtc_helper_funcs *funcs;
312 struct drm_crtc *crtc;
313
314 crtc_state = state->crtc_states[i];
315 crtc = state->crtcs[i];
316
317 if (!crtc_state || !crtc_state->mode_changed)
318 continue;
319
320 funcs = crtc->helper_private;
321 ret = funcs->mode_fixup(crtc, &crtc_state->mode,
322 &crtc_state->adjusted_mode);
323 if (!ret) {
324 DRM_DEBUG_KMS("[CRTC:%d] fixup failed\n",
325 crtc->base.id);
326 return -EINVAL;
327 }
328 }
329
330 return 0;
331}
332
333static int
Rob Clark934ce1c2014-11-19 16:41:33 -0500334drm_atomic_helper_check_modeset(struct drm_device *dev,
Daniel Vetter623369e2014-09-16 17:50:47 +0200335 struct drm_atomic_state *state)
336{
337 int ncrtcs = dev->mode_config.num_crtc;
Daniel Vetter623369e2014-09-16 17:50:47 +0200338 struct drm_crtc *crtc;
339 struct drm_crtc_state *crtc_state;
340 int i, ret;
341
342 for (i = 0; i < ncrtcs; i++) {
343 crtc = state->crtcs[i];
344 crtc_state = state->crtc_states[i];
345
346 if (!crtc)
347 continue;
348
349 if (!drm_mode_equal(&crtc->state->mode, &crtc_state->mode)) {
350 DRM_DEBUG_KMS("[CRTC:%d] mode changed\n",
351 crtc->base.id);
352 crtc_state->mode_changed = true;
353 }
354
355 if (crtc->state->enable != crtc_state->enable) {
356 DRM_DEBUG_KMS("[CRTC:%d] enable changed\n",
357 crtc->base.id);
358 crtc_state->mode_changed = true;
359 }
360 }
361
Daniel Vetterf52b69f12014-11-19 18:38:08 +0100362 for (i = 0; i < state->num_connector; i++) {
Daniel Vetter623369e2014-09-16 17:50:47 +0200363 /*
364 * This only sets crtc->mode_changed for routing changes,
365 * drivers must set crtc->mode_changed themselves when connector
366 * properties need to be updated.
367 */
368 ret = update_connector_routing(state, i);
369 if (ret)
370 return ret;
371 }
372
373 /*
374 * After all the routing has been prepared we need to add in any
375 * connector which is itself unchanged, but who's crtc changes it's
376 * configuration. This must be done before calling mode_fixup in case a
377 * crtc only changed its mode but has the same set of connectors.
378 */
379 for (i = 0; i < ncrtcs; i++) {
380 int num_connectors;
381
382 crtc = state->crtcs[i];
383 crtc_state = state->crtc_states[i];
384
385 if (!crtc || !crtc_state->mode_changed)
386 continue;
387
388 DRM_DEBUG_KMS("[CRTC:%d] needs full modeset, enable: %c\n",
389 crtc->base.id,
390 crtc_state->enable ? 'y' : 'n');
391
392 ret = drm_atomic_add_affected_connectors(state, crtc);
393 if (ret != 0)
394 return ret;
395
396 num_connectors = drm_atomic_connectors_for_crtc(state,
397 crtc);
398
399 if (crtc_state->enable != !!num_connectors) {
400 DRM_DEBUG_KMS("[CRTC:%d] enabled/connectors mismatch\n",
401 crtc->base.id);
402
403 return -EINVAL;
404 }
405 }
406
407 return mode_fixup(state);
408}
409
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100410/**
411 * drm_atomic_helper_check - validate state object
412 * @dev: DRM device
413 * @state: the driver state object
414 *
415 * Check the state object to see if the requested state is physically possible.
416 * Only crtcs and planes have check callbacks, so for any additional (global)
417 * checking that a driver needs it can simply wrap that around this function.
418 * Drivers without such needs can directly use this as their ->atomic_check()
419 * callback.
420 *
421 * RETURNS
422 * Zero for success or -errno
423 */
424int drm_atomic_helper_check(struct drm_device *dev,
425 struct drm_atomic_state *state)
426{
427 int nplanes = dev->mode_config.num_total_plane;
428 int ncrtcs = dev->mode_config.num_crtc;
429 int i, ret = 0;
430
431 for (i = 0; i < nplanes; i++) {
432 struct drm_plane_helper_funcs *funcs;
433 struct drm_plane *plane = state->planes[i];
434 struct drm_plane_state *plane_state = state->plane_states[i];
435
436 if (!plane)
437 continue;
438
439 funcs = plane->helper_private;
440
441 drm_atomic_helper_plane_changed(state, plane_state, plane);
442
443 if (!funcs || !funcs->atomic_check)
444 continue;
445
446 ret = funcs->atomic_check(plane, plane_state);
447 if (ret) {
448 DRM_DEBUG_KMS("[PLANE:%d] atomic check failed\n",
449 plane->base.id);
450 return ret;
451 }
452 }
453
454 for (i = 0; i < ncrtcs; i++) {
455 struct drm_crtc_helper_funcs *funcs;
456 struct drm_crtc *crtc = state->crtcs[i];
457
458 if (!crtc)
459 continue;
460
461 funcs = crtc->helper_private;
462
463 if (!funcs || !funcs->atomic_check)
464 continue;
465
466 ret = funcs->atomic_check(crtc, state->crtc_states[i]);
467 if (ret) {
468 DRM_DEBUG_KMS("[CRTC:%d] atomic check failed\n",
469 crtc->base.id);
470 return ret;
471 }
472 }
473
Rob Clark934ce1c2014-11-19 16:41:33 -0500474 ret = drm_atomic_helper_check_modeset(dev, state);
475 if (ret)
476 return ret;
477
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100478 return ret;
479}
480EXPORT_SYMBOL(drm_atomic_helper_check);
481
Daniel Vetter623369e2014-09-16 17:50:47 +0200482static void
483disable_outputs(struct drm_device *dev, struct drm_atomic_state *old_state)
484{
485 int ncrtcs = old_state->dev->mode_config.num_crtc;
Daniel Vetter623369e2014-09-16 17:50:47 +0200486 int i;
487
Daniel Vetterf52b69f12014-11-19 18:38:08 +0100488 for (i = 0; i < old_state->num_connector; i++) {
Daniel Vetter623369e2014-09-16 17:50:47 +0200489 struct drm_connector_state *old_conn_state;
490 struct drm_connector *connector;
491 struct drm_encoder_helper_funcs *funcs;
492 struct drm_encoder *encoder;
493
494 old_conn_state = old_state->connector_states[i];
495 connector = old_state->connectors[i];
496
497 /* Shut down everything that's in the changeset and currently
498 * still on. So need to check the old, saved state. */
499 if (!old_conn_state || !old_conn_state->crtc)
500 continue;
501
Rob Clark46df9ad2014-11-20 15:40:36 -0500502 encoder = old_conn_state->best_encoder;
Daniel Vetter623369e2014-09-16 17:50:47 +0200503
Rob Clark46df9ad2014-11-20 15:40:36 -0500504 /* We shouldn't get this far if we didn't previously have
505 * an encoder.. but WARN_ON() rather than explode.
506 */
507 if (WARN_ON(!encoder))
Daniel Vetter623369e2014-09-16 17:50:47 +0200508 continue;
509
510 funcs = encoder->helper_private;
511
512 /*
513 * Each encoder has at most one connector (since we always steal
514 * it away), so we won't call call disable hooks twice.
515 */
516 if (encoder->bridge)
517 encoder->bridge->funcs->disable(encoder->bridge);
518
519 /* Right function depends upon target state. */
520 if (connector->state->crtc)
521 funcs->prepare(encoder);
522 else if (funcs->disable)
523 funcs->disable(encoder);
524 else
525 funcs->dpms(encoder, DRM_MODE_DPMS_OFF);
526
527 if (encoder->bridge)
528 encoder->bridge->funcs->post_disable(encoder->bridge);
529 }
530
531 for (i = 0; i < ncrtcs; i++) {
532 struct drm_crtc_helper_funcs *funcs;
533 struct drm_crtc *crtc;
534
535 crtc = old_state->crtcs[i];
536
537 /* Shut down everything that needs a full modeset. */
538 if (!crtc || !crtc->state->mode_changed)
539 continue;
540
541 funcs = crtc->helper_private;
542
543 /* Right function depends upon target state. */
544 if (crtc->state->enable)
545 funcs->prepare(crtc);
546 else if (funcs->disable)
547 funcs->disable(crtc);
548 else
549 funcs->dpms(crtc, DRM_MODE_DPMS_OFF);
550 }
551}
552
553static void
554set_routing_links(struct drm_device *dev, struct drm_atomic_state *old_state)
555{
Daniel Vetter623369e2014-09-16 17:50:47 +0200556 int ncrtcs = old_state->dev->mode_config.num_crtc;
557 int i;
558
559 /* clear out existing links */
Daniel Vetterf52b69f12014-11-19 18:38:08 +0100560 for (i = 0; i < old_state->num_connector; i++) {
Daniel Vetter623369e2014-09-16 17:50:47 +0200561 struct drm_connector *connector;
562
563 connector = old_state->connectors[i];
564
565 if (!connector || !connector->encoder)
566 continue;
567
568 WARN_ON(!connector->encoder->crtc);
569
570 connector->encoder->crtc = NULL;
571 connector->encoder = NULL;
572 }
573
574 /* set new links */
Daniel Vetterf52b69f12014-11-19 18:38:08 +0100575 for (i = 0; i < old_state->num_connector; i++) {
Daniel Vetter623369e2014-09-16 17:50:47 +0200576 struct drm_connector *connector;
577
578 connector = old_state->connectors[i];
579
580 if (!connector || !connector->state->crtc)
581 continue;
582
583 if (WARN_ON(!connector->state->best_encoder))
584 continue;
585
586 connector->encoder = connector->state->best_encoder;
587 connector->encoder->crtc = connector->state->crtc;
588 }
589
590 /* set legacy state in the crtc structure */
591 for (i = 0; i < ncrtcs; i++) {
592 struct drm_crtc *crtc;
593
594 crtc = old_state->crtcs[i];
595
596 if (!crtc)
597 continue;
598
599 crtc->mode = crtc->state->mode;
600 crtc->enabled = crtc->state->enable;
601 crtc->x = crtc->primary->state->src_x >> 16;
602 crtc->y = crtc->primary->state->src_y >> 16;
603 }
604}
605
606static void
607crtc_set_mode(struct drm_device *dev, struct drm_atomic_state *old_state)
608{
609 int ncrtcs = old_state->dev->mode_config.num_crtc;
Daniel Vetter623369e2014-09-16 17:50:47 +0200610 int i;
611
612 for (i = 0; i < ncrtcs; i++) {
613 struct drm_crtc_helper_funcs *funcs;
614 struct drm_crtc *crtc;
615
616 crtc = old_state->crtcs[i];
617
618 if (!crtc || !crtc->state->mode_changed)
619 continue;
620
621 funcs = crtc->helper_private;
622
623 if (crtc->state->enable)
624 funcs->mode_set_nofb(crtc);
625 }
626
Daniel Vetterf52b69f12014-11-19 18:38:08 +0100627 for (i = 0; i < old_state->num_connector; i++) {
Daniel Vetter623369e2014-09-16 17:50:47 +0200628 struct drm_connector *connector;
629 struct drm_crtc_state *new_crtc_state;
630 struct drm_encoder_helper_funcs *funcs;
631 struct drm_encoder *encoder;
632 struct drm_display_mode *mode, *adjusted_mode;
633
634 connector = old_state->connectors[i];
635
636 if (!connector || !connector->state->best_encoder)
637 continue;
638
639 encoder = connector->state->best_encoder;
640 funcs = encoder->helper_private;
641 new_crtc_state = connector->state->crtc->state;
642 mode = &new_crtc_state->mode;
643 adjusted_mode = &new_crtc_state->adjusted_mode;
644
645 /*
646 * Each encoder has at most one connector (since we always steal
647 * it away), so we won't call call mode_set hooks twice.
648 */
649 funcs->mode_set(encoder, mode, adjusted_mode);
650
651 if (encoder->bridge && encoder->bridge->funcs->mode_set)
652 encoder->bridge->funcs->mode_set(encoder->bridge,
653 mode, adjusted_mode);
654 }
655}
656
657/**
658 * drm_atomic_helper_commit_pre_planes - modeset commit before plane updates
659 * @dev: DRM device
660 * @state: atomic state
661 *
662 * This function commits the modeset changes that need to be committed before
663 * updating planes. It shuts down all the outputs that need to be shut down and
664 * prepares them (if required) with the new mode.
665 */
666void drm_atomic_helper_commit_pre_planes(struct drm_device *dev,
667 struct drm_atomic_state *state)
668{
669 disable_outputs(dev, state);
670 set_routing_links(dev, state);
671 crtc_set_mode(dev, state);
672}
673EXPORT_SYMBOL(drm_atomic_helper_commit_pre_planes);
674
675/**
676 * drm_atomic_helper_commit_post_planes - modeset commit after plane updates
677 * @dev: DRM device
678 * @old_state: atomic state object with old state structures
679 *
680 * This function commits the modeset changes that need to be committed after
681 * updating planes: It enables all the outputs with the new configuration which
682 * had to be turned off for the update.
683 */
684void drm_atomic_helper_commit_post_planes(struct drm_device *dev,
685 struct drm_atomic_state *old_state)
686{
687 int ncrtcs = old_state->dev->mode_config.num_crtc;
Daniel Vetter623369e2014-09-16 17:50:47 +0200688 int i;
689
690 for (i = 0; i < ncrtcs; i++) {
691 struct drm_crtc_helper_funcs *funcs;
692 struct drm_crtc *crtc;
693
694 crtc = old_state->crtcs[i];
695
696 /* Need to filter out CRTCs where only planes change. */
697 if (!crtc || !crtc->state->mode_changed)
698 continue;
699
700 funcs = crtc->helper_private;
701
702 if (crtc->state->enable)
703 funcs->commit(crtc);
704 }
705
Daniel Vetterf52b69f12014-11-19 18:38:08 +0100706 for (i = 0; i < old_state->num_connector; i++) {
Daniel Vetter623369e2014-09-16 17:50:47 +0200707 struct drm_connector *connector;
708 struct drm_encoder_helper_funcs *funcs;
709 struct drm_encoder *encoder;
710
711 connector = old_state->connectors[i];
712
713 if (!connector || !connector->state->best_encoder)
714 continue;
715
716 encoder = connector->state->best_encoder;
717 funcs = encoder->helper_private;
718
719 /*
720 * Each encoder has at most one connector (since we always steal
721 * it away), so we won't call call enable hooks twice.
722 */
723 if (encoder->bridge)
724 encoder->bridge->funcs->pre_enable(encoder->bridge);
725
726 funcs->commit(encoder);
727
728 if (encoder->bridge)
729 encoder->bridge->funcs->enable(encoder->bridge);
730 }
731}
732EXPORT_SYMBOL(drm_atomic_helper_commit_post_planes);
733
Daniel Vettere2330f02014-10-29 11:34:56 +0100734static void wait_for_fences(struct drm_device *dev,
735 struct drm_atomic_state *state)
736{
737 int nplanes = dev->mode_config.num_total_plane;
738 int i;
739
740 for (i = 0; i < nplanes; i++) {
741 struct drm_plane *plane = state->planes[i];
742
743 if (!plane || !plane->state->fence)
744 continue;
745
746 WARN_ON(!plane->state->fb);
747
748 fence_wait(plane->state->fence, false);
749 fence_put(plane->state->fence);
750 plane->state->fence = NULL;
751 }
752}
753
Daniel Vetterab58e332014-11-24 20:42:42 +0100754static bool framebuffer_changed(struct drm_device *dev,
755 struct drm_atomic_state *old_state,
756 struct drm_crtc *crtc)
757{
758 struct drm_plane *plane;
759 struct drm_plane_state *old_plane_state;
760 int nplanes = old_state->dev->mode_config.num_total_plane;
761 int i;
762
763 for (i = 0; i < nplanes; i++) {
764 plane = old_state->planes[i];
765 old_plane_state = old_state->plane_states[i];
766
767 if (!plane)
768 continue;
769
770 if (plane->state->crtc != crtc &&
771 old_plane_state->crtc != crtc)
772 continue;
773
774 if (plane->state->fb != old_plane_state->fb)
775 return true;
776 }
777
778 return false;
779}
780
Rob Clark5ee32292014-11-11 19:38:59 -0500781/**
782 * drm_atomic_helper_wait_for_vblanks - wait for vblank on crtcs
783 * @dev: DRM device
784 * @old_state: atomic state object with old state structures
785 *
786 * Helper to, after atomic commit, wait for vblanks on all effected
787 * crtcs (ie. before cleaning up old framebuffers using
Daniel Vetterab58e332014-11-24 20:42:42 +0100788 * drm_atomic_helper_cleanup_planes()). It will only wait on crtcs where the
789 * framebuffers have actually changed to optimize for the legacy cursor and
790 * plane update use-case.
Rob Clark5ee32292014-11-11 19:38:59 -0500791 */
792void
793drm_atomic_helper_wait_for_vblanks(struct drm_device *dev,
794 struct drm_atomic_state *old_state)
Daniel Vetter623369e2014-09-16 17:50:47 +0200795{
796 struct drm_crtc *crtc;
797 struct drm_crtc_state *old_crtc_state;
798 int ncrtcs = old_state->dev->mode_config.num_crtc;
799 int i, ret;
800
801 for (i = 0; i < ncrtcs; i++) {
802 crtc = old_state->crtcs[i];
803 old_crtc_state = old_state->crtc_states[i];
804
805 if (!crtc)
806 continue;
807
808 /* No one cares about the old state, so abuse it for tracking
809 * and store whether we hold a vblank reference (and should do a
810 * vblank wait) in the ->enable boolean. */
811 old_crtc_state->enable = false;
812
813 if (!crtc->state->enable)
814 continue;
815
Daniel Vetterab58e332014-11-24 20:42:42 +0100816 if (!framebuffer_changed(dev, old_state, crtc))
817 continue;
818
Daniel Vetter623369e2014-09-16 17:50:47 +0200819 ret = drm_crtc_vblank_get(crtc);
820 if (ret != 0)
821 continue;
822
823 old_crtc_state->enable = true;
824 old_crtc_state->last_vblank_count = drm_vblank_count(dev, i);
825 }
826
827 for (i = 0; i < ncrtcs; i++) {
828 crtc = old_state->crtcs[i];
829 old_crtc_state = old_state->crtc_states[i];
830
831 if (!crtc || !old_crtc_state->enable)
832 continue;
833
834 ret = wait_event_timeout(dev->vblank[i].queue,
835 old_crtc_state->last_vblank_count !=
836 drm_vblank_count(dev, i),
837 msecs_to_jiffies(50));
838
839 drm_crtc_vblank_put(crtc);
840 }
841}
Rob Clark5ee32292014-11-11 19:38:59 -0500842EXPORT_SYMBOL(drm_atomic_helper_wait_for_vblanks);
Daniel Vetter623369e2014-09-16 17:50:47 +0200843
844/**
845 * drm_atomic_helper_commit - commit validated state object
846 * @dev: DRM device
847 * @state: the driver state object
848 * @async: asynchronous commit
849 *
850 * This function commits a with drm_atomic_helper_check() pre-validated state
851 * object. This can still fail when e.g. the framebuffer reservation fails. For
852 * now this doesn't implement asynchronous commits.
853 *
854 * RETURNS
855 * Zero for success or -errno.
856 */
857int drm_atomic_helper_commit(struct drm_device *dev,
858 struct drm_atomic_state *state,
859 bool async)
860{
861 int ret;
862
863 if (async)
864 return -EBUSY;
865
866 ret = drm_atomic_helper_prepare_planes(dev, state);
867 if (ret)
868 return ret;
869
870 /*
871 * This is the point of no return - everything below never fails except
872 * when the hw goes bonghits. Which means we can commit the new state on
873 * the software side now.
874 */
875
876 drm_atomic_helper_swap_state(dev, state);
877
878 /*
879 * Everything below can be run asynchronously without the need to grab
880 * any modeset locks at all under one conditions: It must be guaranteed
881 * that the asynchronous work has either been cancelled (if the driver
882 * supports it, which at least requires that the framebuffers get
883 * cleaned up with drm_atomic_helper_cleanup_planes()) or completed
884 * before the new state gets committed on the software side with
885 * drm_atomic_helper_swap_state().
886 *
887 * This scheme allows new atomic state updates to be prepared and
888 * checked in parallel to the asynchronous completion of the previous
889 * update. Which is important since compositors need to figure out the
890 * composition of the next frame right after having submitted the
891 * current layout.
892 */
893
Daniel Vettere2330f02014-10-29 11:34:56 +0100894 wait_for_fences(dev, state);
895
Daniel Vetter623369e2014-09-16 17:50:47 +0200896 drm_atomic_helper_commit_pre_planes(dev, state);
897
898 drm_atomic_helper_commit_planes(dev, state);
899
900 drm_atomic_helper_commit_post_planes(dev, state);
901
Rob Clark5ee32292014-11-11 19:38:59 -0500902 drm_atomic_helper_wait_for_vblanks(dev, state);
Daniel Vetter623369e2014-09-16 17:50:47 +0200903
904 drm_atomic_helper_cleanup_planes(dev, state);
905
906 drm_atomic_state_free(state);
907
908 return 0;
909}
910EXPORT_SYMBOL(drm_atomic_helper_commit);
911
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100912/**
Daniel Vettere8c833a2014-07-27 18:30:19 +0200913 * DOC: implementing async commit
914 *
915 * For now the atomic helpers don't support async commit directly. If there is
916 * real need it could be added though, using the dma-buf fence infrastructure
917 * for generic synchronization with outstanding rendering.
918 *
919 * For now drivers have to implement async commit themselves, with the following
920 * sequence being the recommended one:
921 *
922 * 1. Run drm_atomic_helper_prepare_planes() first. This is the only function
923 * which commit needs to call which can fail, so we want to run it first and
924 * synchronously.
925 *
926 * 2. Synchronize with any outstanding asynchronous commit worker threads which
927 * might be affected the new state update. This can be done by either cancelling
928 * or flushing the work items, depending upon whether the driver can deal with
929 * cancelled updates. Note that it is important to ensure that the framebuffer
930 * cleanup is still done when cancelling.
931 *
932 * For sufficient parallelism it is recommended to have a work item per crtc
933 * (for updates which don't touch global state) and a global one. Then we only
934 * need to synchronize with the crtc work items for changed crtcs and the global
935 * work item, which allows nice concurrent updates on disjoint sets of crtcs.
936 *
937 * 3. The software state is updated synchronously with
938 * drm_atomic_helper_swap_state. Doing this under the protection of all modeset
939 * locks means concurrent callers never see inconsistent state. And doing this
940 * while it's guaranteed that no relevant async worker runs means that async
941 * workers do not need grab any locks. Actually they must not grab locks, for
942 * otherwise the work flushing will deadlock.
943 *
944 * 4. Schedule a work item to do all subsequent steps, using the split-out
945 * commit helpers: a) pre-plane commit b) plane commit c) post-plane commit and
946 * then cleaning up the framebuffers after the old framebuffer is no longer
947 * being displayed.
948 */
949
950/**
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100951 * drm_atomic_helper_prepare_planes - prepare plane resources after commit
952 * @dev: DRM device
953 * @state: atomic state object with old state structures
954 *
955 * This function prepares plane state, specifically framebuffers, for the new
956 * configuration. If any failure is encountered this function will call
957 * ->cleanup_fb on any already successfully prepared framebuffer.
958 *
959 * Returns:
960 * 0 on success, negative error code on failure.
961 */
962int drm_atomic_helper_prepare_planes(struct drm_device *dev,
963 struct drm_atomic_state *state)
964{
965 int nplanes = dev->mode_config.num_total_plane;
966 int ret, i;
967
968 for (i = 0; i < nplanes; i++) {
969 struct drm_plane_helper_funcs *funcs;
970 struct drm_plane *plane = state->planes[i];
971 struct drm_framebuffer *fb;
972
973 if (!plane)
974 continue;
975
976 funcs = plane->helper_private;
977
978 fb = state->plane_states[i]->fb;
979
980 if (fb && funcs->prepare_fb) {
981 ret = funcs->prepare_fb(plane, fb);
982 if (ret)
983 goto fail;
984 }
985 }
986
987 return 0;
988
989fail:
990 for (i--; i >= 0; i--) {
991 struct drm_plane_helper_funcs *funcs;
992 struct drm_plane *plane = state->planes[i];
993 struct drm_framebuffer *fb;
994
995 if (!plane)
996 continue;
997
998 funcs = plane->helper_private;
999
1000 fb = state->plane_states[i]->fb;
1001
1002 if (fb && funcs->cleanup_fb)
1003 funcs->cleanup_fb(plane, fb);
1004
1005 }
1006
1007 return ret;
1008}
1009EXPORT_SYMBOL(drm_atomic_helper_prepare_planes);
1010
1011/**
1012 * drm_atomic_helper_commit_planes - commit plane state
1013 * @dev: DRM device
Daniel Vetterb0fcfc82014-11-19 18:38:11 +01001014 * @old_state: atomic state object with old state structures
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001015 *
1016 * This function commits the new plane state using the plane and atomic helper
1017 * functions for planes and crtcs. It assumes that the atomic state has already
1018 * been pushed into the relevant object state pointers, since this step can no
1019 * longer fail.
1020 *
Daniel Vetterb0fcfc82014-11-19 18:38:11 +01001021 * It still requires the global state object @old_state to know which planes and
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001022 * crtcs need to be updated though.
1023 */
1024void drm_atomic_helper_commit_planes(struct drm_device *dev,
Daniel Vetterb0fcfc82014-11-19 18:38:11 +01001025 struct drm_atomic_state *old_state)
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001026{
1027 int nplanes = dev->mode_config.num_total_plane;
1028 int ncrtcs = dev->mode_config.num_crtc;
1029 int i;
1030
1031 for (i = 0; i < ncrtcs; i++) {
1032 struct drm_crtc_helper_funcs *funcs;
Daniel Vetterb0fcfc82014-11-19 18:38:11 +01001033 struct drm_crtc *crtc = old_state->crtcs[i];
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001034
1035 if (!crtc)
1036 continue;
1037
1038 funcs = crtc->helper_private;
1039
1040 if (!funcs || !funcs->atomic_begin)
1041 continue;
1042
1043 funcs->atomic_begin(crtc);
1044 }
1045
1046 for (i = 0; i < nplanes; i++) {
1047 struct drm_plane_helper_funcs *funcs;
Daniel Vetterb0fcfc82014-11-19 18:38:11 +01001048 struct drm_plane *plane = old_state->planes[i];
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001049
1050 if (!plane)
1051 continue;
1052
1053 funcs = plane->helper_private;
1054
1055 if (!funcs || !funcs->atomic_update)
1056 continue;
1057
1058 funcs->atomic_update(plane);
1059 }
1060
1061 for (i = 0; i < ncrtcs; i++) {
1062 struct drm_crtc_helper_funcs *funcs;
Daniel Vetterb0fcfc82014-11-19 18:38:11 +01001063 struct drm_crtc *crtc = old_state->crtcs[i];
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001064
1065 if (!crtc)
1066 continue;
1067
1068 funcs = crtc->helper_private;
1069
1070 if (!funcs || !funcs->atomic_flush)
1071 continue;
1072
1073 funcs->atomic_flush(crtc);
1074 }
1075}
1076EXPORT_SYMBOL(drm_atomic_helper_commit_planes);
1077
1078/**
1079 * drm_atomic_helper_cleanup_planes - cleanup plane resources after commit
1080 * @dev: DRM device
1081 * @old_state: atomic state object with old state structures
1082 *
1083 * This function cleans up plane state, specifically framebuffers, from the old
1084 * configuration. Hence the old configuration must be perserved in @old_state to
1085 * be able to call this function.
1086 *
1087 * This function must also be called on the new state when the atomic update
1088 * fails at any point after calling drm_atomic_helper_prepare_planes().
1089 */
1090void drm_atomic_helper_cleanup_planes(struct drm_device *dev,
1091 struct drm_atomic_state *old_state)
1092{
1093 int nplanes = dev->mode_config.num_total_plane;
1094 int i;
1095
1096 for (i = 0; i < nplanes; i++) {
1097 struct drm_plane_helper_funcs *funcs;
1098 struct drm_plane *plane = old_state->planes[i];
1099 struct drm_framebuffer *old_fb;
1100
1101 if (!plane)
1102 continue;
1103
1104 funcs = plane->helper_private;
1105
1106 old_fb = old_state->plane_states[i]->fb;
1107
1108 if (old_fb && funcs->cleanup_fb)
1109 funcs->cleanup_fb(plane, old_fb);
1110 }
1111}
1112EXPORT_SYMBOL(drm_atomic_helper_cleanup_planes);
1113
1114/**
1115 * drm_atomic_helper_swap_state - store atomic state into current sw state
1116 * @dev: DRM device
1117 * @state: atomic state
1118 *
1119 * This function stores the atomic state into the current state pointers in all
1120 * driver objects. It should be called after all failing steps have been done
1121 * and succeeded, but before the actual hardware state is committed.
1122 *
1123 * For cleanup and error recovery the current state for all changed objects will
1124 * be swaped into @state.
1125 *
1126 * With that sequence it fits perfectly into the plane prepare/cleanup sequence:
1127 *
1128 * 1. Call drm_atomic_helper_prepare_planes() with the staged atomic state.
1129 *
1130 * 2. Do any other steps that might fail.
1131 *
1132 * 3. Put the staged state into the current state pointers with this function.
1133 *
1134 * 4. Actually commit the hardware state.
1135 *
1136 * 5. Call drm_atomic_helper_cleanup_planes with @state, which since step 3
1137 * contains the old state. Also do any other cleanup required with that state.
1138 */
1139void drm_atomic_helper_swap_state(struct drm_device *dev,
1140 struct drm_atomic_state *state)
1141{
1142 int i;
1143
1144 for (i = 0; i < dev->mode_config.num_connector; i++) {
1145 struct drm_connector *connector = state->connectors[i];
1146
1147 if (!connector)
1148 continue;
1149
1150 connector->state->state = state;
1151 swap(state->connector_states[i], connector->state);
1152 connector->state->state = NULL;
1153 }
1154
1155 for (i = 0; i < dev->mode_config.num_crtc; i++) {
1156 struct drm_crtc *crtc = state->crtcs[i];
1157
1158 if (!crtc)
1159 continue;
1160
1161 crtc->state->state = state;
1162 swap(state->crtc_states[i], crtc->state);
1163 crtc->state->state = NULL;
1164 }
1165
1166 for (i = 0; i < dev->mode_config.num_total_plane; i++) {
1167 struct drm_plane *plane = state->planes[i];
1168
1169 if (!plane)
1170 continue;
1171
1172 plane->state->state = state;
1173 swap(state->plane_states[i], plane->state);
1174 plane->state->state = NULL;
1175 }
1176}
1177EXPORT_SYMBOL(drm_atomic_helper_swap_state);
Daniel Vetter042652e2014-07-27 13:46:52 +02001178
1179/**
1180 * drm_atomic_helper_update_plane - Helper for primary plane update using atomic
1181 * @plane: plane object to update
1182 * @crtc: owning CRTC of owning plane
1183 * @fb: framebuffer to flip onto plane
1184 * @crtc_x: x offset of primary plane on crtc
1185 * @crtc_y: y offset of primary plane on crtc
1186 * @crtc_w: width of primary plane rectangle on crtc
1187 * @crtc_h: height of primary plane rectangle on crtc
1188 * @src_x: x offset of @fb for panning
1189 * @src_y: y offset of @fb for panning
1190 * @src_w: width of source rectangle in @fb
1191 * @src_h: height of source rectangle in @fb
1192 *
1193 * Provides a default plane update handler using the atomic driver interface.
1194 *
1195 * RETURNS:
1196 * Zero on success, error code on failure
1197 */
1198int drm_atomic_helper_update_plane(struct drm_plane *plane,
1199 struct drm_crtc *crtc,
1200 struct drm_framebuffer *fb,
1201 int crtc_x, int crtc_y,
1202 unsigned int crtc_w, unsigned int crtc_h,
1203 uint32_t src_x, uint32_t src_y,
1204 uint32_t src_w, uint32_t src_h)
1205{
1206 struct drm_atomic_state *state;
1207 struct drm_plane_state *plane_state;
1208 int ret = 0;
1209
1210 state = drm_atomic_state_alloc(plane->dev);
1211 if (!state)
1212 return -ENOMEM;
1213
1214 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
1215retry:
1216 plane_state = drm_atomic_get_plane_state(state, plane);
1217 if (IS_ERR(plane_state)) {
1218 ret = PTR_ERR(plane_state);
1219 goto fail;
1220 }
1221
1222 ret = drm_atomic_set_crtc_for_plane(plane_state, crtc);
1223 if (ret != 0)
1224 goto fail;
Daniel Vetter321ebf02014-11-04 22:57:27 +01001225 drm_atomic_set_fb_for_plane(plane_state, fb);
Daniel Vetter042652e2014-07-27 13:46:52 +02001226 plane_state->crtc_x = crtc_x;
1227 plane_state->crtc_y = crtc_y;
1228 plane_state->crtc_h = crtc_h;
1229 plane_state->crtc_w = crtc_w;
1230 plane_state->src_x = src_x;
1231 plane_state->src_y = src_y;
1232 plane_state->src_h = src_h;
1233 plane_state->src_w = src_w;
1234
1235 ret = drm_atomic_commit(state);
1236 if (ret != 0)
1237 goto fail;
1238
1239 /* Driver takes ownership of state on successful commit. */
1240 return 0;
1241fail:
1242 if (ret == -EDEADLK)
1243 goto backoff;
1244
1245 drm_atomic_state_free(state);
1246
1247 return ret;
1248backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02001249 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01001250 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02001251
1252 /*
1253 * Someone might have exchanged the framebuffer while we dropped locks
1254 * in the backoff code. We need to fix up the fb refcount tracking the
1255 * core does for us.
1256 */
1257 plane->old_fb = plane->fb;
1258
1259 goto retry;
1260}
1261EXPORT_SYMBOL(drm_atomic_helper_update_plane);
1262
1263/**
1264 * drm_atomic_helper_disable_plane - Helper for primary plane disable using * atomic
1265 * @plane: plane to disable
1266 *
1267 * Provides a default plane disable handler using the atomic driver interface.
1268 *
1269 * RETURNS:
1270 * Zero on success, error code on failure
1271 */
1272int drm_atomic_helper_disable_plane(struct drm_plane *plane)
1273{
1274 struct drm_atomic_state *state;
1275 struct drm_plane_state *plane_state;
1276 int ret = 0;
1277
Jasper St. Pierreaa54e2e2014-11-20 19:59:15 -08001278 /*
1279 * FIXME: Without plane->crtc set we can't get at the implicit legacy
1280 * acquire context. The real fix will be to wire the acquire ctx through
1281 * everywhere we need it, but meanwhile prevent chaos by just skipping
1282 * this noop. The critical case is the cursor ioctls which a) only grab
1283 * crtc/cursor-plane locks (so we need the crtc to get at the right
1284 * acquire context) and b) can try to disable the plane multiple times.
1285 */
1286 if (!plane->crtc)
1287 return 0;
1288
Daniel Vetter042652e2014-07-27 13:46:52 +02001289 state = drm_atomic_state_alloc(plane->dev);
1290 if (!state)
1291 return -ENOMEM;
1292
1293 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(plane->crtc);
1294retry:
1295 plane_state = drm_atomic_get_plane_state(state, plane);
1296 if (IS_ERR(plane_state)) {
1297 ret = PTR_ERR(plane_state);
1298 goto fail;
1299 }
1300
1301 ret = drm_atomic_set_crtc_for_plane(plane_state, NULL);
1302 if (ret != 0)
1303 goto fail;
Daniel Vetter321ebf02014-11-04 22:57:27 +01001304 drm_atomic_set_fb_for_plane(plane_state, NULL);
Daniel Vetter042652e2014-07-27 13:46:52 +02001305 plane_state->crtc_x = 0;
1306 plane_state->crtc_y = 0;
1307 plane_state->crtc_h = 0;
1308 plane_state->crtc_w = 0;
1309 plane_state->src_x = 0;
1310 plane_state->src_y = 0;
1311 plane_state->src_h = 0;
1312 plane_state->src_w = 0;
1313
1314 ret = drm_atomic_commit(state);
1315 if (ret != 0)
1316 goto fail;
1317
1318 /* Driver takes ownership of state on successful commit. */
1319 return 0;
1320fail:
1321 if (ret == -EDEADLK)
1322 goto backoff;
1323
1324 drm_atomic_state_free(state);
1325
1326 return ret;
1327backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02001328 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01001329 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02001330
1331 /*
1332 * Someone might have exchanged the framebuffer while we dropped locks
1333 * in the backoff code. We need to fix up the fb refcount tracking the
1334 * core does for us.
1335 */
1336 plane->old_fb = plane->fb;
1337
1338 goto retry;
1339}
1340EXPORT_SYMBOL(drm_atomic_helper_disable_plane);
1341
1342static int update_output_state(struct drm_atomic_state *state,
1343 struct drm_mode_set *set)
1344{
1345 struct drm_device *dev = set->crtc->dev;
1346 struct drm_connector_state *conn_state;
Daniel Vetter042652e2014-07-27 13:46:52 +02001347 int ncrtcs = state->dev->mode_config.num_crtc;
1348 int ret, i, j;
1349
1350 ret = drm_modeset_lock(&dev->mode_config.connection_mutex,
1351 state->acquire_ctx);
1352 if (ret)
1353 return ret;
1354
1355 /* First grab all affected connector/crtc states. */
1356 for (i = 0; i < set->num_connectors; i++) {
1357 conn_state = drm_atomic_get_connector_state(state,
1358 set->connectors[i]);
1359 if (IS_ERR(conn_state))
1360 return PTR_ERR(conn_state);
1361 }
1362
1363 for (i = 0; i < ncrtcs; i++) {
1364 struct drm_crtc *crtc = state->crtcs[i];
1365
1366 if (!crtc)
1367 continue;
1368
1369 ret = drm_atomic_add_affected_connectors(state, crtc);
1370 if (ret)
1371 return ret;
1372 }
1373
1374 /* Then recompute connector->crtc links and crtc enabling state. */
Daniel Vetterf52b69f12014-11-19 18:38:08 +01001375 for (i = 0; i < state->num_connector; i++) {
Daniel Vetter042652e2014-07-27 13:46:52 +02001376 struct drm_connector *connector;
1377
1378 connector = state->connectors[i];
1379 conn_state = state->connector_states[i];
1380
1381 if (!connector)
1382 continue;
1383
1384 if (conn_state->crtc == set->crtc) {
1385 ret = drm_atomic_set_crtc_for_connector(conn_state,
1386 NULL);
1387 if (ret)
1388 return ret;
1389 }
1390
1391 for (j = 0; j < set->num_connectors; j++) {
1392 if (set->connectors[j] == connector) {
1393 ret = drm_atomic_set_crtc_for_connector(conn_state,
1394 set->crtc);
1395 if (ret)
1396 return ret;
1397 break;
1398 }
1399 }
1400 }
1401
1402 for (i = 0; i < ncrtcs; i++) {
1403 struct drm_crtc *crtc = state->crtcs[i];
1404 struct drm_crtc_state *crtc_state = state->crtc_states[i];
1405
1406 if (!crtc)
1407 continue;
1408
1409 /* Don't update ->enable for the CRTC in the set_config request,
1410 * since a mismatch would indicate a bug in the upper layers.
1411 * The actual modeset code later on will catch any
1412 * inconsistencies here. */
1413 if (crtc == set->crtc)
1414 continue;
1415
1416 crtc_state->enable =
1417 drm_atomic_connectors_for_crtc(state, crtc);
1418 }
1419
1420 return 0;
1421}
1422
1423/**
1424 * drm_atomic_helper_set_config - set a new config from userspace
1425 * @set: mode set configuration
1426 *
1427 * Provides a default crtc set_config handler using the atomic driver interface.
1428 *
1429 * Returns:
1430 * Returns 0 on success, negative errno numbers on failure.
1431 */
1432int drm_atomic_helper_set_config(struct drm_mode_set *set)
1433{
1434 struct drm_atomic_state *state;
1435 struct drm_crtc *crtc = set->crtc;
1436 struct drm_crtc_state *crtc_state;
1437 struct drm_plane_state *primary_state;
1438 int ret = 0;
1439
1440 state = drm_atomic_state_alloc(crtc->dev);
1441 if (!state)
1442 return -ENOMEM;
1443
1444 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
1445retry:
1446 crtc_state = drm_atomic_get_crtc_state(state, crtc);
1447 if (IS_ERR(crtc_state)) {
1448 ret = PTR_ERR(crtc_state);
1449 goto fail;
1450 }
1451
1452 if (!set->mode) {
1453 WARN_ON(set->fb);
1454 WARN_ON(set->num_connectors);
1455
1456 crtc_state->enable = false;
1457 goto commit;
1458 }
1459
1460 WARN_ON(!set->fb);
1461 WARN_ON(!set->num_connectors);
1462
1463 crtc_state->enable = true;
1464 drm_mode_copy(&crtc_state->mode, set->mode);
1465
1466 primary_state = drm_atomic_get_plane_state(state, crtc->primary);
1467 if (IS_ERR(primary_state)) {
1468 ret = PTR_ERR(primary_state);
1469 goto fail;
1470 }
1471
1472 ret = drm_atomic_set_crtc_for_plane(primary_state, crtc);
1473 if (ret != 0)
1474 goto fail;
Daniel Vetter321ebf02014-11-04 22:57:27 +01001475 drm_atomic_set_fb_for_plane(primary_state, set->fb);
Daniel Vetter042652e2014-07-27 13:46:52 +02001476 primary_state->crtc_x = 0;
1477 primary_state->crtc_y = 0;
1478 primary_state->crtc_h = set->mode->vdisplay;
1479 primary_state->crtc_w = set->mode->hdisplay;
1480 primary_state->src_x = set->x << 16;
1481 primary_state->src_y = set->y << 16;
1482 primary_state->src_h = set->mode->vdisplay << 16;
1483 primary_state->src_w = set->mode->hdisplay << 16;
1484
1485commit:
1486 ret = update_output_state(state, set);
1487 if (ret)
1488 goto fail;
1489
1490 ret = drm_atomic_commit(state);
1491 if (ret != 0)
1492 goto fail;
1493
1494 /* Driver takes ownership of state on successful commit. */
1495 return 0;
1496fail:
1497 if (ret == -EDEADLK)
1498 goto backoff;
1499
1500 drm_atomic_state_free(state);
1501
1502 return ret;
1503backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02001504 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01001505 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02001506
1507 /*
1508 * Someone might have exchanged the framebuffer while we dropped locks
1509 * in the backoff code. We need to fix up the fb refcount tracking the
1510 * core does for us.
1511 */
1512 crtc->primary->old_fb = crtc->primary->fb;
1513
1514 goto retry;
1515}
1516EXPORT_SYMBOL(drm_atomic_helper_set_config);
1517
1518/**
1519 * drm_atomic_helper_crtc_set_property - helper for crtc prorties
1520 * @crtc: DRM crtc
1521 * @property: DRM property
1522 * @val: value of property
1523 *
1524 * Provides a default plane disablle handler using the atomic driver interface.
1525 *
1526 * RETURNS:
1527 * Zero on success, error code on failure
1528 */
1529int
1530drm_atomic_helper_crtc_set_property(struct drm_crtc *crtc,
1531 struct drm_property *property,
1532 uint64_t val)
1533{
1534 struct drm_atomic_state *state;
1535 struct drm_crtc_state *crtc_state;
1536 int ret = 0;
1537
1538 state = drm_atomic_state_alloc(crtc->dev);
1539 if (!state)
1540 return -ENOMEM;
1541
1542 /* ->set_property is always called with all locks held. */
1543 state->acquire_ctx = crtc->dev->mode_config.acquire_ctx;
1544retry:
1545 crtc_state = drm_atomic_get_crtc_state(state, crtc);
1546 if (IS_ERR(crtc_state)) {
1547 ret = PTR_ERR(crtc_state);
1548 goto fail;
1549 }
1550
1551 ret = crtc->funcs->atomic_set_property(crtc, crtc_state,
1552 property, val);
1553 if (ret)
1554 goto fail;
1555
1556 ret = drm_atomic_commit(state);
1557 if (ret != 0)
1558 goto fail;
1559
1560 /* Driver takes ownership of state on successful commit. */
1561 return 0;
1562fail:
1563 if (ret == -EDEADLK)
1564 goto backoff;
1565
1566 drm_atomic_state_free(state);
1567
1568 return ret;
1569backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02001570 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01001571 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02001572
1573 goto retry;
1574}
1575EXPORT_SYMBOL(drm_atomic_helper_crtc_set_property);
1576
1577/**
1578 * drm_atomic_helper_plane_set_property - helper for plane prorties
1579 * @plane: DRM plane
1580 * @property: DRM property
1581 * @val: value of property
1582 *
1583 * Provides a default plane disable handler using the atomic driver interface.
1584 *
1585 * RETURNS:
1586 * Zero on success, error code on failure
1587 */
1588int
1589drm_atomic_helper_plane_set_property(struct drm_plane *plane,
1590 struct drm_property *property,
1591 uint64_t val)
1592{
1593 struct drm_atomic_state *state;
1594 struct drm_plane_state *plane_state;
1595 int ret = 0;
1596
1597 state = drm_atomic_state_alloc(plane->dev);
1598 if (!state)
1599 return -ENOMEM;
1600
1601 /* ->set_property is always called with all locks held. */
1602 state->acquire_ctx = plane->dev->mode_config.acquire_ctx;
1603retry:
1604 plane_state = drm_atomic_get_plane_state(state, plane);
1605 if (IS_ERR(plane_state)) {
1606 ret = PTR_ERR(plane_state);
1607 goto fail;
1608 }
1609
1610 ret = plane->funcs->atomic_set_property(plane, plane_state,
1611 property, val);
1612 if (ret)
1613 goto fail;
1614
1615 ret = drm_atomic_commit(state);
1616 if (ret != 0)
1617 goto fail;
1618
1619 /* Driver takes ownership of state on successful commit. */
1620 return 0;
1621fail:
1622 if (ret == -EDEADLK)
1623 goto backoff;
1624
1625 drm_atomic_state_free(state);
1626
1627 return ret;
1628backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02001629 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01001630 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02001631
1632 goto retry;
1633}
1634EXPORT_SYMBOL(drm_atomic_helper_plane_set_property);
1635
1636/**
1637 * drm_atomic_helper_connector_set_property - helper for connector prorties
1638 * @connector: DRM connector
1639 * @property: DRM property
1640 * @val: value of property
1641 *
1642 * Provides a default plane disablle handler using the atomic driver interface.
1643 *
1644 * RETURNS:
1645 * Zero on success, error code on failure
1646 */
1647int
1648drm_atomic_helper_connector_set_property(struct drm_connector *connector,
1649 struct drm_property *property,
1650 uint64_t val)
1651{
1652 struct drm_atomic_state *state;
1653 struct drm_connector_state *connector_state;
1654 int ret = 0;
1655
1656 state = drm_atomic_state_alloc(connector->dev);
1657 if (!state)
1658 return -ENOMEM;
1659
1660 /* ->set_property is always called with all locks held. */
1661 state->acquire_ctx = connector->dev->mode_config.acquire_ctx;
1662retry:
1663 connector_state = drm_atomic_get_connector_state(state, connector);
1664 if (IS_ERR(connector_state)) {
1665 ret = PTR_ERR(connector_state);
1666 goto fail;
1667 }
1668
1669 ret = connector->funcs->atomic_set_property(connector, connector_state,
1670 property, val);
1671 if (ret)
1672 goto fail;
1673
1674 ret = drm_atomic_commit(state);
1675 if (ret != 0)
1676 goto fail;
1677
1678 /* Driver takes ownership of state on successful commit. */
1679 return 0;
1680fail:
1681 if (ret == -EDEADLK)
1682 goto backoff;
1683
1684 drm_atomic_state_free(state);
1685
1686 return ret;
1687backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02001688 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01001689 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02001690
1691 goto retry;
1692}
1693EXPORT_SYMBOL(drm_atomic_helper_connector_set_property);
Daniel Vetter8bc0f312014-07-27 18:42:37 +02001694
1695/**
1696 * drm_atomic_helper_page_flip - execute a legacy page flip
1697 * @crtc: DRM crtc
1698 * @fb: DRM framebuffer
1699 * @event: optional DRM event to signal upon completion
1700 * @flags: flip flags for non-vblank sync'ed updates
1701 *
1702 * Provides a default page flip implementation using the atomic driver interface.
1703 *
1704 * Note that for now so called async page flips (i.e. updates which are not
1705 * synchronized to vblank) are not supported, since the atomic interfaces have
1706 * no provisions for this yet.
1707 *
1708 * Returns:
1709 * Returns 0 on success, negative errno numbers on failure.
1710 */
1711int drm_atomic_helper_page_flip(struct drm_crtc *crtc,
1712 struct drm_framebuffer *fb,
1713 struct drm_pending_vblank_event *event,
1714 uint32_t flags)
1715{
1716 struct drm_plane *plane = crtc->primary;
1717 struct drm_atomic_state *state;
1718 struct drm_plane_state *plane_state;
1719 struct drm_crtc_state *crtc_state;
1720 int ret = 0;
1721
1722 if (flags & DRM_MODE_PAGE_FLIP_ASYNC)
1723 return -EINVAL;
1724
1725 state = drm_atomic_state_alloc(plane->dev);
1726 if (!state)
1727 return -ENOMEM;
1728
1729 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
1730retry:
1731 crtc_state = drm_atomic_get_crtc_state(state, crtc);
1732 if (IS_ERR(crtc_state)) {
1733 ret = PTR_ERR(crtc_state);
1734 goto fail;
1735 }
1736 crtc_state->event = event;
1737
1738 plane_state = drm_atomic_get_plane_state(state, plane);
1739 if (IS_ERR(plane_state)) {
1740 ret = PTR_ERR(plane_state);
1741 goto fail;
1742 }
1743
1744 ret = drm_atomic_set_crtc_for_plane(plane_state, crtc);
1745 if (ret != 0)
1746 goto fail;
Daniel Vetter321ebf02014-11-04 22:57:27 +01001747 drm_atomic_set_fb_for_plane(plane_state, fb);
Daniel Vetter8bc0f312014-07-27 18:42:37 +02001748
1749 ret = drm_atomic_async_commit(state);
1750 if (ret != 0)
1751 goto fail;
1752
1753 /* TODO: ->page_flip is the only driver callback where the core
1754 * doesn't update plane->fb. For now patch it up here. */
1755 plane->fb = plane->state->fb;
1756
1757 /* Driver takes ownership of state on successful async commit. */
1758 return 0;
1759fail:
1760 if (ret == -EDEADLK)
1761 goto backoff;
1762
1763 drm_atomic_state_free(state);
1764
1765 return ret;
1766backoff:
Daniel Vetter8bc0f312014-07-27 18:42:37 +02001767 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01001768 drm_atomic_legacy_backoff(state);
Daniel Vetter8bc0f312014-07-27 18:42:37 +02001769
1770 /*
1771 * Someone might have exchanged the framebuffer while we dropped locks
1772 * in the backoff code. We need to fix up the fb refcount tracking the
1773 * core does for us.
1774 */
1775 plane->old_fb = plane->fb;
1776
1777 goto retry;
1778}
1779EXPORT_SYMBOL(drm_atomic_helper_page_flip);
Daniel Vetterd4617012014-11-03 15:56:43 +01001780
1781/**
Daniel Vetter3150c7d2014-11-06 20:53:29 +01001782 * DOC: atomic state reset and initialization
1783 *
1784 * Both the drm core and the atomic helpers assume that there is always the full
1785 * and correct atomic software state for all connectors, CRTCs and planes
1786 * available. Which is a bit a problem on driver load and also after system
1787 * suspend. One way to solve this is to have a hardware state read-out
1788 * infrastructure which reconstructs the full software state (e.g. the i915
1789 * driver).
1790 *
1791 * The simpler solution is to just reset the software state to everything off,
1792 * which is easiest to do by calling drm_mode_config_reset(). To facilitate this
1793 * the atomic helpers provide default reset implementations for all hooks.
1794 */
1795
1796/**
Daniel Vetterd4617012014-11-03 15:56:43 +01001797 * drm_atomic_helper_crtc_reset - default ->reset hook for CRTCs
1798 * @crtc: drm CRTC
1799 *
1800 * Resets the atomic state for @crtc by freeing the state pointer (which might
1801 * be NULL, e.g. at driver load time) and allocating a new empty state object.
1802 */
1803void drm_atomic_helper_crtc_reset(struct drm_crtc *crtc)
1804{
1805 kfree(crtc->state);
1806 crtc->state = kzalloc(sizeof(*crtc->state), GFP_KERNEL);
1807}
1808EXPORT_SYMBOL(drm_atomic_helper_crtc_reset);
1809
1810/**
1811 * drm_atomic_helper_crtc_duplicate_state - default state duplicate hook
1812 * @crtc: drm CRTC
1813 *
1814 * Default CRTC state duplicate hook for drivers which don't have their own
1815 * subclassed CRTC state structure.
1816 */
1817struct drm_crtc_state *
1818drm_atomic_helper_crtc_duplicate_state(struct drm_crtc *crtc)
1819{
1820 struct drm_crtc_state *state;
1821
1822 if (WARN_ON(!crtc->state))
1823 return NULL;
1824
1825 state = kmemdup(crtc->state, sizeof(*crtc->state), GFP_KERNEL);
1826
1827 if (state) {
1828 state->mode_changed = false;
1829 state->planes_changed = false;
1830 state->event = NULL;
1831 }
1832
1833 return state;
1834}
1835EXPORT_SYMBOL(drm_atomic_helper_crtc_duplicate_state);
1836
1837/**
1838 * drm_atomic_helper_crtc_destroy_state - default state destroy hook
1839 * @crtc: drm CRTC
1840 * @state: CRTC state object to release
1841 *
1842 * Default CRTC state destroy hook for drivers which don't have their own
1843 * subclassed CRTC state structure.
1844 */
1845void drm_atomic_helper_crtc_destroy_state(struct drm_crtc *crtc,
1846 struct drm_crtc_state *state)
1847{
1848 kfree(state);
1849}
1850EXPORT_SYMBOL(drm_atomic_helper_crtc_destroy_state);
1851
1852/**
1853 * drm_atomic_helper_plane_reset - default ->reset hook for planes
1854 * @plane: drm plane
1855 *
1856 * Resets the atomic state for @plane by freeing the state pointer (which might
1857 * be NULL, e.g. at driver load time) and allocating a new empty state object.
1858 */
1859void drm_atomic_helper_plane_reset(struct drm_plane *plane)
1860{
Daniel Vetter321ebf02014-11-04 22:57:27 +01001861 if (plane->state && plane->state->fb)
1862 drm_framebuffer_unreference(plane->state->fb);
1863
Daniel Vetterd4617012014-11-03 15:56:43 +01001864 kfree(plane->state);
1865 plane->state = kzalloc(sizeof(*plane->state), GFP_KERNEL);
1866}
1867EXPORT_SYMBOL(drm_atomic_helper_plane_reset);
1868
1869/**
1870 * drm_atomic_helper_plane_duplicate_state - default state duplicate hook
1871 * @plane: drm plane
1872 *
1873 * Default plane state duplicate hook for drivers which don't have their own
1874 * subclassed plane state structure.
1875 */
1876struct drm_plane_state *
1877drm_atomic_helper_plane_duplicate_state(struct drm_plane *plane)
1878{
Daniel Vetter321ebf02014-11-04 22:57:27 +01001879 struct drm_plane_state *state;
1880
Daniel Vetterd4617012014-11-03 15:56:43 +01001881 if (WARN_ON(!plane->state))
1882 return NULL;
1883
Daniel Vetter321ebf02014-11-04 22:57:27 +01001884 state = kmemdup(plane->state, sizeof(*plane->state), GFP_KERNEL);
1885
1886 if (state && state->fb)
1887 drm_framebuffer_reference(state->fb);
1888
1889 return state;
Daniel Vetterd4617012014-11-03 15:56:43 +01001890}
1891EXPORT_SYMBOL(drm_atomic_helper_plane_duplicate_state);
1892
1893/**
1894 * drm_atomic_helper_plane_destroy_state - default state destroy hook
1895 * @plane: drm plane
1896 * @state: plane state object to release
1897 *
1898 * Default plane state destroy hook for drivers which don't have their own
1899 * subclassed plane state structure.
1900 */
1901void drm_atomic_helper_plane_destroy_state(struct drm_plane *plane,
Daniel Vetter321ebf02014-11-04 22:57:27 +01001902 struct drm_plane_state *state)
Daniel Vetterd4617012014-11-03 15:56:43 +01001903{
Daniel Vetter321ebf02014-11-04 22:57:27 +01001904 if (state->fb)
1905 drm_framebuffer_unreference(state->fb);
1906
Daniel Vetterd4617012014-11-03 15:56:43 +01001907 kfree(state);
1908}
1909EXPORT_SYMBOL(drm_atomic_helper_plane_destroy_state);
1910
1911/**
1912 * drm_atomic_helper_connector_reset - default ->reset hook for connectors
1913 * @connector: drm connector
1914 *
1915 * Resets the atomic state for @connector by freeing the state pointer (which
1916 * might be NULL, e.g. at driver load time) and allocating a new empty state
1917 * object.
1918 */
1919void drm_atomic_helper_connector_reset(struct drm_connector *connector)
1920{
1921 kfree(connector->state);
1922 connector->state = kzalloc(sizeof(*connector->state), GFP_KERNEL);
1923}
1924EXPORT_SYMBOL(drm_atomic_helper_connector_reset);
1925
1926/**
1927 * drm_atomic_helper_connector_duplicate_state - default state duplicate hook
1928 * @connector: drm connector
1929 *
1930 * Default connector state duplicate hook for drivers which don't have their own
1931 * subclassed connector state structure.
1932 */
1933struct drm_connector_state *
1934drm_atomic_helper_connector_duplicate_state(struct drm_connector *connector)
1935{
1936 if (WARN_ON(!connector->state))
1937 return NULL;
1938
1939 return kmemdup(connector->state, sizeof(*connector->state), GFP_KERNEL);
1940}
1941EXPORT_SYMBOL(drm_atomic_helper_connector_duplicate_state);
1942
1943/**
1944 * drm_atomic_helper_connector_destroy_state - default state destroy hook
1945 * @connector: drm connector
1946 * @state: connector state object to release
1947 *
1948 * Default connector state destroy hook for drivers which don't have their own
1949 * subclassed connector state structure.
1950 */
1951void drm_atomic_helper_connector_destroy_state(struct drm_connector *connector,
1952 struct drm_connector_state *state)
1953{
1954 kfree(state);
1955}
1956EXPORT_SYMBOL(drm_atomic_helper_connector_destroy_state);