blob: d536817699c194e3a8cd9449ac0a2f2d2b165965 [file] [log] [blame]
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001/*
2 * Copyright (C) 2014 Red Hat
3 * Copyright (C) 2014 Intel Corp.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
19 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
20 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
21 * OTHER DEALINGS IN THE SOFTWARE.
22 *
23 * Authors:
24 * Rob Clark <robdclark@gmail.com>
25 * Daniel Vetter <daniel.vetter@ffwll.ch>
26 */
27
28#include <drm/drmP.h>
29#include <drm/drm_atomic.h>
30#include <drm/drm_plane_helper.h>
31#include <drm/drm_crtc_helper.h>
Daniel Vetter623369e2014-09-16 17:50:47 +020032#include <drm/drm_atomic_helper.h>
Daniel Vettere2330f02014-10-29 11:34:56 +010033#include <linux/fence.h>
Daniel Vetterc2fcd272014-11-05 00:14:14 +010034
Daniel Vetter3150c7d2014-11-06 20:53:29 +010035/**
36 * DOC: overview
37 *
38 * This helper library provides implementations of check and commit functions on
39 * top of the CRTC modeset helper callbacks and the plane helper callbacks. It
40 * also provides convenience implementations for the atomic state handling
41 * callbacks for drivers which don't need to subclass the drm core structures to
42 * add their own additional internal state.
43 *
44 * This library also provides default implementations for the check callback in
45 * drm_atomic_helper_check and for the commit callback with
46 * drm_atomic_helper_commit. But the individual stages and callbacks are expose
47 * to allow drivers to mix and match and e.g. use the plane helpers only
48 * together with a driver private modeset implementation.
49 *
50 * This library also provides implementations for all the legacy driver
51 * interfaces on top of the atomic interface. See drm_atomic_helper_set_config,
52 * drm_atomic_helper_disable_plane, drm_atomic_helper_disable_plane and the
53 * various functions to implement set_property callbacks. New drivers must not
54 * implement these functions themselves but must use the provided helpers.
55 */
Daniel Vetterc2fcd272014-11-05 00:14:14 +010056static void
57drm_atomic_helper_plane_changed(struct drm_atomic_state *state,
58 struct drm_plane_state *plane_state,
59 struct drm_plane *plane)
60{
61 struct drm_crtc_state *crtc_state;
62
63 if (plane->state->crtc) {
Rob Clark4b08eae2014-12-08 10:45:43 -050064 crtc_state = state->crtc_states[drm_crtc_index(plane->state->crtc)];
Daniel Vetterc2fcd272014-11-05 00:14:14 +010065
66 if (WARN_ON(!crtc_state))
67 return;
68
69 crtc_state->planes_changed = true;
70 }
71
72 if (plane_state->crtc) {
73 crtc_state =
74 state->crtc_states[drm_crtc_index(plane_state->crtc)];
75
76 if (WARN_ON(!crtc_state))
77 return;
78
79 crtc_state->planes_changed = true;
80 }
81}
82
Daniel Vetter623369e2014-09-16 17:50:47 +020083static struct drm_crtc *
84get_current_crtc_for_encoder(struct drm_device *dev,
85 struct drm_encoder *encoder)
86{
87 struct drm_mode_config *config = &dev->mode_config;
88 struct drm_connector *connector;
89
90 WARN_ON(!drm_modeset_is_locked(&config->connection_mutex));
91
92 list_for_each_entry(connector, &config->connector_list, head) {
93 if (connector->state->best_encoder != encoder)
94 continue;
95
96 return connector->state->crtc;
97 }
98
99 return NULL;
100}
101
102static int
103steal_encoder(struct drm_atomic_state *state,
104 struct drm_encoder *encoder,
105 struct drm_crtc *encoder_crtc)
106{
107 struct drm_mode_config *config = &state->dev->mode_config;
108 struct drm_crtc_state *crtc_state;
109 struct drm_connector *connector;
110 struct drm_connector_state *connector_state;
Daniel Vetter042652e2014-07-27 13:46:52 +0200111 int ret;
Daniel Vetter623369e2014-09-16 17:50:47 +0200112
113 /*
114 * We can only steal an encoder coming from a connector, which means we
115 * must already hold the connection_mutex.
116 */
117 WARN_ON(!drm_modeset_is_locked(&config->connection_mutex));
118
Daniel Vetter17a38d92015-02-22 12:24:16 +0100119 DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] in use on [CRTC:%d], stealing it\n",
120 encoder->base.id, encoder->name,
121 encoder_crtc->base.id);
Daniel Vetter623369e2014-09-16 17:50:47 +0200122
123 crtc_state = drm_atomic_get_crtc_state(state, encoder_crtc);
124 if (IS_ERR(crtc_state))
125 return PTR_ERR(crtc_state);
126
127 crtc_state->mode_changed = true;
128
129 list_for_each_entry(connector, &config->connector_list, head) {
130 if (connector->state->best_encoder != encoder)
131 continue;
132
Daniel Vetter17a38d92015-02-22 12:24:16 +0100133 DRM_DEBUG_ATOMIC("Stealing encoder from [CONNECTOR:%d:%s]\n",
134 connector->base.id,
135 connector->name);
Daniel Vetter623369e2014-09-16 17:50:47 +0200136
137 connector_state = drm_atomic_get_connector_state(state,
138 connector);
139 if (IS_ERR(connector_state))
140 return PTR_ERR(connector_state);
141
Daniel Vetter042652e2014-07-27 13:46:52 +0200142 ret = drm_atomic_set_crtc_for_connector(connector_state, NULL);
143 if (ret)
144 return ret;
Daniel Vetter623369e2014-09-16 17:50:47 +0200145 connector_state->best_encoder = NULL;
146 }
147
148 return 0;
149}
150
151static int
152update_connector_routing(struct drm_atomic_state *state, int conn_idx)
153{
Ville Syrjäläb5ceff22015-03-10 14:35:20 +0200154 const struct drm_connector_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200155 struct drm_encoder *new_encoder;
156 struct drm_crtc *encoder_crtc;
157 struct drm_connector *connector;
158 struct drm_connector_state *connector_state;
159 struct drm_crtc_state *crtc_state;
160 int idx, ret;
161
162 connector = state->connectors[conn_idx];
163 connector_state = state->connector_states[conn_idx];
164
165 if (!connector)
166 return 0;
167
Daniel Vetter17a38d92015-02-22 12:24:16 +0100168 DRM_DEBUG_ATOMIC("Updating routing for [CONNECTOR:%d:%s]\n",
169 connector->base.id,
170 connector->name);
Daniel Vetter623369e2014-09-16 17:50:47 +0200171
172 if (connector->state->crtc != connector_state->crtc) {
173 if (connector->state->crtc) {
174 idx = drm_crtc_index(connector->state->crtc);
175
176 crtc_state = state->crtc_states[idx];
177 crtc_state->mode_changed = true;
178 }
179
180 if (connector_state->crtc) {
181 idx = drm_crtc_index(connector_state->crtc);
182
183 crtc_state = state->crtc_states[idx];
184 crtc_state->mode_changed = true;
185 }
186 }
187
188 if (!connector_state->crtc) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100189 DRM_DEBUG_ATOMIC("Disabling [CONNECTOR:%d:%s]\n",
Daniel Vetter623369e2014-09-16 17:50:47 +0200190 connector->base.id,
191 connector->name);
192
193 connector_state->best_encoder = NULL;
194
195 return 0;
196 }
197
198 funcs = connector->helper_private;
199 new_encoder = funcs->best_encoder(connector);
200
201 if (!new_encoder) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100202 DRM_DEBUG_ATOMIC("No suitable encoder found for [CONNECTOR:%d:%s]\n",
203 connector->base.id,
204 connector->name);
Daniel Vetter623369e2014-09-16 17:50:47 +0200205 return -EINVAL;
206 }
207
208 if (new_encoder == connector_state->best_encoder) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100209 DRM_DEBUG_ATOMIC("[CONNECTOR:%d:%s] keeps [ENCODER:%d:%s], now on [CRTC:%d]\n",
210 connector->base.id,
211 connector->name,
212 new_encoder->base.id,
213 new_encoder->name,
214 connector_state->crtc->base.id);
Daniel Vetter623369e2014-09-16 17:50:47 +0200215
216 return 0;
217 }
218
219 encoder_crtc = get_current_crtc_for_encoder(state->dev,
220 new_encoder);
221
222 if (encoder_crtc) {
223 ret = steal_encoder(state, new_encoder, encoder_crtc);
224 if (ret) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100225 DRM_DEBUG_ATOMIC("Encoder stealing failed for [CONNECTOR:%d:%s]\n",
226 connector->base.id,
227 connector->name);
Daniel Vetter623369e2014-09-16 17:50:47 +0200228 return ret;
229 }
230 }
231
232 connector_state->best_encoder = new_encoder;
233 idx = drm_crtc_index(connector_state->crtc);
234
235 crtc_state = state->crtc_states[idx];
236 crtc_state->mode_changed = true;
237
Daniel Vetter17a38d92015-02-22 12:24:16 +0100238 DRM_DEBUG_ATOMIC("[CONNECTOR:%d:%s] using [ENCODER:%d:%s] on [CRTC:%d]\n",
239 connector->base.id,
240 connector->name,
241 new_encoder->base.id,
242 new_encoder->name,
243 connector_state->crtc->base.id);
Daniel Vetter623369e2014-09-16 17:50:47 +0200244
245 return 0;
246}
247
248static int
249mode_fixup(struct drm_atomic_state *state)
250{
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) {
259 if (!crtc_state->mode_changed)
Daniel Vetter623369e2014-09-16 17:50:47 +0200260 continue;
261
262 drm_mode_copy(&crtc_state->adjusted_mode, &crtc_state->mode);
263 }
264
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300265 for_each_connector_in_state(state, connector, conn_state, i) {
Ville Syrjäläb5ceff22015-03-10 14:35:20 +0200266 const struct drm_encoder_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200267 struct drm_encoder *encoder;
268
Daniel Vetter623369e2014-09-16 17:50:47 +0200269 WARN_ON(!!conn_state->best_encoder != !!conn_state->crtc);
270
271 if (!conn_state->crtc || !conn_state->best_encoder)
272 continue;
273
274 crtc_state =
275 state->crtc_states[drm_crtc_index(conn_state->crtc)];
276
277 /*
278 * Each encoder has at most one connector (since we always steal
279 * it away), so we won't call ->mode_fixup twice.
280 */
281 encoder = conn_state->best_encoder;
282 funcs = encoder->helper_private;
283
284 if (encoder->bridge && encoder->bridge->funcs->mode_fixup) {
285 ret = encoder->bridge->funcs->mode_fixup(
286 encoder->bridge, &crtc_state->mode,
287 &crtc_state->adjusted_mode);
288 if (!ret) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100289 DRM_DEBUG_ATOMIC("Bridge fixup failed\n");
Daniel Vetter623369e2014-09-16 17:50:47 +0200290 return -EINVAL;
291 }
292 }
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äb5ceff22015-03-10 14:35:20 +0200314 const struct drm_crtc_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200315
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300316 if (!crtc_state->mode_changed)
Daniel Vetter623369e2014-09-16 17:50:47 +0200317 continue;
318
319 funcs = crtc->helper_private;
320 ret = funcs->mode_fixup(crtc, &crtc_state->mode,
321 &crtc_state->adjusted_mode);
322 if (!ret) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100323 DRM_DEBUG_ATOMIC("[CRTC:%d] fixup failed\n",
324 crtc->base.id);
Daniel Vetter623369e2014-09-16 17:50:47 +0200325 return -EINVAL;
326 }
327 }
328
329 return 0;
330}
331
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100332static bool
333needs_modeset(struct drm_crtc_state *state)
334{
335 return state->mode_changed || state->active_changed;
336}
337
Daniel Vetterd9b13622014-11-26 16:57:41 +0100338/**
John Hunterf98bd3e2015-03-17 15:30:26 +0800339 * drm_atomic_helper_check_modeset - validate state object for modeset changes
Daniel Vetterd9b13622014-11-26 16:57:41 +0100340 * @dev: DRM device
341 * @state: the driver state object
342 *
343 * Check the state object to see if the requested state is physically possible.
344 * This does all the crtc and connector related computations for an atomic
345 * update. It computes and updates crtc_state->mode_changed, adds any additional
346 * connectors needed for full modesets and calls down into ->mode_fixup
347 * functions of the driver backend.
348 *
349 * IMPORTANT:
350 *
351 * Drivers which update ->mode_changed (e.g. in their ->atomic_check hooks if a
352 * plane update can't be done without a full modeset) _must_ call this function
353 * afterwards after that change. It is permitted to call this function multiple
354 * times for the same update, e.g. when the ->atomic_check functions depend upon
355 * the adjusted dotclock for fifo space allocation and watermark computation.
356 *
357 * RETURNS
358 * Zero for success or -errno
359 */
360int
Rob Clark934ce1c2014-11-19 16:41:33 -0500361drm_atomic_helper_check_modeset(struct drm_device *dev,
Daniel Vetter623369e2014-09-16 17:50:47 +0200362 struct drm_atomic_state *state)
363{
Daniel Vetter623369e2014-09-16 17:50:47 +0200364 struct drm_crtc *crtc;
365 struct drm_crtc_state *crtc_state;
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300366 struct drm_connector *connector;
367 struct drm_connector_state *connector_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200368 int i, ret;
369
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300370 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Daniel Vetter623369e2014-09-16 17:50:47 +0200371 if (!drm_mode_equal(&crtc->state->mode, &crtc_state->mode)) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100372 DRM_DEBUG_ATOMIC("[CRTC:%d] mode changed\n",
373 crtc->base.id);
Daniel Vetter623369e2014-09-16 17:50:47 +0200374 crtc_state->mode_changed = true;
375 }
376
377 if (crtc->state->enable != crtc_state->enable) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100378 DRM_DEBUG_ATOMIC("[CRTC:%d] enable changed\n",
379 crtc->base.id);
Daniel Vetter623369e2014-09-16 17:50:47 +0200380 crtc_state->mode_changed = true;
381 }
382 }
383
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300384 for_each_connector_in_state(state, connector, connector_state, i) {
Daniel Vetter623369e2014-09-16 17:50:47 +0200385 /*
386 * This only sets crtc->mode_changed for routing changes,
387 * drivers must set crtc->mode_changed themselves when connector
388 * properties need to be updated.
389 */
390 ret = update_connector_routing(state, i);
391 if (ret)
392 return ret;
393 }
394
395 /*
396 * After all the routing has been prepared we need to add in any
397 * connector which is itself unchanged, but who's crtc changes it's
398 * configuration. This must be done before calling mode_fixup in case a
399 * crtc only changed its mode but has the same set of connectors.
400 */
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300401 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Daniel Vetter623369e2014-09-16 17:50:47 +0200402 int num_connectors;
403
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100404 /*
405 * We must set ->active_changed after walking connectors for
406 * otherwise an update that only changes active would result in
407 * a full modeset because update_connector_routing force that.
408 */
409 if (crtc->state->active != crtc_state->active) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100410 DRM_DEBUG_ATOMIC("[CRTC:%d] active changed\n",
411 crtc->base.id);
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100412 crtc_state->active_changed = true;
413 }
414
415 if (!needs_modeset(crtc_state))
416 continue;
417
Daniel Vetter17a38d92015-02-22 12:24:16 +0100418 DRM_DEBUG_ATOMIC("[CRTC:%d] needs all connectors, enable: %c, active: %c\n",
419 crtc->base.id,
420 crtc_state->enable ? 'y' : 'n',
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100421 crtc_state->active ? 'y' : 'n');
Daniel Vetter623369e2014-09-16 17:50:47 +0200422
423 ret = drm_atomic_add_affected_connectors(state, crtc);
424 if (ret != 0)
425 return ret;
426
427 num_connectors = drm_atomic_connectors_for_crtc(state,
428 crtc);
429
430 if (crtc_state->enable != !!num_connectors) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100431 DRM_DEBUG_ATOMIC("[CRTC:%d] enabled/connectors mismatch\n",
432 crtc->base.id);
Daniel Vetter623369e2014-09-16 17:50:47 +0200433
434 return -EINVAL;
435 }
436 }
437
438 return mode_fixup(state);
439}
Daniel Vetterd9b13622014-11-26 16:57:41 +0100440EXPORT_SYMBOL(drm_atomic_helper_check_modeset);
Daniel Vetter623369e2014-09-16 17:50:47 +0200441
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100442/**
John Hunterf98bd3e2015-03-17 15:30:26 +0800443 * drm_atomic_helper_check_planes - validate state object for planes changes
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100444 * @dev: DRM device
445 * @state: the driver state object
446 *
447 * Check the state object to see if the requested state is physically possible.
Daniel Vetterd9b13622014-11-26 16:57:41 +0100448 * This does all the plane update related checks using by calling into the
449 * ->atomic_check hooks provided by the driver.
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100450 *
451 * RETURNS
452 * Zero for success or -errno
453 */
Daniel Vetterd9b13622014-11-26 16:57:41 +0100454int
455drm_atomic_helper_check_planes(struct drm_device *dev,
456 struct drm_atomic_state *state)
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100457{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300458 struct drm_crtc *crtc;
459 struct drm_crtc_state *crtc_state;
460 struct drm_plane *plane;
461 struct drm_plane_state *plane_state;
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100462 int i, ret = 0;
463
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300464 for_each_plane_in_state(state, plane, plane_state, i) {
Ville Syrjäläb5ceff22015-03-10 14:35:20 +0200465 const struct drm_plane_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100466
467 funcs = plane->helper_private;
468
469 drm_atomic_helper_plane_changed(state, plane_state, plane);
470
471 if (!funcs || !funcs->atomic_check)
472 continue;
473
474 ret = funcs->atomic_check(plane, plane_state);
475 if (ret) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100476 DRM_DEBUG_ATOMIC("[PLANE:%d] atomic driver check failed\n",
477 plane->base.id);
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100478 return ret;
479 }
480 }
481
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300482 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Ville Syrjäläb5ceff22015-03-10 14:35:20 +0200483 const struct drm_crtc_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100484
485 funcs = crtc->helper_private;
486
487 if (!funcs || !funcs->atomic_check)
488 continue;
489
490 ret = funcs->atomic_check(crtc, state->crtc_states[i]);
491 if (ret) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100492 DRM_DEBUG_ATOMIC("[CRTC:%d] atomic driver check failed\n",
493 crtc->base.id);
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100494 return ret;
495 }
496 }
497
Daniel Vetterd9b13622014-11-26 16:57:41 +0100498 return ret;
499}
500EXPORT_SYMBOL(drm_atomic_helper_check_planes);
501
502/**
503 * drm_atomic_helper_check - validate state object
504 * @dev: DRM device
505 * @state: the driver state object
506 *
507 * Check the state object to see if the requested state is physically possible.
508 * Only crtcs and planes have check callbacks, so for any additional (global)
509 * checking that a driver needs it can simply wrap that around this function.
510 * Drivers without such needs can directly use this as their ->atomic_check()
511 * callback.
512 *
Daniel Vetterb4274fb2014-11-26 17:02:18 +0100513 * This just wraps the two parts of the state checking for planes and modeset
514 * state in the default order: First it calls drm_atomic_helper_check_modeset()
515 * and then drm_atomic_helper_check_planes(). The assumption is that the
516 * ->atomic_check functions depend upon an updated adjusted_mode.clock to
517 * e.g. properly compute watermarks.
518 *
Daniel Vetterd9b13622014-11-26 16:57:41 +0100519 * RETURNS
520 * Zero for success or -errno
521 */
522int drm_atomic_helper_check(struct drm_device *dev,
523 struct drm_atomic_state *state)
524{
525 int ret;
526
Daniel Vetterb4274fb2014-11-26 17:02:18 +0100527 ret = drm_atomic_helper_check_modeset(dev, state);
Daniel Vetterd9b13622014-11-26 16:57:41 +0100528 if (ret)
529 return ret;
530
Daniel Vetterb4274fb2014-11-26 17:02:18 +0100531 ret = drm_atomic_helper_check_planes(dev, state);
Rob Clark934ce1c2014-11-19 16:41:33 -0500532 if (ret)
533 return ret;
534
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100535 return ret;
536}
537EXPORT_SYMBOL(drm_atomic_helper_check);
538
Daniel Vetter623369e2014-09-16 17:50:47 +0200539static void
540disable_outputs(struct drm_device *dev, struct drm_atomic_state *old_state)
541{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300542 struct drm_connector *connector;
543 struct drm_connector_state *old_conn_state;
544 struct drm_crtc *crtc;
545 struct drm_crtc_state *old_crtc_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200546 int i;
547
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300548 for_each_connector_in_state(old_state, connector, old_conn_state, i) {
Ville Syrjäläb5ceff22015-03-10 14:35:20 +0200549 const struct drm_encoder_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200550 struct drm_encoder *encoder;
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100551 struct drm_crtc_state *old_crtc_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200552
Daniel Vetter623369e2014-09-16 17:50:47 +0200553 /* Shut down everything that's in the changeset and currently
554 * still on. So need to check the old, saved state. */
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300555 if (!old_conn_state->crtc)
Daniel Vetter623369e2014-09-16 17:50:47 +0200556 continue;
557
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100558 old_crtc_state = old_state->crtc_states[drm_crtc_index(old_conn_state->crtc)];
559
Daniel Vetter4218a322015-03-26 22:18:40 +0100560 if (!old_crtc_state->active ||
561 !needs_modeset(old_conn_state->crtc->state))
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100562 continue;
563
Rob Clark46df9ad2014-11-20 15:40:36 -0500564 encoder = old_conn_state->best_encoder;
Daniel Vetter623369e2014-09-16 17:50:47 +0200565
Rob Clark46df9ad2014-11-20 15:40:36 -0500566 /* We shouldn't get this far if we didn't previously have
567 * an encoder.. but WARN_ON() rather than explode.
568 */
569 if (WARN_ON(!encoder))
Daniel Vetter623369e2014-09-16 17:50:47 +0200570 continue;
571
572 funcs = encoder->helper_private;
573
Daniel Vetter17a38d92015-02-22 12:24:16 +0100574 DRM_DEBUG_ATOMIC("disabling [ENCODER:%d:%s]\n",
575 encoder->base.id, encoder->name);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100576
Daniel Vetter623369e2014-09-16 17:50:47 +0200577 /*
578 * Each encoder has at most one connector (since we always steal
John Hunterf98bd3e2015-03-17 15:30:26 +0800579 * it away), so we won't call disable hooks twice.
Daniel Vetter623369e2014-09-16 17:50:47 +0200580 */
581 if (encoder->bridge)
582 encoder->bridge->funcs->disable(encoder->bridge);
583
584 /* Right function depends upon target state. */
Daniel Vetteree0a89c2015-01-22 16:36:24 +0100585 if (connector->state->crtc && funcs->prepare)
Daniel Vetter623369e2014-09-16 17:50:47 +0200586 funcs->prepare(encoder);
587 else if (funcs->disable)
588 funcs->disable(encoder);
589 else
590 funcs->dpms(encoder, DRM_MODE_DPMS_OFF);
591
592 if (encoder->bridge)
593 encoder->bridge->funcs->post_disable(encoder->bridge);
594 }
595
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300596 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Ville Syrjäläb5ceff22015-03-10 14:35:20 +0200597 const struct drm_crtc_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200598
599 /* Shut down everything that needs a full modeset. */
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300600 if (!needs_modeset(crtc->state))
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100601 continue;
602
603 if (!old_crtc_state->active)
Daniel Vetter623369e2014-09-16 17:50:47 +0200604 continue;
605
606 funcs = crtc->helper_private;
607
Daniel Vetter17a38d92015-02-22 12:24:16 +0100608 DRM_DEBUG_ATOMIC("disabling [CRTC:%d]\n",
609 crtc->base.id);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100610
611
Daniel Vetter623369e2014-09-16 17:50:47 +0200612 /* Right function depends upon target state. */
Daniel Vetteree0a89c2015-01-22 16:36:24 +0100613 if (crtc->state->enable && funcs->prepare)
Daniel Vetter623369e2014-09-16 17:50:47 +0200614 funcs->prepare(crtc);
615 else if (funcs->disable)
616 funcs->disable(crtc);
617 else
618 funcs->dpms(crtc, DRM_MODE_DPMS_OFF);
619 }
620}
621
622static void
623set_routing_links(struct drm_device *dev, struct drm_atomic_state *old_state)
624{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300625 struct drm_connector *connector;
626 struct drm_connector_state *old_conn_state;
627 struct drm_crtc *crtc;
628 struct drm_crtc_state *old_crtc_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200629 int i;
630
631 /* clear out existing links */
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300632 for_each_connector_in_state(old_state, connector, old_conn_state, i) {
633 if (!connector->encoder)
Daniel Vetter623369e2014-09-16 17:50:47 +0200634 continue;
635
636 WARN_ON(!connector->encoder->crtc);
637
638 connector->encoder->crtc = NULL;
639 connector->encoder = NULL;
640 }
641
642 /* set new links */
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300643 for_each_connector_in_state(old_state, connector, old_conn_state, i) {
644 if (!connector->state->crtc)
Daniel Vetter623369e2014-09-16 17:50:47 +0200645 continue;
646
647 if (WARN_ON(!connector->state->best_encoder))
648 continue;
649
650 connector->encoder = connector->state->best_encoder;
651 connector->encoder->crtc = connector->state->crtc;
652 }
653
654 /* set legacy state in the crtc structure */
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300655 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Daniel Vetter623369e2014-09-16 17:50:47 +0200656 crtc->mode = crtc->state->mode;
657 crtc->enabled = crtc->state->enable;
658 crtc->x = crtc->primary->state->src_x >> 16;
659 crtc->y = crtc->primary->state->src_y >> 16;
660 }
661}
662
663static void
664crtc_set_mode(struct drm_device *dev, struct drm_atomic_state *old_state)
665{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300666 struct drm_crtc *crtc;
667 struct drm_crtc_state *old_crtc_state;
668 struct drm_connector *connector;
669 struct drm_connector_state *old_conn_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200670 int i;
671
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300672 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Ville Syrjäläb5ceff22015-03-10 14:35:20 +0200673 const struct drm_crtc_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200674
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300675 if (!crtc->state->mode_changed)
Daniel Vetter623369e2014-09-16 17:50:47 +0200676 continue;
677
678 funcs = crtc->helper_private;
679
Daniel Vetterc982bd92015-02-22 12:24:20 +0100680 if (crtc->state->enable && funcs->mode_set_nofb) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100681 DRM_DEBUG_ATOMIC("modeset on [CRTC:%d]\n",
682 crtc->base.id);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100683
Daniel Vetter623369e2014-09-16 17:50:47 +0200684 funcs->mode_set_nofb(crtc);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100685 }
Daniel Vetter623369e2014-09-16 17:50:47 +0200686 }
687
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300688 for_each_connector_in_state(old_state, connector, old_conn_state, i) {
Ville Syrjäläb5ceff22015-03-10 14:35:20 +0200689 const struct drm_encoder_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200690 struct drm_crtc_state *new_crtc_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200691 struct drm_encoder *encoder;
692 struct drm_display_mode *mode, *adjusted_mode;
693
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300694 if (!connector->state->best_encoder)
Daniel Vetter623369e2014-09-16 17:50:47 +0200695 continue;
696
697 encoder = connector->state->best_encoder;
698 funcs = encoder->helper_private;
699 new_crtc_state = connector->state->crtc->state;
700 mode = &new_crtc_state->mode;
701 adjusted_mode = &new_crtc_state->adjusted_mode;
702
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100703 if (!new_crtc_state->mode_changed)
704 continue;
705
Daniel Vetter17a38d92015-02-22 12:24:16 +0100706 DRM_DEBUG_ATOMIC("modeset on [ENCODER:%d:%s]\n",
707 encoder->base.id, encoder->name);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100708
Daniel Vetter623369e2014-09-16 17:50:47 +0200709 /*
710 * Each encoder has at most one connector (since we always steal
John Hunterf98bd3e2015-03-17 15:30:26 +0800711 * it away), so we won't call mode_set hooks twice.
Daniel Vetter623369e2014-09-16 17:50:47 +0200712 */
Daniel Vetterc982bd92015-02-22 12:24:20 +0100713 if (funcs->mode_set)
714 funcs->mode_set(encoder, mode, adjusted_mode);
Daniel Vetter623369e2014-09-16 17:50:47 +0200715
716 if (encoder->bridge && encoder->bridge->funcs->mode_set)
717 encoder->bridge->funcs->mode_set(encoder->bridge,
718 mode, adjusted_mode);
719 }
720}
721
722/**
Daniel Vetter1af434a2015-02-22 12:24:19 +0100723 * drm_atomic_helper_commit_modeset_disables - modeset commit to disable outputs
Daniel Vetter623369e2014-09-16 17:50:47 +0200724 * @dev: DRM device
Laurent Pincharta072f802015-02-22 12:24:18 +0100725 * @old_state: atomic state object with old state structures
Daniel Vetter623369e2014-09-16 17:50:47 +0200726 *
Daniel Vetter1af434a2015-02-22 12:24:19 +0100727 * This function shuts down all the outputs that need to be shut down and
Daniel Vetter623369e2014-09-16 17:50:47 +0200728 * prepares them (if required) with the new mode.
Daniel Vetter1af434a2015-02-22 12:24:19 +0100729 *
730 * For compatability with legacy crtc helpers this should be called before
731 * drm_atomic_helper_commit_planes(), which is what the default commit function
732 * does. But drivers with different needs can group the modeset commits together
733 * and do the plane commits at the end. This is useful for drivers doing runtime
734 * PM since planes updates then only happen when the CRTC is actually enabled.
Daniel Vetter623369e2014-09-16 17:50:47 +0200735 */
Daniel Vetter1af434a2015-02-22 12:24:19 +0100736void drm_atomic_helper_commit_modeset_disables(struct drm_device *dev,
737 struct drm_atomic_state *old_state)
Daniel Vetter623369e2014-09-16 17:50:47 +0200738{
Laurent Pincharta072f802015-02-22 12:24:18 +0100739 disable_outputs(dev, old_state);
740 set_routing_links(dev, old_state);
741 crtc_set_mode(dev, old_state);
Daniel Vetter623369e2014-09-16 17:50:47 +0200742}
Daniel Vetter1af434a2015-02-22 12:24:19 +0100743EXPORT_SYMBOL(drm_atomic_helper_commit_modeset_disables);
Daniel Vetter623369e2014-09-16 17:50:47 +0200744
745/**
Daniel Vetter1af434a2015-02-22 12:24:19 +0100746 * drm_atomic_helper_commit_modeset_enables - modeset commit to enable outputs
Daniel Vetter623369e2014-09-16 17:50:47 +0200747 * @dev: DRM device
748 * @old_state: atomic state object with old state structures
749 *
Daniel Vetter1af434a2015-02-22 12:24:19 +0100750 * This function enables all the outputs with the new configuration which had to
751 * be turned off for the update.
752 *
753 * For compatability with legacy crtc helpers this should be called after
754 * drm_atomic_helper_commit_planes(), which is what the default commit function
755 * does. But drivers with different needs can group the modeset commits together
756 * and do the plane commits at the end. This is useful for drivers doing runtime
757 * PM since planes updates then only happen when the CRTC is actually enabled.
Daniel Vetter623369e2014-09-16 17:50:47 +0200758 */
Daniel Vetter1af434a2015-02-22 12:24:19 +0100759void drm_atomic_helper_commit_modeset_enables(struct drm_device *dev,
760 struct drm_atomic_state *old_state)
Daniel Vetter623369e2014-09-16 17:50:47 +0200761{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300762 struct drm_crtc *crtc;
763 struct drm_crtc_state *old_crtc_state;
764 struct drm_connector *connector;
765 struct drm_connector_state *old_conn_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200766 int i;
767
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300768 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Ville Syrjäläb5ceff22015-03-10 14:35:20 +0200769 const struct drm_crtc_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200770
771 /* Need to filter out CRTCs where only planes change. */
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300772 if (!needs_modeset(crtc->state))
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100773 continue;
774
775 if (!crtc->state->active)
Daniel Vetter623369e2014-09-16 17:50:47 +0200776 continue;
777
778 funcs = crtc->helper_private;
779
Daniel Vetteree0a89c2015-01-22 16:36:24 +0100780 if (crtc->state->enable) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100781 DRM_DEBUG_ATOMIC("enabling [CRTC:%d]\n",
782 crtc->base.id);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100783
Daniel Vetteree0a89c2015-01-22 16:36:24 +0100784 if (funcs->enable)
785 funcs->enable(crtc);
786 else
787 funcs->commit(crtc);
788 }
Daniel Vetter623369e2014-09-16 17:50:47 +0200789 }
790
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300791 for_each_connector_in_state(old_state, connector, old_conn_state, i) {
Ville Syrjäläb5ceff22015-03-10 14:35:20 +0200792 const struct drm_encoder_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200793 struct drm_encoder *encoder;
794
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300795 if (!connector->state->best_encoder)
Daniel Vetter623369e2014-09-16 17:50:47 +0200796 continue;
797
Daniel Vetter4218a322015-03-26 22:18:40 +0100798 if (!connector->state->crtc->state->active ||
799 !needs_modeset(connector->state->crtc->state))
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100800 continue;
801
Daniel Vetter623369e2014-09-16 17:50:47 +0200802 encoder = connector->state->best_encoder;
803 funcs = encoder->helper_private;
804
Daniel Vetter17a38d92015-02-22 12:24:16 +0100805 DRM_DEBUG_ATOMIC("enabling [ENCODER:%d:%s]\n",
806 encoder->base.id, encoder->name);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100807
Daniel Vetter623369e2014-09-16 17:50:47 +0200808 /*
809 * Each encoder has at most one connector (since we always steal
John Hunterf98bd3e2015-03-17 15:30:26 +0800810 * it away), so we won't call enable hooks twice.
Daniel Vetter623369e2014-09-16 17:50:47 +0200811 */
812 if (encoder->bridge)
813 encoder->bridge->funcs->pre_enable(encoder->bridge);
814
Daniel Vetteree0a89c2015-01-22 16:36:24 +0100815 if (funcs->enable)
816 funcs->enable(encoder);
817 else
818 funcs->commit(encoder);
Daniel Vetter623369e2014-09-16 17:50:47 +0200819
820 if (encoder->bridge)
821 encoder->bridge->funcs->enable(encoder->bridge);
822 }
823}
Daniel Vetter1af434a2015-02-22 12:24:19 +0100824EXPORT_SYMBOL(drm_atomic_helper_commit_modeset_enables);
Daniel Vetter623369e2014-09-16 17:50:47 +0200825
Daniel Vettere2330f02014-10-29 11:34:56 +0100826static void wait_for_fences(struct drm_device *dev,
827 struct drm_atomic_state *state)
828{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300829 struct drm_plane *plane;
830 struct drm_plane_state *plane_state;
Daniel Vettere2330f02014-10-29 11:34:56 +0100831 int i;
832
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300833 for_each_plane_in_state(state, plane, plane_state, i) {
834 if (!plane->state->fence)
Daniel Vettere2330f02014-10-29 11:34:56 +0100835 continue;
836
837 WARN_ON(!plane->state->fb);
838
839 fence_wait(plane->state->fence, false);
840 fence_put(plane->state->fence);
841 plane->state->fence = NULL;
842 }
843}
844
Daniel Vetterab58e332014-11-24 20:42:42 +0100845static bool framebuffer_changed(struct drm_device *dev,
846 struct drm_atomic_state *old_state,
847 struct drm_crtc *crtc)
848{
849 struct drm_plane *plane;
850 struct drm_plane_state *old_plane_state;
Daniel Vetterab58e332014-11-24 20:42:42 +0100851 int i;
852
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300853 for_each_plane_in_state(old_state, plane, old_plane_state, i) {
Daniel Vetterab58e332014-11-24 20:42:42 +0100854 if (plane->state->crtc != crtc &&
855 old_plane_state->crtc != crtc)
856 continue;
857
858 if (plane->state->fb != old_plane_state->fb)
859 return true;
860 }
861
862 return false;
863}
864
Rob Clark5ee32292014-11-11 19:38:59 -0500865/**
866 * drm_atomic_helper_wait_for_vblanks - wait for vblank on crtcs
867 * @dev: DRM device
868 * @old_state: atomic state object with old state structures
869 *
870 * Helper to, after atomic commit, wait for vblanks on all effected
871 * crtcs (ie. before cleaning up old framebuffers using
Daniel Vetterab58e332014-11-24 20:42:42 +0100872 * drm_atomic_helper_cleanup_planes()). It will only wait on crtcs where the
873 * framebuffers have actually changed to optimize for the legacy cursor and
874 * plane update use-case.
Rob Clark5ee32292014-11-11 19:38:59 -0500875 */
876void
877drm_atomic_helper_wait_for_vblanks(struct drm_device *dev,
878 struct drm_atomic_state *old_state)
Daniel Vetter623369e2014-09-16 17:50:47 +0200879{
880 struct drm_crtc *crtc;
881 struct drm_crtc_state *old_crtc_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200882 int i, ret;
883
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300884 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Daniel Vetter623369e2014-09-16 17:50:47 +0200885 /* No one cares about the old state, so abuse it for tracking
886 * and store whether we hold a vblank reference (and should do a
887 * vblank wait) in the ->enable boolean. */
888 old_crtc_state->enable = false;
889
890 if (!crtc->state->enable)
891 continue;
892
Daniel Vetterf02ad902015-01-22 16:36:23 +0100893 /* Legacy cursor ioctls are completely unsynced, and userspace
894 * relies on that (by doing tons of cursor updates). */
895 if (old_state->legacy_cursor_update)
896 continue;
897
Daniel Vetterab58e332014-11-24 20:42:42 +0100898 if (!framebuffer_changed(dev, old_state, crtc))
899 continue;
900
Daniel Vetter623369e2014-09-16 17:50:47 +0200901 ret = drm_crtc_vblank_get(crtc);
902 if (ret != 0)
903 continue;
904
905 old_crtc_state->enable = true;
906 old_crtc_state->last_vblank_count = drm_vblank_count(dev, i);
907 }
908
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300909 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
910 if (!old_crtc_state->enable)
Daniel Vetter623369e2014-09-16 17:50:47 +0200911 continue;
912
913 ret = wait_event_timeout(dev->vblank[i].queue,
914 old_crtc_state->last_vblank_count !=
915 drm_vblank_count(dev, i),
916 msecs_to_jiffies(50));
917
918 drm_crtc_vblank_put(crtc);
919 }
920}
Rob Clark5ee32292014-11-11 19:38:59 -0500921EXPORT_SYMBOL(drm_atomic_helper_wait_for_vblanks);
Daniel Vetter623369e2014-09-16 17:50:47 +0200922
923/**
924 * drm_atomic_helper_commit - commit validated state object
925 * @dev: DRM device
926 * @state: the driver state object
927 * @async: asynchronous commit
928 *
929 * This function commits a with drm_atomic_helper_check() pre-validated state
930 * object. This can still fail when e.g. the framebuffer reservation fails. For
931 * now this doesn't implement asynchronous commits.
932 *
933 * RETURNS
934 * Zero for success or -errno.
935 */
936int drm_atomic_helper_commit(struct drm_device *dev,
937 struct drm_atomic_state *state,
938 bool async)
939{
940 int ret;
941
942 if (async)
943 return -EBUSY;
944
945 ret = drm_atomic_helper_prepare_planes(dev, state);
946 if (ret)
947 return ret;
948
949 /*
950 * This is the point of no return - everything below never fails except
951 * when the hw goes bonghits. Which means we can commit the new state on
952 * the software side now.
953 */
954
955 drm_atomic_helper_swap_state(dev, state);
956
957 /*
958 * Everything below can be run asynchronously without the need to grab
John Hunterf98bd3e2015-03-17 15:30:26 +0800959 * any modeset locks at all under one condition: It must be guaranteed
Daniel Vetter623369e2014-09-16 17:50:47 +0200960 * that the asynchronous work has either been cancelled (if the driver
961 * supports it, which at least requires that the framebuffers get
962 * cleaned up with drm_atomic_helper_cleanup_planes()) or completed
963 * before the new state gets committed on the software side with
964 * drm_atomic_helper_swap_state().
965 *
966 * This scheme allows new atomic state updates to be prepared and
967 * checked in parallel to the asynchronous completion of the previous
968 * update. Which is important since compositors need to figure out the
969 * composition of the next frame right after having submitted the
970 * current layout.
971 */
972
Daniel Vettere2330f02014-10-29 11:34:56 +0100973 wait_for_fences(dev, state);
974
Daniel Vetter1af434a2015-02-22 12:24:19 +0100975 drm_atomic_helper_commit_modeset_disables(dev, state);
Daniel Vetter623369e2014-09-16 17:50:47 +0200976
977 drm_atomic_helper_commit_planes(dev, state);
978
Daniel Vetter1af434a2015-02-22 12:24:19 +0100979 drm_atomic_helper_commit_modeset_enables(dev, state);
Daniel Vetter623369e2014-09-16 17:50:47 +0200980
Rob Clark5ee32292014-11-11 19:38:59 -0500981 drm_atomic_helper_wait_for_vblanks(dev, state);
Daniel Vetter623369e2014-09-16 17:50:47 +0200982
983 drm_atomic_helper_cleanup_planes(dev, state);
984
985 drm_atomic_state_free(state);
986
987 return 0;
988}
989EXPORT_SYMBOL(drm_atomic_helper_commit);
990
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100991/**
Daniel Vettere8c833a2014-07-27 18:30:19 +0200992 * DOC: implementing async commit
993 *
994 * For now the atomic helpers don't support async commit directly. If there is
995 * real need it could be added though, using the dma-buf fence infrastructure
996 * for generic synchronization with outstanding rendering.
997 *
998 * For now drivers have to implement async commit themselves, with the following
999 * sequence being the recommended one:
1000 *
1001 * 1. Run drm_atomic_helper_prepare_planes() first. This is the only function
1002 * which commit needs to call which can fail, so we want to run it first and
1003 * synchronously.
1004 *
1005 * 2. Synchronize with any outstanding asynchronous commit worker threads which
1006 * might be affected the new state update. This can be done by either cancelling
1007 * or flushing the work items, depending upon whether the driver can deal with
1008 * cancelled updates. Note that it is important to ensure that the framebuffer
1009 * cleanup is still done when cancelling.
1010 *
1011 * For sufficient parallelism it is recommended to have a work item per crtc
1012 * (for updates which don't touch global state) and a global one. Then we only
1013 * need to synchronize with the crtc work items for changed crtcs and the global
1014 * work item, which allows nice concurrent updates on disjoint sets of crtcs.
1015 *
1016 * 3. The software state is updated synchronously with
1017 * drm_atomic_helper_swap_state. Doing this under the protection of all modeset
1018 * locks means concurrent callers never see inconsistent state. And doing this
1019 * while it's guaranteed that no relevant async worker runs means that async
1020 * workers do not need grab any locks. Actually they must not grab locks, for
1021 * otherwise the work flushing will deadlock.
1022 *
1023 * 4. Schedule a work item to do all subsequent steps, using the split-out
1024 * commit helpers: a) pre-plane commit b) plane commit c) post-plane commit and
1025 * then cleaning up the framebuffers after the old framebuffer is no longer
1026 * being displayed.
1027 */
1028
1029/**
Daniel Vetter2e3afd42015-02-26 14:17:38 +01001030 * drm_atomic_helper_prepare_planes - prepare plane resources before commit
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001031 * @dev: DRM device
Daniel Vetter2e3afd42015-02-26 14:17:38 +01001032 * @state: atomic state object with new state structures
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001033 *
1034 * This function prepares plane state, specifically framebuffers, for the new
1035 * configuration. If any failure is encountered this function will call
1036 * ->cleanup_fb on any already successfully prepared framebuffer.
1037 *
1038 * Returns:
1039 * 0 on success, negative error code on failure.
1040 */
1041int drm_atomic_helper_prepare_planes(struct drm_device *dev,
1042 struct drm_atomic_state *state)
1043{
1044 int nplanes = dev->mode_config.num_total_plane;
1045 int ret, i;
1046
1047 for (i = 0; i < nplanes; i++) {
Ville Syrjäläb5ceff22015-03-10 14:35:20 +02001048 const struct drm_plane_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001049 struct drm_plane *plane = state->planes[i];
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +00001050 struct drm_plane_state *plane_state = state->plane_states[i];
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001051 struct drm_framebuffer *fb;
1052
1053 if (!plane)
1054 continue;
1055
1056 funcs = plane->helper_private;
1057
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +00001058 fb = plane_state->fb;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001059
1060 if (fb && funcs->prepare_fb) {
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +00001061 ret = funcs->prepare_fb(plane, fb, plane_state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001062 if (ret)
1063 goto fail;
1064 }
1065 }
1066
1067 return 0;
1068
1069fail:
1070 for (i--; i >= 0; i--) {
Ville Syrjäläb5ceff22015-03-10 14:35:20 +02001071 const struct drm_plane_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001072 struct drm_plane *plane = state->planes[i];
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +00001073 struct drm_plane_state *plane_state = state->plane_states[i];
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001074 struct drm_framebuffer *fb;
1075
1076 if (!plane)
1077 continue;
1078
1079 funcs = plane->helper_private;
1080
1081 fb = state->plane_states[i]->fb;
1082
1083 if (fb && funcs->cleanup_fb)
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +00001084 funcs->cleanup_fb(plane, fb, plane_state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001085
1086 }
1087
1088 return ret;
1089}
1090EXPORT_SYMBOL(drm_atomic_helper_prepare_planes);
1091
1092/**
1093 * drm_atomic_helper_commit_planes - commit plane state
1094 * @dev: DRM device
Daniel Vetterb0fcfc82014-11-19 18:38:11 +01001095 * @old_state: atomic state object with old state structures
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001096 *
1097 * This function commits the new plane state using the plane and atomic helper
1098 * functions for planes and crtcs. It assumes that the atomic state has already
1099 * been pushed into the relevant object state pointers, since this step can no
1100 * longer fail.
1101 *
Daniel Vetterb0fcfc82014-11-19 18:38:11 +01001102 * It still requires the global state object @old_state to know which planes and
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001103 * crtcs need to be updated though.
1104 */
1105void drm_atomic_helper_commit_planes(struct drm_device *dev,
Daniel Vetterb0fcfc82014-11-19 18:38:11 +01001106 struct drm_atomic_state *old_state)
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001107{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001108 struct drm_crtc *crtc;
1109 struct drm_crtc_state *old_crtc_state;
1110 struct drm_plane *plane;
1111 struct drm_plane_state *old_plane_state;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001112 int i;
1113
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001114 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Ville Syrjäläb5ceff22015-03-10 14:35:20 +02001115 const struct drm_crtc_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001116
1117 funcs = crtc->helper_private;
1118
1119 if (!funcs || !funcs->atomic_begin)
1120 continue;
1121
1122 funcs->atomic_begin(crtc);
1123 }
1124
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001125 for_each_plane_in_state(old_state, plane, old_plane_state, i) {
Ville Syrjäläb5ceff22015-03-10 14:35:20 +02001126 const struct drm_plane_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001127
1128 funcs = plane->helper_private;
1129
Thierry Reding3cad4b62014-11-25 13:05:12 +01001130 if (!funcs)
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001131 continue;
1132
Thierry Redingf1c37e12014-11-25 12:09:44 +01001133 old_plane_state = old_state->plane_states[i];
1134
Thierry Reding407b8bd2014-11-20 12:05:50 +01001135 /*
1136 * Special-case disabling the plane if drivers support it.
1137 */
1138 if (drm_atomic_plane_disabling(plane, old_plane_state) &&
1139 funcs->atomic_disable)
1140 funcs->atomic_disable(plane, old_plane_state);
Daniel Vetter475d2312015-04-10 16:22:39 +02001141 else if (plane->state->crtc ||
1142 drm_atomic_plane_disabling(plane, old_plane_state))
Thierry Reding407b8bd2014-11-20 12:05:50 +01001143 funcs->atomic_update(plane, old_plane_state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001144 }
1145
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001146 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Ville Syrjäläb5ceff22015-03-10 14:35:20 +02001147 const struct drm_crtc_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001148
1149 funcs = crtc->helper_private;
1150
1151 if (!funcs || !funcs->atomic_flush)
1152 continue;
1153
1154 funcs->atomic_flush(crtc);
1155 }
1156}
1157EXPORT_SYMBOL(drm_atomic_helper_commit_planes);
1158
1159/**
1160 * drm_atomic_helper_cleanup_planes - cleanup plane resources after commit
1161 * @dev: DRM device
1162 * @old_state: atomic state object with old state structures
1163 *
1164 * This function cleans up plane state, specifically framebuffers, from the old
1165 * configuration. Hence the old configuration must be perserved in @old_state to
1166 * be able to call this function.
1167 *
1168 * This function must also be called on the new state when the atomic update
1169 * fails at any point after calling drm_atomic_helper_prepare_planes().
1170 */
1171void drm_atomic_helper_cleanup_planes(struct drm_device *dev,
1172 struct drm_atomic_state *old_state)
1173{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001174 struct drm_plane *plane;
1175 struct drm_plane_state *plane_state;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001176 int i;
1177
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001178 for_each_plane_in_state(old_state, plane, plane_state, i) {
Ville Syrjäläb5ceff22015-03-10 14:35:20 +02001179 const struct drm_plane_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001180 struct drm_framebuffer *old_fb;
1181
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001182 funcs = plane->helper_private;
1183
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +00001184 old_fb = plane_state->fb;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001185
1186 if (old_fb && funcs->cleanup_fb)
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +00001187 funcs->cleanup_fb(plane, old_fb, plane_state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001188 }
1189}
1190EXPORT_SYMBOL(drm_atomic_helper_cleanup_planes);
1191
1192/**
1193 * drm_atomic_helper_swap_state - store atomic state into current sw state
1194 * @dev: DRM device
1195 * @state: atomic state
1196 *
1197 * This function stores the atomic state into the current state pointers in all
1198 * driver objects. It should be called after all failing steps have been done
1199 * and succeeded, but before the actual hardware state is committed.
1200 *
1201 * For cleanup and error recovery the current state for all changed objects will
1202 * be swaped into @state.
1203 *
1204 * With that sequence it fits perfectly into the plane prepare/cleanup sequence:
1205 *
1206 * 1. Call drm_atomic_helper_prepare_planes() with the staged atomic state.
1207 *
1208 * 2. Do any other steps that might fail.
1209 *
1210 * 3. Put the staged state into the current state pointers with this function.
1211 *
1212 * 4. Actually commit the hardware state.
1213 *
1214 * 5. Call drm_atomic_helper_cleanup_planes with @state, which since step 3
1215 * contains the old state. Also do any other cleanup required with that state.
1216 */
1217void drm_atomic_helper_swap_state(struct drm_device *dev,
1218 struct drm_atomic_state *state)
1219{
1220 int i;
1221
1222 for (i = 0; i < dev->mode_config.num_connector; i++) {
1223 struct drm_connector *connector = state->connectors[i];
1224
1225 if (!connector)
1226 continue;
1227
1228 connector->state->state = state;
1229 swap(state->connector_states[i], connector->state);
1230 connector->state->state = NULL;
1231 }
1232
1233 for (i = 0; i < dev->mode_config.num_crtc; i++) {
1234 struct drm_crtc *crtc = state->crtcs[i];
1235
1236 if (!crtc)
1237 continue;
1238
1239 crtc->state->state = state;
1240 swap(state->crtc_states[i], crtc->state);
1241 crtc->state->state = NULL;
1242 }
1243
1244 for (i = 0; i < dev->mode_config.num_total_plane; i++) {
1245 struct drm_plane *plane = state->planes[i];
1246
1247 if (!plane)
1248 continue;
1249
1250 plane->state->state = state;
1251 swap(state->plane_states[i], plane->state);
1252 plane->state->state = NULL;
1253 }
1254}
1255EXPORT_SYMBOL(drm_atomic_helper_swap_state);
Daniel Vetter042652e2014-07-27 13:46:52 +02001256
1257/**
1258 * drm_atomic_helper_update_plane - Helper for primary plane update using atomic
1259 * @plane: plane object to update
1260 * @crtc: owning CRTC of owning plane
1261 * @fb: framebuffer to flip onto plane
1262 * @crtc_x: x offset of primary plane on crtc
1263 * @crtc_y: y offset of primary plane on crtc
1264 * @crtc_w: width of primary plane rectangle on crtc
1265 * @crtc_h: height of primary plane rectangle on crtc
1266 * @src_x: x offset of @fb for panning
1267 * @src_y: y offset of @fb for panning
1268 * @src_w: width of source rectangle in @fb
1269 * @src_h: height of source rectangle in @fb
1270 *
1271 * Provides a default plane update handler using the atomic driver interface.
1272 *
1273 * RETURNS:
1274 * Zero on success, error code on failure
1275 */
1276int drm_atomic_helper_update_plane(struct drm_plane *plane,
1277 struct drm_crtc *crtc,
1278 struct drm_framebuffer *fb,
1279 int crtc_x, int crtc_y,
1280 unsigned int crtc_w, unsigned int crtc_h,
1281 uint32_t src_x, uint32_t src_y,
1282 uint32_t src_w, uint32_t src_h)
1283{
1284 struct drm_atomic_state *state;
1285 struct drm_plane_state *plane_state;
1286 int ret = 0;
1287
1288 state = drm_atomic_state_alloc(plane->dev);
1289 if (!state)
1290 return -ENOMEM;
1291
1292 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
1293retry:
1294 plane_state = drm_atomic_get_plane_state(state, plane);
1295 if (IS_ERR(plane_state)) {
1296 ret = PTR_ERR(plane_state);
1297 goto fail;
1298 }
1299
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01001300 ret = drm_atomic_set_crtc_for_plane(plane_state, crtc);
Daniel Vetter042652e2014-07-27 13:46:52 +02001301 if (ret != 0)
1302 goto fail;
Daniel Vetter321ebf02014-11-04 22:57:27 +01001303 drm_atomic_set_fb_for_plane(plane_state, fb);
Daniel Vetter042652e2014-07-27 13:46:52 +02001304 plane_state->crtc_x = crtc_x;
1305 plane_state->crtc_y = crtc_y;
1306 plane_state->crtc_h = crtc_h;
1307 plane_state->crtc_w = crtc_w;
1308 plane_state->src_x = src_x;
1309 plane_state->src_y = src_y;
1310 plane_state->src_h = src_h;
1311 plane_state->src_w = src_w;
1312
1313 ret = drm_atomic_commit(state);
1314 if (ret != 0)
1315 goto fail;
1316
Daniel Vetterf02ad902015-01-22 16:36:23 +01001317 if (plane == crtc->cursor)
1318 state->legacy_cursor_update = true;
1319
Daniel Vetter042652e2014-07-27 13:46:52 +02001320 /* Driver takes ownership of state on successful commit. */
1321 return 0;
1322fail:
1323 if (ret == -EDEADLK)
1324 goto backoff;
1325
1326 drm_atomic_state_free(state);
1327
1328 return ret;
1329backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02001330 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01001331 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02001332
1333 /*
1334 * Someone might have exchanged the framebuffer while we dropped locks
1335 * in the backoff code. We need to fix up the fb refcount tracking the
1336 * core does for us.
1337 */
1338 plane->old_fb = plane->fb;
1339
1340 goto retry;
1341}
1342EXPORT_SYMBOL(drm_atomic_helper_update_plane);
1343
1344/**
1345 * drm_atomic_helper_disable_plane - Helper for primary plane disable using * atomic
1346 * @plane: plane to disable
1347 *
1348 * Provides a default plane disable handler using the atomic driver interface.
1349 *
1350 * RETURNS:
1351 * Zero on success, error code on failure
1352 */
1353int drm_atomic_helper_disable_plane(struct drm_plane *plane)
1354{
1355 struct drm_atomic_state *state;
1356 struct drm_plane_state *plane_state;
1357 int ret = 0;
1358
Jasper St. Pierreaa54e2e2014-11-20 19:59:15 -08001359 /*
1360 * FIXME: Without plane->crtc set we can't get at the implicit legacy
1361 * acquire context. The real fix will be to wire the acquire ctx through
1362 * everywhere we need it, but meanwhile prevent chaos by just skipping
1363 * this noop. The critical case is the cursor ioctls which a) only grab
1364 * crtc/cursor-plane locks (so we need the crtc to get at the right
1365 * acquire context) and b) can try to disable the plane multiple times.
1366 */
1367 if (!plane->crtc)
1368 return 0;
1369
Daniel Vetter042652e2014-07-27 13:46:52 +02001370 state = drm_atomic_state_alloc(plane->dev);
1371 if (!state)
1372 return -ENOMEM;
1373
1374 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(plane->crtc);
1375retry:
1376 plane_state = drm_atomic_get_plane_state(state, plane);
1377 if (IS_ERR(plane_state)) {
1378 ret = PTR_ERR(plane_state);
1379 goto fail;
1380 }
1381
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01001382 ret = drm_atomic_set_crtc_for_plane(plane_state, NULL);
Daniel Vetter042652e2014-07-27 13:46:52 +02001383 if (ret != 0)
1384 goto fail;
Daniel Vetter321ebf02014-11-04 22:57:27 +01001385 drm_atomic_set_fb_for_plane(plane_state, NULL);
Daniel Vetter042652e2014-07-27 13:46:52 +02001386 plane_state->crtc_x = 0;
1387 plane_state->crtc_y = 0;
1388 plane_state->crtc_h = 0;
1389 plane_state->crtc_w = 0;
1390 plane_state->src_x = 0;
1391 plane_state->src_y = 0;
1392 plane_state->src_h = 0;
1393 plane_state->src_w = 0;
1394
Daniel Vetterf02ad902015-01-22 16:36:23 +01001395 if (plane == plane->crtc->cursor)
1396 state->legacy_cursor_update = true;
1397
Daniel Vetter042652e2014-07-27 13:46:52 +02001398 ret = drm_atomic_commit(state);
1399 if (ret != 0)
1400 goto fail;
1401
1402 /* Driver takes ownership of state on successful commit. */
1403 return 0;
1404fail:
1405 if (ret == -EDEADLK)
1406 goto backoff;
1407
1408 drm_atomic_state_free(state);
1409
1410 return ret;
1411backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02001412 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01001413 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02001414
1415 /*
1416 * Someone might have exchanged the framebuffer while we dropped locks
1417 * in the backoff code. We need to fix up the fb refcount tracking the
1418 * core does for us.
1419 */
1420 plane->old_fb = plane->fb;
1421
1422 goto retry;
1423}
1424EXPORT_SYMBOL(drm_atomic_helper_disable_plane);
1425
1426static int update_output_state(struct drm_atomic_state *state,
1427 struct drm_mode_set *set)
1428{
1429 struct drm_device *dev = set->crtc->dev;
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001430 struct drm_crtc *crtc;
1431 struct drm_crtc_state *crtc_state;
1432 struct drm_connector *connector;
Daniel Vetter042652e2014-07-27 13:46:52 +02001433 struct drm_connector_state *conn_state;
Daniel Vetter042652e2014-07-27 13:46:52 +02001434 int ret, i, j;
1435
1436 ret = drm_modeset_lock(&dev->mode_config.connection_mutex,
1437 state->acquire_ctx);
1438 if (ret)
1439 return ret;
1440
1441 /* First grab all affected connector/crtc states. */
1442 for (i = 0; i < set->num_connectors; i++) {
1443 conn_state = drm_atomic_get_connector_state(state,
1444 set->connectors[i]);
1445 if (IS_ERR(conn_state))
1446 return PTR_ERR(conn_state);
1447 }
1448
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001449 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Daniel Vetter042652e2014-07-27 13:46:52 +02001450 ret = drm_atomic_add_affected_connectors(state, crtc);
1451 if (ret)
1452 return ret;
1453 }
1454
1455 /* Then recompute connector->crtc links and crtc enabling state. */
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001456 for_each_connector_in_state(state, connector, conn_state, i) {
Daniel Vetter042652e2014-07-27 13:46:52 +02001457 if (conn_state->crtc == set->crtc) {
1458 ret = drm_atomic_set_crtc_for_connector(conn_state,
1459 NULL);
1460 if (ret)
1461 return ret;
1462 }
1463
1464 for (j = 0; j < set->num_connectors; j++) {
1465 if (set->connectors[j] == connector) {
1466 ret = drm_atomic_set_crtc_for_connector(conn_state,
1467 set->crtc);
1468 if (ret)
1469 return ret;
1470 break;
1471 }
1472 }
1473 }
1474
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001475 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Daniel Vetter042652e2014-07-27 13:46:52 +02001476 /* Don't update ->enable for the CRTC in the set_config request,
1477 * since a mismatch would indicate a bug in the upper layers.
1478 * The actual modeset code later on will catch any
1479 * inconsistencies here. */
1480 if (crtc == set->crtc)
1481 continue;
1482
1483 crtc_state->enable =
1484 drm_atomic_connectors_for_crtc(state, crtc);
1485 }
1486
1487 return 0;
1488}
1489
1490/**
1491 * drm_atomic_helper_set_config - set a new config from userspace
1492 * @set: mode set configuration
1493 *
1494 * Provides a default crtc set_config handler using the atomic driver interface.
1495 *
1496 * Returns:
1497 * Returns 0 on success, negative errno numbers on failure.
1498 */
1499int drm_atomic_helper_set_config(struct drm_mode_set *set)
1500{
1501 struct drm_atomic_state *state;
1502 struct drm_crtc *crtc = set->crtc;
1503 struct drm_crtc_state *crtc_state;
1504 struct drm_plane_state *primary_state;
1505 int ret = 0;
1506
1507 state = drm_atomic_state_alloc(crtc->dev);
1508 if (!state)
1509 return -ENOMEM;
1510
1511 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
1512retry:
1513 crtc_state = drm_atomic_get_crtc_state(state, crtc);
1514 if (IS_ERR(crtc_state)) {
1515 ret = PTR_ERR(crtc_state);
1516 goto fail;
1517 }
1518
Rob Clarke5b53412014-11-26 18:58:04 -05001519 primary_state = drm_atomic_get_plane_state(state, crtc->primary);
1520 if (IS_ERR(primary_state)) {
1521 ret = PTR_ERR(primary_state);
1522 goto fail;
1523 }
1524
Daniel Vetter042652e2014-07-27 13:46:52 +02001525 if (!set->mode) {
1526 WARN_ON(set->fb);
1527 WARN_ON(set->num_connectors);
1528
1529 crtc_state->enable = false;
Daniel Vettereab3bbe2015-01-22 16:36:21 +01001530 crtc_state->active = false;
Rob Clarke5b53412014-11-26 18:58:04 -05001531
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01001532 ret = drm_atomic_set_crtc_for_plane(primary_state, NULL);
Rob Clarke5b53412014-11-26 18:58:04 -05001533 if (ret != 0)
1534 goto fail;
1535
1536 drm_atomic_set_fb_for_plane(primary_state, NULL);
1537
Daniel Vetter042652e2014-07-27 13:46:52 +02001538 goto commit;
1539 }
1540
1541 WARN_ON(!set->fb);
1542 WARN_ON(!set->num_connectors);
1543
1544 crtc_state->enable = true;
Daniel Vettereab3bbe2015-01-22 16:36:21 +01001545 crtc_state->active = true;
Daniel Vetter042652e2014-07-27 13:46:52 +02001546 drm_mode_copy(&crtc_state->mode, set->mode);
1547
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01001548 ret = drm_atomic_set_crtc_for_plane(primary_state, crtc);
Daniel Vetter042652e2014-07-27 13:46:52 +02001549 if (ret != 0)
1550 goto fail;
Daniel Vetter321ebf02014-11-04 22:57:27 +01001551 drm_atomic_set_fb_for_plane(primary_state, set->fb);
Daniel Vetter042652e2014-07-27 13:46:52 +02001552 primary_state->crtc_x = 0;
1553 primary_state->crtc_y = 0;
1554 primary_state->crtc_h = set->mode->vdisplay;
1555 primary_state->crtc_w = set->mode->hdisplay;
1556 primary_state->src_x = set->x << 16;
1557 primary_state->src_y = set->y << 16;
1558 primary_state->src_h = set->mode->vdisplay << 16;
1559 primary_state->src_w = set->mode->hdisplay << 16;
1560
1561commit:
1562 ret = update_output_state(state, set);
1563 if (ret)
1564 goto fail;
1565
1566 ret = drm_atomic_commit(state);
1567 if (ret != 0)
1568 goto fail;
1569
1570 /* Driver takes ownership of state on successful commit. */
1571 return 0;
1572fail:
1573 if (ret == -EDEADLK)
1574 goto backoff;
1575
1576 drm_atomic_state_free(state);
1577
1578 return ret;
1579backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02001580 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01001581 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02001582
1583 /*
1584 * Someone might have exchanged the framebuffer while we dropped locks
1585 * in the backoff code. We need to fix up the fb refcount tracking the
1586 * core does for us.
1587 */
1588 crtc->primary->old_fb = crtc->primary->fb;
1589
1590 goto retry;
1591}
1592EXPORT_SYMBOL(drm_atomic_helper_set_config);
1593
1594/**
Laurent Pinchart7f500022015-02-23 02:50:23 +02001595 * drm_atomic_helper_crtc_set_property - helper for crtc properties
Daniel Vetter042652e2014-07-27 13:46:52 +02001596 * @crtc: DRM crtc
1597 * @property: DRM property
1598 * @val: value of property
1599 *
Laurent Pinchart7f500022015-02-23 02:50:23 +02001600 * Provides a default crtc set_property handler using the atomic driver
1601 * interface.
Daniel Vetter042652e2014-07-27 13:46:52 +02001602 *
1603 * RETURNS:
1604 * Zero on success, error code on failure
1605 */
1606int
1607drm_atomic_helper_crtc_set_property(struct drm_crtc *crtc,
1608 struct drm_property *property,
1609 uint64_t val)
1610{
1611 struct drm_atomic_state *state;
1612 struct drm_crtc_state *crtc_state;
1613 int ret = 0;
1614
1615 state = drm_atomic_state_alloc(crtc->dev);
1616 if (!state)
1617 return -ENOMEM;
1618
1619 /* ->set_property is always called with all locks held. */
1620 state->acquire_ctx = crtc->dev->mode_config.acquire_ctx;
1621retry:
1622 crtc_state = drm_atomic_get_crtc_state(state, crtc);
1623 if (IS_ERR(crtc_state)) {
1624 ret = PTR_ERR(crtc_state);
1625 goto fail;
1626 }
1627
Rob Clark40ecc692014-12-18 16:01:46 -05001628 ret = drm_atomic_crtc_set_property(crtc, crtc_state,
1629 property, val);
Daniel Vetter042652e2014-07-27 13:46:52 +02001630 if (ret)
1631 goto fail;
1632
1633 ret = drm_atomic_commit(state);
1634 if (ret != 0)
1635 goto fail;
1636
1637 /* Driver takes ownership of state on successful commit. */
1638 return 0;
1639fail:
1640 if (ret == -EDEADLK)
1641 goto backoff;
1642
1643 drm_atomic_state_free(state);
1644
1645 return ret;
1646backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02001647 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01001648 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02001649
1650 goto retry;
1651}
1652EXPORT_SYMBOL(drm_atomic_helper_crtc_set_property);
1653
1654/**
Laurent Pinchart7f500022015-02-23 02:50:23 +02001655 * drm_atomic_helper_plane_set_property - helper for plane properties
Daniel Vetter042652e2014-07-27 13:46:52 +02001656 * @plane: DRM plane
1657 * @property: DRM property
1658 * @val: value of property
1659 *
Laurent Pinchart7f500022015-02-23 02:50:23 +02001660 * Provides a default plane set_property handler using the atomic driver
1661 * interface.
Daniel Vetter042652e2014-07-27 13:46:52 +02001662 *
1663 * RETURNS:
1664 * Zero on success, error code on failure
1665 */
1666int
1667drm_atomic_helper_plane_set_property(struct drm_plane *plane,
1668 struct drm_property *property,
1669 uint64_t val)
1670{
1671 struct drm_atomic_state *state;
1672 struct drm_plane_state *plane_state;
1673 int ret = 0;
1674
1675 state = drm_atomic_state_alloc(plane->dev);
1676 if (!state)
1677 return -ENOMEM;
1678
1679 /* ->set_property is always called with all locks held. */
1680 state->acquire_ctx = plane->dev->mode_config.acquire_ctx;
1681retry:
1682 plane_state = drm_atomic_get_plane_state(state, plane);
1683 if (IS_ERR(plane_state)) {
1684 ret = PTR_ERR(plane_state);
1685 goto fail;
1686 }
1687
Rob Clark40ecc692014-12-18 16:01:46 -05001688 ret = drm_atomic_plane_set_property(plane, plane_state,
1689 property, val);
Daniel Vetter042652e2014-07-27 13:46:52 +02001690 if (ret)
1691 goto fail;
1692
1693 ret = drm_atomic_commit(state);
1694 if (ret != 0)
1695 goto fail;
1696
1697 /* Driver takes ownership of state on successful commit. */
1698 return 0;
1699fail:
1700 if (ret == -EDEADLK)
1701 goto backoff;
1702
1703 drm_atomic_state_free(state);
1704
1705 return ret;
1706backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02001707 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01001708 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02001709
1710 goto retry;
1711}
1712EXPORT_SYMBOL(drm_atomic_helper_plane_set_property);
1713
1714/**
Laurent Pinchart7f500022015-02-23 02:50:23 +02001715 * drm_atomic_helper_connector_set_property - helper for connector properties
Daniel Vetter042652e2014-07-27 13:46:52 +02001716 * @connector: DRM connector
1717 * @property: DRM property
1718 * @val: value of property
1719 *
Laurent Pinchart7f500022015-02-23 02:50:23 +02001720 * Provides a default connector set_property handler using the atomic driver
1721 * interface.
Daniel Vetter042652e2014-07-27 13:46:52 +02001722 *
1723 * RETURNS:
1724 * Zero on success, error code on failure
1725 */
1726int
1727drm_atomic_helper_connector_set_property(struct drm_connector *connector,
1728 struct drm_property *property,
1729 uint64_t val)
1730{
1731 struct drm_atomic_state *state;
1732 struct drm_connector_state *connector_state;
1733 int ret = 0;
1734
1735 state = drm_atomic_state_alloc(connector->dev);
1736 if (!state)
1737 return -ENOMEM;
1738
1739 /* ->set_property is always called with all locks held. */
1740 state->acquire_ctx = connector->dev->mode_config.acquire_ctx;
1741retry:
1742 connector_state = drm_atomic_get_connector_state(state, connector);
1743 if (IS_ERR(connector_state)) {
1744 ret = PTR_ERR(connector_state);
1745 goto fail;
1746 }
1747
Rob Clark40ecc692014-12-18 16:01:46 -05001748 ret = drm_atomic_connector_set_property(connector, connector_state,
1749 property, val);
Daniel Vetter042652e2014-07-27 13:46:52 +02001750 if (ret)
1751 goto fail;
1752
1753 ret = drm_atomic_commit(state);
1754 if (ret != 0)
1755 goto fail;
1756
1757 /* Driver takes ownership of state on successful commit. */
1758 return 0;
1759fail:
1760 if (ret == -EDEADLK)
1761 goto backoff;
1762
1763 drm_atomic_state_free(state);
1764
1765 return ret;
1766backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02001767 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01001768 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02001769
1770 goto retry;
1771}
1772EXPORT_SYMBOL(drm_atomic_helper_connector_set_property);
Daniel Vetter8bc0f312014-07-27 18:42:37 +02001773
1774/**
1775 * drm_atomic_helper_page_flip - execute a legacy page flip
1776 * @crtc: DRM crtc
1777 * @fb: DRM framebuffer
1778 * @event: optional DRM event to signal upon completion
1779 * @flags: flip flags for non-vblank sync'ed updates
1780 *
1781 * Provides a default page flip implementation using the atomic driver interface.
1782 *
1783 * Note that for now so called async page flips (i.e. updates which are not
1784 * synchronized to vblank) are not supported, since the atomic interfaces have
1785 * no provisions for this yet.
1786 *
1787 * Returns:
1788 * Returns 0 on success, negative errno numbers on failure.
1789 */
1790int drm_atomic_helper_page_flip(struct drm_crtc *crtc,
1791 struct drm_framebuffer *fb,
1792 struct drm_pending_vblank_event *event,
1793 uint32_t flags)
1794{
1795 struct drm_plane *plane = crtc->primary;
1796 struct drm_atomic_state *state;
1797 struct drm_plane_state *plane_state;
1798 struct drm_crtc_state *crtc_state;
1799 int ret = 0;
1800
1801 if (flags & DRM_MODE_PAGE_FLIP_ASYNC)
1802 return -EINVAL;
1803
1804 state = drm_atomic_state_alloc(plane->dev);
1805 if (!state)
1806 return -ENOMEM;
1807
1808 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
1809retry:
1810 crtc_state = drm_atomic_get_crtc_state(state, crtc);
1811 if (IS_ERR(crtc_state)) {
1812 ret = PTR_ERR(crtc_state);
1813 goto fail;
1814 }
1815 crtc_state->event = event;
1816
1817 plane_state = drm_atomic_get_plane_state(state, plane);
1818 if (IS_ERR(plane_state)) {
1819 ret = PTR_ERR(plane_state);
1820 goto fail;
1821 }
1822
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01001823 ret = drm_atomic_set_crtc_for_plane(plane_state, crtc);
Daniel Vetter8bc0f312014-07-27 18:42:37 +02001824 if (ret != 0)
1825 goto fail;
Daniel Vetter321ebf02014-11-04 22:57:27 +01001826 drm_atomic_set_fb_for_plane(plane_state, fb);
Daniel Vetter8bc0f312014-07-27 18:42:37 +02001827
1828 ret = drm_atomic_async_commit(state);
1829 if (ret != 0)
1830 goto fail;
1831
1832 /* TODO: ->page_flip is the only driver callback where the core
1833 * doesn't update plane->fb. For now patch it up here. */
1834 plane->fb = plane->state->fb;
1835
1836 /* Driver takes ownership of state on successful async commit. */
1837 return 0;
1838fail:
1839 if (ret == -EDEADLK)
1840 goto backoff;
1841
1842 drm_atomic_state_free(state);
1843
1844 return ret;
1845backoff:
Daniel Vetter8bc0f312014-07-27 18:42:37 +02001846 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01001847 drm_atomic_legacy_backoff(state);
Daniel Vetter8bc0f312014-07-27 18:42:37 +02001848
1849 /*
1850 * Someone might have exchanged the framebuffer while we dropped locks
1851 * in the backoff code. We need to fix up the fb refcount tracking the
1852 * core does for us.
1853 */
1854 plane->old_fb = plane->fb;
1855
1856 goto retry;
1857}
1858EXPORT_SYMBOL(drm_atomic_helper_page_flip);
Daniel Vetterd4617012014-11-03 15:56:43 +01001859
1860/**
Daniel Vetterb486e0e2015-01-22 18:53:05 +01001861 * drm_atomic_helper_connector_dpms() - connector dpms helper implementation
1862 * @connector: affected connector
1863 * @mode: DPMS mode
1864 *
1865 * This is the main helper function provided by the atomic helper framework for
1866 * implementing the legacy DPMS connector interface. It computes the new desired
1867 * ->active state for the corresponding CRTC (if the connector is enabled) and
1868 * updates it.
1869 */
1870void drm_atomic_helper_connector_dpms(struct drm_connector *connector,
1871 int mode)
1872{
1873 struct drm_mode_config *config = &connector->dev->mode_config;
1874 struct drm_atomic_state *state;
1875 struct drm_crtc_state *crtc_state;
1876 struct drm_crtc *crtc;
1877 struct drm_connector *tmp_connector;
1878 int ret;
1879 bool active = false;
1880
1881 if (mode != DRM_MODE_DPMS_ON)
1882 mode = DRM_MODE_DPMS_OFF;
1883
1884 connector->dpms = mode;
1885 crtc = connector->state->crtc;
1886
1887 if (!crtc)
1888 return;
1889
1890 /* FIXME: ->dpms has no return value so can't forward the -ENOMEM. */
1891 state = drm_atomic_state_alloc(connector->dev);
1892 if (!state)
1893 return;
1894
1895 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
1896retry:
1897 crtc_state = drm_atomic_get_crtc_state(state, crtc);
1898 if (IS_ERR(crtc_state))
1899 return;
1900
1901 WARN_ON(!drm_modeset_is_locked(&config->connection_mutex));
1902
1903 list_for_each_entry(tmp_connector, &config->connector_list, head) {
John Hunter0388df02015-03-17 15:30:28 +08001904 if (tmp_connector->state->crtc != crtc)
Daniel Vetterb486e0e2015-01-22 18:53:05 +01001905 continue;
1906
John Hunter0388df02015-03-17 15:30:28 +08001907 if (tmp_connector->dpms == DRM_MODE_DPMS_ON) {
Daniel Vetterb486e0e2015-01-22 18:53:05 +01001908 active = true;
1909 break;
1910 }
1911 }
1912 crtc_state->active = active;
1913
1914 ret = drm_atomic_commit(state);
1915 if (ret != 0)
1916 goto fail;
1917
1918 /* Driver takes ownership of state on successful async commit. */
1919 return;
1920fail:
1921 if (ret == -EDEADLK)
1922 goto backoff;
1923
1924 drm_atomic_state_free(state);
1925
1926 WARN(1, "Driver bug: Changing ->active failed with ret=%i\n", ret);
1927
1928 return;
1929backoff:
1930 drm_atomic_state_clear(state);
1931 drm_atomic_legacy_backoff(state);
1932
1933 goto retry;
1934}
1935EXPORT_SYMBOL(drm_atomic_helper_connector_dpms);
1936
1937/**
Daniel Vetter3150c7d2014-11-06 20:53:29 +01001938 * DOC: atomic state reset and initialization
1939 *
1940 * Both the drm core and the atomic helpers assume that there is always the full
1941 * and correct atomic software state for all connectors, CRTCs and planes
1942 * available. Which is a bit a problem on driver load and also after system
1943 * suspend. One way to solve this is to have a hardware state read-out
1944 * infrastructure which reconstructs the full software state (e.g. the i915
1945 * driver).
1946 *
1947 * The simpler solution is to just reset the software state to everything off,
1948 * which is easiest to do by calling drm_mode_config_reset(). To facilitate this
1949 * the atomic helpers provide default reset implementations for all hooks.
1950 */
1951
1952/**
Daniel Vetterd4617012014-11-03 15:56:43 +01001953 * drm_atomic_helper_crtc_reset - default ->reset hook for CRTCs
1954 * @crtc: drm CRTC
1955 *
1956 * Resets the atomic state for @crtc by freeing the state pointer (which might
1957 * be NULL, e.g. at driver load time) and allocating a new empty state object.
1958 */
1959void drm_atomic_helper_crtc_reset(struct drm_crtc *crtc)
1960{
1961 kfree(crtc->state);
1962 crtc->state = kzalloc(sizeof(*crtc->state), GFP_KERNEL);
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01001963
1964 if (crtc->state)
1965 crtc->state->crtc = crtc;
Daniel Vetterd4617012014-11-03 15:56:43 +01001966}
1967EXPORT_SYMBOL(drm_atomic_helper_crtc_reset);
1968
1969/**
1970 * drm_atomic_helper_crtc_duplicate_state - default state duplicate hook
1971 * @crtc: drm CRTC
1972 *
1973 * Default CRTC state duplicate hook for drivers which don't have their own
1974 * subclassed CRTC state structure.
1975 */
1976struct drm_crtc_state *
1977drm_atomic_helper_crtc_duplicate_state(struct drm_crtc *crtc)
1978{
1979 struct drm_crtc_state *state;
1980
1981 if (WARN_ON(!crtc->state))
1982 return NULL;
1983
1984 state = kmemdup(crtc->state, sizeof(*crtc->state), GFP_KERNEL);
1985
1986 if (state) {
1987 state->mode_changed = false;
Daniel Vettereab3bbe2015-01-22 16:36:21 +01001988 state->active_changed = false;
Daniel Vetterd4617012014-11-03 15:56:43 +01001989 state->planes_changed = false;
1990 state->event = NULL;
1991 }
1992
1993 return state;
1994}
1995EXPORT_SYMBOL(drm_atomic_helper_crtc_duplicate_state);
1996
1997/**
1998 * drm_atomic_helper_crtc_destroy_state - default state destroy hook
1999 * @crtc: drm CRTC
2000 * @state: CRTC state object to release
2001 *
2002 * Default CRTC state destroy hook for drivers which don't have their own
2003 * subclassed CRTC state structure.
2004 */
2005void drm_atomic_helper_crtc_destroy_state(struct drm_crtc *crtc,
2006 struct drm_crtc_state *state)
2007{
2008 kfree(state);
2009}
2010EXPORT_SYMBOL(drm_atomic_helper_crtc_destroy_state);
2011
2012/**
2013 * drm_atomic_helper_plane_reset - default ->reset hook for planes
2014 * @plane: drm plane
2015 *
2016 * Resets the atomic state for @plane by freeing the state pointer (which might
2017 * be NULL, e.g. at driver load time) and allocating a new empty state object.
2018 */
2019void drm_atomic_helper_plane_reset(struct drm_plane *plane)
2020{
Daniel Vetter321ebf02014-11-04 22:57:27 +01002021 if (plane->state && plane->state->fb)
2022 drm_framebuffer_unreference(plane->state->fb);
2023
Daniel Vetterd4617012014-11-03 15:56:43 +01002024 kfree(plane->state);
2025 plane->state = kzalloc(sizeof(*plane->state), GFP_KERNEL);
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01002026
2027 if (plane->state)
2028 plane->state->plane = plane;
Daniel Vetterd4617012014-11-03 15:56:43 +01002029}
2030EXPORT_SYMBOL(drm_atomic_helper_plane_reset);
2031
2032/**
2033 * drm_atomic_helper_plane_duplicate_state - default state duplicate hook
2034 * @plane: drm plane
2035 *
2036 * Default plane state duplicate hook for drivers which don't have their own
2037 * subclassed plane state structure.
2038 */
2039struct drm_plane_state *
2040drm_atomic_helper_plane_duplicate_state(struct drm_plane *plane)
2041{
Daniel Vetter321ebf02014-11-04 22:57:27 +01002042 struct drm_plane_state *state;
2043
Daniel Vetterd4617012014-11-03 15:56:43 +01002044 if (WARN_ON(!plane->state))
2045 return NULL;
2046
Daniel Vetter321ebf02014-11-04 22:57:27 +01002047 state = kmemdup(plane->state, sizeof(*plane->state), GFP_KERNEL);
2048
2049 if (state && state->fb)
2050 drm_framebuffer_reference(state->fb);
2051
2052 return state;
Daniel Vetterd4617012014-11-03 15:56:43 +01002053}
2054EXPORT_SYMBOL(drm_atomic_helper_plane_duplicate_state);
2055
2056/**
2057 * drm_atomic_helper_plane_destroy_state - default state destroy hook
2058 * @plane: drm plane
2059 * @state: plane state object to release
2060 *
2061 * Default plane state destroy hook for drivers which don't have their own
2062 * subclassed plane state structure.
2063 */
2064void drm_atomic_helper_plane_destroy_state(struct drm_plane *plane,
Daniel Vetter321ebf02014-11-04 22:57:27 +01002065 struct drm_plane_state *state)
Daniel Vetterd4617012014-11-03 15:56:43 +01002066{
Daniel Vetter321ebf02014-11-04 22:57:27 +01002067 if (state->fb)
2068 drm_framebuffer_unreference(state->fb);
2069
Daniel Vetterd4617012014-11-03 15:56:43 +01002070 kfree(state);
2071}
2072EXPORT_SYMBOL(drm_atomic_helper_plane_destroy_state);
2073
2074/**
2075 * drm_atomic_helper_connector_reset - default ->reset hook for connectors
2076 * @connector: drm connector
2077 *
2078 * Resets the atomic state for @connector by freeing the state pointer (which
2079 * might be NULL, e.g. at driver load time) and allocating a new empty state
2080 * object.
2081 */
2082void drm_atomic_helper_connector_reset(struct drm_connector *connector)
2083{
2084 kfree(connector->state);
2085 connector->state = kzalloc(sizeof(*connector->state), GFP_KERNEL);
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01002086
2087 if (connector->state)
2088 connector->state->connector = connector;
Daniel Vetterd4617012014-11-03 15:56:43 +01002089}
2090EXPORT_SYMBOL(drm_atomic_helper_connector_reset);
2091
2092/**
2093 * drm_atomic_helper_connector_duplicate_state - default state duplicate hook
2094 * @connector: drm connector
2095 *
2096 * Default connector state duplicate hook for drivers which don't have their own
2097 * subclassed connector state structure.
2098 */
2099struct drm_connector_state *
2100drm_atomic_helper_connector_duplicate_state(struct drm_connector *connector)
2101{
2102 if (WARN_ON(!connector->state))
2103 return NULL;
2104
2105 return kmemdup(connector->state, sizeof(*connector->state), GFP_KERNEL);
2106}
2107EXPORT_SYMBOL(drm_atomic_helper_connector_duplicate_state);
2108
2109/**
2110 * drm_atomic_helper_connector_destroy_state - default state destroy hook
2111 * @connector: drm connector
2112 * @state: connector state object to release
2113 *
2114 * Default connector state destroy hook for drivers which don't have their own
2115 * subclassed connector state structure.
2116 */
2117void drm_atomic_helper_connector_destroy_state(struct drm_connector *connector,
2118 struct drm_connector_state *state)
2119{
2120 kfree(state);
2121}
2122EXPORT_SYMBOL(drm_atomic_helper_connector_destroy_state);