blob: 9dcc7280e5720255baed2786ab7d8fc11554c845 [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{
Ville Syrjäläb5ceff22015-03-10 14:35:20 +0200154 const struct drm_connector_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200155 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;
Daniel Vetter3b8a684b2015-08-03 17:24:08 +0200199
200 if (funcs->atomic_best_encoder)
201 new_encoder = funcs->atomic_best_encoder(connector,
202 connector_state);
203 else
204 new_encoder = funcs->best_encoder(connector);
Daniel Vetter623369e2014-09-16 17:50:47 +0200205
206 if (!new_encoder) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100207 DRM_DEBUG_ATOMIC("No suitable encoder found for [CONNECTOR:%d:%s]\n",
208 connector->base.id,
209 connector->name);
Daniel Vetter623369e2014-09-16 17:50:47 +0200210 return -EINVAL;
211 }
212
213 if (new_encoder == connector_state->best_encoder) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100214 DRM_DEBUG_ATOMIC("[CONNECTOR:%d:%s] keeps [ENCODER:%d:%s], now on [CRTC:%d]\n",
215 connector->base.id,
216 connector->name,
217 new_encoder->base.id,
218 new_encoder->name,
219 connector_state->crtc->base.id);
Daniel Vetter623369e2014-09-16 17:50:47 +0200220
221 return 0;
222 }
223
224 encoder_crtc = get_current_crtc_for_encoder(state->dev,
225 new_encoder);
226
227 if (encoder_crtc) {
228 ret = steal_encoder(state, new_encoder, encoder_crtc);
229 if (ret) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100230 DRM_DEBUG_ATOMIC("Encoder stealing failed for [CONNECTOR:%d:%s]\n",
231 connector->base.id,
232 connector->name);
Daniel Vetter623369e2014-09-16 17:50:47 +0200233 return ret;
234 }
235 }
236
Daniel Vetter6ea76f3c2015-08-03 17:24:11 +0200237 if (WARN_ON(!connector_state->crtc))
238 return -EINVAL;
Daniel Vetter623369e2014-09-16 17:50:47 +0200239
Daniel Vetter6ea76f3c2015-08-03 17:24:11 +0200240 connector_state->best_encoder = new_encoder;
241 idx = drm_crtc_index(connector_state->crtc);
242
243 crtc_state = state->crtc_states[idx];
244 crtc_state->mode_changed = true;
Daniel Vetter623369e2014-09-16 17:50:47 +0200245
Daniel Vetter17a38d92015-02-22 12:24:16 +0100246 DRM_DEBUG_ATOMIC("[CONNECTOR:%d:%s] using [ENCODER:%d:%s] on [CRTC:%d]\n",
247 connector->base.id,
248 connector->name,
249 new_encoder->base.id,
250 new_encoder->name,
251 connector_state->crtc->base.id);
Daniel Vetter623369e2014-09-16 17:50:47 +0200252
253 return 0;
254}
255
256static int
257mode_fixup(struct drm_atomic_state *state)
258{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300259 struct drm_crtc *crtc;
Daniel Vetter623369e2014-09-16 17:50:47 +0200260 struct drm_crtc_state *crtc_state;
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300261 struct drm_connector *connector;
Daniel Vetter623369e2014-09-16 17:50:47 +0200262 struct drm_connector_state *conn_state;
263 int i;
264 bool ret;
265
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300266 for_each_crtc_in_state(state, crtc, crtc_state, i) {
267 if (!crtc_state->mode_changed)
Daniel Vetter623369e2014-09-16 17:50:47 +0200268 continue;
269
270 drm_mode_copy(&crtc_state->adjusted_mode, &crtc_state->mode);
271 }
272
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300273 for_each_connector_in_state(state, connector, conn_state, i) {
Ville Syrjäläb5ceff22015-03-10 14:35:20 +0200274 const struct drm_encoder_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200275 struct drm_encoder *encoder;
276
Daniel Vetter623369e2014-09-16 17:50:47 +0200277 WARN_ON(!!conn_state->best_encoder != !!conn_state->crtc);
278
279 if (!conn_state->crtc || !conn_state->best_encoder)
280 continue;
281
282 crtc_state =
283 state->crtc_states[drm_crtc_index(conn_state->crtc)];
284
285 /*
286 * Each encoder has at most one connector (since we always steal
287 * it away), so we won't call ->mode_fixup twice.
288 */
289 encoder = conn_state->best_encoder;
290 funcs = encoder->helper_private;
Ander Conselvan de Oliveira840bfe92015-04-21 17:13:18 +0300291 if (!funcs)
292 continue;
Daniel Vetter623369e2014-09-16 17:50:47 +0200293
Archit Taneja862e6862015-05-21 11:03:16 +0530294 ret = drm_bridge_mode_fixup(encoder->bridge, &crtc_state->mode,
295 &crtc_state->adjusted_mode);
296 if (!ret) {
297 DRM_DEBUG_ATOMIC("Bridge fixup failed\n");
298 return -EINVAL;
Daniel Vetter623369e2014-09-16 17:50:47 +0200299 }
300
Thierry Reding4cd4df82014-12-03 16:44:34 +0100301 if (funcs->atomic_check) {
302 ret = funcs->atomic_check(encoder, crtc_state,
303 conn_state);
304 if (ret) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100305 DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] check failed\n",
306 encoder->base.id, encoder->name);
Thierry Reding4cd4df82014-12-03 16:44:34 +0100307 return ret;
308 }
309 } else {
310 ret = funcs->mode_fixup(encoder, &crtc_state->mode,
311 &crtc_state->adjusted_mode);
312 if (!ret) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100313 DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] fixup failed\n",
314 encoder->base.id, encoder->name);
Thierry Reding4cd4df82014-12-03 16:44:34 +0100315 return -EINVAL;
316 }
Daniel Vetter623369e2014-09-16 17:50:47 +0200317 }
318 }
319
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300320 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Ville Syrjäläb5ceff22015-03-10 14:35:20 +0200321 const struct drm_crtc_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200322
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300323 if (!crtc_state->mode_changed)
Daniel Vetter623369e2014-09-16 17:50:47 +0200324 continue;
325
326 funcs = crtc->helper_private;
Ander Conselvan de Oliveira840bfe92015-04-21 17:13:18 +0300327 if (!funcs->mode_fixup)
328 continue;
329
Daniel Vetter623369e2014-09-16 17:50:47 +0200330 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 Vetterd9b13622014-11-26 16:57:41 +0100342/**
John Hunterf98bd3e2015-03-17 15:30:26 +0800343 * drm_atomic_helper_check_modeset - validate state object for modeset changes
Daniel Vetterd9b13622014-11-26 16:57:41 +0100344 * @dev: DRM device
345 * @state: the driver state object
346 *
347 * Check the state object to see if the requested state is physically possible.
348 * This does all the crtc and connector related computations for an atomic
349 * update. It computes and updates crtc_state->mode_changed, adds any additional
350 * connectors needed for full modesets and calls down into ->mode_fixup
351 * functions of the driver backend.
352 *
353 * IMPORTANT:
354 *
355 * Drivers which update ->mode_changed (e.g. in their ->atomic_check hooks if a
356 * plane update can't be done without a full modeset) _must_ call this function
357 * afterwards after that change. It is permitted to call this function multiple
358 * times for the same update, e.g. when the ->atomic_check functions depend upon
359 * the adjusted dotclock for fifo space allocation and watermark computation.
360 *
361 * RETURNS
362 * Zero for success or -errno
363 */
364int
Rob Clark934ce1c2014-11-19 16:41:33 -0500365drm_atomic_helper_check_modeset(struct drm_device *dev,
Daniel Vetter623369e2014-09-16 17:50:47 +0200366 struct drm_atomic_state *state)
367{
Daniel Vetter623369e2014-09-16 17:50:47 +0200368 struct drm_crtc *crtc;
369 struct drm_crtc_state *crtc_state;
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300370 struct drm_connector *connector;
371 struct drm_connector_state *connector_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200372 int i, ret;
373
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300374 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Daniel Vetter623369e2014-09-16 17:50:47 +0200375 if (!drm_mode_equal(&crtc->state->mode, &crtc_state->mode)) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100376 DRM_DEBUG_ATOMIC("[CRTC:%d] mode changed\n",
377 crtc->base.id);
Daniel Vetter623369e2014-09-16 17:50:47 +0200378 crtc_state->mode_changed = true;
379 }
380
381 if (crtc->state->enable != crtc_state->enable) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100382 DRM_DEBUG_ATOMIC("[CRTC:%d] enable changed\n",
383 crtc->base.id);
Daniel Vetter623369e2014-09-16 17:50:47 +0200384 crtc_state->mode_changed = true;
385 }
386 }
387
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300388 for_each_connector_in_state(state, connector, connector_state, i) {
Daniel Vetter623369e2014-09-16 17:50:47 +0200389 /*
390 * This only sets crtc->mode_changed for routing changes,
391 * drivers must set crtc->mode_changed themselves when connector
392 * properties need to be updated.
393 */
394 ret = update_connector_routing(state, i);
395 if (ret)
396 return ret;
397 }
398
399 /*
400 * After all the routing has been prepared we need to add in any
401 * connector which is itself unchanged, but who's crtc changes it's
402 * configuration. This must be done before calling mode_fixup in case a
403 * crtc only changed its mode but has the same set of connectors.
404 */
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300405 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Daniel Vetter623369e2014-09-16 17:50:47 +0200406 int num_connectors;
407
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100408 /*
409 * We must set ->active_changed after walking connectors for
410 * otherwise an update that only changes active would result in
411 * a full modeset because update_connector_routing force that.
412 */
413 if (crtc->state->active != crtc_state->active) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100414 DRM_DEBUG_ATOMIC("[CRTC:%d] active changed\n",
415 crtc->base.id);
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100416 crtc_state->active_changed = true;
417 }
418
Daniel Vetter2465ff62015-06-18 09:58:55 +0200419 if (!drm_atomic_crtc_needs_modeset(crtc_state))
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100420 continue;
421
Daniel Vetter17a38d92015-02-22 12:24:16 +0100422 DRM_DEBUG_ATOMIC("[CRTC:%d] needs all connectors, enable: %c, active: %c\n",
423 crtc->base.id,
424 crtc_state->enable ? 'y' : 'n',
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100425 crtc_state->active ? 'y' : 'n');
Daniel Vetter623369e2014-09-16 17:50:47 +0200426
427 ret = drm_atomic_add_affected_connectors(state, crtc);
428 if (ret != 0)
429 return ret;
430
Maarten Lankhorst57744aa2015-05-19 16:41:03 +0200431 ret = drm_atomic_add_affected_planes(state, crtc);
432 if (ret != 0)
433 return ret;
434
Daniel Vetter623369e2014-09-16 17:50:47 +0200435 num_connectors = drm_atomic_connectors_for_crtc(state,
436 crtc);
437
438 if (crtc_state->enable != !!num_connectors) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100439 DRM_DEBUG_ATOMIC("[CRTC:%d] enabled/connectors mismatch\n",
440 crtc->base.id);
Daniel Vetter623369e2014-09-16 17:50:47 +0200441
442 return -EINVAL;
443 }
444 }
445
446 return mode_fixup(state);
447}
Daniel Vetterd9b13622014-11-26 16:57:41 +0100448EXPORT_SYMBOL(drm_atomic_helper_check_modeset);
Daniel Vetter623369e2014-09-16 17:50:47 +0200449
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100450/**
John Hunterf98bd3e2015-03-17 15:30:26 +0800451 * drm_atomic_helper_check_planes - validate state object for planes changes
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100452 * @dev: DRM device
453 * @state: the driver state object
454 *
455 * Check the state object to see if the requested state is physically possible.
Daniel Vetterd9b13622014-11-26 16:57:41 +0100456 * This does all the plane update related checks using by calling into the
457 * ->atomic_check hooks provided by the driver.
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100458 *
459 * RETURNS
460 * Zero for success or -errno
461 */
Daniel Vetterd9b13622014-11-26 16:57:41 +0100462int
463drm_atomic_helper_check_planes(struct drm_device *dev,
464 struct drm_atomic_state *state)
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100465{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300466 struct drm_crtc *crtc;
467 struct drm_crtc_state *crtc_state;
468 struct drm_plane *plane;
469 struct drm_plane_state *plane_state;
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100470 int i, ret = 0;
471
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300472 for_each_plane_in_state(state, plane, plane_state, i) {
Ville Syrjäläb5ceff22015-03-10 14:35:20 +0200473 const struct drm_plane_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100474
475 funcs = plane->helper_private;
476
477 drm_atomic_helper_plane_changed(state, plane_state, plane);
478
479 if (!funcs || !funcs->atomic_check)
480 continue;
481
482 ret = funcs->atomic_check(plane, plane_state);
483 if (ret) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100484 DRM_DEBUG_ATOMIC("[PLANE:%d] atomic driver check failed\n",
485 plane->base.id);
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100486 return ret;
487 }
488 }
489
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300490 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Ville Syrjäläb5ceff22015-03-10 14:35:20 +0200491 const struct drm_crtc_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100492
493 funcs = crtc->helper_private;
494
495 if (!funcs || !funcs->atomic_check)
496 continue;
497
498 ret = funcs->atomic_check(crtc, state->crtc_states[i]);
499 if (ret) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100500 DRM_DEBUG_ATOMIC("[CRTC:%d] atomic driver check failed\n",
501 crtc->base.id);
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100502 return ret;
503 }
504 }
505
Daniel Vetterd9b13622014-11-26 16:57:41 +0100506 return ret;
507}
508EXPORT_SYMBOL(drm_atomic_helper_check_planes);
509
510/**
511 * drm_atomic_helper_check - validate state object
512 * @dev: DRM device
513 * @state: the driver state object
514 *
515 * Check the state object to see if the requested state is physically possible.
516 * Only crtcs and planes have check callbacks, so for any additional (global)
517 * checking that a driver needs it can simply wrap that around this function.
518 * Drivers without such needs can directly use this as their ->atomic_check()
519 * callback.
520 *
Daniel Vetterb4274fb2014-11-26 17:02:18 +0100521 * This just wraps the two parts of the state checking for planes and modeset
522 * state in the default order: First it calls drm_atomic_helper_check_modeset()
523 * and then drm_atomic_helper_check_planes(). The assumption is that the
524 * ->atomic_check functions depend upon an updated adjusted_mode.clock to
525 * e.g. properly compute watermarks.
526 *
Daniel Vetterd9b13622014-11-26 16:57:41 +0100527 * RETURNS
528 * Zero for success or -errno
529 */
530int drm_atomic_helper_check(struct drm_device *dev,
531 struct drm_atomic_state *state)
532{
533 int ret;
534
Daniel Vetterb4274fb2014-11-26 17:02:18 +0100535 ret = drm_atomic_helper_check_modeset(dev, state);
Daniel Vetterd9b13622014-11-26 16:57:41 +0100536 if (ret)
537 return ret;
538
Daniel Vetterb4274fb2014-11-26 17:02:18 +0100539 ret = drm_atomic_helper_check_planes(dev, state);
Rob Clark934ce1c2014-11-19 16:41:33 -0500540 if (ret)
541 return ret;
542
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100543 return ret;
544}
545EXPORT_SYMBOL(drm_atomic_helper_check);
546
Daniel Vetter623369e2014-09-16 17:50:47 +0200547static void
548disable_outputs(struct drm_device *dev, struct drm_atomic_state *old_state)
549{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300550 struct drm_connector *connector;
551 struct drm_connector_state *old_conn_state;
552 struct drm_crtc *crtc;
553 struct drm_crtc_state *old_crtc_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200554 int i;
555
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300556 for_each_connector_in_state(old_state, connector, old_conn_state, i) {
Ville Syrjäläb5ceff22015-03-10 14:35:20 +0200557 const struct drm_encoder_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200558 struct drm_encoder *encoder;
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100559 struct drm_crtc_state *old_crtc_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200560
Daniel Vetter623369e2014-09-16 17:50:47 +0200561 /* Shut down everything that's in the changeset and currently
562 * still on. So need to check the old, saved state. */
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300563 if (!old_conn_state->crtc)
Daniel Vetter623369e2014-09-16 17:50:47 +0200564 continue;
565
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100566 old_crtc_state = old_state->crtc_states[drm_crtc_index(old_conn_state->crtc)];
567
Daniel Vetter4218a322015-03-26 22:18:40 +0100568 if (!old_crtc_state->active ||
Daniel Vetter2465ff62015-06-18 09:58:55 +0200569 !drm_atomic_crtc_needs_modeset(old_conn_state->crtc->state))
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100570 continue;
571
Rob Clark46df9ad2014-11-20 15:40:36 -0500572 encoder = old_conn_state->best_encoder;
Daniel Vetter623369e2014-09-16 17:50:47 +0200573
Rob Clark46df9ad2014-11-20 15:40:36 -0500574 /* We shouldn't get this far if we didn't previously have
575 * an encoder.. but WARN_ON() rather than explode.
576 */
577 if (WARN_ON(!encoder))
Daniel Vetter623369e2014-09-16 17:50:47 +0200578 continue;
579
580 funcs = encoder->helper_private;
581
Daniel Vetter17a38d92015-02-22 12:24:16 +0100582 DRM_DEBUG_ATOMIC("disabling [ENCODER:%d:%s]\n",
583 encoder->base.id, encoder->name);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100584
Daniel Vetter623369e2014-09-16 17:50:47 +0200585 /*
586 * Each encoder has at most one connector (since we always steal
John Hunterf98bd3e2015-03-17 15:30:26 +0800587 * it away), so we won't call disable hooks twice.
Daniel Vetter623369e2014-09-16 17:50:47 +0200588 */
Archit Taneja862e6862015-05-21 11:03:16 +0530589 drm_bridge_disable(encoder->bridge);
Daniel Vetter623369e2014-09-16 17:50:47 +0200590
591 /* Right function depends upon target state. */
Daniel Vetteree0a89c2015-01-22 16:36:24 +0100592 if (connector->state->crtc && funcs->prepare)
Daniel Vetter623369e2014-09-16 17:50:47 +0200593 funcs->prepare(encoder);
594 else if (funcs->disable)
595 funcs->disable(encoder);
596 else
597 funcs->dpms(encoder, DRM_MODE_DPMS_OFF);
598
Archit Taneja862e6862015-05-21 11:03:16 +0530599 drm_bridge_post_disable(encoder->bridge);
Daniel Vetter623369e2014-09-16 17:50:47 +0200600 }
601
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300602 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Ville Syrjäläb5ceff22015-03-10 14:35:20 +0200603 const struct drm_crtc_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200604
605 /* Shut down everything that needs a full modeset. */
Daniel Vetter2465ff62015-06-18 09:58:55 +0200606 if (!drm_atomic_crtc_needs_modeset(crtc->state))
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100607 continue;
608
609 if (!old_crtc_state->active)
Daniel Vetter623369e2014-09-16 17:50:47 +0200610 continue;
611
612 funcs = crtc->helper_private;
613
Daniel Vetter17a38d92015-02-22 12:24:16 +0100614 DRM_DEBUG_ATOMIC("disabling [CRTC:%d]\n",
615 crtc->base.id);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100616
617
Daniel Vetter623369e2014-09-16 17:50:47 +0200618 /* Right function depends upon target state. */
Daniel Vetteree0a89c2015-01-22 16:36:24 +0100619 if (crtc->state->enable && funcs->prepare)
Daniel Vetter623369e2014-09-16 17:50:47 +0200620 funcs->prepare(crtc);
621 else if (funcs->disable)
622 funcs->disable(crtc);
623 else
624 funcs->dpms(crtc, DRM_MODE_DPMS_OFF);
625 }
626}
627
Daniel Vetter4c18d302015-05-12 15:27:37 +0200628/**
629 * drm_atomic_helper_update_legacy_modeset_state - update legacy modeset state
630 * @dev: DRM device
631 * @old_state: atomic state object with old state structures
632 *
633 * This function updates all the various legacy modeset state pointers in
634 * connectors, encoders and crtcs. It also updates the timestamping constants
635 * used for precise vblank timestamps by calling
636 * drm_calc_timestamping_constants().
637 *
638 * Drivers can use this for building their own atomic commit if they don't have
639 * a pure helper-based modeset implementation.
640 */
641void
642drm_atomic_helper_update_legacy_modeset_state(struct drm_device *dev,
643 struct drm_atomic_state *old_state)
Daniel Vetter623369e2014-09-16 17:50:47 +0200644{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300645 struct drm_connector *connector;
646 struct drm_connector_state *old_conn_state;
647 struct drm_crtc *crtc;
648 struct drm_crtc_state *old_crtc_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200649 int i;
650
651 /* clear out existing links */
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300652 for_each_connector_in_state(old_state, connector, old_conn_state, i) {
653 if (!connector->encoder)
Daniel Vetter623369e2014-09-16 17:50:47 +0200654 continue;
655
656 WARN_ON(!connector->encoder->crtc);
657
658 connector->encoder->crtc = NULL;
659 connector->encoder = NULL;
660 }
661
662 /* set new links */
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300663 for_each_connector_in_state(old_state, connector, old_conn_state, i) {
664 if (!connector->state->crtc)
Daniel Vetter623369e2014-09-16 17:50:47 +0200665 continue;
666
667 if (WARN_ON(!connector->state->best_encoder))
668 continue;
669
670 connector->encoder = connector->state->best_encoder;
671 connector->encoder->crtc = connector->state->crtc;
672 }
673
674 /* set legacy state in the crtc structure */
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300675 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Daniel Vetter623369e2014-09-16 17:50:47 +0200676 crtc->mode = crtc->state->mode;
677 crtc->enabled = crtc->state->enable;
678 crtc->x = crtc->primary->state->src_x >> 16;
679 crtc->y = crtc->primary->state->src_y >> 16;
Daniel Vetter3d51d2d2015-05-12 15:21:06 +0200680
681 if (crtc->state->enable)
682 drm_calc_timestamping_constants(crtc,
683 &crtc->state->adjusted_mode);
Daniel Vetter623369e2014-09-16 17:50:47 +0200684 }
685}
Daniel Vetter4c18d302015-05-12 15:27:37 +0200686EXPORT_SYMBOL(drm_atomic_helper_update_legacy_modeset_state);
Daniel Vetter623369e2014-09-16 17:50:47 +0200687
688static void
689crtc_set_mode(struct drm_device *dev, struct drm_atomic_state *old_state)
690{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300691 struct drm_crtc *crtc;
692 struct drm_crtc_state *old_crtc_state;
693 struct drm_connector *connector;
694 struct drm_connector_state *old_conn_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200695 int i;
696
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300697 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Ville Syrjäläb5ceff22015-03-10 14:35:20 +0200698 const struct drm_crtc_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200699
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300700 if (!crtc->state->mode_changed)
Daniel Vetter623369e2014-09-16 17:50:47 +0200701 continue;
702
703 funcs = crtc->helper_private;
704
Daniel Vetterc982bd92015-02-22 12:24:20 +0100705 if (crtc->state->enable && funcs->mode_set_nofb) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100706 DRM_DEBUG_ATOMIC("modeset on [CRTC:%d]\n",
707 crtc->base.id);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100708
Daniel Vetter623369e2014-09-16 17:50:47 +0200709 funcs->mode_set_nofb(crtc);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100710 }
Daniel Vetter623369e2014-09-16 17:50:47 +0200711 }
712
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300713 for_each_connector_in_state(old_state, connector, old_conn_state, i) {
Ville Syrjäläb5ceff22015-03-10 14:35:20 +0200714 const struct drm_encoder_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200715 struct drm_crtc_state *new_crtc_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200716 struct drm_encoder *encoder;
717 struct drm_display_mode *mode, *adjusted_mode;
718
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300719 if (!connector->state->best_encoder)
Daniel Vetter623369e2014-09-16 17:50:47 +0200720 continue;
721
722 encoder = connector->state->best_encoder;
723 funcs = encoder->helper_private;
724 new_crtc_state = connector->state->crtc->state;
725 mode = &new_crtc_state->mode;
726 adjusted_mode = &new_crtc_state->adjusted_mode;
727
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100728 if (!new_crtc_state->mode_changed)
729 continue;
730
Daniel Vetter17a38d92015-02-22 12:24:16 +0100731 DRM_DEBUG_ATOMIC("modeset on [ENCODER:%d:%s]\n",
732 encoder->base.id, encoder->name);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100733
Daniel Vetter623369e2014-09-16 17:50:47 +0200734 /*
735 * Each encoder has at most one connector (since we always steal
John Hunterf98bd3e2015-03-17 15:30:26 +0800736 * it away), so we won't call mode_set hooks twice.
Daniel Vetter623369e2014-09-16 17:50:47 +0200737 */
Daniel Vetterc982bd92015-02-22 12:24:20 +0100738 if (funcs->mode_set)
739 funcs->mode_set(encoder, mode, adjusted_mode);
Daniel Vetter623369e2014-09-16 17:50:47 +0200740
Archit Taneja862e6862015-05-21 11:03:16 +0530741 drm_bridge_mode_set(encoder->bridge, mode, adjusted_mode);
Daniel Vetter623369e2014-09-16 17:50:47 +0200742 }
743}
744
745/**
Daniel Vetter1af434a2015-02-22 12:24:19 +0100746 * drm_atomic_helper_commit_modeset_disables - modeset commit to disable outputs
Daniel Vetter623369e2014-09-16 17:50:47 +0200747 * @dev: DRM device
Laurent Pincharta072f802015-02-22 12:24:18 +0100748 * @old_state: atomic state object with old state structures
Daniel Vetter623369e2014-09-16 17:50:47 +0200749 *
Daniel Vetter1af434a2015-02-22 12:24:19 +0100750 * This function shuts down all the outputs that need to be shut down and
Daniel Vetter623369e2014-09-16 17:50:47 +0200751 * prepares them (if required) with the new mode.
Daniel Vetter1af434a2015-02-22 12:24:19 +0100752 *
753 * For compatability with legacy crtc helpers this should be called before
754 * drm_atomic_helper_commit_planes(), which is what the default commit function
755 * does. But drivers with different needs can group the modeset commits together
756 * and do the plane commits at the end. This is useful for drivers doing runtime
757 * PM since planes updates then only happen when the CRTC is actually enabled.
Daniel Vetter623369e2014-09-16 17:50:47 +0200758 */
Daniel Vetter1af434a2015-02-22 12:24:19 +0100759void drm_atomic_helper_commit_modeset_disables(struct drm_device *dev,
760 struct drm_atomic_state *old_state)
Daniel Vetter623369e2014-09-16 17:50:47 +0200761{
Laurent Pincharta072f802015-02-22 12:24:18 +0100762 disable_outputs(dev, old_state);
Daniel Vetter4c18d302015-05-12 15:27:37 +0200763
764 drm_atomic_helper_update_legacy_modeset_state(dev, old_state);
765
Laurent Pincharta072f802015-02-22 12:24:18 +0100766 crtc_set_mode(dev, old_state);
Daniel Vetter623369e2014-09-16 17:50:47 +0200767}
Daniel Vetter1af434a2015-02-22 12:24:19 +0100768EXPORT_SYMBOL(drm_atomic_helper_commit_modeset_disables);
Daniel Vetter623369e2014-09-16 17:50:47 +0200769
770/**
Daniel Vetter1af434a2015-02-22 12:24:19 +0100771 * drm_atomic_helper_commit_modeset_enables - modeset commit to enable outputs
Daniel Vetter623369e2014-09-16 17:50:47 +0200772 * @dev: DRM device
773 * @old_state: atomic state object with old state structures
774 *
Daniel Vetter1af434a2015-02-22 12:24:19 +0100775 * This function enables all the outputs with the new configuration which had to
776 * be turned off for the update.
777 *
778 * For compatability with legacy crtc helpers this should be called after
779 * drm_atomic_helper_commit_planes(), which is what the default commit function
780 * does. But drivers with different needs can group the modeset commits together
781 * and do the plane commits at the end. This is useful for drivers doing runtime
782 * PM since planes updates then only happen when the CRTC is actually enabled.
Daniel Vetter623369e2014-09-16 17:50:47 +0200783 */
Daniel Vetter1af434a2015-02-22 12:24:19 +0100784void drm_atomic_helper_commit_modeset_enables(struct drm_device *dev,
785 struct drm_atomic_state *old_state)
Daniel Vetter623369e2014-09-16 17:50:47 +0200786{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300787 struct drm_crtc *crtc;
788 struct drm_crtc_state *old_crtc_state;
789 struct drm_connector *connector;
790 struct drm_connector_state *old_conn_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200791 int i;
792
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300793 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Ville Syrjäläb5ceff22015-03-10 14:35:20 +0200794 const struct drm_crtc_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200795
796 /* Need to filter out CRTCs where only planes change. */
Daniel Vetter2465ff62015-06-18 09:58:55 +0200797 if (!drm_atomic_crtc_needs_modeset(crtc->state))
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100798 continue;
799
800 if (!crtc->state->active)
Daniel Vetter623369e2014-09-16 17:50:47 +0200801 continue;
802
803 funcs = crtc->helper_private;
804
Daniel Vetteree0a89c2015-01-22 16:36:24 +0100805 if (crtc->state->enable) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100806 DRM_DEBUG_ATOMIC("enabling [CRTC:%d]\n",
807 crtc->base.id);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100808
Daniel Vetteree0a89c2015-01-22 16:36:24 +0100809 if (funcs->enable)
810 funcs->enable(crtc);
811 else
812 funcs->commit(crtc);
813 }
Daniel Vetter623369e2014-09-16 17:50:47 +0200814 }
815
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300816 for_each_connector_in_state(old_state, connector, old_conn_state, i) {
Ville Syrjäläb5ceff22015-03-10 14:35:20 +0200817 const struct drm_encoder_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200818 struct drm_encoder *encoder;
819
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300820 if (!connector->state->best_encoder)
Daniel Vetter623369e2014-09-16 17:50:47 +0200821 continue;
822
Daniel Vetter4218a322015-03-26 22:18:40 +0100823 if (!connector->state->crtc->state->active ||
Daniel Vetter2465ff62015-06-18 09:58:55 +0200824 !drm_atomic_crtc_needs_modeset(connector->state->crtc->state))
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100825 continue;
826
Daniel Vetter623369e2014-09-16 17:50:47 +0200827 encoder = connector->state->best_encoder;
828 funcs = encoder->helper_private;
829
Daniel Vetter17a38d92015-02-22 12:24:16 +0100830 DRM_DEBUG_ATOMIC("enabling [ENCODER:%d:%s]\n",
831 encoder->base.id, encoder->name);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100832
Daniel Vetter623369e2014-09-16 17:50:47 +0200833 /*
834 * Each encoder has at most one connector (since we always steal
John Hunterf98bd3e2015-03-17 15:30:26 +0800835 * it away), so we won't call enable hooks twice.
Daniel Vetter623369e2014-09-16 17:50:47 +0200836 */
Archit Taneja862e6862015-05-21 11:03:16 +0530837 drm_bridge_pre_enable(encoder->bridge);
Daniel Vetter623369e2014-09-16 17:50:47 +0200838
Daniel Vetteree0a89c2015-01-22 16:36:24 +0100839 if (funcs->enable)
840 funcs->enable(encoder);
841 else
842 funcs->commit(encoder);
Daniel Vetter623369e2014-09-16 17:50:47 +0200843
Archit Taneja862e6862015-05-21 11:03:16 +0530844 drm_bridge_enable(encoder->bridge);
Daniel Vetter623369e2014-09-16 17:50:47 +0200845 }
846}
Daniel Vetter1af434a2015-02-22 12:24:19 +0100847EXPORT_SYMBOL(drm_atomic_helper_commit_modeset_enables);
Daniel Vetter623369e2014-09-16 17:50:47 +0200848
Daniel Vettere2330f02014-10-29 11:34:56 +0100849static void wait_for_fences(struct drm_device *dev,
850 struct drm_atomic_state *state)
851{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300852 struct drm_plane *plane;
853 struct drm_plane_state *plane_state;
Daniel Vettere2330f02014-10-29 11:34:56 +0100854 int i;
855
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300856 for_each_plane_in_state(state, plane, plane_state, i) {
857 if (!plane->state->fence)
Daniel Vettere2330f02014-10-29 11:34:56 +0100858 continue;
859
860 WARN_ON(!plane->state->fb);
861
862 fence_wait(plane->state->fence, false);
863 fence_put(plane->state->fence);
864 plane->state->fence = NULL;
865 }
866}
867
Daniel Vetterab58e332014-11-24 20:42:42 +0100868static bool framebuffer_changed(struct drm_device *dev,
869 struct drm_atomic_state *old_state,
870 struct drm_crtc *crtc)
871{
872 struct drm_plane *plane;
873 struct drm_plane_state *old_plane_state;
Daniel Vetterab58e332014-11-24 20:42:42 +0100874 int i;
875
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300876 for_each_plane_in_state(old_state, plane, old_plane_state, i) {
Daniel Vetterab58e332014-11-24 20:42:42 +0100877 if (plane->state->crtc != crtc &&
878 old_plane_state->crtc != crtc)
879 continue;
880
881 if (plane->state->fb != old_plane_state->fb)
882 return true;
883 }
884
885 return false;
886}
887
Rob Clark5ee32292014-11-11 19:38:59 -0500888/**
889 * drm_atomic_helper_wait_for_vblanks - wait for vblank on crtcs
890 * @dev: DRM device
891 * @old_state: atomic state object with old state structures
892 *
893 * Helper to, after atomic commit, wait for vblanks on all effected
894 * crtcs (ie. before cleaning up old framebuffers using
Daniel Vetterab58e332014-11-24 20:42:42 +0100895 * drm_atomic_helper_cleanup_planes()). It will only wait on crtcs where the
896 * framebuffers have actually changed to optimize for the legacy cursor and
897 * plane update use-case.
Rob Clark5ee32292014-11-11 19:38:59 -0500898 */
899void
900drm_atomic_helper_wait_for_vblanks(struct drm_device *dev,
901 struct drm_atomic_state *old_state)
Daniel Vetter623369e2014-09-16 17:50:47 +0200902{
903 struct drm_crtc *crtc;
904 struct drm_crtc_state *old_crtc_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200905 int i, ret;
906
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300907 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Daniel Vetter623369e2014-09-16 17:50:47 +0200908 /* No one cares about the old state, so abuse it for tracking
909 * and store whether we hold a vblank reference (and should do a
910 * vblank wait) in the ->enable boolean. */
911 old_crtc_state->enable = false;
912
913 if (!crtc->state->enable)
914 continue;
915
Daniel Vetterf02ad902015-01-22 16:36:23 +0100916 /* Legacy cursor ioctls are completely unsynced, and userspace
917 * relies on that (by doing tons of cursor updates). */
918 if (old_state->legacy_cursor_update)
919 continue;
920
Daniel Vetterab58e332014-11-24 20:42:42 +0100921 if (!framebuffer_changed(dev, old_state, crtc))
922 continue;
923
Daniel Vetter623369e2014-09-16 17:50:47 +0200924 ret = drm_crtc_vblank_get(crtc);
925 if (ret != 0)
926 continue;
927
928 old_crtc_state->enable = true;
929 old_crtc_state->last_vblank_count = drm_vblank_count(dev, i);
930 }
931
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300932 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
933 if (!old_crtc_state->enable)
Daniel Vetter623369e2014-09-16 17:50:47 +0200934 continue;
935
936 ret = wait_event_timeout(dev->vblank[i].queue,
937 old_crtc_state->last_vblank_count !=
938 drm_vblank_count(dev, i),
939 msecs_to_jiffies(50));
940
941 drm_crtc_vblank_put(crtc);
942 }
943}
Rob Clark5ee32292014-11-11 19:38:59 -0500944EXPORT_SYMBOL(drm_atomic_helper_wait_for_vblanks);
Daniel Vetter623369e2014-09-16 17:50:47 +0200945
946/**
947 * drm_atomic_helper_commit - commit validated state object
948 * @dev: DRM device
949 * @state: the driver state object
950 * @async: asynchronous commit
951 *
952 * This function commits a with drm_atomic_helper_check() pre-validated state
953 * object. This can still fail when e.g. the framebuffer reservation fails. For
954 * now this doesn't implement asynchronous commits.
955 *
956 * RETURNS
957 * Zero for success or -errno.
958 */
959int drm_atomic_helper_commit(struct drm_device *dev,
960 struct drm_atomic_state *state,
961 bool async)
962{
963 int ret;
964
965 if (async)
966 return -EBUSY;
967
968 ret = drm_atomic_helper_prepare_planes(dev, state);
969 if (ret)
970 return ret;
971
972 /*
973 * This is the point of no return - everything below never fails except
974 * when the hw goes bonghits. Which means we can commit the new state on
975 * the software side now.
976 */
977
978 drm_atomic_helper_swap_state(dev, state);
979
980 /*
981 * Everything below can be run asynchronously without the need to grab
John Hunterf98bd3e2015-03-17 15:30:26 +0800982 * any modeset locks at all under one condition: It must be guaranteed
Daniel Vetter623369e2014-09-16 17:50:47 +0200983 * that the asynchronous work has either been cancelled (if the driver
984 * supports it, which at least requires that the framebuffers get
985 * cleaned up with drm_atomic_helper_cleanup_planes()) or completed
986 * before the new state gets committed on the software side with
987 * drm_atomic_helper_swap_state().
988 *
989 * This scheme allows new atomic state updates to be prepared and
990 * checked in parallel to the asynchronous completion of the previous
991 * update. Which is important since compositors need to figure out the
992 * composition of the next frame right after having submitted the
993 * current layout.
994 */
995
Daniel Vettere2330f02014-10-29 11:34:56 +0100996 wait_for_fences(dev, state);
997
Daniel Vetter1af434a2015-02-22 12:24:19 +0100998 drm_atomic_helper_commit_modeset_disables(dev, state);
Daniel Vetter623369e2014-09-16 17:50:47 +0200999
1000 drm_atomic_helper_commit_planes(dev, state);
1001
Daniel Vetter1af434a2015-02-22 12:24:19 +01001002 drm_atomic_helper_commit_modeset_enables(dev, state);
Daniel Vetter623369e2014-09-16 17:50:47 +02001003
Rob Clark5ee32292014-11-11 19:38:59 -05001004 drm_atomic_helper_wait_for_vblanks(dev, state);
Daniel Vetter623369e2014-09-16 17:50:47 +02001005
1006 drm_atomic_helper_cleanup_planes(dev, state);
1007
1008 drm_atomic_state_free(state);
1009
1010 return 0;
1011}
1012EXPORT_SYMBOL(drm_atomic_helper_commit);
1013
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001014/**
Daniel Vettere8c833a2014-07-27 18:30:19 +02001015 * DOC: implementing async commit
1016 *
1017 * For now the atomic helpers don't support async commit directly. If there is
1018 * real need it could be added though, using the dma-buf fence infrastructure
1019 * for generic synchronization with outstanding rendering.
1020 *
1021 * For now drivers have to implement async commit themselves, with the following
1022 * sequence being the recommended one:
1023 *
1024 * 1. Run drm_atomic_helper_prepare_planes() first. This is the only function
1025 * which commit needs to call which can fail, so we want to run it first and
1026 * synchronously.
1027 *
1028 * 2. Synchronize with any outstanding asynchronous commit worker threads which
1029 * might be affected the new state update. This can be done by either cancelling
1030 * or flushing the work items, depending upon whether the driver can deal with
1031 * cancelled updates. Note that it is important to ensure that the framebuffer
1032 * cleanup is still done when cancelling.
1033 *
1034 * For sufficient parallelism it is recommended to have a work item per crtc
1035 * (for updates which don't touch global state) and a global one. Then we only
1036 * need to synchronize with the crtc work items for changed crtcs and the global
1037 * work item, which allows nice concurrent updates on disjoint sets of crtcs.
1038 *
1039 * 3. The software state is updated synchronously with
1040 * drm_atomic_helper_swap_state. Doing this under the protection of all modeset
1041 * locks means concurrent callers never see inconsistent state. And doing this
1042 * while it's guaranteed that no relevant async worker runs means that async
1043 * workers do not need grab any locks. Actually they must not grab locks, for
1044 * otherwise the work flushing will deadlock.
1045 *
1046 * 4. Schedule a work item to do all subsequent steps, using the split-out
1047 * commit helpers: a) pre-plane commit b) plane commit c) post-plane commit and
1048 * then cleaning up the framebuffers after the old framebuffer is no longer
1049 * being displayed.
1050 */
1051
1052/**
Daniel Vetter2e3afd42015-02-26 14:17:38 +01001053 * drm_atomic_helper_prepare_planes - prepare plane resources before commit
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001054 * @dev: DRM device
Daniel Vetter2e3afd42015-02-26 14:17:38 +01001055 * @state: atomic state object with new state structures
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001056 *
1057 * This function prepares plane state, specifically framebuffers, for the new
1058 * configuration. If any failure is encountered this function will call
1059 * ->cleanup_fb on any already successfully prepared framebuffer.
1060 *
1061 * Returns:
1062 * 0 on success, negative error code on failure.
1063 */
1064int drm_atomic_helper_prepare_planes(struct drm_device *dev,
1065 struct drm_atomic_state *state)
1066{
1067 int nplanes = dev->mode_config.num_total_plane;
1068 int ret, i;
1069
1070 for (i = 0; i < nplanes; i++) {
Ville Syrjäläb5ceff22015-03-10 14:35:20 +02001071 const struct drm_plane_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001072 struct drm_plane *plane = state->planes[i];
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +00001073 struct drm_plane_state *plane_state = state->plane_states[i];
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001074 struct drm_framebuffer *fb;
1075
1076 if (!plane)
1077 continue;
1078
1079 funcs = plane->helper_private;
1080
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +00001081 fb = plane_state->fb;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001082
1083 if (fb && funcs->prepare_fb) {
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +00001084 ret = funcs->prepare_fb(plane, fb, plane_state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001085 if (ret)
1086 goto fail;
1087 }
1088 }
1089
1090 return 0;
1091
1092fail:
1093 for (i--; i >= 0; i--) {
Ville Syrjäläb5ceff22015-03-10 14:35:20 +02001094 const struct drm_plane_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001095 struct drm_plane *plane = state->planes[i];
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +00001096 struct drm_plane_state *plane_state = state->plane_states[i];
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001097 struct drm_framebuffer *fb;
1098
1099 if (!plane)
1100 continue;
1101
1102 funcs = plane->helper_private;
1103
1104 fb = state->plane_states[i]->fb;
1105
1106 if (fb && funcs->cleanup_fb)
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +00001107 funcs->cleanup_fb(plane, fb, plane_state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001108
1109 }
1110
1111 return ret;
1112}
1113EXPORT_SYMBOL(drm_atomic_helper_prepare_planes);
1114
1115/**
1116 * drm_atomic_helper_commit_planes - commit plane state
1117 * @dev: DRM device
Daniel Vetterb0fcfc82014-11-19 18:38:11 +01001118 * @old_state: atomic state object with old state structures
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001119 *
1120 * This function commits the new plane state using the plane and atomic helper
1121 * functions for planes and crtcs. It assumes that the atomic state has already
1122 * been pushed into the relevant object state pointers, since this step can no
1123 * longer fail.
1124 *
Daniel Vetterb0fcfc82014-11-19 18:38:11 +01001125 * It still requires the global state object @old_state to know which planes and
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001126 * crtcs need to be updated though.
Maarten Lankhorstde28d022015-05-19 16:41:01 +02001127 *
1128 * Note that this function does all plane updates across all CRTCs in one step.
1129 * If the hardware can't support this approach look at
1130 * drm_atomic_helper_commit_planes_on_crtc() instead.
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001131 */
1132void drm_atomic_helper_commit_planes(struct drm_device *dev,
Daniel Vetterb0fcfc82014-11-19 18:38:11 +01001133 struct drm_atomic_state *old_state)
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001134{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001135 struct drm_crtc *crtc;
1136 struct drm_crtc_state *old_crtc_state;
1137 struct drm_plane *plane;
1138 struct drm_plane_state *old_plane_state;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001139 int i;
1140
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001141 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Ville Syrjäläb5ceff22015-03-10 14:35:20 +02001142 const struct drm_crtc_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001143
1144 funcs = crtc->helper_private;
1145
1146 if (!funcs || !funcs->atomic_begin)
1147 continue;
1148
1149 funcs->atomic_begin(crtc);
1150 }
1151
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001152 for_each_plane_in_state(old_state, plane, old_plane_state, i) {
Ville Syrjäläb5ceff22015-03-10 14:35:20 +02001153 const struct drm_plane_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001154
1155 funcs = plane->helper_private;
1156
Thierry Reding3cad4b62014-11-25 13:05:12 +01001157 if (!funcs)
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001158 continue;
1159
Thierry Reding407b8bd2014-11-20 12:05:50 +01001160 /*
1161 * Special-case disabling the plane if drivers support it.
1162 */
1163 if (drm_atomic_plane_disabling(plane, old_plane_state) &&
1164 funcs->atomic_disable)
1165 funcs->atomic_disable(plane, old_plane_state);
Daniel Vetter475d2312015-04-10 16:22:39 +02001166 else if (plane->state->crtc ||
1167 drm_atomic_plane_disabling(plane, old_plane_state))
Thierry Reding407b8bd2014-11-20 12:05:50 +01001168 funcs->atomic_update(plane, old_plane_state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001169 }
1170
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001171 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Ville Syrjäläb5ceff22015-03-10 14:35:20 +02001172 const struct drm_crtc_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001173
1174 funcs = crtc->helper_private;
1175
1176 if (!funcs || !funcs->atomic_flush)
1177 continue;
1178
1179 funcs->atomic_flush(crtc);
1180 }
1181}
1182EXPORT_SYMBOL(drm_atomic_helper_commit_planes);
1183
1184/**
Maarten Lankhorstde28d022015-05-19 16:41:01 +02001185 * drm_atomic_helper_commit_planes_on_crtc - commit plane state for a crtc
1186 * @old_crtc_state: atomic state object with the old crtc state
1187 *
1188 * This function commits the new plane state using the plane and atomic helper
1189 * functions for planes on the specific crtc. It assumes that the atomic state
1190 * has already been pushed into the relevant object state pointers, since this
1191 * step can no longer fail.
1192 *
1193 * This function is useful when plane updates should be done crtc-by-crtc
1194 * instead of one global step like drm_atomic_helper_commit_planes() does.
1195 *
1196 * This function can only be savely used when planes are not allowed to move
1197 * between different CRTCs because this function doesn't handle inter-CRTC
1198 * depencies. Callers need to ensure that either no such depencies exist,
1199 * resolve them through ordering of commit calls or through some other means.
1200 */
1201void
1202drm_atomic_helper_commit_planes_on_crtc(struct drm_crtc_state *old_crtc_state)
1203{
1204 const struct drm_crtc_helper_funcs *crtc_funcs;
1205 struct drm_crtc *crtc = old_crtc_state->crtc;
1206 struct drm_atomic_state *old_state = old_crtc_state->state;
1207 struct drm_plane *plane;
1208 unsigned plane_mask;
1209
1210 plane_mask = old_crtc_state->plane_mask;
1211 plane_mask |= crtc->state->plane_mask;
1212
1213 crtc_funcs = crtc->helper_private;
1214 if (crtc_funcs && crtc_funcs->atomic_begin)
1215 crtc_funcs->atomic_begin(crtc);
1216
1217 drm_for_each_plane_mask(plane, crtc->dev, plane_mask) {
1218 struct drm_plane_state *old_plane_state =
1219 drm_atomic_get_existing_plane_state(old_state, plane);
1220 const struct drm_plane_helper_funcs *plane_funcs;
1221
1222 plane_funcs = plane->helper_private;
1223
1224 if (!old_plane_state || !plane_funcs)
1225 continue;
1226
1227 WARN_ON(plane->state->crtc && plane->state->crtc != crtc);
1228
1229 if (drm_atomic_plane_disabling(plane, old_plane_state) &&
1230 plane_funcs->atomic_disable)
1231 plane_funcs->atomic_disable(plane, old_plane_state);
1232 else if (plane->state->crtc ||
1233 drm_atomic_plane_disabling(plane, old_plane_state))
1234 plane_funcs->atomic_update(plane, old_plane_state);
1235 }
1236
1237 if (crtc_funcs && crtc_funcs->atomic_flush)
1238 crtc_funcs->atomic_flush(crtc);
1239}
1240EXPORT_SYMBOL(drm_atomic_helper_commit_planes_on_crtc);
1241
1242/**
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001243 * drm_atomic_helper_cleanup_planes - cleanup plane resources after commit
1244 * @dev: DRM device
1245 * @old_state: atomic state object with old state structures
1246 *
1247 * This function cleans up plane state, specifically framebuffers, from the old
1248 * configuration. Hence the old configuration must be perserved in @old_state to
1249 * be able to call this function.
1250 *
1251 * This function must also be called on the new state when the atomic update
1252 * fails at any point after calling drm_atomic_helper_prepare_planes().
1253 */
1254void drm_atomic_helper_cleanup_planes(struct drm_device *dev,
1255 struct drm_atomic_state *old_state)
1256{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001257 struct drm_plane *plane;
1258 struct drm_plane_state *plane_state;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001259 int i;
1260
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001261 for_each_plane_in_state(old_state, plane, plane_state, i) {
Ville Syrjäläb5ceff22015-03-10 14:35:20 +02001262 const struct drm_plane_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001263 struct drm_framebuffer *old_fb;
1264
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001265 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
Daniel Vetter3671c582015-05-04 15:40:52 +02001396 if (plane == crtc->cursor)
1397 state->legacy_cursor_update = true;
1398
Daniel Vetter042652e2014-07-27 13:46:52 +02001399 ret = drm_atomic_commit(state);
1400 if (ret != 0)
1401 goto fail;
1402
1403 /* 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;
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001513 struct drm_crtc *crtc;
1514 struct drm_crtc_state *crtc_state;
1515 struct drm_connector *connector;
Daniel Vetter042652e2014-07-27 13:46:52 +02001516 struct drm_connector_state *conn_state;
Daniel Vetter042652e2014-07-27 13:46:52 +02001517 int ret, i, j;
1518
1519 ret = drm_modeset_lock(&dev->mode_config.connection_mutex,
1520 state->acquire_ctx);
1521 if (ret)
1522 return ret;
1523
1524 /* First grab all affected connector/crtc states. */
1525 for (i = 0; i < set->num_connectors; i++) {
1526 conn_state = drm_atomic_get_connector_state(state,
1527 set->connectors[i]);
1528 if (IS_ERR(conn_state))
1529 return PTR_ERR(conn_state);
1530 }
1531
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001532 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Daniel Vetter042652e2014-07-27 13:46:52 +02001533 ret = drm_atomic_add_affected_connectors(state, crtc);
1534 if (ret)
1535 return ret;
1536 }
1537
1538 /* Then recompute connector->crtc links and crtc enabling state. */
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001539 for_each_connector_in_state(state, connector, conn_state, i) {
Daniel Vetter042652e2014-07-27 13:46:52 +02001540 if (conn_state->crtc == set->crtc) {
1541 ret = drm_atomic_set_crtc_for_connector(conn_state,
1542 NULL);
1543 if (ret)
1544 return ret;
1545 }
1546
1547 for (j = 0; j < set->num_connectors; j++) {
1548 if (set->connectors[j] == connector) {
1549 ret = drm_atomic_set_crtc_for_connector(conn_state,
1550 set->crtc);
1551 if (ret)
1552 return ret;
1553 break;
1554 }
1555 }
1556 }
1557
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001558 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Daniel Vetter042652e2014-07-27 13:46:52 +02001559 /* Don't update ->enable for the CRTC in the set_config request,
1560 * since a mismatch would indicate a bug in the upper layers.
1561 * The actual modeset code later on will catch any
1562 * inconsistencies here. */
1563 if (crtc == set->crtc)
1564 continue;
1565
Laurent Pinchartc30f55a2015-06-22 13:37:46 +03001566 if (!drm_atomic_connectors_for_crtc(state, crtc)) {
1567 ret = drm_atomic_set_mode_prop_for_crtc(crtc_state,
1568 NULL);
1569 if (ret < 0)
1570 return ret;
1571
Maarten Lankhorst9b5edbf2015-06-01 08:59:53 +02001572 crtc_state->active = false;
Laurent Pinchartc30f55a2015-06-22 13:37:46 +03001573 }
Daniel Vetter042652e2014-07-27 13:46:52 +02001574 }
1575
1576 return 0;
1577}
1578
1579/**
1580 * drm_atomic_helper_set_config - set a new config from userspace
1581 * @set: mode set configuration
1582 *
1583 * Provides a default crtc set_config handler using the atomic driver interface.
1584 *
1585 * Returns:
1586 * Returns 0 on success, negative errno numbers on failure.
1587 */
1588int drm_atomic_helper_set_config(struct drm_mode_set *set)
1589{
1590 struct drm_atomic_state *state;
1591 struct drm_crtc *crtc = set->crtc;
1592 struct drm_crtc_state *crtc_state;
1593 struct drm_plane_state *primary_state;
1594 int ret = 0;
1595
1596 state = drm_atomic_state_alloc(crtc->dev);
1597 if (!state)
1598 return -ENOMEM;
1599
1600 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
1601retry:
1602 crtc_state = drm_atomic_get_crtc_state(state, crtc);
1603 if (IS_ERR(crtc_state)) {
1604 ret = PTR_ERR(crtc_state);
1605 goto fail;
1606 }
1607
Rob Clarke5b53412014-11-26 18:58:04 -05001608 primary_state = drm_atomic_get_plane_state(state, crtc->primary);
1609 if (IS_ERR(primary_state)) {
1610 ret = PTR_ERR(primary_state);
1611 goto fail;
1612 }
1613
Daniel Vetter042652e2014-07-27 13:46:52 +02001614 if (!set->mode) {
1615 WARN_ON(set->fb);
1616 WARN_ON(set->num_connectors);
1617
Daniel Stone819364d2015-05-26 14:36:48 +01001618 ret = drm_atomic_set_mode_for_crtc(crtc_state, NULL);
1619 if (ret != 0)
1620 goto fail;
1621
Daniel Vettereab3bbe2015-01-22 16:36:21 +01001622 crtc_state->active = false;
Rob Clarke5b53412014-11-26 18:58:04 -05001623
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01001624 ret = drm_atomic_set_crtc_for_plane(primary_state, NULL);
Rob Clarke5b53412014-11-26 18:58:04 -05001625 if (ret != 0)
1626 goto fail;
1627
1628 drm_atomic_set_fb_for_plane(primary_state, NULL);
1629
Daniel Vetter042652e2014-07-27 13:46:52 +02001630 goto commit;
1631 }
1632
1633 WARN_ON(!set->fb);
1634 WARN_ON(!set->num_connectors);
1635
Daniel Stone819364d2015-05-26 14:36:48 +01001636 ret = drm_atomic_set_mode_for_crtc(crtc_state, set->mode);
1637 if (ret != 0)
1638 goto fail;
1639
Daniel Vettereab3bbe2015-01-22 16:36:21 +01001640 crtc_state->active = true;
Daniel Vetter042652e2014-07-27 13:46:52 +02001641
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01001642 ret = drm_atomic_set_crtc_for_plane(primary_state, crtc);
Daniel Vetter042652e2014-07-27 13:46:52 +02001643 if (ret != 0)
1644 goto fail;
Daniel Vetter321ebf02014-11-04 22:57:27 +01001645 drm_atomic_set_fb_for_plane(primary_state, set->fb);
Daniel Vetter042652e2014-07-27 13:46:52 +02001646 primary_state->crtc_x = 0;
1647 primary_state->crtc_y = 0;
1648 primary_state->crtc_h = set->mode->vdisplay;
1649 primary_state->crtc_w = set->mode->hdisplay;
1650 primary_state->src_x = set->x << 16;
1651 primary_state->src_y = set->y << 16;
1652 primary_state->src_h = set->mode->vdisplay << 16;
1653 primary_state->src_w = set->mode->hdisplay << 16;
1654
1655commit:
1656 ret = update_output_state(state, set);
1657 if (ret)
1658 goto fail;
1659
1660 ret = drm_atomic_commit(state);
1661 if (ret != 0)
1662 goto fail;
1663
1664 /* Driver takes ownership of state on successful commit. */
1665 return 0;
1666fail:
1667 if (ret == -EDEADLK)
1668 goto backoff;
1669
1670 drm_atomic_state_free(state);
1671
1672 return ret;
1673backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02001674 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01001675 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02001676
1677 /*
1678 * Someone might have exchanged the framebuffer while we dropped locks
1679 * in the backoff code. We need to fix up the fb refcount tracking the
1680 * core does for us.
1681 */
1682 crtc->primary->old_fb = crtc->primary->fb;
1683
1684 goto retry;
1685}
1686EXPORT_SYMBOL(drm_atomic_helper_set_config);
1687
1688/**
Laurent Pinchart7f500022015-02-23 02:50:23 +02001689 * drm_atomic_helper_crtc_set_property - helper for crtc properties
Daniel Vetter042652e2014-07-27 13:46:52 +02001690 * @crtc: DRM crtc
1691 * @property: DRM property
1692 * @val: value of property
1693 *
Laurent Pinchart7f500022015-02-23 02:50:23 +02001694 * Provides a default crtc set_property handler using the atomic driver
1695 * interface.
Daniel Vetter042652e2014-07-27 13:46:52 +02001696 *
1697 * RETURNS:
1698 * Zero on success, error code on failure
1699 */
1700int
1701drm_atomic_helper_crtc_set_property(struct drm_crtc *crtc,
1702 struct drm_property *property,
1703 uint64_t val)
1704{
1705 struct drm_atomic_state *state;
1706 struct drm_crtc_state *crtc_state;
1707 int ret = 0;
1708
1709 state = drm_atomic_state_alloc(crtc->dev);
1710 if (!state)
1711 return -ENOMEM;
1712
1713 /* ->set_property is always called with all locks held. */
1714 state->acquire_ctx = crtc->dev->mode_config.acquire_ctx;
1715retry:
1716 crtc_state = drm_atomic_get_crtc_state(state, crtc);
1717 if (IS_ERR(crtc_state)) {
1718 ret = PTR_ERR(crtc_state);
1719 goto fail;
1720 }
1721
Rob Clark40ecc692014-12-18 16:01:46 -05001722 ret = drm_atomic_crtc_set_property(crtc, crtc_state,
1723 property, val);
Daniel Vetter042652e2014-07-27 13:46:52 +02001724 if (ret)
1725 goto fail;
1726
1727 ret = drm_atomic_commit(state);
1728 if (ret != 0)
1729 goto fail;
1730
1731 /* Driver takes ownership of state on successful commit. */
1732 return 0;
1733fail:
1734 if (ret == -EDEADLK)
1735 goto backoff;
1736
1737 drm_atomic_state_free(state);
1738
1739 return ret;
1740backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02001741 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01001742 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02001743
1744 goto retry;
1745}
1746EXPORT_SYMBOL(drm_atomic_helper_crtc_set_property);
1747
1748/**
Laurent Pinchart7f500022015-02-23 02:50:23 +02001749 * drm_atomic_helper_plane_set_property - helper for plane properties
Daniel Vetter042652e2014-07-27 13:46:52 +02001750 * @plane: DRM plane
1751 * @property: DRM property
1752 * @val: value of property
1753 *
Laurent Pinchart7f500022015-02-23 02:50:23 +02001754 * Provides a default plane set_property handler using the atomic driver
1755 * interface.
Daniel Vetter042652e2014-07-27 13:46:52 +02001756 *
1757 * RETURNS:
1758 * Zero on success, error code on failure
1759 */
1760int
1761drm_atomic_helper_plane_set_property(struct drm_plane *plane,
1762 struct drm_property *property,
1763 uint64_t val)
1764{
1765 struct drm_atomic_state *state;
1766 struct drm_plane_state *plane_state;
1767 int ret = 0;
1768
1769 state = drm_atomic_state_alloc(plane->dev);
1770 if (!state)
1771 return -ENOMEM;
1772
1773 /* ->set_property is always called with all locks held. */
1774 state->acquire_ctx = plane->dev->mode_config.acquire_ctx;
1775retry:
1776 plane_state = drm_atomic_get_plane_state(state, plane);
1777 if (IS_ERR(plane_state)) {
1778 ret = PTR_ERR(plane_state);
1779 goto fail;
1780 }
1781
Rob Clark40ecc692014-12-18 16:01:46 -05001782 ret = drm_atomic_plane_set_property(plane, plane_state,
1783 property, val);
Daniel Vetter042652e2014-07-27 13:46:52 +02001784 if (ret)
1785 goto fail;
1786
1787 ret = drm_atomic_commit(state);
1788 if (ret != 0)
1789 goto fail;
1790
1791 /* Driver takes ownership of state on successful commit. */
1792 return 0;
1793fail:
1794 if (ret == -EDEADLK)
1795 goto backoff;
1796
1797 drm_atomic_state_free(state);
1798
1799 return ret;
1800backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02001801 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01001802 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02001803
1804 goto retry;
1805}
1806EXPORT_SYMBOL(drm_atomic_helper_plane_set_property);
1807
1808/**
Laurent Pinchart7f500022015-02-23 02:50:23 +02001809 * drm_atomic_helper_connector_set_property - helper for connector properties
Daniel Vetter042652e2014-07-27 13:46:52 +02001810 * @connector: DRM connector
1811 * @property: DRM property
1812 * @val: value of property
1813 *
Laurent Pinchart7f500022015-02-23 02:50:23 +02001814 * Provides a default connector set_property handler using the atomic driver
1815 * interface.
Daniel Vetter042652e2014-07-27 13:46:52 +02001816 *
1817 * RETURNS:
1818 * Zero on success, error code on failure
1819 */
1820int
1821drm_atomic_helper_connector_set_property(struct drm_connector *connector,
1822 struct drm_property *property,
1823 uint64_t val)
1824{
1825 struct drm_atomic_state *state;
1826 struct drm_connector_state *connector_state;
1827 int ret = 0;
1828
1829 state = drm_atomic_state_alloc(connector->dev);
1830 if (!state)
1831 return -ENOMEM;
1832
1833 /* ->set_property is always called with all locks held. */
1834 state->acquire_ctx = connector->dev->mode_config.acquire_ctx;
1835retry:
1836 connector_state = drm_atomic_get_connector_state(state, connector);
1837 if (IS_ERR(connector_state)) {
1838 ret = PTR_ERR(connector_state);
1839 goto fail;
1840 }
1841
Rob Clark40ecc692014-12-18 16:01:46 -05001842 ret = drm_atomic_connector_set_property(connector, connector_state,
1843 property, val);
Daniel Vetter042652e2014-07-27 13:46:52 +02001844 if (ret)
1845 goto fail;
1846
1847 ret = drm_atomic_commit(state);
1848 if (ret != 0)
1849 goto fail;
1850
1851 /* Driver takes ownership of state on successful commit. */
1852 return 0;
1853fail:
1854 if (ret == -EDEADLK)
1855 goto backoff;
1856
1857 drm_atomic_state_free(state);
1858
1859 return ret;
1860backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02001861 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01001862 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02001863
1864 goto retry;
1865}
1866EXPORT_SYMBOL(drm_atomic_helper_connector_set_property);
Daniel Vetter8bc0f312014-07-27 18:42:37 +02001867
1868/**
1869 * drm_atomic_helper_page_flip - execute a legacy page flip
1870 * @crtc: DRM crtc
1871 * @fb: DRM framebuffer
1872 * @event: optional DRM event to signal upon completion
1873 * @flags: flip flags for non-vblank sync'ed updates
1874 *
1875 * Provides a default page flip implementation using the atomic driver interface.
1876 *
1877 * Note that for now so called async page flips (i.e. updates which are not
1878 * synchronized to vblank) are not supported, since the atomic interfaces have
1879 * no provisions for this yet.
1880 *
1881 * Returns:
1882 * Returns 0 on success, negative errno numbers on failure.
1883 */
1884int drm_atomic_helper_page_flip(struct drm_crtc *crtc,
1885 struct drm_framebuffer *fb,
1886 struct drm_pending_vblank_event *event,
1887 uint32_t flags)
1888{
1889 struct drm_plane *plane = crtc->primary;
1890 struct drm_atomic_state *state;
1891 struct drm_plane_state *plane_state;
1892 struct drm_crtc_state *crtc_state;
1893 int ret = 0;
1894
1895 if (flags & DRM_MODE_PAGE_FLIP_ASYNC)
1896 return -EINVAL;
1897
1898 state = drm_atomic_state_alloc(plane->dev);
1899 if (!state)
1900 return -ENOMEM;
1901
1902 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
1903retry:
1904 crtc_state = drm_atomic_get_crtc_state(state, crtc);
1905 if (IS_ERR(crtc_state)) {
1906 ret = PTR_ERR(crtc_state);
1907 goto fail;
1908 }
1909 crtc_state->event = event;
1910
1911 plane_state = drm_atomic_get_plane_state(state, plane);
1912 if (IS_ERR(plane_state)) {
1913 ret = PTR_ERR(plane_state);
1914 goto fail;
1915 }
1916
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01001917 ret = drm_atomic_set_crtc_for_plane(plane_state, crtc);
Daniel Vetter8bc0f312014-07-27 18:42:37 +02001918 if (ret != 0)
1919 goto fail;
Daniel Vetter321ebf02014-11-04 22:57:27 +01001920 drm_atomic_set_fb_for_plane(plane_state, fb);
Daniel Vetter8bc0f312014-07-27 18:42:37 +02001921
1922 ret = drm_atomic_async_commit(state);
1923 if (ret != 0)
1924 goto fail;
1925
1926 /* TODO: ->page_flip is the only driver callback where the core
1927 * doesn't update plane->fb. For now patch it up here. */
1928 plane->fb = plane->state->fb;
1929
1930 /* Driver takes ownership of state on successful async commit. */
1931 return 0;
1932fail:
1933 if (ret == -EDEADLK)
1934 goto backoff;
1935
1936 drm_atomic_state_free(state);
1937
1938 return ret;
1939backoff:
Daniel Vetter8bc0f312014-07-27 18:42:37 +02001940 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01001941 drm_atomic_legacy_backoff(state);
Daniel Vetter8bc0f312014-07-27 18:42:37 +02001942
1943 /*
1944 * Someone might have exchanged the framebuffer while we dropped locks
1945 * in the backoff code. We need to fix up the fb refcount tracking the
1946 * core does for us.
1947 */
1948 plane->old_fb = plane->fb;
1949
1950 goto retry;
1951}
1952EXPORT_SYMBOL(drm_atomic_helper_page_flip);
Daniel Vetterd4617012014-11-03 15:56:43 +01001953
1954/**
Daniel Vetterb486e0e2015-01-22 18:53:05 +01001955 * drm_atomic_helper_connector_dpms() - connector dpms helper implementation
1956 * @connector: affected connector
1957 * @mode: DPMS mode
1958 *
1959 * This is the main helper function provided by the atomic helper framework for
1960 * implementing the legacy DPMS connector interface. It computes the new desired
1961 * ->active state for the corresponding CRTC (if the connector is enabled) and
1962 * updates it.
1963 */
1964void drm_atomic_helper_connector_dpms(struct drm_connector *connector,
1965 int mode)
1966{
1967 struct drm_mode_config *config = &connector->dev->mode_config;
1968 struct drm_atomic_state *state;
1969 struct drm_crtc_state *crtc_state;
1970 struct drm_crtc *crtc;
1971 struct drm_connector *tmp_connector;
1972 int ret;
1973 bool active = false;
1974
1975 if (mode != DRM_MODE_DPMS_ON)
1976 mode = DRM_MODE_DPMS_OFF;
1977
1978 connector->dpms = mode;
1979 crtc = connector->state->crtc;
1980
1981 if (!crtc)
1982 return;
1983
1984 /* FIXME: ->dpms has no return value so can't forward the -ENOMEM. */
1985 state = drm_atomic_state_alloc(connector->dev);
1986 if (!state)
1987 return;
1988
1989 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
1990retry:
1991 crtc_state = drm_atomic_get_crtc_state(state, crtc);
1992 if (IS_ERR(crtc_state))
1993 return;
1994
1995 WARN_ON(!drm_modeset_is_locked(&config->connection_mutex));
1996
1997 list_for_each_entry(tmp_connector, &config->connector_list, head) {
John Hunter0388df02015-03-17 15:30:28 +08001998 if (tmp_connector->state->crtc != crtc)
Daniel Vetterb486e0e2015-01-22 18:53:05 +01001999 continue;
2000
John Hunter0388df02015-03-17 15:30:28 +08002001 if (tmp_connector->dpms == DRM_MODE_DPMS_ON) {
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002002 active = true;
2003 break;
2004 }
2005 }
2006 crtc_state->active = active;
2007
2008 ret = drm_atomic_commit(state);
2009 if (ret != 0)
2010 goto fail;
2011
2012 /* Driver takes ownership of state on successful async commit. */
2013 return;
2014fail:
2015 if (ret == -EDEADLK)
2016 goto backoff;
2017
2018 drm_atomic_state_free(state);
2019
2020 WARN(1, "Driver bug: Changing ->active failed with ret=%i\n", ret);
2021
2022 return;
2023backoff:
2024 drm_atomic_state_clear(state);
2025 drm_atomic_legacy_backoff(state);
2026
2027 goto retry;
2028}
2029EXPORT_SYMBOL(drm_atomic_helper_connector_dpms);
2030
2031/**
Daniel Vetter3150c7d2014-11-06 20:53:29 +01002032 * DOC: atomic state reset and initialization
2033 *
2034 * Both the drm core and the atomic helpers assume that there is always the full
2035 * and correct atomic software state for all connectors, CRTCs and planes
2036 * available. Which is a bit a problem on driver load and also after system
2037 * suspend. One way to solve this is to have a hardware state read-out
2038 * infrastructure which reconstructs the full software state (e.g. the i915
2039 * driver).
2040 *
2041 * The simpler solution is to just reset the software state to everything off,
2042 * which is easiest to do by calling drm_mode_config_reset(). To facilitate this
2043 * the atomic helpers provide default reset implementations for all hooks.
2044 */
2045
2046/**
Daniel Vetterd4617012014-11-03 15:56:43 +01002047 * drm_atomic_helper_crtc_reset - default ->reset hook for CRTCs
2048 * @crtc: drm CRTC
2049 *
2050 * Resets the atomic state for @crtc by freeing the state pointer (which might
2051 * be NULL, e.g. at driver load time) and allocating a new empty state object.
2052 */
2053void drm_atomic_helper_crtc_reset(struct drm_crtc *crtc)
2054{
Daniel Stone99cf4a22015-05-25 19:11:51 +01002055 if (crtc->state && crtc->state->mode_blob)
2056 drm_property_unreference_blob(crtc->state->mode_blob);
Daniel Vetterd4617012014-11-03 15:56:43 +01002057 kfree(crtc->state);
2058 crtc->state = kzalloc(sizeof(*crtc->state), GFP_KERNEL);
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01002059
2060 if (crtc->state)
2061 crtc->state->crtc = crtc;
Daniel Vetterd4617012014-11-03 15:56:43 +01002062}
2063EXPORT_SYMBOL(drm_atomic_helper_crtc_reset);
2064
2065/**
Thierry Redingf5e78402015-01-28 14:54:32 +01002066 * __drm_atomic_helper_crtc_duplicate_state - copy atomic CRTC state
2067 * @crtc: CRTC object
2068 * @state: atomic CRTC state
2069 *
2070 * Copies atomic state from a CRTC's current state and resets inferred values.
2071 * This is useful for drivers that subclass the CRTC state.
2072 */
2073void __drm_atomic_helper_crtc_duplicate_state(struct drm_crtc *crtc,
2074 struct drm_crtc_state *state)
2075{
2076 memcpy(state, crtc->state, sizeof(*state));
2077
Daniel Stone99cf4a22015-05-25 19:11:51 +01002078 if (state->mode_blob)
2079 drm_property_reference_blob(state->mode_blob);
Thierry Redingf5e78402015-01-28 14:54:32 +01002080 state->mode_changed = false;
2081 state->active_changed = false;
2082 state->planes_changed = false;
2083 state->event = NULL;
2084}
2085EXPORT_SYMBOL(__drm_atomic_helper_crtc_duplicate_state);
2086
2087/**
Daniel Vetterd4617012014-11-03 15:56:43 +01002088 * drm_atomic_helper_crtc_duplicate_state - default state duplicate hook
2089 * @crtc: drm CRTC
2090 *
2091 * Default CRTC state duplicate hook for drivers which don't have their own
2092 * subclassed CRTC state structure.
2093 */
2094struct drm_crtc_state *
2095drm_atomic_helper_crtc_duplicate_state(struct drm_crtc *crtc)
2096{
2097 struct drm_crtc_state *state;
2098
2099 if (WARN_ON(!crtc->state))
2100 return NULL;
2101
Thierry Redingf5e78402015-01-28 14:54:32 +01002102 state = kmalloc(sizeof(*state), GFP_KERNEL);
2103 if (state)
2104 __drm_atomic_helper_crtc_duplicate_state(crtc, state);
Daniel Vetterd4617012014-11-03 15:56:43 +01002105
2106 return state;
2107}
2108EXPORT_SYMBOL(drm_atomic_helper_crtc_duplicate_state);
2109
2110/**
Thierry Redingf5e78402015-01-28 14:54:32 +01002111 * __drm_atomic_helper_crtc_destroy_state - release CRTC state
2112 * @crtc: CRTC object
2113 * @state: CRTC state object to release
2114 *
2115 * Releases all resources stored in the CRTC state without actually freeing
2116 * the memory of the CRTC state. This is useful for drivers that subclass the
2117 * CRTC state.
2118 */
2119void __drm_atomic_helper_crtc_destroy_state(struct drm_crtc *crtc,
2120 struct drm_crtc_state *state)
2121{
Daniel Stone99cf4a22015-05-25 19:11:51 +01002122 if (state->mode_blob)
2123 drm_property_unreference_blob(state->mode_blob);
Thierry Redingf5e78402015-01-28 14:54:32 +01002124}
2125EXPORT_SYMBOL(__drm_atomic_helper_crtc_destroy_state);
2126
2127/**
Daniel Vetterd4617012014-11-03 15:56:43 +01002128 * drm_atomic_helper_crtc_destroy_state - default state destroy hook
2129 * @crtc: drm CRTC
2130 * @state: CRTC state object to release
2131 *
2132 * Default CRTC state destroy hook for drivers which don't have their own
2133 * subclassed CRTC state structure.
2134 */
2135void drm_atomic_helper_crtc_destroy_state(struct drm_crtc *crtc,
2136 struct drm_crtc_state *state)
2137{
Thierry Redingf5e78402015-01-28 14:54:32 +01002138 __drm_atomic_helper_crtc_destroy_state(crtc, state);
Daniel Vetterd4617012014-11-03 15:56:43 +01002139 kfree(state);
2140}
2141EXPORT_SYMBOL(drm_atomic_helper_crtc_destroy_state);
2142
2143/**
2144 * drm_atomic_helper_plane_reset - default ->reset hook for planes
2145 * @plane: drm plane
2146 *
2147 * Resets the atomic state for @plane by freeing the state pointer (which might
2148 * be NULL, e.g. at driver load time) and allocating a new empty state object.
2149 */
2150void drm_atomic_helper_plane_reset(struct drm_plane *plane)
2151{
Daniel Vetter321ebf02014-11-04 22:57:27 +01002152 if (plane->state && plane->state->fb)
2153 drm_framebuffer_unreference(plane->state->fb);
2154
Daniel Vetterd4617012014-11-03 15:56:43 +01002155 kfree(plane->state);
2156 plane->state = kzalloc(sizeof(*plane->state), GFP_KERNEL);
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01002157
2158 if (plane->state)
2159 plane->state->plane = plane;
Daniel Vetterd4617012014-11-03 15:56:43 +01002160}
2161EXPORT_SYMBOL(drm_atomic_helper_plane_reset);
2162
2163/**
Thierry Redingf5e78402015-01-28 14:54:32 +01002164 * __drm_atomic_helper_plane_duplicate_state - copy atomic plane state
2165 * @plane: plane object
2166 * @state: atomic plane state
2167 *
2168 * Copies atomic state from a plane's current state. This is useful for
2169 * drivers that subclass the plane state.
2170 */
2171void __drm_atomic_helper_plane_duplicate_state(struct drm_plane *plane,
2172 struct drm_plane_state *state)
2173{
2174 memcpy(state, plane->state, sizeof(*state));
2175
2176 if (state->fb)
2177 drm_framebuffer_reference(state->fb);
2178}
2179EXPORT_SYMBOL(__drm_atomic_helper_plane_duplicate_state);
2180
2181/**
Daniel Vetterd4617012014-11-03 15:56:43 +01002182 * drm_atomic_helper_plane_duplicate_state - default state duplicate hook
2183 * @plane: drm plane
2184 *
2185 * Default plane state duplicate hook for drivers which don't have their own
2186 * subclassed plane state structure.
2187 */
2188struct drm_plane_state *
2189drm_atomic_helper_plane_duplicate_state(struct drm_plane *plane)
2190{
Daniel Vetter321ebf02014-11-04 22:57:27 +01002191 struct drm_plane_state *state;
2192
Daniel Vetterd4617012014-11-03 15:56:43 +01002193 if (WARN_ON(!plane->state))
2194 return NULL;
2195
Thierry Redingf5e78402015-01-28 14:54:32 +01002196 state = kmalloc(sizeof(*state), GFP_KERNEL);
2197 if (state)
2198 __drm_atomic_helper_plane_duplicate_state(plane, state);
Daniel Vetter321ebf02014-11-04 22:57:27 +01002199
2200 return state;
Daniel Vetterd4617012014-11-03 15:56:43 +01002201}
2202EXPORT_SYMBOL(drm_atomic_helper_plane_duplicate_state);
2203
2204/**
Thierry Redingf5e78402015-01-28 14:54:32 +01002205 * __drm_atomic_helper_plane_destroy_state - release plane state
2206 * @plane: plane object
2207 * @state: plane state object to release
2208 *
2209 * Releases all resources stored in the plane state without actually freeing
2210 * the memory of the plane state. This is useful for drivers that subclass the
2211 * plane state.
2212 */
2213void __drm_atomic_helper_plane_destroy_state(struct drm_plane *plane,
2214 struct drm_plane_state *state)
2215{
2216 if (state->fb)
2217 drm_framebuffer_unreference(state->fb);
2218}
2219EXPORT_SYMBOL(__drm_atomic_helper_plane_destroy_state);
2220
2221/**
Daniel Vetterd4617012014-11-03 15:56:43 +01002222 * drm_atomic_helper_plane_destroy_state - default state destroy hook
2223 * @plane: drm plane
2224 * @state: plane state object to release
2225 *
2226 * Default plane state destroy hook for drivers which don't have their own
2227 * subclassed plane state structure.
2228 */
2229void drm_atomic_helper_plane_destroy_state(struct drm_plane *plane,
Daniel Vetter321ebf02014-11-04 22:57:27 +01002230 struct drm_plane_state *state)
Daniel Vetterd4617012014-11-03 15:56:43 +01002231{
Thierry Redingf5e78402015-01-28 14:54:32 +01002232 __drm_atomic_helper_plane_destroy_state(plane, state);
Daniel Vetterd4617012014-11-03 15:56:43 +01002233 kfree(state);
2234}
2235EXPORT_SYMBOL(drm_atomic_helper_plane_destroy_state);
2236
2237/**
2238 * drm_atomic_helper_connector_reset - default ->reset hook for connectors
2239 * @connector: drm connector
2240 *
2241 * Resets the atomic state for @connector by freeing the state pointer (which
2242 * might be NULL, e.g. at driver load time) and allocating a new empty state
2243 * object.
2244 */
2245void drm_atomic_helper_connector_reset(struct drm_connector *connector)
2246{
2247 kfree(connector->state);
2248 connector->state = kzalloc(sizeof(*connector->state), GFP_KERNEL);
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01002249
2250 if (connector->state)
2251 connector->state->connector = connector;
Daniel Vetterd4617012014-11-03 15:56:43 +01002252}
2253EXPORT_SYMBOL(drm_atomic_helper_connector_reset);
2254
2255/**
Thierry Redingf5e78402015-01-28 14:54:32 +01002256 * __drm_atomic_helper_connector_duplicate_state - copy atomic connector state
2257 * @connector: connector object
2258 * @state: atomic connector state
2259 *
2260 * Copies atomic state from a connector's current state. This is useful for
2261 * drivers that subclass the connector state.
2262 */
2263void
2264__drm_atomic_helper_connector_duplicate_state(struct drm_connector *connector,
2265 struct drm_connector_state *state)
2266{
2267 memcpy(state, connector->state, sizeof(*state));
2268}
2269EXPORT_SYMBOL(__drm_atomic_helper_connector_duplicate_state);
2270
2271/**
Daniel Vetterd4617012014-11-03 15:56:43 +01002272 * drm_atomic_helper_connector_duplicate_state - default state duplicate hook
2273 * @connector: drm connector
2274 *
2275 * Default connector state duplicate hook for drivers which don't have their own
2276 * subclassed connector state structure.
2277 */
2278struct drm_connector_state *
2279drm_atomic_helper_connector_duplicate_state(struct drm_connector *connector)
2280{
Thierry Redingf5e78402015-01-28 14:54:32 +01002281 struct drm_connector_state *state;
2282
Daniel Vetterd4617012014-11-03 15:56:43 +01002283 if (WARN_ON(!connector->state))
2284 return NULL;
2285
Thierry Redingf5e78402015-01-28 14:54:32 +01002286 state = kmalloc(sizeof(*state), GFP_KERNEL);
2287 if (state)
2288 __drm_atomic_helper_connector_duplicate_state(connector, state);
2289
2290 return state;
Daniel Vetterd4617012014-11-03 15:56:43 +01002291}
2292EXPORT_SYMBOL(drm_atomic_helper_connector_duplicate_state);
2293
2294/**
Thierry Redingf5e78402015-01-28 14:54:32 +01002295 * __drm_atomic_helper_connector_destroy_state - release connector state
2296 * @connector: connector object
2297 * @state: connector state object to release
2298 *
2299 * Releases all resources stored in the connector state without actually
2300 * freeing the memory of the connector state. This is useful for drivers that
2301 * subclass the connector state.
2302 */
2303void
2304__drm_atomic_helper_connector_destroy_state(struct drm_connector *connector,
2305 struct drm_connector_state *state)
2306{
2307 /*
2308 * This is currently a placeholder so that drivers that subclass the
2309 * state will automatically do the right thing if code is ever added
2310 * to this function.
2311 */
2312}
2313EXPORT_SYMBOL(__drm_atomic_helper_connector_destroy_state);
2314
2315/**
Daniel Vetterd4617012014-11-03 15:56:43 +01002316 * drm_atomic_helper_connector_destroy_state - default state destroy hook
2317 * @connector: drm connector
2318 * @state: connector state object to release
2319 *
2320 * Default connector state destroy hook for drivers which don't have their own
2321 * subclassed connector state structure.
2322 */
2323void drm_atomic_helper_connector_destroy_state(struct drm_connector *connector,
2324 struct drm_connector_state *state)
2325{
Thierry Redingf5e78402015-01-28 14:54:32 +01002326 __drm_atomic_helper_connector_destroy_state(connector, state);
Daniel Vetterd4617012014-11-03 15:56:43 +01002327 kfree(state);
2328}
2329EXPORT_SYMBOL(drm_atomic_helper_connector_destroy_state);