blob: 10bcdd554501cfc372110ce04fa34de8e3da6bba [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
Daniel Vetter9a9f5ce2015-07-09 23:44:34 +020092 drm_for_each_connector(connector, dev) {
Daniel Vetter623369e2014-09-16 17:50:47 +020093 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
Maarten Lankhorstfc596662015-07-21 13:28:57 +0200127 crtc_state->connectors_changed = true;
Daniel Vetter623369e2014-09-16 17:50:47 +0200128
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äb5ceff202015-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];
Maarten Lankhorstfc596662015-07-21 13:28:57 +0200177 crtc_state->connectors_changed = true;
Daniel Vetter623369e2014-09-16 17:50:47 +0200178 }
179
180 if (connector_state->crtc) {
181 idx = drm_crtc_index(connector_state->crtc);
182
183 crtc_state = state->crtc_states[idx];
Maarten Lankhorstfc596662015-07-21 13:28:57 +0200184 crtc_state->connectors_changed = true;
Daniel Vetter623369e2014-09-16 17:50:47 +0200185 }
186 }
187
188 if (!connector_state->crtc) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100189 DRM_DEBUG_ATOMIC("Disabling [CONNECTOR:%d:%s]\n",
Daniel Vetter623369e2014-09-16 17:50:47 +0200190 connector->base.id,
191 connector->name);
192
193 connector_state->best_encoder = NULL;
194
195 return 0;
196 }
197
198 funcs = connector->helper_private;
199 new_encoder = funcs->best_encoder(connector);
200
201 if (!new_encoder) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100202 DRM_DEBUG_ATOMIC("No suitable encoder found for [CONNECTOR:%d:%s]\n",
203 connector->base.id,
204 connector->name);
Daniel Vetter623369e2014-09-16 17:50:47 +0200205 return -EINVAL;
206 }
207
208 if (new_encoder == connector_state->best_encoder) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100209 DRM_DEBUG_ATOMIC("[CONNECTOR:%d:%s] keeps [ENCODER:%d:%s], now on [CRTC:%d]\n",
210 connector->base.id,
211 connector->name,
212 new_encoder->base.id,
213 new_encoder->name,
214 connector_state->crtc->base.id);
Daniel Vetter623369e2014-09-16 17:50:47 +0200215
216 return 0;
217 }
218
219 encoder_crtc = get_current_crtc_for_encoder(state->dev,
220 new_encoder);
221
222 if (encoder_crtc) {
223 ret = steal_encoder(state, new_encoder, encoder_crtc);
224 if (ret) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100225 DRM_DEBUG_ATOMIC("Encoder stealing failed for [CONNECTOR:%d:%s]\n",
226 connector->base.id,
227 connector->name);
Daniel Vetter623369e2014-09-16 17:50:47 +0200228 return ret;
229 }
230 }
231
232 connector_state->best_encoder = new_encoder;
233 idx = drm_crtc_index(connector_state->crtc);
234
235 crtc_state = state->crtc_states[idx];
Maarten Lankhorstfc596662015-07-21 13:28:57 +0200236 crtc_state->connectors_changed = true;
Daniel Vetter623369e2014-09-16 17:50:47 +0200237
Daniel Vetter17a38d92015-02-22 12:24:16 +0100238 DRM_DEBUG_ATOMIC("[CONNECTOR:%d:%s] using [ENCODER:%d:%s] on [CRTC:%d]\n",
239 connector->base.id,
240 connector->name,
241 new_encoder->base.id,
242 new_encoder->name,
243 connector_state->crtc->base.id);
Daniel Vetter623369e2014-09-16 17:50:47 +0200244
245 return 0;
246}
247
248static int
249mode_fixup(struct drm_atomic_state *state)
250{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300251 struct drm_crtc *crtc;
Daniel Vetter623369e2014-09-16 17:50:47 +0200252 struct drm_crtc_state *crtc_state;
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300253 struct drm_connector *connector;
Daniel Vetter623369e2014-09-16 17:50:47 +0200254 struct drm_connector_state *conn_state;
255 int i;
256 bool ret;
257
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300258 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Maarten Lankhorstfc596662015-07-21 13:28:57 +0200259 if (!crtc_state->mode_changed &&
260 !crtc_state->connectors_changed)
Daniel Vetter623369e2014-09-16 17:50:47 +0200261 continue;
262
263 drm_mode_copy(&crtc_state->adjusted_mode, &crtc_state->mode);
264 }
265
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300266 for_each_connector_in_state(state, connector, conn_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +0200267 const struct drm_encoder_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200268 struct drm_encoder *encoder;
269
Daniel Vetter623369e2014-09-16 17:50:47 +0200270 WARN_ON(!!conn_state->best_encoder != !!conn_state->crtc);
271
272 if (!conn_state->crtc || !conn_state->best_encoder)
273 continue;
274
275 crtc_state =
276 state->crtc_states[drm_crtc_index(conn_state->crtc)];
277
278 /*
279 * Each encoder has at most one connector (since we always steal
280 * it away), so we won't call ->mode_fixup twice.
281 */
282 encoder = conn_state->best_encoder;
283 funcs = encoder->helper_private;
Ander Conselvan de Oliveira840bfe92015-04-21 17:13:18 +0300284 if (!funcs)
285 continue;
Daniel Vetter623369e2014-09-16 17:50:47 +0200286
Archit Taneja862e6862015-05-21 11:03:16 +0530287 ret = drm_bridge_mode_fixup(encoder->bridge, &crtc_state->mode,
288 &crtc_state->adjusted_mode);
289 if (!ret) {
290 DRM_DEBUG_ATOMIC("Bridge fixup failed\n");
291 return -EINVAL;
Daniel Vetter623369e2014-09-16 17:50:47 +0200292 }
293
Thierry Reding4cd4df82014-12-03 16:44:34 +0100294 if (funcs->atomic_check) {
295 ret = funcs->atomic_check(encoder, crtc_state,
296 conn_state);
297 if (ret) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100298 DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] check failed\n",
299 encoder->base.id, encoder->name);
Thierry Reding4cd4df82014-12-03 16:44:34 +0100300 return ret;
301 }
302 } else {
303 ret = funcs->mode_fixup(encoder, &crtc_state->mode,
304 &crtc_state->adjusted_mode);
305 if (!ret) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100306 DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] fixup failed\n",
307 encoder->base.id, encoder->name);
Thierry Reding4cd4df82014-12-03 16:44:34 +0100308 return -EINVAL;
309 }
Daniel Vetter623369e2014-09-16 17:50:47 +0200310 }
311 }
312
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300313 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +0200314 const struct drm_crtc_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200315
Maarten Lankhorstfc596662015-07-21 13:28:57 +0200316 if (!crtc_state->mode_changed &&
317 !crtc_state->connectors_changed)
Daniel Vetter623369e2014-09-16 17:50:47 +0200318 continue;
319
320 funcs = crtc->helper_private;
Ander Conselvan de Oliveira840bfe92015-04-21 17:13:18 +0300321 if (!funcs->mode_fixup)
322 continue;
323
Daniel Vetter623369e2014-09-16 17:50:47 +0200324 ret = funcs->mode_fixup(crtc, &crtc_state->mode,
325 &crtc_state->adjusted_mode);
326 if (!ret) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100327 DRM_DEBUG_ATOMIC("[CRTC:%d] fixup failed\n",
328 crtc->base.id);
Daniel Vetter623369e2014-09-16 17:50:47 +0200329 return -EINVAL;
330 }
331 }
332
333 return 0;
334}
335
Daniel Vetterd9b13622014-11-26 16:57:41 +0100336/**
John Hunterf98bd3e2015-03-17 15:30:26 +0800337 * drm_atomic_helper_check_modeset - validate state object for modeset changes
Daniel Vetterd9b13622014-11-26 16:57:41 +0100338 * @dev: DRM device
339 * @state: the driver state object
340 *
341 * Check the state object to see if the requested state is physically possible.
342 * This does all the crtc and connector related computations for an atomic
Maarten Lankhorstfc596662015-07-21 13:28:57 +0200343 * update and adds any additional connectors needed for full modesets and calls
344 * down into ->mode_fixup functions of the driver backend.
345 *
346 * crtc_state->mode_changed is set when the input mode is changed.
347 * crtc_state->connectors_changed is set when a connector is added or
348 * removed from the crtc.
349 * crtc_state->active_changed is set when crtc_state->active changes,
350 * which is used for dpms.
Daniel Vetterd9b13622014-11-26 16:57:41 +0100351 *
352 * IMPORTANT:
353 *
354 * Drivers which update ->mode_changed (e.g. in their ->atomic_check hooks if a
355 * plane update can't be done without a full modeset) _must_ call this function
356 * afterwards after that change. It is permitted to call this function multiple
357 * times for the same update, e.g. when the ->atomic_check functions depend upon
358 * the adjusted dotclock for fifo space allocation and watermark computation.
359 *
360 * RETURNS
361 * Zero for success or -errno
362 */
363int
Rob Clark934ce1c2014-11-19 16:41:33 -0500364drm_atomic_helper_check_modeset(struct drm_device *dev,
Daniel Vetter623369e2014-09-16 17:50:47 +0200365 struct drm_atomic_state *state)
366{
Daniel Vetter623369e2014-09-16 17:50:47 +0200367 struct drm_crtc *crtc;
368 struct drm_crtc_state *crtc_state;
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300369 struct drm_connector *connector;
370 struct drm_connector_state *connector_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200371 int i, ret;
372
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300373 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Daniel Vetter623369e2014-09-16 17:50:47 +0200374 if (!drm_mode_equal(&crtc->state->mode, &crtc_state->mode)) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100375 DRM_DEBUG_ATOMIC("[CRTC:%d] mode changed\n",
376 crtc->base.id);
Daniel Vetter623369e2014-09-16 17:50:47 +0200377 crtc_state->mode_changed = true;
378 }
379
380 if (crtc->state->enable != crtc_state->enable) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100381 DRM_DEBUG_ATOMIC("[CRTC:%d] enable changed\n",
382 crtc->base.id);
Maarten Lankhorstfc596662015-07-21 13:28:57 +0200383
384 /*
385 * For clarity this assignment is done here, but
386 * enable == 0 is only true when there are no
387 * connectors and a NULL mode.
388 *
389 * The other way around is true as well. enable != 0
390 * iff connectors are attached and a mode is set.
391 */
Daniel Vetter623369e2014-09-16 17:50:47 +0200392 crtc_state->mode_changed = true;
Maarten Lankhorstfc596662015-07-21 13:28:57 +0200393 crtc_state->connectors_changed = true;
Daniel Vetter623369e2014-09-16 17:50:47 +0200394 }
395 }
396
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300397 for_each_connector_in_state(state, connector, connector_state, i) {
Daniel Vetter623369e2014-09-16 17:50:47 +0200398 /*
399 * This only sets crtc->mode_changed for routing changes,
400 * drivers must set crtc->mode_changed themselves when connector
401 * properties need to be updated.
402 */
403 ret = update_connector_routing(state, i);
404 if (ret)
405 return ret;
406 }
407
408 /*
409 * After all the routing has been prepared we need to add in any
410 * connector which is itself unchanged, but who's crtc changes it's
411 * configuration. This must be done before calling mode_fixup in case a
412 * crtc only changed its mode but has the same set of connectors.
413 */
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300414 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Daniel Vetter623369e2014-09-16 17:50:47 +0200415 int num_connectors;
416
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100417 /*
418 * We must set ->active_changed after walking connectors for
419 * otherwise an update that only changes active would result in
420 * a full modeset because update_connector_routing force that.
421 */
422 if (crtc->state->active != crtc_state->active) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100423 DRM_DEBUG_ATOMIC("[CRTC:%d] active changed\n",
424 crtc->base.id);
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100425 crtc_state->active_changed = true;
426 }
427
Daniel Vetter2465ff62015-06-18 09:58:55 +0200428 if (!drm_atomic_crtc_needs_modeset(crtc_state))
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100429 continue;
430
Daniel Vetter17a38d92015-02-22 12:24:16 +0100431 DRM_DEBUG_ATOMIC("[CRTC:%d] needs all connectors, enable: %c, active: %c\n",
432 crtc->base.id,
433 crtc_state->enable ? 'y' : 'n',
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100434 crtc_state->active ? 'y' : 'n');
Daniel Vetter623369e2014-09-16 17:50:47 +0200435
436 ret = drm_atomic_add_affected_connectors(state, crtc);
437 if (ret != 0)
438 return ret;
439
Maarten Lankhorst57744aa2015-05-19 16:41:03 +0200440 ret = drm_atomic_add_affected_planes(state, crtc);
441 if (ret != 0)
442 return ret;
443
Daniel Vetter623369e2014-09-16 17:50:47 +0200444 num_connectors = drm_atomic_connectors_for_crtc(state,
445 crtc);
446
447 if (crtc_state->enable != !!num_connectors) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100448 DRM_DEBUG_ATOMIC("[CRTC:%d] enabled/connectors mismatch\n",
449 crtc->base.id);
Daniel Vetter623369e2014-09-16 17:50:47 +0200450
451 return -EINVAL;
452 }
453 }
454
455 return mode_fixup(state);
456}
Daniel Vetterd9b13622014-11-26 16:57:41 +0100457EXPORT_SYMBOL(drm_atomic_helper_check_modeset);
Daniel Vetter623369e2014-09-16 17:50:47 +0200458
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100459/**
John Hunterf98bd3e2015-03-17 15:30:26 +0800460 * drm_atomic_helper_check_planes - validate state object for planes changes
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100461 * @dev: DRM device
462 * @state: the driver state object
463 *
464 * Check the state object to see if the requested state is physically possible.
Daniel Vetterd9b13622014-11-26 16:57:41 +0100465 * This does all the plane update related checks using by calling into the
466 * ->atomic_check hooks provided by the driver.
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100467 *
Maarten Lankhorstfc596662015-07-21 13:28:57 +0200468 * It also sets crtc_state->planes_changed to indicate that a crtc has
469 * updated planes.
470 *
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100471 * RETURNS
472 * Zero for success or -errno
473 */
Daniel Vetterd9b13622014-11-26 16:57:41 +0100474int
475drm_atomic_helper_check_planes(struct drm_device *dev,
476 struct drm_atomic_state *state)
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100477{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300478 struct drm_crtc *crtc;
479 struct drm_crtc_state *crtc_state;
480 struct drm_plane *plane;
481 struct drm_plane_state *plane_state;
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100482 int i, ret = 0;
483
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300484 for_each_plane_in_state(state, plane, plane_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +0200485 const struct drm_plane_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100486
487 funcs = plane->helper_private;
488
489 drm_atomic_helper_plane_changed(state, plane_state, plane);
490
491 if (!funcs || !funcs->atomic_check)
492 continue;
493
494 ret = funcs->atomic_check(plane, plane_state);
495 if (ret) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100496 DRM_DEBUG_ATOMIC("[PLANE:%d] atomic driver check failed\n",
497 plane->base.id);
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100498 return ret;
499 }
500 }
501
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300502 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +0200503 const struct drm_crtc_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100504
505 funcs = crtc->helper_private;
506
507 if (!funcs || !funcs->atomic_check)
508 continue;
509
510 ret = funcs->atomic_check(crtc, state->crtc_states[i]);
511 if (ret) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100512 DRM_DEBUG_ATOMIC("[CRTC:%d] atomic driver check failed\n",
513 crtc->base.id);
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100514 return ret;
515 }
516 }
517
Daniel Vetterd9b13622014-11-26 16:57:41 +0100518 return ret;
519}
520EXPORT_SYMBOL(drm_atomic_helper_check_planes);
521
522/**
523 * drm_atomic_helper_check - validate state object
524 * @dev: DRM device
525 * @state: the driver state object
526 *
527 * Check the state object to see if the requested state is physically possible.
528 * Only crtcs and planes have check callbacks, so for any additional (global)
529 * checking that a driver needs it can simply wrap that around this function.
530 * Drivers without such needs can directly use this as their ->atomic_check()
531 * callback.
532 *
Daniel Vetterb4274fb2014-11-26 17:02:18 +0100533 * This just wraps the two parts of the state checking for planes and modeset
534 * state in the default order: First it calls drm_atomic_helper_check_modeset()
535 * and then drm_atomic_helper_check_planes(). The assumption is that the
536 * ->atomic_check functions depend upon an updated adjusted_mode.clock to
537 * e.g. properly compute watermarks.
538 *
Daniel Vetterd9b13622014-11-26 16:57:41 +0100539 * RETURNS
540 * Zero for success or -errno
541 */
542int drm_atomic_helper_check(struct drm_device *dev,
543 struct drm_atomic_state *state)
544{
545 int ret;
546
Daniel Vetterb4274fb2014-11-26 17:02:18 +0100547 ret = drm_atomic_helper_check_modeset(dev, state);
Daniel Vetterd9b13622014-11-26 16:57:41 +0100548 if (ret)
549 return ret;
550
Daniel Vetterb4274fb2014-11-26 17:02:18 +0100551 ret = drm_atomic_helper_check_planes(dev, state);
Rob Clark934ce1c2014-11-19 16:41:33 -0500552 if (ret)
553 return ret;
554
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100555 return ret;
556}
557EXPORT_SYMBOL(drm_atomic_helper_check);
558
Daniel Vetter623369e2014-09-16 17:50:47 +0200559static void
560disable_outputs(struct drm_device *dev, struct drm_atomic_state *old_state)
561{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300562 struct drm_connector *connector;
563 struct drm_connector_state *old_conn_state;
564 struct drm_crtc *crtc;
565 struct drm_crtc_state *old_crtc_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200566 int i;
567
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300568 for_each_connector_in_state(old_state, connector, old_conn_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +0200569 const struct drm_encoder_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200570 struct drm_encoder *encoder;
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100571 struct drm_crtc_state *old_crtc_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200572
Daniel Vetter623369e2014-09-16 17:50:47 +0200573 /* Shut down everything that's in the changeset and currently
574 * still on. So need to check the old, saved state. */
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300575 if (!old_conn_state->crtc)
Daniel Vetter623369e2014-09-16 17:50:47 +0200576 continue;
577
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100578 old_crtc_state = old_state->crtc_states[drm_crtc_index(old_conn_state->crtc)];
579
Daniel Vetter4218a322015-03-26 22:18:40 +0100580 if (!old_crtc_state->active ||
Daniel Vetter2465ff62015-06-18 09:58:55 +0200581 !drm_atomic_crtc_needs_modeset(old_conn_state->crtc->state))
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100582 continue;
583
Rob Clark46df9ad2014-11-20 15:40:36 -0500584 encoder = old_conn_state->best_encoder;
Daniel Vetter623369e2014-09-16 17:50:47 +0200585
Rob Clark46df9ad2014-11-20 15:40:36 -0500586 /* We shouldn't get this far if we didn't previously have
587 * an encoder.. but WARN_ON() rather than explode.
588 */
589 if (WARN_ON(!encoder))
Daniel Vetter623369e2014-09-16 17:50:47 +0200590 continue;
591
592 funcs = encoder->helper_private;
593
Daniel Vetter17a38d92015-02-22 12:24:16 +0100594 DRM_DEBUG_ATOMIC("disabling [ENCODER:%d:%s]\n",
595 encoder->base.id, encoder->name);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100596
Daniel Vetter623369e2014-09-16 17:50:47 +0200597 /*
598 * Each encoder has at most one connector (since we always steal
John Hunterf98bd3e2015-03-17 15:30:26 +0800599 * it away), so we won't call disable hooks twice.
Daniel Vetter623369e2014-09-16 17:50:47 +0200600 */
Archit Taneja862e6862015-05-21 11:03:16 +0530601 drm_bridge_disable(encoder->bridge);
Daniel Vetter623369e2014-09-16 17:50:47 +0200602
603 /* Right function depends upon target state. */
Daniel Vetteree0a89c2015-01-22 16:36:24 +0100604 if (connector->state->crtc && funcs->prepare)
Daniel Vetter623369e2014-09-16 17:50:47 +0200605 funcs->prepare(encoder);
606 else if (funcs->disable)
607 funcs->disable(encoder);
608 else
609 funcs->dpms(encoder, DRM_MODE_DPMS_OFF);
610
Archit Taneja862e6862015-05-21 11:03:16 +0530611 drm_bridge_post_disable(encoder->bridge);
Daniel Vetter623369e2014-09-16 17:50:47 +0200612 }
613
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300614 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +0200615 const struct drm_crtc_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200616
617 /* Shut down everything that needs a full modeset. */
Daniel Vetter2465ff62015-06-18 09:58:55 +0200618 if (!drm_atomic_crtc_needs_modeset(crtc->state))
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100619 continue;
620
621 if (!old_crtc_state->active)
Daniel Vetter623369e2014-09-16 17:50:47 +0200622 continue;
623
624 funcs = crtc->helper_private;
625
Daniel Vetter17a38d92015-02-22 12:24:16 +0100626 DRM_DEBUG_ATOMIC("disabling [CRTC:%d]\n",
627 crtc->base.id);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100628
629
Daniel Vetter623369e2014-09-16 17:50:47 +0200630 /* Right function depends upon target state. */
Daniel Vetteree0a89c2015-01-22 16:36:24 +0100631 if (crtc->state->enable && funcs->prepare)
Daniel Vetter623369e2014-09-16 17:50:47 +0200632 funcs->prepare(crtc);
633 else if (funcs->disable)
634 funcs->disable(crtc);
635 else
636 funcs->dpms(crtc, DRM_MODE_DPMS_OFF);
637 }
638}
639
Daniel Vetter4c18d302015-05-12 15:27:37 +0200640/**
641 * drm_atomic_helper_update_legacy_modeset_state - update legacy modeset state
642 * @dev: DRM device
643 * @old_state: atomic state object with old state structures
644 *
645 * This function updates all the various legacy modeset state pointers in
646 * connectors, encoders and crtcs. It also updates the timestamping constants
647 * used for precise vblank timestamps by calling
648 * drm_calc_timestamping_constants().
649 *
650 * Drivers can use this for building their own atomic commit if they don't have
651 * a pure helper-based modeset implementation.
652 */
653void
654drm_atomic_helper_update_legacy_modeset_state(struct drm_device *dev,
655 struct drm_atomic_state *old_state)
Daniel Vetter623369e2014-09-16 17:50:47 +0200656{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300657 struct drm_connector *connector;
658 struct drm_connector_state *old_conn_state;
659 struct drm_crtc *crtc;
660 struct drm_crtc_state *old_crtc_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200661 int i;
662
663 /* clear out existing links */
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300664 for_each_connector_in_state(old_state, connector, old_conn_state, i) {
665 if (!connector->encoder)
Daniel Vetter623369e2014-09-16 17:50:47 +0200666 continue;
667
668 WARN_ON(!connector->encoder->crtc);
669
670 connector->encoder->crtc = NULL;
671 connector->encoder = NULL;
672 }
673
674 /* set new links */
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300675 for_each_connector_in_state(old_state, connector, old_conn_state, i) {
676 if (!connector->state->crtc)
Daniel Vetter623369e2014-09-16 17:50:47 +0200677 continue;
678
679 if (WARN_ON(!connector->state->best_encoder))
680 continue;
681
682 connector->encoder = connector->state->best_encoder;
683 connector->encoder->crtc = connector->state->crtc;
684 }
685
686 /* set legacy state in the crtc structure */
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300687 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Maarten Lankhorst26608012015-07-16 15:51:01 +0200688 struct drm_plane *primary = crtc->primary;
689
Daniel Vetter623369e2014-09-16 17:50:47 +0200690 crtc->mode = crtc->state->mode;
691 crtc->enabled = crtc->state->enable;
Maarten Lankhorst26608012015-07-16 15:51:01 +0200692
693 if (drm_atomic_get_existing_plane_state(old_state, primary) &&
694 primary->state->crtc == crtc) {
695 crtc->x = primary->state->src_x >> 16;
696 crtc->y = primary->state->src_y >> 16;
697 }
Daniel Vetter3d51d2d2015-05-12 15:21:06 +0200698
699 if (crtc->state->enable)
700 drm_calc_timestamping_constants(crtc,
701 &crtc->state->adjusted_mode);
Daniel Vetter623369e2014-09-16 17:50:47 +0200702 }
703}
Daniel Vetter4c18d302015-05-12 15:27:37 +0200704EXPORT_SYMBOL(drm_atomic_helper_update_legacy_modeset_state);
Daniel Vetter623369e2014-09-16 17:50:47 +0200705
706static void
707crtc_set_mode(struct drm_device *dev, struct drm_atomic_state *old_state)
708{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300709 struct drm_crtc *crtc;
710 struct drm_crtc_state *old_crtc_state;
711 struct drm_connector *connector;
712 struct drm_connector_state *old_conn_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200713 int i;
714
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300715 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +0200716 const struct drm_crtc_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200717
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300718 if (!crtc->state->mode_changed)
Daniel Vetter623369e2014-09-16 17:50:47 +0200719 continue;
720
721 funcs = crtc->helper_private;
722
Daniel Vetterc982bd92015-02-22 12:24:20 +0100723 if (crtc->state->enable && funcs->mode_set_nofb) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100724 DRM_DEBUG_ATOMIC("modeset on [CRTC:%d]\n",
725 crtc->base.id);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100726
Daniel Vetter623369e2014-09-16 17:50:47 +0200727 funcs->mode_set_nofb(crtc);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100728 }
Daniel Vetter623369e2014-09-16 17:50:47 +0200729 }
730
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300731 for_each_connector_in_state(old_state, connector, old_conn_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +0200732 const struct drm_encoder_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200733 struct drm_crtc_state *new_crtc_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200734 struct drm_encoder *encoder;
735 struct drm_display_mode *mode, *adjusted_mode;
736
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300737 if (!connector->state->best_encoder)
Daniel Vetter623369e2014-09-16 17:50:47 +0200738 continue;
739
740 encoder = connector->state->best_encoder;
741 funcs = encoder->helper_private;
742 new_crtc_state = connector->state->crtc->state;
743 mode = &new_crtc_state->mode;
744 adjusted_mode = &new_crtc_state->adjusted_mode;
745
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100746 if (!new_crtc_state->mode_changed)
747 continue;
748
Daniel Vetter17a38d92015-02-22 12:24:16 +0100749 DRM_DEBUG_ATOMIC("modeset on [ENCODER:%d:%s]\n",
750 encoder->base.id, encoder->name);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100751
Daniel Vetter623369e2014-09-16 17:50:47 +0200752 /*
753 * Each encoder has at most one connector (since we always steal
John Hunterf98bd3e2015-03-17 15:30:26 +0800754 * it away), so we won't call mode_set hooks twice.
Daniel Vetter623369e2014-09-16 17:50:47 +0200755 */
Daniel Vetterc982bd92015-02-22 12:24:20 +0100756 if (funcs->mode_set)
757 funcs->mode_set(encoder, mode, adjusted_mode);
Daniel Vetter623369e2014-09-16 17:50:47 +0200758
Archit Taneja862e6862015-05-21 11:03:16 +0530759 drm_bridge_mode_set(encoder->bridge, mode, adjusted_mode);
Daniel Vetter623369e2014-09-16 17:50:47 +0200760 }
761}
762
763/**
Daniel Vetter1af434a2015-02-22 12:24:19 +0100764 * drm_atomic_helper_commit_modeset_disables - modeset commit to disable outputs
Daniel Vetter623369e2014-09-16 17:50:47 +0200765 * @dev: DRM device
Laurent Pincharta072f802015-02-22 12:24:18 +0100766 * @old_state: atomic state object with old state structures
Daniel Vetter623369e2014-09-16 17:50:47 +0200767 *
Daniel Vetter1af434a2015-02-22 12:24:19 +0100768 * This function shuts down all the outputs that need to be shut down and
Daniel Vetter623369e2014-09-16 17:50:47 +0200769 * prepares them (if required) with the new mode.
Daniel Vetter1af434a2015-02-22 12:24:19 +0100770 *
771 * For compatability with legacy crtc helpers this should be called before
772 * drm_atomic_helper_commit_planes(), which is what the default commit function
773 * does. But drivers with different needs can group the modeset commits together
774 * and do the plane commits at the end. This is useful for drivers doing runtime
775 * PM since planes updates then only happen when the CRTC is actually enabled.
Daniel Vetter623369e2014-09-16 17:50:47 +0200776 */
Daniel Vetter1af434a2015-02-22 12:24:19 +0100777void drm_atomic_helper_commit_modeset_disables(struct drm_device *dev,
778 struct drm_atomic_state *old_state)
Daniel Vetter623369e2014-09-16 17:50:47 +0200779{
Laurent Pincharta072f802015-02-22 12:24:18 +0100780 disable_outputs(dev, old_state);
Daniel Vetter4c18d302015-05-12 15:27:37 +0200781
782 drm_atomic_helper_update_legacy_modeset_state(dev, old_state);
783
Laurent Pincharta072f802015-02-22 12:24:18 +0100784 crtc_set_mode(dev, old_state);
Daniel Vetter623369e2014-09-16 17:50:47 +0200785}
Daniel Vetter1af434a2015-02-22 12:24:19 +0100786EXPORT_SYMBOL(drm_atomic_helper_commit_modeset_disables);
Daniel Vetter623369e2014-09-16 17:50:47 +0200787
788/**
Daniel Vetter1af434a2015-02-22 12:24:19 +0100789 * drm_atomic_helper_commit_modeset_enables - modeset commit to enable outputs
Daniel Vetter623369e2014-09-16 17:50:47 +0200790 * @dev: DRM device
791 * @old_state: atomic state object with old state structures
792 *
Daniel Vetter1af434a2015-02-22 12:24:19 +0100793 * This function enables all the outputs with the new configuration which had to
794 * be turned off for the update.
795 *
796 * For compatability with legacy crtc helpers this should be called after
797 * drm_atomic_helper_commit_planes(), which is what the default commit function
798 * does. But drivers with different needs can group the modeset commits together
799 * and do the plane commits at the end. This is useful for drivers doing runtime
800 * PM since planes updates then only happen when the CRTC is actually enabled.
Daniel Vetter623369e2014-09-16 17:50:47 +0200801 */
Daniel Vetter1af434a2015-02-22 12:24:19 +0100802void drm_atomic_helper_commit_modeset_enables(struct drm_device *dev,
803 struct drm_atomic_state *old_state)
Daniel Vetter623369e2014-09-16 17:50:47 +0200804{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300805 struct drm_crtc *crtc;
806 struct drm_crtc_state *old_crtc_state;
807 struct drm_connector *connector;
808 struct drm_connector_state *old_conn_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200809 int i;
810
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300811 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +0200812 const struct drm_crtc_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200813
814 /* Need to filter out CRTCs where only planes change. */
Daniel Vetter2465ff62015-06-18 09:58:55 +0200815 if (!drm_atomic_crtc_needs_modeset(crtc->state))
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100816 continue;
817
818 if (!crtc->state->active)
Daniel Vetter623369e2014-09-16 17:50:47 +0200819 continue;
820
821 funcs = crtc->helper_private;
822
Daniel Vetteree0a89c2015-01-22 16:36:24 +0100823 if (crtc->state->enable) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100824 DRM_DEBUG_ATOMIC("enabling [CRTC:%d]\n",
825 crtc->base.id);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100826
Daniel Vetteree0a89c2015-01-22 16:36:24 +0100827 if (funcs->enable)
828 funcs->enable(crtc);
829 else
830 funcs->commit(crtc);
831 }
Daniel Vetter623369e2014-09-16 17:50:47 +0200832 }
833
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300834 for_each_connector_in_state(old_state, connector, old_conn_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +0200835 const struct drm_encoder_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200836 struct drm_encoder *encoder;
837
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300838 if (!connector->state->best_encoder)
Daniel Vetter623369e2014-09-16 17:50:47 +0200839 continue;
840
Daniel Vetter4218a322015-03-26 22:18:40 +0100841 if (!connector->state->crtc->state->active ||
Daniel Vetter2465ff62015-06-18 09:58:55 +0200842 !drm_atomic_crtc_needs_modeset(connector->state->crtc->state))
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100843 continue;
844
Daniel Vetter623369e2014-09-16 17:50:47 +0200845 encoder = connector->state->best_encoder;
846 funcs = encoder->helper_private;
847
Daniel Vetter17a38d92015-02-22 12:24:16 +0100848 DRM_DEBUG_ATOMIC("enabling [ENCODER:%d:%s]\n",
849 encoder->base.id, encoder->name);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100850
Daniel Vetter623369e2014-09-16 17:50:47 +0200851 /*
852 * Each encoder has at most one connector (since we always steal
John Hunterf98bd3e2015-03-17 15:30:26 +0800853 * it away), so we won't call enable hooks twice.
Daniel Vetter623369e2014-09-16 17:50:47 +0200854 */
Archit Taneja862e6862015-05-21 11:03:16 +0530855 drm_bridge_pre_enable(encoder->bridge);
Daniel Vetter623369e2014-09-16 17:50:47 +0200856
Daniel Vetteree0a89c2015-01-22 16:36:24 +0100857 if (funcs->enable)
858 funcs->enable(encoder);
859 else
860 funcs->commit(encoder);
Daniel Vetter623369e2014-09-16 17:50:47 +0200861
Archit Taneja862e6862015-05-21 11:03:16 +0530862 drm_bridge_enable(encoder->bridge);
Daniel Vetter623369e2014-09-16 17:50:47 +0200863 }
864}
Daniel Vetter1af434a2015-02-22 12:24:19 +0100865EXPORT_SYMBOL(drm_atomic_helper_commit_modeset_enables);
Daniel Vetter623369e2014-09-16 17:50:47 +0200866
Daniel Vettere2330f02014-10-29 11:34:56 +0100867static void wait_for_fences(struct drm_device *dev,
868 struct drm_atomic_state *state)
869{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300870 struct drm_plane *plane;
871 struct drm_plane_state *plane_state;
Daniel Vettere2330f02014-10-29 11:34:56 +0100872 int i;
873
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300874 for_each_plane_in_state(state, plane, plane_state, i) {
875 if (!plane->state->fence)
Daniel Vettere2330f02014-10-29 11:34:56 +0100876 continue;
877
878 WARN_ON(!plane->state->fb);
879
880 fence_wait(plane->state->fence, false);
881 fence_put(plane->state->fence);
882 plane->state->fence = NULL;
883 }
884}
885
Daniel Vetterab58e332014-11-24 20:42:42 +0100886static bool framebuffer_changed(struct drm_device *dev,
887 struct drm_atomic_state *old_state,
888 struct drm_crtc *crtc)
889{
890 struct drm_plane *plane;
891 struct drm_plane_state *old_plane_state;
Daniel Vetterab58e332014-11-24 20:42:42 +0100892 int i;
893
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300894 for_each_plane_in_state(old_state, plane, old_plane_state, i) {
Daniel Vetterab58e332014-11-24 20:42:42 +0100895 if (plane->state->crtc != crtc &&
896 old_plane_state->crtc != crtc)
897 continue;
898
899 if (plane->state->fb != old_plane_state->fb)
900 return true;
901 }
902
903 return false;
904}
905
Rob Clark5ee32292014-11-11 19:38:59 -0500906/**
907 * drm_atomic_helper_wait_for_vblanks - wait for vblank on crtcs
908 * @dev: DRM device
909 * @old_state: atomic state object with old state structures
910 *
911 * Helper to, after atomic commit, wait for vblanks on all effected
912 * crtcs (ie. before cleaning up old framebuffers using
Daniel Vetterab58e332014-11-24 20:42:42 +0100913 * drm_atomic_helper_cleanup_planes()). It will only wait on crtcs where the
914 * framebuffers have actually changed to optimize for the legacy cursor and
915 * plane update use-case.
Rob Clark5ee32292014-11-11 19:38:59 -0500916 */
917void
918drm_atomic_helper_wait_for_vblanks(struct drm_device *dev,
919 struct drm_atomic_state *old_state)
Daniel Vetter623369e2014-09-16 17:50:47 +0200920{
921 struct drm_crtc *crtc;
922 struct drm_crtc_state *old_crtc_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200923 int i, ret;
924
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300925 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Daniel Vetter623369e2014-09-16 17:50:47 +0200926 /* No one cares about the old state, so abuse it for tracking
927 * and store whether we hold a vblank reference (and should do a
928 * vblank wait) in the ->enable boolean. */
929 old_crtc_state->enable = false;
930
931 if (!crtc->state->enable)
932 continue;
933
Daniel Vetterf02ad902015-01-22 16:36:23 +0100934 /* Legacy cursor ioctls are completely unsynced, and userspace
935 * relies on that (by doing tons of cursor updates). */
936 if (old_state->legacy_cursor_update)
937 continue;
938
Daniel Vetterab58e332014-11-24 20:42:42 +0100939 if (!framebuffer_changed(dev, old_state, crtc))
940 continue;
941
Daniel Vetter623369e2014-09-16 17:50:47 +0200942 ret = drm_crtc_vblank_get(crtc);
943 if (ret != 0)
944 continue;
945
946 old_crtc_state->enable = true;
947 old_crtc_state->last_vblank_count = drm_vblank_count(dev, i);
948 }
949
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300950 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
951 if (!old_crtc_state->enable)
Daniel Vetter623369e2014-09-16 17:50:47 +0200952 continue;
953
954 ret = wait_event_timeout(dev->vblank[i].queue,
955 old_crtc_state->last_vblank_count !=
956 drm_vblank_count(dev, i),
957 msecs_to_jiffies(50));
958
959 drm_crtc_vblank_put(crtc);
960 }
961}
Rob Clark5ee32292014-11-11 19:38:59 -0500962EXPORT_SYMBOL(drm_atomic_helper_wait_for_vblanks);
Daniel Vetter623369e2014-09-16 17:50:47 +0200963
964/**
965 * drm_atomic_helper_commit - commit validated state object
966 * @dev: DRM device
967 * @state: the driver state object
968 * @async: asynchronous commit
969 *
970 * This function commits a with drm_atomic_helper_check() pre-validated state
971 * object. This can still fail when e.g. the framebuffer reservation fails. For
972 * now this doesn't implement asynchronous commits.
973 *
974 * RETURNS
975 * Zero for success or -errno.
976 */
977int drm_atomic_helper_commit(struct drm_device *dev,
978 struct drm_atomic_state *state,
979 bool async)
980{
981 int ret;
982
983 if (async)
984 return -EBUSY;
985
986 ret = drm_atomic_helper_prepare_planes(dev, state);
987 if (ret)
988 return ret;
989
990 /*
991 * This is the point of no return - everything below never fails except
992 * when the hw goes bonghits. Which means we can commit the new state on
993 * the software side now.
994 */
995
996 drm_atomic_helper_swap_state(dev, state);
997
998 /*
999 * Everything below can be run asynchronously without the need to grab
John Hunterf98bd3e2015-03-17 15:30:26 +08001000 * any modeset locks at all under one condition: It must be guaranteed
Daniel Vetter623369e2014-09-16 17:50:47 +02001001 * that the asynchronous work has either been cancelled (if the driver
1002 * supports it, which at least requires that the framebuffers get
1003 * cleaned up with drm_atomic_helper_cleanup_planes()) or completed
1004 * before the new state gets committed on the software side with
1005 * drm_atomic_helper_swap_state().
1006 *
1007 * This scheme allows new atomic state updates to be prepared and
1008 * checked in parallel to the asynchronous completion of the previous
1009 * update. Which is important since compositors need to figure out the
1010 * composition of the next frame right after having submitted the
1011 * current layout.
1012 */
1013
Daniel Vettere2330f02014-10-29 11:34:56 +01001014 wait_for_fences(dev, state);
1015
Daniel Vetter1af434a2015-02-22 12:24:19 +01001016 drm_atomic_helper_commit_modeset_disables(dev, state);
Daniel Vetter623369e2014-09-16 17:50:47 +02001017
1018 drm_atomic_helper_commit_planes(dev, state);
1019
Daniel Vetter1af434a2015-02-22 12:24:19 +01001020 drm_atomic_helper_commit_modeset_enables(dev, state);
Daniel Vetter623369e2014-09-16 17:50:47 +02001021
Rob Clark5ee32292014-11-11 19:38:59 -05001022 drm_atomic_helper_wait_for_vblanks(dev, state);
Daniel Vetter623369e2014-09-16 17:50:47 +02001023
1024 drm_atomic_helper_cleanup_planes(dev, state);
1025
1026 drm_atomic_state_free(state);
1027
1028 return 0;
1029}
1030EXPORT_SYMBOL(drm_atomic_helper_commit);
1031
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001032/**
Daniel Vettere8c833a2014-07-27 18:30:19 +02001033 * DOC: implementing async commit
1034 *
1035 * For now the atomic helpers don't support async commit directly. If there is
1036 * real need it could be added though, using the dma-buf fence infrastructure
1037 * for generic synchronization with outstanding rendering.
1038 *
1039 * For now drivers have to implement async commit themselves, with the following
1040 * sequence being the recommended one:
1041 *
1042 * 1. Run drm_atomic_helper_prepare_planes() first. This is the only function
1043 * which commit needs to call which can fail, so we want to run it first and
1044 * synchronously.
1045 *
1046 * 2. Synchronize with any outstanding asynchronous commit worker threads which
1047 * might be affected the new state update. This can be done by either cancelling
1048 * or flushing the work items, depending upon whether the driver can deal with
1049 * cancelled updates. Note that it is important to ensure that the framebuffer
1050 * cleanup is still done when cancelling.
1051 *
1052 * For sufficient parallelism it is recommended to have a work item per crtc
1053 * (for updates which don't touch global state) and a global one. Then we only
1054 * need to synchronize with the crtc work items for changed crtcs and the global
1055 * work item, which allows nice concurrent updates on disjoint sets of crtcs.
1056 *
1057 * 3. The software state is updated synchronously with
1058 * drm_atomic_helper_swap_state. Doing this under the protection of all modeset
1059 * locks means concurrent callers never see inconsistent state. And doing this
1060 * while it's guaranteed that no relevant async worker runs means that async
1061 * workers do not need grab any locks. Actually they must not grab locks, for
1062 * otherwise the work flushing will deadlock.
1063 *
1064 * 4. Schedule a work item to do all subsequent steps, using the split-out
1065 * commit helpers: a) pre-plane commit b) plane commit c) post-plane commit and
1066 * then cleaning up the framebuffers after the old framebuffer is no longer
1067 * being displayed.
1068 */
1069
1070/**
Daniel Vetter2e3afd42015-02-26 14:17:38 +01001071 * drm_atomic_helper_prepare_planes - prepare plane resources before commit
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001072 * @dev: DRM device
Daniel Vetter2e3afd42015-02-26 14:17:38 +01001073 * @state: atomic state object with new state structures
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001074 *
1075 * This function prepares plane state, specifically framebuffers, for the new
1076 * configuration. If any failure is encountered this function will call
1077 * ->cleanup_fb on any already successfully prepared framebuffer.
1078 *
1079 * Returns:
1080 * 0 on success, negative error code on failure.
1081 */
1082int drm_atomic_helper_prepare_planes(struct drm_device *dev,
1083 struct drm_atomic_state *state)
1084{
1085 int nplanes = dev->mode_config.num_total_plane;
1086 int ret, i;
1087
1088 for (i = 0; i < nplanes; i++) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +02001089 const struct drm_plane_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001090 struct drm_plane *plane = state->planes[i];
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +00001091 struct drm_plane_state *plane_state = state->plane_states[i];
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001092 struct drm_framebuffer *fb;
1093
1094 if (!plane)
1095 continue;
1096
1097 funcs = plane->helper_private;
1098
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +00001099 fb = plane_state->fb;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001100
1101 if (fb && funcs->prepare_fb) {
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +00001102 ret = funcs->prepare_fb(plane, fb, plane_state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001103 if (ret)
1104 goto fail;
1105 }
1106 }
1107
1108 return 0;
1109
1110fail:
1111 for (i--; i >= 0; i--) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +02001112 const struct drm_plane_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001113 struct drm_plane *plane = state->planes[i];
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +00001114 struct drm_plane_state *plane_state = state->plane_states[i];
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001115 struct drm_framebuffer *fb;
1116
1117 if (!plane)
1118 continue;
1119
1120 funcs = plane->helper_private;
1121
1122 fb = state->plane_states[i]->fb;
1123
1124 if (fb && funcs->cleanup_fb)
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +00001125 funcs->cleanup_fb(plane, fb, plane_state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001126
1127 }
1128
1129 return ret;
1130}
1131EXPORT_SYMBOL(drm_atomic_helper_prepare_planes);
1132
1133/**
1134 * drm_atomic_helper_commit_planes - commit plane state
1135 * @dev: DRM device
Daniel Vetterb0fcfc82014-11-19 18:38:11 +01001136 * @old_state: atomic state object with old state structures
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001137 *
1138 * This function commits the new plane state using the plane and atomic helper
1139 * functions for planes and crtcs. It assumes that the atomic state has already
1140 * been pushed into the relevant object state pointers, since this step can no
1141 * longer fail.
1142 *
Daniel Vetterb0fcfc82014-11-19 18:38:11 +01001143 * It still requires the global state object @old_state to know which planes and
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001144 * crtcs need to be updated though.
Maarten Lankhorstde28d022015-05-19 16:41:01 +02001145 *
1146 * Note that this function does all plane updates across all CRTCs in one step.
1147 * If the hardware can't support this approach look at
1148 * drm_atomic_helper_commit_planes_on_crtc() instead.
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001149 */
1150void drm_atomic_helper_commit_planes(struct drm_device *dev,
Daniel Vetterb0fcfc82014-11-19 18:38:11 +01001151 struct drm_atomic_state *old_state)
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001152{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001153 struct drm_crtc *crtc;
1154 struct drm_crtc_state *old_crtc_state;
1155 struct drm_plane *plane;
1156 struct drm_plane_state *old_plane_state;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001157 int i;
1158
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001159 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +02001160 const struct drm_crtc_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001161
1162 funcs = crtc->helper_private;
1163
1164 if (!funcs || !funcs->atomic_begin)
1165 continue;
1166
1167 funcs->atomic_begin(crtc);
1168 }
1169
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001170 for_each_plane_in_state(old_state, plane, old_plane_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +02001171 const struct drm_plane_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001172
1173 funcs = plane->helper_private;
1174
Thierry Reding3cad4b62014-11-25 13:05:12 +01001175 if (!funcs)
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001176 continue;
1177
Thierry Reding407b8bd2014-11-20 12:05:50 +01001178 /*
1179 * Special-case disabling the plane if drivers support it.
1180 */
1181 if (drm_atomic_plane_disabling(plane, old_plane_state) &&
1182 funcs->atomic_disable)
1183 funcs->atomic_disable(plane, old_plane_state);
Daniel Vetter475d2312015-04-10 16:22:39 +02001184 else if (plane->state->crtc ||
1185 drm_atomic_plane_disabling(plane, old_plane_state))
Thierry Reding407b8bd2014-11-20 12:05:50 +01001186 funcs->atomic_update(plane, old_plane_state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001187 }
1188
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001189 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +02001190 const struct drm_crtc_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001191
1192 funcs = crtc->helper_private;
1193
1194 if (!funcs || !funcs->atomic_flush)
1195 continue;
1196
1197 funcs->atomic_flush(crtc);
1198 }
1199}
1200EXPORT_SYMBOL(drm_atomic_helper_commit_planes);
1201
1202/**
Maarten Lankhorstde28d022015-05-19 16:41:01 +02001203 * drm_atomic_helper_commit_planes_on_crtc - commit plane state for a crtc
1204 * @old_crtc_state: atomic state object with the old crtc state
1205 *
1206 * This function commits the new plane state using the plane and atomic helper
1207 * functions for planes on the specific crtc. It assumes that the atomic state
1208 * has already been pushed into the relevant object state pointers, since this
1209 * step can no longer fail.
1210 *
1211 * This function is useful when plane updates should be done crtc-by-crtc
1212 * instead of one global step like drm_atomic_helper_commit_planes() does.
1213 *
1214 * This function can only be savely used when planes are not allowed to move
1215 * between different CRTCs because this function doesn't handle inter-CRTC
1216 * depencies. Callers need to ensure that either no such depencies exist,
1217 * resolve them through ordering of commit calls or through some other means.
1218 */
1219void
1220drm_atomic_helper_commit_planes_on_crtc(struct drm_crtc_state *old_crtc_state)
1221{
1222 const struct drm_crtc_helper_funcs *crtc_funcs;
1223 struct drm_crtc *crtc = old_crtc_state->crtc;
1224 struct drm_atomic_state *old_state = old_crtc_state->state;
1225 struct drm_plane *plane;
1226 unsigned plane_mask;
1227
1228 plane_mask = old_crtc_state->plane_mask;
1229 plane_mask |= crtc->state->plane_mask;
1230
1231 crtc_funcs = crtc->helper_private;
1232 if (crtc_funcs && crtc_funcs->atomic_begin)
1233 crtc_funcs->atomic_begin(crtc);
1234
1235 drm_for_each_plane_mask(plane, crtc->dev, plane_mask) {
1236 struct drm_plane_state *old_plane_state =
1237 drm_atomic_get_existing_plane_state(old_state, plane);
1238 const struct drm_plane_helper_funcs *plane_funcs;
1239
1240 plane_funcs = plane->helper_private;
1241
1242 if (!old_plane_state || !plane_funcs)
1243 continue;
1244
1245 WARN_ON(plane->state->crtc && plane->state->crtc != crtc);
1246
1247 if (drm_atomic_plane_disabling(plane, old_plane_state) &&
1248 plane_funcs->atomic_disable)
1249 plane_funcs->atomic_disable(plane, old_plane_state);
1250 else if (plane->state->crtc ||
1251 drm_atomic_plane_disabling(plane, old_plane_state))
1252 plane_funcs->atomic_update(plane, old_plane_state);
1253 }
1254
1255 if (crtc_funcs && crtc_funcs->atomic_flush)
1256 crtc_funcs->atomic_flush(crtc);
1257}
1258EXPORT_SYMBOL(drm_atomic_helper_commit_planes_on_crtc);
1259
1260/**
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001261 * drm_atomic_helper_cleanup_planes - cleanup plane resources after commit
1262 * @dev: DRM device
1263 * @old_state: atomic state object with old state structures
1264 *
1265 * This function cleans up plane state, specifically framebuffers, from the old
1266 * configuration. Hence the old configuration must be perserved in @old_state to
1267 * be able to call this function.
1268 *
1269 * This function must also be called on the new state when the atomic update
1270 * fails at any point after calling drm_atomic_helper_prepare_planes().
1271 */
1272void drm_atomic_helper_cleanup_planes(struct drm_device *dev,
1273 struct drm_atomic_state *old_state)
1274{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001275 struct drm_plane *plane;
1276 struct drm_plane_state *plane_state;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001277 int i;
1278
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001279 for_each_plane_in_state(old_state, plane, plane_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +02001280 const struct drm_plane_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001281 struct drm_framebuffer *old_fb;
1282
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001283 funcs = plane->helper_private;
1284
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +00001285 old_fb = plane_state->fb;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001286
1287 if (old_fb && funcs->cleanup_fb)
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +00001288 funcs->cleanup_fb(plane, old_fb, plane_state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001289 }
1290}
1291EXPORT_SYMBOL(drm_atomic_helper_cleanup_planes);
1292
1293/**
1294 * drm_atomic_helper_swap_state - store atomic state into current sw state
1295 * @dev: DRM device
1296 * @state: atomic state
1297 *
1298 * This function stores the atomic state into the current state pointers in all
1299 * driver objects. It should be called after all failing steps have been done
1300 * and succeeded, but before the actual hardware state is committed.
1301 *
1302 * For cleanup and error recovery the current state for all changed objects will
1303 * be swaped into @state.
1304 *
1305 * With that sequence it fits perfectly into the plane prepare/cleanup sequence:
1306 *
1307 * 1. Call drm_atomic_helper_prepare_planes() with the staged atomic state.
1308 *
1309 * 2. Do any other steps that might fail.
1310 *
1311 * 3. Put the staged state into the current state pointers with this function.
1312 *
1313 * 4. Actually commit the hardware state.
1314 *
1315 * 5. Call drm_atomic_helper_cleanup_planes with @state, which since step 3
1316 * contains the old state. Also do any other cleanup required with that state.
1317 */
1318void drm_atomic_helper_swap_state(struct drm_device *dev,
1319 struct drm_atomic_state *state)
1320{
1321 int i;
1322
1323 for (i = 0; i < dev->mode_config.num_connector; i++) {
1324 struct drm_connector *connector = state->connectors[i];
1325
1326 if (!connector)
1327 continue;
1328
1329 connector->state->state = state;
1330 swap(state->connector_states[i], connector->state);
1331 connector->state->state = NULL;
1332 }
1333
1334 for (i = 0; i < dev->mode_config.num_crtc; i++) {
1335 struct drm_crtc *crtc = state->crtcs[i];
1336
1337 if (!crtc)
1338 continue;
1339
1340 crtc->state->state = state;
1341 swap(state->crtc_states[i], crtc->state);
1342 crtc->state->state = NULL;
1343 }
1344
1345 for (i = 0; i < dev->mode_config.num_total_plane; i++) {
1346 struct drm_plane *plane = state->planes[i];
1347
1348 if (!plane)
1349 continue;
1350
1351 plane->state->state = state;
1352 swap(state->plane_states[i], plane->state);
1353 plane->state->state = NULL;
1354 }
1355}
1356EXPORT_SYMBOL(drm_atomic_helper_swap_state);
Daniel Vetter042652e2014-07-27 13:46:52 +02001357
1358/**
1359 * drm_atomic_helper_update_plane - Helper for primary plane update using atomic
1360 * @plane: plane object to update
1361 * @crtc: owning CRTC of owning plane
1362 * @fb: framebuffer to flip onto plane
1363 * @crtc_x: x offset of primary plane on crtc
1364 * @crtc_y: y offset of primary plane on crtc
1365 * @crtc_w: width of primary plane rectangle on crtc
1366 * @crtc_h: height of primary plane rectangle on crtc
1367 * @src_x: x offset of @fb for panning
1368 * @src_y: y offset of @fb for panning
1369 * @src_w: width of source rectangle in @fb
1370 * @src_h: height of source rectangle in @fb
1371 *
1372 * Provides a default plane update handler using the atomic driver interface.
1373 *
1374 * RETURNS:
1375 * Zero on success, error code on failure
1376 */
1377int drm_atomic_helper_update_plane(struct drm_plane *plane,
1378 struct drm_crtc *crtc,
1379 struct drm_framebuffer *fb,
1380 int crtc_x, int crtc_y,
1381 unsigned int crtc_w, unsigned int crtc_h,
1382 uint32_t src_x, uint32_t src_y,
1383 uint32_t src_w, uint32_t src_h)
1384{
1385 struct drm_atomic_state *state;
1386 struct drm_plane_state *plane_state;
1387 int ret = 0;
1388
1389 state = drm_atomic_state_alloc(plane->dev);
1390 if (!state)
1391 return -ENOMEM;
1392
1393 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
1394retry:
1395 plane_state = drm_atomic_get_plane_state(state, plane);
1396 if (IS_ERR(plane_state)) {
1397 ret = PTR_ERR(plane_state);
1398 goto fail;
1399 }
1400
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01001401 ret = drm_atomic_set_crtc_for_plane(plane_state, crtc);
Daniel Vetter042652e2014-07-27 13:46:52 +02001402 if (ret != 0)
1403 goto fail;
Daniel Vetter321ebf02014-11-04 22:57:27 +01001404 drm_atomic_set_fb_for_plane(plane_state, fb);
Daniel Vetter042652e2014-07-27 13:46:52 +02001405 plane_state->crtc_x = crtc_x;
1406 plane_state->crtc_y = crtc_y;
1407 plane_state->crtc_h = crtc_h;
1408 plane_state->crtc_w = crtc_w;
1409 plane_state->src_x = src_x;
1410 plane_state->src_y = src_y;
1411 plane_state->src_h = src_h;
1412 plane_state->src_w = src_w;
1413
Daniel Vetter3671c582015-05-04 15:40:52 +02001414 if (plane == crtc->cursor)
1415 state->legacy_cursor_update = true;
1416
Daniel Vetter042652e2014-07-27 13:46:52 +02001417 ret = drm_atomic_commit(state);
1418 if (ret != 0)
1419 goto fail;
1420
1421 /* Driver takes ownership of state on successful commit. */
1422 return 0;
1423fail:
1424 if (ret == -EDEADLK)
1425 goto backoff;
1426
1427 drm_atomic_state_free(state);
1428
1429 return ret;
1430backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02001431 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01001432 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02001433
1434 /*
1435 * Someone might have exchanged the framebuffer while we dropped locks
1436 * in the backoff code. We need to fix up the fb refcount tracking the
1437 * core does for us.
1438 */
1439 plane->old_fb = plane->fb;
1440
1441 goto retry;
1442}
1443EXPORT_SYMBOL(drm_atomic_helper_update_plane);
1444
1445/**
1446 * drm_atomic_helper_disable_plane - Helper for primary plane disable using * atomic
1447 * @plane: plane to disable
1448 *
1449 * Provides a default plane disable handler using the atomic driver interface.
1450 *
1451 * RETURNS:
1452 * Zero on success, error code on failure
1453 */
1454int drm_atomic_helper_disable_plane(struct drm_plane *plane)
1455{
1456 struct drm_atomic_state *state;
1457 struct drm_plane_state *plane_state;
1458 int ret = 0;
1459
Jasper St. Pierreaa54e2e2014-11-20 19:59:15 -08001460 /*
1461 * FIXME: Without plane->crtc set we can't get at the implicit legacy
1462 * acquire context. The real fix will be to wire the acquire ctx through
1463 * everywhere we need it, but meanwhile prevent chaos by just skipping
1464 * this noop. The critical case is the cursor ioctls which a) only grab
1465 * crtc/cursor-plane locks (so we need the crtc to get at the right
1466 * acquire context) and b) can try to disable the plane multiple times.
1467 */
1468 if (!plane->crtc)
1469 return 0;
1470
Daniel Vetter042652e2014-07-27 13:46:52 +02001471 state = drm_atomic_state_alloc(plane->dev);
1472 if (!state)
1473 return -ENOMEM;
1474
1475 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(plane->crtc);
1476retry:
1477 plane_state = drm_atomic_get_plane_state(state, plane);
1478 if (IS_ERR(plane_state)) {
1479 ret = PTR_ERR(plane_state);
1480 goto fail;
1481 }
1482
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01001483 ret = drm_atomic_set_crtc_for_plane(plane_state, NULL);
Daniel Vetter042652e2014-07-27 13:46:52 +02001484 if (ret != 0)
1485 goto fail;
Daniel Vetter321ebf02014-11-04 22:57:27 +01001486 drm_atomic_set_fb_for_plane(plane_state, NULL);
Daniel Vetter042652e2014-07-27 13:46:52 +02001487 plane_state->crtc_x = 0;
1488 plane_state->crtc_y = 0;
1489 plane_state->crtc_h = 0;
1490 plane_state->crtc_w = 0;
1491 plane_state->src_x = 0;
1492 plane_state->src_y = 0;
1493 plane_state->src_h = 0;
1494 plane_state->src_w = 0;
1495
Daniel Vetterf02ad902015-01-22 16:36:23 +01001496 if (plane == plane->crtc->cursor)
1497 state->legacy_cursor_update = true;
1498
Daniel Vetter042652e2014-07-27 13:46:52 +02001499 ret = drm_atomic_commit(state);
1500 if (ret != 0)
1501 goto fail;
1502
1503 /* Driver takes ownership of state on successful commit. */
1504 return 0;
1505fail:
1506 if (ret == -EDEADLK)
1507 goto backoff;
1508
1509 drm_atomic_state_free(state);
1510
1511 return ret;
1512backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02001513 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01001514 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02001515
1516 /*
1517 * Someone might have exchanged the framebuffer while we dropped locks
1518 * in the backoff code. We need to fix up the fb refcount tracking the
1519 * core does for us.
1520 */
1521 plane->old_fb = plane->fb;
1522
1523 goto retry;
1524}
1525EXPORT_SYMBOL(drm_atomic_helper_disable_plane);
1526
1527static int update_output_state(struct drm_atomic_state *state,
1528 struct drm_mode_set *set)
1529{
1530 struct drm_device *dev = set->crtc->dev;
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001531 struct drm_crtc *crtc;
1532 struct drm_crtc_state *crtc_state;
1533 struct drm_connector *connector;
Daniel Vetter042652e2014-07-27 13:46:52 +02001534 struct drm_connector_state *conn_state;
Daniel Vetter042652e2014-07-27 13:46:52 +02001535 int ret, i, j;
1536
1537 ret = drm_modeset_lock(&dev->mode_config.connection_mutex,
1538 state->acquire_ctx);
1539 if (ret)
1540 return ret;
1541
1542 /* First grab all affected connector/crtc states. */
1543 for (i = 0; i < set->num_connectors; i++) {
1544 conn_state = drm_atomic_get_connector_state(state,
1545 set->connectors[i]);
1546 if (IS_ERR(conn_state))
1547 return PTR_ERR(conn_state);
1548 }
1549
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001550 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Daniel Vetter042652e2014-07-27 13:46:52 +02001551 ret = drm_atomic_add_affected_connectors(state, crtc);
1552 if (ret)
1553 return ret;
1554 }
1555
1556 /* Then recompute connector->crtc links and crtc enabling state. */
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001557 for_each_connector_in_state(state, connector, conn_state, i) {
Daniel Vetter042652e2014-07-27 13:46:52 +02001558 if (conn_state->crtc == set->crtc) {
1559 ret = drm_atomic_set_crtc_for_connector(conn_state,
1560 NULL);
1561 if (ret)
1562 return ret;
1563 }
1564
1565 for (j = 0; j < set->num_connectors; j++) {
1566 if (set->connectors[j] == connector) {
1567 ret = drm_atomic_set_crtc_for_connector(conn_state,
1568 set->crtc);
1569 if (ret)
1570 return ret;
1571 break;
1572 }
1573 }
1574 }
1575
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001576 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Daniel Vetter042652e2014-07-27 13:46:52 +02001577 /* Don't update ->enable for the CRTC in the set_config request,
1578 * since a mismatch would indicate a bug in the upper layers.
1579 * The actual modeset code later on will catch any
1580 * inconsistencies here. */
1581 if (crtc == set->crtc)
1582 continue;
1583
Laurent Pinchartc30f55a2015-06-22 13:37:46 +03001584 if (!drm_atomic_connectors_for_crtc(state, crtc)) {
1585 ret = drm_atomic_set_mode_prop_for_crtc(crtc_state,
1586 NULL);
1587 if (ret < 0)
1588 return ret;
1589
Maarten Lankhorst9b5edbf2015-06-01 08:59:53 +02001590 crtc_state->active = false;
Laurent Pinchartc30f55a2015-06-22 13:37:46 +03001591 }
Daniel Vetter042652e2014-07-27 13:46:52 +02001592 }
1593
1594 return 0;
1595}
1596
1597/**
1598 * drm_atomic_helper_set_config - set a new config from userspace
1599 * @set: mode set configuration
1600 *
1601 * Provides a default crtc set_config handler using the atomic driver interface.
1602 *
1603 * Returns:
1604 * Returns 0 on success, negative errno numbers on failure.
1605 */
1606int drm_atomic_helper_set_config(struct drm_mode_set *set)
1607{
1608 struct drm_atomic_state *state;
1609 struct drm_crtc *crtc = set->crtc;
1610 struct drm_crtc_state *crtc_state;
1611 struct drm_plane_state *primary_state;
1612 int ret = 0;
1613
1614 state = drm_atomic_state_alloc(crtc->dev);
1615 if (!state)
1616 return -ENOMEM;
1617
1618 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
1619retry:
1620 crtc_state = drm_atomic_get_crtc_state(state, crtc);
1621 if (IS_ERR(crtc_state)) {
1622 ret = PTR_ERR(crtc_state);
1623 goto fail;
1624 }
1625
Rob Clarke5b53412014-11-26 18:58:04 -05001626 primary_state = drm_atomic_get_plane_state(state, crtc->primary);
1627 if (IS_ERR(primary_state)) {
1628 ret = PTR_ERR(primary_state);
1629 goto fail;
1630 }
1631
Daniel Vetter042652e2014-07-27 13:46:52 +02001632 if (!set->mode) {
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, NULL);
1637 if (ret != 0)
1638 goto fail;
1639
Daniel Vettereab3bbe2015-01-22 16:36:21 +01001640 crtc_state->active = false;
Rob Clarke5b53412014-11-26 18:58:04 -05001641
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01001642 ret = drm_atomic_set_crtc_for_plane(primary_state, NULL);
Rob Clarke5b53412014-11-26 18:58:04 -05001643 if (ret != 0)
1644 goto fail;
1645
1646 drm_atomic_set_fb_for_plane(primary_state, NULL);
1647
Daniel Vetter042652e2014-07-27 13:46:52 +02001648 goto commit;
1649 }
1650
1651 WARN_ON(!set->fb);
1652 WARN_ON(!set->num_connectors);
1653
Daniel Stone819364d2015-05-26 14:36:48 +01001654 ret = drm_atomic_set_mode_for_crtc(crtc_state, set->mode);
1655 if (ret != 0)
1656 goto fail;
1657
Daniel Vettereab3bbe2015-01-22 16:36:21 +01001658 crtc_state->active = true;
Daniel Vetter042652e2014-07-27 13:46:52 +02001659
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01001660 ret = drm_atomic_set_crtc_for_plane(primary_state, crtc);
Daniel Vetter042652e2014-07-27 13:46:52 +02001661 if (ret != 0)
1662 goto fail;
Daniel Vetter321ebf02014-11-04 22:57:27 +01001663 drm_atomic_set_fb_for_plane(primary_state, set->fb);
Daniel Vetter042652e2014-07-27 13:46:52 +02001664 primary_state->crtc_x = 0;
1665 primary_state->crtc_y = 0;
1666 primary_state->crtc_h = set->mode->vdisplay;
1667 primary_state->crtc_w = set->mode->hdisplay;
1668 primary_state->src_x = set->x << 16;
1669 primary_state->src_y = set->y << 16;
1670 primary_state->src_h = set->mode->vdisplay << 16;
1671 primary_state->src_w = set->mode->hdisplay << 16;
1672
1673commit:
1674 ret = update_output_state(state, set);
1675 if (ret)
1676 goto fail;
1677
1678 ret = drm_atomic_commit(state);
1679 if (ret != 0)
1680 goto fail;
1681
1682 /* Driver takes ownership of state on successful commit. */
1683 return 0;
1684fail:
1685 if (ret == -EDEADLK)
1686 goto backoff;
1687
1688 drm_atomic_state_free(state);
1689
1690 return ret;
1691backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02001692 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01001693 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02001694
1695 /*
1696 * Someone might have exchanged the framebuffer while we dropped locks
1697 * in the backoff code. We need to fix up the fb refcount tracking the
1698 * core does for us.
1699 */
1700 crtc->primary->old_fb = crtc->primary->fb;
1701
1702 goto retry;
1703}
1704EXPORT_SYMBOL(drm_atomic_helper_set_config);
1705
1706/**
Laurent Pinchart7f500022015-02-23 02:50:23 +02001707 * drm_atomic_helper_crtc_set_property - helper for crtc properties
Daniel Vetter042652e2014-07-27 13:46:52 +02001708 * @crtc: DRM crtc
1709 * @property: DRM property
1710 * @val: value of property
1711 *
Laurent Pinchart7f500022015-02-23 02:50:23 +02001712 * Provides a default crtc set_property handler using the atomic driver
1713 * interface.
Daniel Vetter042652e2014-07-27 13:46:52 +02001714 *
1715 * RETURNS:
1716 * Zero on success, error code on failure
1717 */
1718int
1719drm_atomic_helper_crtc_set_property(struct drm_crtc *crtc,
1720 struct drm_property *property,
1721 uint64_t val)
1722{
1723 struct drm_atomic_state *state;
1724 struct drm_crtc_state *crtc_state;
1725 int ret = 0;
1726
1727 state = drm_atomic_state_alloc(crtc->dev);
1728 if (!state)
1729 return -ENOMEM;
1730
1731 /* ->set_property is always called with all locks held. */
1732 state->acquire_ctx = crtc->dev->mode_config.acquire_ctx;
1733retry:
1734 crtc_state = drm_atomic_get_crtc_state(state, crtc);
1735 if (IS_ERR(crtc_state)) {
1736 ret = PTR_ERR(crtc_state);
1737 goto fail;
1738 }
1739
Rob Clark40ecc692014-12-18 16:01:46 -05001740 ret = drm_atomic_crtc_set_property(crtc, crtc_state,
1741 property, val);
Daniel Vetter042652e2014-07-27 13:46:52 +02001742 if (ret)
1743 goto fail;
1744
1745 ret = drm_atomic_commit(state);
1746 if (ret != 0)
1747 goto fail;
1748
1749 /* Driver takes ownership of state on successful commit. */
1750 return 0;
1751fail:
1752 if (ret == -EDEADLK)
1753 goto backoff;
1754
1755 drm_atomic_state_free(state);
1756
1757 return ret;
1758backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02001759 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01001760 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02001761
1762 goto retry;
1763}
1764EXPORT_SYMBOL(drm_atomic_helper_crtc_set_property);
1765
1766/**
Laurent Pinchart7f500022015-02-23 02:50:23 +02001767 * drm_atomic_helper_plane_set_property - helper for plane properties
Daniel Vetter042652e2014-07-27 13:46:52 +02001768 * @plane: DRM plane
1769 * @property: DRM property
1770 * @val: value of property
1771 *
Laurent Pinchart7f500022015-02-23 02:50:23 +02001772 * Provides a default plane set_property handler using the atomic driver
1773 * interface.
Daniel Vetter042652e2014-07-27 13:46:52 +02001774 *
1775 * RETURNS:
1776 * Zero on success, error code on failure
1777 */
1778int
1779drm_atomic_helper_plane_set_property(struct drm_plane *plane,
1780 struct drm_property *property,
1781 uint64_t val)
1782{
1783 struct drm_atomic_state *state;
1784 struct drm_plane_state *plane_state;
1785 int ret = 0;
1786
1787 state = drm_atomic_state_alloc(plane->dev);
1788 if (!state)
1789 return -ENOMEM;
1790
1791 /* ->set_property is always called with all locks held. */
1792 state->acquire_ctx = plane->dev->mode_config.acquire_ctx;
1793retry:
1794 plane_state = drm_atomic_get_plane_state(state, plane);
1795 if (IS_ERR(plane_state)) {
1796 ret = PTR_ERR(plane_state);
1797 goto fail;
1798 }
1799
Rob Clark40ecc692014-12-18 16:01:46 -05001800 ret = drm_atomic_plane_set_property(plane, plane_state,
1801 property, val);
Daniel Vetter042652e2014-07-27 13:46:52 +02001802 if (ret)
1803 goto fail;
1804
1805 ret = drm_atomic_commit(state);
1806 if (ret != 0)
1807 goto fail;
1808
1809 /* Driver takes ownership of state on successful commit. */
1810 return 0;
1811fail:
1812 if (ret == -EDEADLK)
1813 goto backoff;
1814
1815 drm_atomic_state_free(state);
1816
1817 return ret;
1818backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02001819 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01001820 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02001821
1822 goto retry;
1823}
1824EXPORT_SYMBOL(drm_atomic_helper_plane_set_property);
1825
1826/**
Laurent Pinchart7f500022015-02-23 02:50:23 +02001827 * drm_atomic_helper_connector_set_property - helper for connector properties
Daniel Vetter042652e2014-07-27 13:46:52 +02001828 * @connector: DRM connector
1829 * @property: DRM property
1830 * @val: value of property
1831 *
Laurent Pinchart7f500022015-02-23 02:50:23 +02001832 * Provides a default connector set_property handler using the atomic driver
1833 * interface.
Daniel Vetter042652e2014-07-27 13:46:52 +02001834 *
1835 * RETURNS:
1836 * Zero on success, error code on failure
1837 */
1838int
1839drm_atomic_helper_connector_set_property(struct drm_connector *connector,
1840 struct drm_property *property,
1841 uint64_t val)
1842{
1843 struct drm_atomic_state *state;
1844 struct drm_connector_state *connector_state;
1845 int ret = 0;
1846
1847 state = drm_atomic_state_alloc(connector->dev);
1848 if (!state)
1849 return -ENOMEM;
1850
1851 /* ->set_property is always called with all locks held. */
1852 state->acquire_ctx = connector->dev->mode_config.acquire_ctx;
1853retry:
1854 connector_state = drm_atomic_get_connector_state(state, connector);
1855 if (IS_ERR(connector_state)) {
1856 ret = PTR_ERR(connector_state);
1857 goto fail;
1858 }
1859
Rob Clark40ecc692014-12-18 16:01:46 -05001860 ret = drm_atomic_connector_set_property(connector, connector_state,
1861 property, val);
Daniel Vetter042652e2014-07-27 13:46:52 +02001862 if (ret)
1863 goto fail;
1864
1865 ret = drm_atomic_commit(state);
1866 if (ret != 0)
1867 goto fail;
1868
1869 /* Driver takes ownership of state on successful commit. */
1870 return 0;
1871fail:
1872 if (ret == -EDEADLK)
1873 goto backoff;
1874
1875 drm_atomic_state_free(state);
1876
1877 return ret;
1878backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02001879 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01001880 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02001881
1882 goto retry;
1883}
1884EXPORT_SYMBOL(drm_atomic_helper_connector_set_property);
Daniel Vetter8bc0f312014-07-27 18:42:37 +02001885
1886/**
1887 * drm_atomic_helper_page_flip - execute a legacy page flip
1888 * @crtc: DRM crtc
1889 * @fb: DRM framebuffer
1890 * @event: optional DRM event to signal upon completion
1891 * @flags: flip flags for non-vblank sync'ed updates
1892 *
1893 * Provides a default page flip implementation using the atomic driver interface.
1894 *
1895 * Note that for now so called async page flips (i.e. updates which are not
1896 * synchronized to vblank) are not supported, since the atomic interfaces have
1897 * no provisions for this yet.
1898 *
1899 * Returns:
1900 * Returns 0 on success, negative errno numbers on failure.
1901 */
1902int drm_atomic_helper_page_flip(struct drm_crtc *crtc,
1903 struct drm_framebuffer *fb,
1904 struct drm_pending_vblank_event *event,
1905 uint32_t flags)
1906{
1907 struct drm_plane *plane = crtc->primary;
1908 struct drm_atomic_state *state;
1909 struct drm_plane_state *plane_state;
1910 struct drm_crtc_state *crtc_state;
1911 int ret = 0;
1912
1913 if (flags & DRM_MODE_PAGE_FLIP_ASYNC)
1914 return -EINVAL;
1915
1916 state = drm_atomic_state_alloc(plane->dev);
1917 if (!state)
1918 return -ENOMEM;
1919
1920 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
1921retry:
1922 crtc_state = drm_atomic_get_crtc_state(state, crtc);
1923 if (IS_ERR(crtc_state)) {
1924 ret = PTR_ERR(crtc_state);
1925 goto fail;
1926 }
1927 crtc_state->event = event;
1928
1929 plane_state = drm_atomic_get_plane_state(state, plane);
1930 if (IS_ERR(plane_state)) {
1931 ret = PTR_ERR(plane_state);
1932 goto fail;
1933 }
1934
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01001935 ret = drm_atomic_set_crtc_for_plane(plane_state, crtc);
Daniel Vetter8bc0f312014-07-27 18:42:37 +02001936 if (ret != 0)
1937 goto fail;
Daniel Vetter321ebf02014-11-04 22:57:27 +01001938 drm_atomic_set_fb_for_plane(plane_state, fb);
Daniel Vetter8bc0f312014-07-27 18:42:37 +02001939
1940 ret = drm_atomic_async_commit(state);
1941 if (ret != 0)
1942 goto fail;
1943
Daniel Vetter8bc0f312014-07-27 18:42:37 +02001944 /* Driver takes ownership of state on successful async commit. */
1945 return 0;
1946fail:
1947 if (ret == -EDEADLK)
1948 goto backoff;
1949
1950 drm_atomic_state_free(state);
1951
1952 return ret;
1953backoff:
Daniel Vetter8bc0f312014-07-27 18:42:37 +02001954 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01001955 drm_atomic_legacy_backoff(state);
Daniel Vetter8bc0f312014-07-27 18:42:37 +02001956
1957 /*
1958 * Someone might have exchanged the framebuffer while we dropped locks
1959 * in the backoff code. We need to fix up the fb refcount tracking the
1960 * core does for us.
1961 */
1962 plane->old_fb = plane->fb;
1963
1964 goto retry;
1965}
1966EXPORT_SYMBOL(drm_atomic_helper_page_flip);
Daniel Vetterd4617012014-11-03 15:56:43 +01001967
1968/**
Daniel Vetterb486e0e2015-01-22 18:53:05 +01001969 * drm_atomic_helper_connector_dpms() - connector dpms helper implementation
1970 * @connector: affected connector
1971 * @mode: DPMS mode
1972 *
1973 * This is the main helper function provided by the atomic helper framework for
1974 * implementing the legacy DPMS connector interface. It computes the new desired
1975 * ->active state for the corresponding CRTC (if the connector is enabled) and
1976 * updates it.
1977 */
1978void drm_atomic_helper_connector_dpms(struct drm_connector *connector,
1979 int mode)
1980{
1981 struct drm_mode_config *config = &connector->dev->mode_config;
1982 struct drm_atomic_state *state;
1983 struct drm_crtc_state *crtc_state;
1984 struct drm_crtc *crtc;
1985 struct drm_connector *tmp_connector;
1986 int ret;
1987 bool active = false;
1988
1989 if (mode != DRM_MODE_DPMS_ON)
1990 mode = DRM_MODE_DPMS_OFF;
1991
1992 connector->dpms = mode;
1993 crtc = connector->state->crtc;
1994
1995 if (!crtc)
1996 return;
1997
1998 /* FIXME: ->dpms has no return value so can't forward the -ENOMEM. */
1999 state = drm_atomic_state_alloc(connector->dev);
2000 if (!state)
2001 return;
2002
2003 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
2004retry:
2005 crtc_state = drm_atomic_get_crtc_state(state, crtc);
2006 if (IS_ERR(crtc_state))
2007 return;
2008
2009 WARN_ON(!drm_modeset_is_locked(&config->connection_mutex));
2010
Daniel Vetter9a9f5ce2015-07-09 23:44:34 +02002011 drm_for_each_connector(tmp_connector, connector->dev) {
John Hunter0388df02015-03-17 15:30:28 +08002012 if (tmp_connector->state->crtc != crtc)
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002013 continue;
2014
John Hunter0388df02015-03-17 15:30:28 +08002015 if (tmp_connector->dpms == DRM_MODE_DPMS_ON) {
Daniel Vetterb486e0e2015-01-22 18:53:05 +01002016 active = true;
2017 break;
2018 }
2019 }
2020 crtc_state->active = active;
2021
2022 ret = drm_atomic_commit(state);
2023 if (ret != 0)
2024 goto fail;
2025
2026 /* Driver takes ownership of state on successful async commit. */
2027 return;
2028fail:
2029 if (ret == -EDEADLK)
2030 goto backoff;
2031
2032 drm_atomic_state_free(state);
2033
2034 WARN(1, "Driver bug: Changing ->active failed with ret=%i\n", ret);
2035
2036 return;
2037backoff:
2038 drm_atomic_state_clear(state);
2039 drm_atomic_legacy_backoff(state);
2040
2041 goto retry;
2042}
2043EXPORT_SYMBOL(drm_atomic_helper_connector_dpms);
2044
2045/**
Daniel Vetter3150c7d2014-11-06 20:53:29 +01002046 * DOC: atomic state reset and initialization
2047 *
2048 * Both the drm core and the atomic helpers assume that there is always the full
2049 * and correct atomic software state for all connectors, CRTCs and planes
2050 * available. Which is a bit a problem on driver load and also after system
2051 * suspend. One way to solve this is to have a hardware state read-out
2052 * infrastructure which reconstructs the full software state (e.g. the i915
2053 * driver).
2054 *
2055 * The simpler solution is to just reset the software state to everything off,
2056 * which is easiest to do by calling drm_mode_config_reset(). To facilitate this
2057 * the atomic helpers provide default reset implementations for all hooks.
2058 */
2059
2060/**
Daniel Vetterd4617012014-11-03 15:56:43 +01002061 * drm_atomic_helper_crtc_reset - default ->reset hook for CRTCs
2062 * @crtc: drm CRTC
2063 *
2064 * Resets the atomic state for @crtc by freeing the state pointer (which might
2065 * be NULL, e.g. at driver load time) and allocating a new empty state object.
2066 */
2067void drm_atomic_helper_crtc_reset(struct drm_crtc *crtc)
2068{
Daniel Stone99cf4a22015-05-25 19:11:51 +01002069 if (crtc->state && crtc->state->mode_blob)
2070 drm_property_unreference_blob(crtc->state->mode_blob);
Daniel Vetterd4617012014-11-03 15:56:43 +01002071 kfree(crtc->state);
2072 crtc->state = kzalloc(sizeof(*crtc->state), GFP_KERNEL);
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01002073
2074 if (crtc->state)
2075 crtc->state->crtc = crtc;
Daniel Vetterd4617012014-11-03 15:56:43 +01002076}
2077EXPORT_SYMBOL(drm_atomic_helper_crtc_reset);
2078
2079/**
Thierry Redingf5e78402015-01-28 14:54:32 +01002080 * __drm_atomic_helper_crtc_duplicate_state - copy atomic CRTC state
2081 * @crtc: CRTC object
2082 * @state: atomic CRTC state
2083 *
2084 * Copies atomic state from a CRTC's current state and resets inferred values.
2085 * This is useful for drivers that subclass the CRTC state.
2086 */
2087void __drm_atomic_helper_crtc_duplicate_state(struct drm_crtc *crtc,
2088 struct drm_crtc_state *state)
2089{
2090 memcpy(state, crtc->state, sizeof(*state));
2091
Daniel Stone99cf4a22015-05-25 19:11:51 +01002092 if (state->mode_blob)
2093 drm_property_reference_blob(state->mode_blob);
Thierry Redingf5e78402015-01-28 14:54:32 +01002094 state->mode_changed = false;
2095 state->active_changed = false;
2096 state->planes_changed = false;
Maarten Lankhorstfc596662015-07-21 13:28:57 +02002097 state->connectors_changed = false;
Thierry Redingf5e78402015-01-28 14:54:32 +01002098 state->event = NULL;
2099}
2100EXPORT_SYMBOL(__drm_atomic_helper_crtc_duplicate_state);
2101
2102/**
Daniel Vetterd4617012014-11-03 15:56:43 +01002103 * drm_atomic_helper_crtc_duplicate_state - default state duplicate hook
2104 * @crtc: drm CRTC
2105 *
2106 * Default CRTC state duplicate hook for drivers which don't have their own
2107 * subclassed CRTC state structure.
2108 */
2109struct drm_crtc_state *
2110drm_atomic_helper_crtc_duplicate_state(struct drm_crtc *crtc)
2111{
2112 struct drm_crtc_state *state;
2113
2114 if (WARN_ON(!crtc->state))
2115 return NULL;
2116
Thierry Redingf5e78402015-01-28 14:54:32 +01002117 state = kmalloc(sizeof(*state), GFP_KERNEL);
2118 if (state)
2119 __drm_atomic_helper_crtc_duplicate_state(crtc, state);
Daniel Vetterd4617012014-11-03 15:56:43 +01002120
2121 return state;
2122}
2123EXPORT_SYMBOL(drm_atomic_helper_crtc_duplicate_state);
2124
2125/**
Thierry Redingf5e78402015-01-28 14:54:32 +01002126 * __drm_atomic_helper_crtc_destroy_state - release CRTC state
2127 * @crtc: CRTC object
2128 * @state: CRTC state object to release
2129 *
2130 * Releases all resources stored in the CRTC state without actually freeing
2131 * the memory of the CRTC state. This is useful for drivers that subclass the
2132 * CRTC state.
2133 */
2134void __drm_atomic_helper_crtc_destroy_state(struct drm_crtc *crtc,
2135 struct drm_crtc_state *state)
2136{
Daniel Stone99cf4a22015-05-25 19:11:51 +01002137 if (state->mode_blob)
2138 drm_property_unreference_blob(state->mode_blob);
Thierry Redingf5e78402015-01-28 14:54:32 +01002139}
2140EXPORT_SYMBOL(__drm_atomic_helper_crtc_destroy_state);
2141
2142/**
Daniel Vetterd4617012014-11-03 15:56:43 +01002143 * drm_atomic_helper_crtc_destroy_state - default state destroy hook
2144 * @crtc: drm CRTC
2145 * @state: CRTC state object to release
2146 *
2147 * Default CRTC state destroy hook for drivers which don't have their own
2148 * subclassed CRTC state structure.
2149 */
2150void drm_atomic_helper_crtc_destroy_state(struct drm_crtc *crtc,
2151 struct drm_crtc_state *state)
2152{
Thierry Redingf5e78402015-01-28 14:54:32 +01002153 __drm_atomic_helper_crtc_destroy_state(crtc, state);
Daniel Vetterd4617012014-11-03 15:56:43 +01002154 kfree(state);
2155}
2156EXPORT_SYMBOL(drm_atomic_helper_crtc_destroy_state);
2157
2158/**
2159 * drm_atomic_helper_plane_reset - default ->reset hook for planes
2160 * @plane: drm plane
2161 *
2162 * Resets the atomic state for @plane by freeing the state pointer (which might
2163 * be NULL, e.g. at driver load time) and allocating a new empty state object.
2164 */
2165void drm_atomic_helper_plane_reset(struct drm_plane *plane)
2166{
Daniel Vetter321ebf02014-11-04 22:57:27 +01002167 if (plane->state && plane->state->fb)
2168 drm_framebuffer_unreference(plane->state->fb);
2169
Daniel Vetterd4617012014-11-03 15:56:43 +01002170 kfree(plane->state);
2171 plane->state = kzalloc(sizeof(*plane->state), GFP_KERNEL);
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01002172
2173 if (plane->state)
2174 plane->state->plane = plane;
Daniel Vetterd4617012014-11-03 15:56:43 +01002175}
2176EXPORT_SYMBOL(drm_atomic_helper_plane_reset);
2177
2178/**
Thierry Redingf5e78402015-01-28 14:54:32 +01002179 * __drm_atomic_helper_plane_duplicate_state - copy atomic plane state
2180 * @plane: plane object
2181 * @state: atomic plane state
2182 *
2183 * Copies atomic state from a plane's current state. This is useful for
2184 * drivers that subclass the plane state.
2185 */
2186void __drm_atomic_helper_plane_duplicate_state(struct drm_plane *plane,
2187 struct drm_plane_state *state)
2188{
2189 memcpy(state, plane->state, sizeof(*state));
2190
2191 if (state->fb)
2192 drm_framebuffer_reference(state->fb);
2193}
2194EXPORT_SYMBOL(__drm_atomic_helper_plane_duplicate_state);
2195
2196/**
Daniel Vetterd4617012014-11-03 15:56:43 +01002197 * drm_atomic_helper_plane_duplicate_state - default state duplicate hook
2198 * @plane: drm plane
2199 *
2200 * Default plane state duplicate hook for drivers which don't have their own
2201 * subclassed plane state structure.
2202 */
2203struct drm_plane_state *
2204drm_atomic_helper_plane_duplicate_state(struct drm_plane *plane)
2205{
Daniel Vetter321ebf02014-11-04 22:57:27 +01002206 struct drm_plane_state *state;
2207
Daniel Vetterd4617012014-11-03 15:56:43 +01002208 if (WARN_ON(!plane->state))
2209 return NULL;
2210
Thierry Redingf5e78402015-01-28 14:54:32 +01002211 state = kmalloc(sizeof(*state), GFP_KERNEL);
2212 if (state)
2213 __drm_atomic_helper_plane_duplicate_state(plane, state);
Daniel Vetter321ebf02014-11-04 22:57:27 +01002214
2215 return state;
Daniel Vetterd4617012014-11-03 15:56:43 +01002216}
2217EXPORT_SYMBOL(drm_atomic_helper_plane_duplicate_state);
2218
2219/**
Thierry Redingf5e78402015-01-28 14:54:32 +01002220 * __drm_atomic_helper_plane_destroy_state - release plane state
2221 * @plane: plane object
2222 * @state: plane state object to release
2223 *
2224 * Releases all resources stored in the plane state without actually freeing
2225 * the memory of the plane state. This is useful for drivers that subclass the
2226 * plane state.
2227 */
2228void __drm_atomic_helper_plane_destroy_state(struct drm_plane *plane,
2229 struct drm_plane_state *state)
2230{
2231 if (state->fb)
2232 drm_framebuffer_unreference(state->fb);
2233}
2234EXPORT_SYMBOL(__drm_atomic_helper_plane_destroy_state);
2235
2236/**
Daniel Vetterd4617012014-11-03 15:56:43 +01002237 * drm_atomic_helper_plane_destroy_state - default state destroy hook
2238 * @plane: drm plane
2239 * @state: plane state object to release
2240 *
2241 * Default plane state destroy hook for drivers which don't have their own
2242 * subclassed plane state structure.
2243 */
2244void drm_atomic_helper_plane_destroy_state(struct drm_plane *plane,
Daniel Vetter321ebf02014-11-04 22:57:27 +01002245 struct drm_plane_state *state)
Daniel Vetterd4617012014-11-03 15:56:43 +01002246{
Thierry Redingf5e78402015-01-28 14:54:32 +01002247 __drm_atomic_helper_plane_destroy_state(plane, state);
Daniel Vetterd4617012014-11-03 15:56:43 +01002248 kfree(state);
2249}
2250EXPORT_SYMBOL(drm_atomic_helper_plane_destroy_state);
2251
2252/**
2253 * drm_atomic_helper_connector_reset - default ->reset hook for connectors
2254 * @connector: drm connector
2255 *
2256 * Resets the atomic state for @connector by freeing the state pointer (which
2257 * might be NULL, e.g. at driver load time) and allocating a new empty state
2258 * object.
2259 */
2260void drm_atomic_helper_connector_reset(struct drm_connector *connector)
2261{
2262 kfree(connector->state);
2263 connector->state = kzalloc(sizeof(*connector->state), GFP_KERNEL);
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01002264
2265 if (connector->state)
2266 connector->state->connector = connector;
Daniel Vetterd4617012014-11-03 15:56:43 +01002267}
2268EXPORT_SYMBOL(drm_atomic_helper_connector_reset);
2269
2270/**
Thierry Redingf5e78402015-01-28 14:54:32 +01002271 * __drm_atomic_helper_connector_duplicate_state - copy atomic connector state
2272 * @connector: connector object
2273 * @state: atomic connector state
2274 *
2275 * Copies atomic state from a connector's current state. This is useful for
2276 * drivers that subclass the connector state.
2277 */
2278void
2279__drm_atomic_helper_connector_duplicate_state(struct drm_connector *connector,
2280 struct drm_connector_state *state)
2281{
2282 memcpy(state, connector->state, sizeof(*state));
2283}
2284EXPORT_SYMBOL(__drm_atomic_helper_connector_duplicate_state);
2285
2286/**
Daniel Vetterd4617012014-11-03 15:56:43 +01002287 * drm_atomic_helper_connector_duplicate_state - default state duplicate hook
2288 * @connector: drm connector
2289 *
2290 * Default connector state duplicate hook for drivers which don't have their own
2291 * subclassed connector state structure.
2292 */
2293struct drm_connector_state *
2294drm_atomic_helper_connector_duplicate_state(struct drm_connector *connector)
2295{
Thierry Redingf5e78402015-01-28 14:54:32 +01002296 struct drm_connector_state *state;
2297
Daniel Vetterd4617012014-11-03 15:56:43 +01002298 if (WARN_ON(!connector->state))
2299 return NULL;
2300
Thierry Redingf5e78402015-01-28 14:54:32 +01002301 state = kmalloc(sizeof(*state), GFP_KERNEL);
2302 if (state)
2303 __drm_atomic_helper_connector_duplicate_state(connector, state);
2304
2305 return state;
Daniel Vetterd4617012014-11-03 15:56:43 +01002306}
2307EXPORT_SYMBOL(drm_atomic_helper_connector_duplicate_state);
2308
2309/**
Thierry Redingf5e78402015-01-28 14:54:32 +01002310 * __drm_atomic_helper_connector_destroy_state - release connector state
2311 * @connector: connector object
2312 * @state: connector state object to release
2313 *
2314 * Releases all resources stored in the connector state without actually
2315 * freeing the memory of the connector state. This is useful for drivers that
2316 * subclass the connector state.
2317 */
2318void
2319__drm_atomic_helper_connector_destroy_state(struct drm_connector *connector,
2320 struct drm_connector_state *state)
2321{
2322 /*
2323 * This is currently a placeholder so that drivers that subclass the
2324 * state will automatically do the right thing if code is ever added
2325 * to this function.
2326 */
2327}
2328EXPORT_SYMBOL(__drm_atomic_helper_connector_destroy_state);
2329
2330/**
Daniel Vetterd4617012014-11-03 15:56:43 +01002331 * drm_atomic_helper_connector_destroy_state - default state destroy hook
2332 * @connector: drm connector
2333 * @state: connector state object to release
2334 *
2335 * Default connector state destroy hook for drivers which don't have their own
2336 * subclassed connector state structure.
2337 */
2338void drm_atomic_helper_connector_destroy_state(struct drm_connector *connector,
2339 struct drm_connector_state *state)
2340{
Thierry Redingf5e78402015-01-28 14:54:32 +01002341 __drm_atomic_helper_connector_destroy_state(connector, state);
Daniel Vetterd4617012014-11-03 15:56:43 +01002342 kfree(state);
2343}
2344EXPORT_SYMBOL(drm_atomic_helper_connector_destroy_state);