blob: 5e68c3c7d5cfdf34001781672cb75a68e21950bf [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ä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];
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äb5ceff202015-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;
Ander Conselvan de Oliveira840bfe92015-04-21 17:13:18 +0300283 if (!funcs)
284 continue;
Daniel Vetter623369e2014-09-16 17:50:47 +0200285
286 if (encoder->bridge && encoder->bridge->funcs->mode_fixup) {
287 ret = encoder->bridge->funcs->mode_fixup(
288 encoder->bridge, &crtc_state->mode,
289 &crtc_state->adjusted_mode);
290 if (!ret) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100291 DRM_DEBUG_ATOMIC("Bridge fixup failed\n");
Daniel Vetter623369e2014-09-16 17:50:47 +0200292 return -EINVAL;
293 }
294 }
295
Thierry Reding4cd4df82014-12-03 16:44:34 +0100296 if (funcs->atomic_check) {
297 ret = funcs->atomic_check(encoder, crtc_state,
298 conn_state);
299 if (ret) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100300 DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] check failed\n",
301 encoder->base.id, encoder->name);
Thierry Reding4cd4df82014-12-03 16:44:34 +0100302 return ret;
303 }
304 } else {
305 ret = funcs->mode_fixup(encoder, &crtc_state->mode,
306 &crtc_state->adjusted_mode);
307 if (!ret) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100308 DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] fixup failed\n",
309 encoder->base.id, encoder->name);
Thierry Reding4cd4df82014-12-03 16:44:34 +0100310 return -EINVAL;
311 }
Daniel Vetter623369e2014-09-16 17:50:47 +0200312 }
313 }
314
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300315 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +0200316 const struct drm_crtc_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200317
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300318 if (!crtc_state->mode_changed)
Daniel Vetter623369e2014-09-16 17:50:47 +0200319 continue;
320
321 funcs = crtc->helper_private;
Ander Conselvan de Oliveira840bfe92015-04-21 17:13:18 +0300322 if (!funcs->mode_fixup)
323 continue;
324
Daniel Vetter623369e2014-09-16 17:50:47 +0200325 ret = funcs->mode_fixup(crtc, &crtc_state->mode,
326 &crtc_state->adjusted_mode);
327 if (!ret) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100328 DRM_DEBUG_ATOMIC("[CRTC:%d] fixup failed\n",
329 crtc->base.id);
Daniel Vetter623369e2014-09-16 17:50:47 +0200330 return -EINVAL;
331 }
332 }
333
334 return 0;
335}
336
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100337static bool
338needs_modeset(struct drm_crtc_state *state)
339{
340 return state->mode_changed || state->active_changed;
341}
342
Daniel Vetterd9b13622014-11-26 16:57:41 +0100343/**
John Hunterf98bd3e2015-03-17 15:30:26 +0800344 * drm_atomic_helper_check_modeset - validate state object for modeset changes
Daniel Vetterd9b13622014-11-26 16:57:41 +0100345 * @dev: DRM device
346 * @state: the driver state object
347 *
348 * Check the state object to see if the requested state is physically possible.
349 * This does all the crtc and connector related computations for an atomic
350 * update. It computes and updates crtc_state->mode_changed, adds any additional
351 * connectors needed for full modesets and calls down into ->mode_fixup
352 * functions of the driver backend.
353 *
354 * IMPORTANT:
355 *
356 * Drivers which update ->mode_changed (e.g. in their ->atomic_check hooks if a
357 * plane update can't be done without a full modeset) _must_ call this function
358 * afterwards after that change. It is permitted to call this function multiple
359 * times for the same update, e.g. when the ->atomic_check functions depend upon
360 * the adjusted dotclock for fifo space allocation and watermark computation.
361 *
362 * RETURNS
363 * Zero for success or -errno
364 */
365int
Rob Clark934ce1c2014-11-19 16:41:33 -0500366drm_atomic_helper_check_modeset(struct drm_device *dev,
Daniel Vetter623369e2014-09-16 17:50:47 +0200367 struct drm_atomic_state *state)
368{
Daniel Vetter623369e2014-09-16 17:50:47 +0200369 struct drm_crtc *crtc;
370 struct drm_crtc_state *crtc_state;
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300371 struct drm_connector *connector;
372 struct drm_connector_state *connector_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200373 int i, ret;
374
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300375 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Daniel Vetter623369e2014-09-16 17:50:47 +0200376 if (!drm_mode_equal(&crtc->state->mode, &crtc_state->mode)) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100377 DRM_DEBUG_ATOMIC("[CRTC:%d] mode changed\n",
378 crtc->base.id);
Daniel Vetter623369e2014-09-16 17:50:47 +0200379 crtc_state->mode_changed = true;
380 }
381
382 if (crtc->state->enable != crtc_state->enable) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100383 DRM_DEBUG_ATOMIC("[CRTC:%d] enable changed\n",
384 crtc->base.id);
Daniel Vetter623369e2014-09-16 17:50:47 +0200385 crtc_state->mode_changed = true;
386 }
387 }
388
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300389 for_each_connector_in_state(state, connector, connector_state, i) {
Daniel Vetter623369e2014-09-16 17:50:47 +0200390 /*
391 * This only sets crtc->mode_changed for routing changes,
392 * drivers must set crtc->mode_changed themselves when connector
393 * properties need to be updated.
394 */
395 ret = update_connector_routing(state, i);
396 if (ret)
397 return ret;
398 }
399
400 /*
401 * After all the routing has been prepared we need to add in any
402 * connector which is itself unchanged, but who's crtc changes it's
403 * configuration. This must be done before calling mode_fixup in case a
404 * crtc only changed its mode but has the same set of connectors.
405 */
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300406 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Daniel Vetter623369e2014-09-16 17:50:47 +0200407 int num_connectors;
408
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100409 /*
410 * We must set ->active_changed after walking connectors for
411 * otherwise an update that only changes active would result in
412 * a full modeset because update_connector_routing force that.
413 */
414 if (crtc->state->active != crtc_state->active) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100415 DRM_DEBUG_ATOMIC("[CRTC:%d] active changed\n",
416 crtc->base.id);
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100417 crtc_state->active_changed = true;
418 }
419
420 if (!needs_modeset(crtc_state))
421 continue;
422
Daniel Vetter17a38d92015-02-22 12:24:16 +0100423 DRM_DEBUG_ATOMIC("[CRTC:%d] needs all connectors, enable: %c, active: %c\n",
424 crtc->base.id,
425 crtc_state->enable ? 'y' : 'n',
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100426 crtc_state->active ? 'y' : 'n');
Daniel Vetter623369e2014-09-16 17:50:47 +0200427
428 ret = drm_atomic_add_affected_connectors(state, crtc);
429 if (ret != 0)
430 return ret;
431
432 num_connectors = drm_atomic_connectors_for_crtc(state,
433 crtc);
434
435 if (crtc_state->enable != !!num_connectors) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100436 DRM_DEBUG_ATOMIC("[CRTC:%d] enabled/connectors mismatch\n",
437 crtc->base.id);
Daniel Vetter623369e2014-09-16 17:50:47 +0200438
439 return -EINVAL;
440 }
441 }
442
443 return mode_fixup(state);
444}
Daniel Vetterd9b13622014-11-26 16:57:41 +0100445EXPORT_SYMBOL(drm_atomic_helper_check_modeset);
Daniel Vetter623369e2014-09-16 17:50:47 +0200446
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100447/**
John Hunterf98bd3e2015-03-17 15:30:26 +0800448 * drm_atomic_helper_check_planes - validate state object for planes changes
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100449 * @dev: DRM device
450 * @state: the driver state object
451 *
452 * Check the state object to see if the requested state is physically possible.
Daniel Vetterd9b13622014-11-26 16:57:41 +0100453 * This does all the plane update related checks using by calling into the
454 * ->atomic_check hooks provided by the driver.
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100455 *
456 * RETURNS
457 * Zero for success or -errno
458 */
Daniel Vetterd9b13622014-11-26 16:57:41 +0100459int
460drm_atomic_helper_check_planes(struct drm_device *dev,
461 struct drm_atomic_state *state)
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100462{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300463 struct drm_crtc *crtc;
464 struct drm_crtc_state *crtc_state;
465 struct drm_plane *plane;
466 struct drm_plane_state *plane_state;
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100467 int i, ret = 0;
468
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300469 for_each_plane_in_state(state, plane, plane_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +0200470 const struct drm_plane_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100471
472 funcs = plane->helper_private;
473
474 drm_atomic_helper_plane_changed(state, plane_state, plane);
475
476 if (!funcs || !funcs->atomic_check)
477 continue;
478
479 ret = funcs->atomic_check(plane, plane_state);
480 if (ret) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100481 DRM_DEBUG_ATOMIC("[PLANE:%d] atomic driver check failed\n",
482 plane->base.id);
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100483 return ret;
484 }
485 }
486
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300487 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +0200488 const struct drm_crtc_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100489
490 funcs = crtc->helper_private;
491
492 if (!funcs || !funcs->atomic_check)
493 continue;
494
495 ret = funcs->atomic_check(crtc, state->crtc_states[i]);
496 if (ret) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100497 DRM_DEBUG_ATOMIC("[CRTC:%d] atomic driver check failed\n",
498 crtc->base.id);
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100499 return ret;
500 }
501 }
502
Daniel Vetterd9b13622014-11-26 16:57:41 +0100503 return ret;
504}
505EXPORT_SYMBOL(drm_atomic_helper_check_planes);
506
507/**
508 * drm_atomic_helper_check - validate state object
509 * @dev: DRM device
510 * @state: the driver state object
511 *
512 * Check the state object to see if the requested state is physically possible.
513 * Only crtcs and planes have check callbacks, so for any additional (global)
514 * checking that a driver needs it can simply wrap that around this function.
515 * Drivers without such needs can directly use this as their ->atomic_check()
516 * callback.
517 *
Daniel Vetterb4274fb2014-11-26 17:02:18 +0100518 * This just wraps the two parts of the state checking for planes and modeset
519 * state in the default order: First it calls drm_atomic_helper_check_modeset()
520 * and then drm_atomic_helper_check_planes(). The assumption is that the
521 * ->atomic_check functions depend upon an updated adjusted_mode.clock to
522 * e.g. properly compute watermarks.
523 *
Daniel Vetterd9b13622014-11-26 16:57:41 +0100524 * RETURNS
525 * Zero for success or -errno
526 */
527int drm_atomic_helper_check(struct drm_device *dev,
528 struct drm_atomic_state *state)
529{
530 int ret;
531
Daniel Vetterb4274fb2014-11-26 17:02:18 +0100532 ret = drm_atomic_helper_check_modeset(dev, state);
Daniel Vetterd9b13622014-11-26 16:57:41 +0100533 if (ret)
534 return ret;
535
Daniel Vetterb4274fb2014-11-26 17:02:18 +0100536 ret = drm_atomic_helper_check_planes(dev, state);
Rob Clark934ce1c2014-11-19 16:41:33 -0500537 if (ret)
538 return ret;
539
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100540 return ret;
541}
542EXPORT_SYMBOL(drm_atomic_helper_check);
543
Daniel Vetter623369e2014-09-16 17:50:47 +0200544static void
545disable_outputs(struct drm_device *dev, struct drm_atomic_state *old_state)
546{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300547 struct drm_connector *connector;
548 struct drm_connector_state *old_conn_state;
549 struct drm_crtc *crtc;
550 struct drm_crtc_state *old_crtc_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200551 int i;
552
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300553 for_each_connector_in_state(old_state, connector, old_conn_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +0200554 const struct drm_encoder_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200555 struct drm_encoder *encoder;
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100556 struct drm_crtc_state *old_crtc_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200557
Daniel Vetter623369e2014-09-16 17:50:47 +0200558 /* Shut down everything that's in the changeset and currently
559 * still on. So need to check the old, saved state. */
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300560 if (!old_conn_state->crtc)
Daniel Vetter623369e2014-09-16 17:50:47 +0200561 continue;
562
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100563 old_crtc_state = old_state->crtc_states[drm_crtc_index(old_conn_state->crtc)];
564
Daniel Vetter4218a322015-03-26 22:18:40 +0100565 if (!old_crtc_state->active ||
566 !needs_modeset(old_conn_state->crtc->state))
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100567 continue;
568
Rob Clark46df9ad2014-11-20 15:40:36 -0500569 encoder = old_conn_state->best_encoder;
Daniel Vetter623369e2014-09-16 17:50:47 +0200570
Rob Clark46df9ad2014-11-20 15:40:36 -0500571 /* We shouldn't get this far if we didn't previously have
572 * an encoder.. but WARN_ON() rather than explode.
573 */
574 if (WARN_ON(!encoder))
Daniel Vetter623369e2014-09-16 17:50:47 +0200575 continue;
576
577 funcs = encoder->helper_private;
578
Daniel Vetter17a38d92015-02-22 12:24:16 +0100579 DRM_DEBUG_ATOMIC("disabling [ENCODER:%d:%s]\n",
580 encoder->base.id, encoder->name);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100581
Daniel Vetter623369e2014-09-16 17:50:47 +0200582 /*
583 * Each encoder has at most one connector (since we always steal
John Hunterf98bd3e2015-03-17 15:30:26 +0800584 * it away), so we won't call disable hooks twice.
Daniel Vetter623369e2014-09-16 17:50:47 +0200585 */
586 if (encoder->bridge)
587 encoder->bridge->funcs->disable(encoder->bridge);
588
589 /* Right function depends upon target state. */
Daniel Vetteree0a89c2015-01-22 16:36:24 +0100590 if (connector->state->crtc && funcs->prepare)
Daniel Vetter623369e2014-09-16 17:50:47 +0200591 funcs->prepare(encoder);
592 else if (funcs->disable)
593 funcs->disable(encoder);
594 else
595 funcs->dpms(encoder, DRM_MODE_DPMS_OFF);
596
597 if (encoder->bridge)
598 encoder->bridge->funcs->post_disable(encoder->bridge);
599 }
600
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300601 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +0200602 const struct drm_crtc_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200603
604 /* Shut down everything that needs a full modeset. */
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300605 if (!needs_modeset(crtc->state))
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100606 continue;
607
608 if (!old_crtc_state->active)
Daniel Vetter623369e2014-09-16 17:50:47 +0200609 continue;
610
611 funcs = crtc->helper_private;
612
Daniel Vetter17a38d92015-02-22 12:24:16 +0100613 DRM_DEBUG_ATOMIC("disabling [CRTC:%d]\n",
614 crtc->base.id);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100615
616
Daniel Vetter623369e2014-09-16 17:50:47 +0200617 /* Right function depends upon target state. */
Daniel Vetteree0a89c2015-01-22 16:36:24 +0100618 if (crtc->state->enable && funcs->prepare)
Daniel Vetter623369e2014-09-16 17:50:47 +0200619 funcs->prepare(crtc);
620 else if (funcs->disable)
621 funcs->disable(crtc);
622 else
623 funcs->dpms(crtc, DRM_MODE_DPMS_OFF);
624 }
625}
626
627static void
628set_routing_links(struct drm_device *dev, struct drm_atomic_state *old_state)
629{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300630 struct drm_connector *connector;
631 struct drm_connector_state *old_conn_state;
632 struct drm_crtc *crtc;
633 struct drm_crtc_state *old_crtc_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200634 int i;
635
636 /* clear out existing links */
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300637 for_each_connector_in_state(old_state, connector, old_conn_state, i) {
638 if (!connector->encoder)
Daniel Vetter623369e2014-09-16 17:50:47 +0200639 continue;
640
641 WARN_ON(!connector->encoder->crtc);
642
643 connector->encoder->crtc = NULL;
644 connector->encoder = NULL;
645 }
646
647 /* set new links */
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300648 for_each_connector_in_state(old_state, connector, old_conn_state, i) {
649 if (!connector->state->crtc)
Daniel Vetter623369e2014-09-16 17:50:47 +0200650 continue;
651
652 if (WARN_ON(!connector->state->best_encoder))
653 continue;
654
655 connector->encoder = connector->state->best_encoder;
656 connector->encoder->crtc = connector->state->crtc;
657 }
658
659 /* set legacy state in the crtc structure */
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300660 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Daniel Vetter623369e2014-09-16 17:50:47 +0200661 crtc->mode = crtc->state->mode;
662 crtc->enabled = crtc->state->enable;
663 crtc->x = crtc->primary->state->src_x >> 16;
664 crtc->y = crtc->primary->state->src_y >> 16;
665 }
666}
667
668static void
669crtc_set_mode(struct drm_device *dev, struct drm_atomic_state *old_state)
670{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300671 struct drm_crtc *crtc;
672 struct drm_crtc_state *old_crtc_state;
673 struct drm_connector *connector;
674 struct drm_connector_state *old_conn_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200675 int i;
676
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300677 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +0200678 const struct drm_crtc_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200679
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300680 if (!crtc->state->mode_changed)
Daniel Vetter623369e2014-09-16 17:50:47 +0200681 continue;
682
683 funcs = crtc->helper_private;
684
Daniel Vetterc982bd92015-02-22 12:24:20 +0100685 if (crtc->state->enable && funcs->mode_set_nofb) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100686 DRM_DEBUG_ATOMIC("modeset on [CRTC:%d]\n",
687 crtc->base.id);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100688
Daniel Vetter623369e2014-09-16 17:50:47 +0200689 funcs->mode_set_nofb(crtc);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100690 }
Daniel Vetter623369e2014-09-16 17:50:47 +0200691 }
692
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300693 for_each_connector_in_state(old_state, connector, old_conn_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +0200694 const struct drm_encoder_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200695 struct drm_crtc_state *new_crtc_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200696 struct drm_encoder *encoder;
697 struct drm_display_mode *mode, *adjusted_mode;
698
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300699 if (!connector->state->best_encoder)
Daniel Vetter623369e2014-09-16 17:50:47 +0200700 continue;
701
702 encoder = connector->state->best_encoder;
703 funcs = encoder->helper_private;
704 new_crtc_state = connector->state->crtc->state;
705 mode = &new_crtc_state->mode;
706 adjusted_mode = &new_crtc_state->adjusted_mode;
707
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100708 if (!new_crtc_state->mode_changed)
709 continue;
710
Daniel Vetter17a38d92015-02-22 12:24:16 +0100711 DRM_DEBUG_ATOMIC("modeset on [ENCODER:%d:%s]\n",
712 encoder->base.id, encoder->name);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100713
Daniel Vetter623369e2014-09-16 17:50:47 +0200714 /*
715 * Each encoder has at most one connector (since we always steal
John Hunterf98bd3e2015-03-17 15:30:26 +0800716 * it away), so we won't call mode_set hooks twice.
Daniel Vetter623369e2014-09-16 17:50:47 +0200717 */
Daniel Vetterc982bd92015-02-22 12:24:20 +0100718 if (funcs->mode_set)
719 funcs->mode_set(encoder, mode, adjusted_mode);
Daniel Vetter623369e2014-09-16 17:50:47 +0200720
721 if (encoder->bridge && encoder->bridge->funcs->mode_set)
722 encoder->bridge->funcs->mode_set(encoder->bridge,
723 mode, adjusted_mode);
724 }
725}
726
727/**
Daniel Vetter1af434a2015-02-22 12:24:19 +0100728 * drm_atomic_helper_commit_modeset_disables - modeset commit to disable outputs
Daniel Vetter623369e2014-09-16 17:50:47 +0200729 * @dev: DRM device
Laurent Pincharta072f802015-02-22 12:24:18 +0100730 * @old_state: atomic state object with old state structures
Daniel Vetter623369e2014-09-16 17:50:47 +0200731 *
Daniel Vetter1af434a2015-02-22 12:24:19 +0100732 * This function shuts down all the outputs that need to be shut down and
Daniel Vetter623369e2014-09-16 17:50:47 +0200733 * prepares them (if required) with the new mode.
Daniel Vetter1af434a2015-02-22 12:24:19 +0100734 *
735 * For compatability with legacy crtc helpers this should be called before
736 * drm_atomic_helper_commit_planes(), which is what the default commit function
737 * does. But drivers with different needs can group the modeset commits together
738 * and do the plane commits at the end. This is useful for drivers doing runtime
739 * PM since planes updates then only happen when the CRTC is actually enabled.
Daniel Vetter623369e2014-09-16 17:50:47 +0200740 */
Daniel Vetter1af434a2015-02-22 12:24:19 +0100741void drm_atomic_helper_commit_modeset_disables(struct drm_device *dev,
742 struct drm_atomic_state *old_state)
Daniel Vetter623369e2014-09-16 17:50:47 +0200743{
Laurent Pincharta072f802015-02-22 12:24:18 +0100744 disable_outputs(dev, old_state);
745 set_routing_links(dev, old_state);
746 crtc_set_mode(dev, old_state);
Daniel Vetter623369e2014-09-16 17:50:47 +0200747}
Daniel Vetter1af434a2015-02-22 12:24:19 +0100748EXPORT_SYMBOL(drm_atomic_helper_commit_modeset_disables);
Daniel Vetter623369e2014-09-16 17:50:47 +0200749
750/**
Daniel Vetter1af434a2015-02-22 12:24:19 +0100751 * drm_atomic_helper_commit_modeset_enables - modeset commit to enable outputs
Daniel Vetter623369e2014-09-16 17:50:47 +0200752 * @dev: DRM device
753 * @old_state: atomic state object with old state structures
754 *
Daniel Vetter1af434a2015-02-22 12:24:19 +0100755 * This function enables all the outputs with the new configuration which had to
756 * be turned off for the update.
757 *
758 * For compatability with legacy crtc helpers this should be called after
759 * drm_atomic_helper_commit_planes(), which is what the default commit function
760 * does. But drivers with different needs can group the modeset commits together
761 * and do the plane commits at the end. This is useful for drivers doing runtime
762 * PM since planes updates then only happen when the CRTC is actually enabled.
Daniel Vetter623369e2014-09-16 17:50:47 +0200763 */
Daniel Vetter1af434a2015-02-22 12:24:19 +0100764void drm_atomic_helper_commit_modeset_enables(struct drm_device *dev,
765 struct drm_atomic_state *old_state)
Daniel Vetter623369e2014-09-16 17:50:47 +0200766{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300767 struct drm_crtc *crtc;
768 struct drm_crtc_state *old_crtc_state;
769 struct drm_connector *connector;
770 struct drm_connector_state *old_conn_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200771 int i;
772
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300773 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +0200774 const struct drm_crtc_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200775
776 /* Need to filter out CRTCs where only planes change. */
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300777 if (!needs_modeset(crtc->state))
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100778 continue;
779
780 if (!crtc->state->active)
Daniel Vetter623369e2014-09-16 17:50:47 +0200781 continue;
782
783 funcs = crtc->helper_private;
784
Daniel Vetteree0a89c2015-01-22 16:36:24 +0100785 if (crtc->state->enable) {
Daniel Vetter17a38d92015-02-22 12:24:16 +0100786 DRM_DEBUG_ATOMIC("enabling [CRTC:%d]\n",
787 crtc->base.id);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100788
Daniel Vetteree0a89c2015-01-22 16:36:24 +0100789 if (funcs->enable)
790 funcs->enable(crtc);
791 else
792 funcs->commit(crtc);
793 }
Daniel Vetter623369e2014-09-16 17:50:47 +0200794 }
795
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300796 for_each_connector_in_state(old_state, connector, old_conn_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +0200797 const struct drm_encoder_helper_funcs *funcs;
Daniel Vetter623369e2014-09-16 17:50:47 +0200798 struct drm_encoder *encoder;
799
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300800 if (!connector->state->best_encoder)
Daniel Vetter623369e2014-09-16 17:50:47 +0200801 continue;
802
Daniel Vetter4218a322015-03-26 22:18:40 +0100803 if (!connector->state->crtc->state->active ||
804 !needs_modeset(connector->state->crtc->state))
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100805 continue;
806
Daniel Vetter623369e2014-09-16 17:50:47 +0200807 encoder = connector->state->best_encoder;
808 funcs = encoder->helper_private;
809
Daniel Vetter17a38d92015-02-22 12:24:16 +0100810 DRM_DEBUG_ATOMIC("enabling [ENCODER:%d:%s]\n",
811 encoder->base.id, encoder->name);
Daniel Vetter95d6eb32015-01-22 16:36:25 +0100812
Daniel Vetter623369e2014-09-16 17:50:47 +0200813 /*
814 * Each encoder has at most one connector (since we always steal
John Hunterf98bd3e2015-03-17 15:30:26 +0800815 * it away), so we won't call enable hooks twice.
Daniel Vetter623369e2014-09-16 17:50:47 +0200816 */
817 if (encoder->bridge)
818 encoder->bridge->funcs->pre_enable(encoder->bridge);
819
Daniel Vetteree0a89c2015-01-22 16:36:24 +0100820 if (funcs->enable)
821 funcs->enable(encoder);
822 else
823 funcs->commit(encoder);
Daniel Vetter623369e2014-09-16 17:50:47 +0200824
825 if (encoder->bridge)
826 encoder->bridge->funcs->enable(encoder->bridge);
827 }
828}
Daniel Vetter1af434a2015-02-22 12:24:19 +0100829EXPORT_SYMBOL(drm_atomic_helper_commit_modeset_enables);
Daniel Vetter623369e2014-09-16 17:50:47 +0200830
Daniel Vettere2330f02014-10-29 11:34:56 +0100831static void wait_for_fences(struct drm_device *dev,
832 struct drm_atomic_state *state)
833{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300834 struct drm_plane *plane;
835 struct drm_plane_state *plane_state;
Daniel Vettere2330f02014-10-29 11:34:56 +0100836 int i;
837
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300838 for_each_plane_in_state(state, plane, plane_state, i) {
839 if (!plane->state->fence)
Daniel Vettere2330f02014-10-29 11:34:56 +0100840 continue;
841
842 WARN_ON(!plane->state->fb);
843
844 fence_wait(plane->state->fence, false);
845 fence_put(plane->state->fence);
846 plane->state->fence = NULL;
847 }
848}
849
Daniel Vetterab58e332014-11-24 20:42:42 +0100850static bool framebuffer_changed(struct drm_device *dev,
851 struct drm_atomic_state *old_state,
852 struct drm_crtc *crtc)
853{
854 struct drm_plane *plane;
855 struct drm_plane_state *old_plane_state;
Daniel Vetterab58e332014-11-24 20:42:42 +0100856 int i;
857
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300858 for_each_plane_in_state(old_state, plane, old_plane_state, i) {
Daniel Vetterab58e332014-11-24 20:42:42 +0100859 if (plane->state->crtc != crtc &&
860 old_plane_state->crtc != crtc)
861 continue;
862
863 if (plane->state->fb != old_plane_state->fb)
864 return true;
865 }
866
867 return false;
868}
869
Rob Clark5ee32292014-11-11 19:38:59 -0500870/**
871 * drm_atomic_helper_wait_for_vblanks - wait for vblank on crtcs
872 * @dev: DRM device
873 * @old_state: atomic state object with old state structures
874 *
875 * Helper to, after atomic commit, wait for vblanks on all effected
876 * crtcs (ie. before cleaning up old framebuffers using
Daniel Vetterab58e332014-11-24 20:42:42 +0100877 * drm_atomic_helper_cleanup_planes()). It will only wait on crtcs where the
878 * framebuffers have actually changed to optimize for the legacy cursor and
879 * plane update use-case.
Rob Clark5ee32292014-11-11 19:38:59 -0500880 */
881void
882drm_atomic_helper_wait_for_vblanks(struct drm_device *dev,
883 struct drm_atomic_state *old_state)
Daniel Vetter623369e2014-09-16 17:50:47 +0200884{
885 struct drm_crtc *crtc;
886 struct drm_crtc_state *old_crtc_state;
Daniel Vetter623369e2014-09-16 17:50:47 +0200887 int i, ret;
888
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300889 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Daniel Vetter623369e2014-09-16 17:50:47 +0200890 /* No one cares about the old state, so abuse it for tracking
891 * and store whether we hold a vblank reference (and should do a
892 * vblank wait) in the ->enable boolean. */
893 old_crtc_state->enable = false;
894
895 if (!crtc->state->enable)
896 continue;
897
Daniel Vetterf02ad902015-01-22 16:36:23 +0100898 /* Legacy cursor ioctls are completely unsynced, and userspace
899 * relies on that (by doing tons of cursor updates). */
900 if (old_state->legacy_cursor_update)
901 continue;
902
Daniel Vetterab58e332014-11-24 20:42:42 +0100903 if (!framebuffer_changed(dev, old_state, crtc))
904 continue;
905
Daniel Vetter623369e2014-09-16 17:50:47 +0200906 ret = drm_crtc_vblank_get(crtc);
907 if (ret != 0)
908 continue;
909
910 old_crtc_state->enable = true;
911 old_crtc_state->last_vblank_count = drm_vblank_count(dev, i);
912 }
913
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300914 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
915 if (!old_crtc_state->enable)
Daniel Vetter623369e2014-09-16 17:50:47 +0200916 continue;
917
918 ret = wait_event_timeout(dev->vblank[i].queue,
919 old_crtc_state->last_vblank_count !=
920 drm_vblank_count(dev, i),
921 msecs_to_jiffies(50));
922
923 drm_crtc_vblank_put(crtc);
924 }
925}
Rob Clark5ee32292014-11-11 19:38:59 -0500926EXPORT_SYMBOL(drm_atomic_helper_wait_for_vblanks);
Daniel Vetter623369e2014-09-16 17:50:47 +0200927
928/**
929 * drm_atomic_helper_commit - commit validated state object
930 * @dev: DRM device
931 * @state: the driver state object
932 * @async: asynchronous commit
933 *
934 * This function commits a with drm_atomic_helper_check() pre-validated state
935 * object. This can still fail when e.g. the framebuffer reservation fails. For
936 * now this doesn't implement asynchronous commits.
937 *
938 * RETURNS
939 * Zero for success or -errno.
940 */
941int drm_atomic_helper_commit(struct drm_device *dev,
942 struct drm_atomic_state *state,
943 bool async)
944{
945 int ret;
946
947 if (async)
948 return -EBUSY;
949
950 ret = drm_atomic_helper_prepare_planes(dev, state);
951 if (ret)
952 return ret;
953
954 /*
955 * This is the point of no return - everything below never fails except
956 * when the hw goes bonghits. Which means we can commit the new state on
957 * the software side now.
958 */
959
960 drm_atomic_helper_swap_state(dev, state);
961
962 /*
963 * Everything below can be run asynchronously without the need to grab
John Hunterf98bd3e2015-03-17 15:30:26 +0800964 * any modeset locks at all under one condition: It must be guaranteed
Daniel Vetter623369e2014-09-16 17:50:47 +0200965 * that the asynchronous work has either been cancelled (if the driver
966 * supports it, which at least requires that the framebuffers get
967 * cleaned up with drm_atomic_helper_cleanup_planes()) or completed
968 * before the new state gets committed on the software side with
969 * drm_atomic_helper_swap_state().
970 *
971 * This scheme allows new atomic state updates to be prepared and
972 * checked in parallel to the asynchronous completion of the previous
973 * update. Which is important since compositors need to figure out the
974 * composition of the next frame right after having submitted the
975 * current layout.
976 */
977
Daniel Vettere2330f02014-10-29 11:34:56 +0100978 wait_for_fences(dev, state);
979
Daniel Vetter1af434a2015-02-22 12:24:19 +0100980 drm_atomic_helper_commit_modeset_disables(dev, state);
Daniel Vetter623369e2014-09-16 17:50:47 +0200981
982 drm_atomic_helper_commit_planes(dev, state);
983
Daniel Vetter1af434a2015-02-22 12:24:19 +0100984 drm_atomic_helper_commit_modeset_enables(dev, state);
Daniel Vetter623369e2014-09-16 17:50:47 +0200985
Rob Clark5ee32292014-11-11 19:38:59 -0500986 drm_atomic_helper_wait_for_vblanks(dev, state);
Daniel Vetter623369e2014-09-16 17:50:47 +0200987
988 drm_atomic_helper_cleanup_planes(dev, state);
989
990 drm_atomic_state_free(state);
991
992 return 0;
993}
994EXPORT_SYMBOL(drm_atomic_helper_commit);
995
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100996/**
Daniel Vettere8c833a2014-07-27 18:30:19 +0200997 * DOC: implementing async commit
998 *
999 * For now the atomic helpers don't support async commit directly. If there is
1000 * real need it could be added though, using the dma-buf fence infrastructure
1001 * for generic synchronization with outstanding rendering.
1002 *
1003 * For now drivers have to implement async commit themselves, with the following
1004 * sequence being the recommended one:
1005 *
1006 * 1. Run drm_atomic_helper_prepare_planes() first. This is the only function
1007 * which commit needs to call which can fail, so we want to run it first and
1008 * synchronously.
1009 *
1010 * 2. Synchronize with any outstanding asynchronous commit worker threads which
1011 * might be affected the new state update. This can be done by either cancelling
1012 * or flushing the work items, depending upon whether the driver can deal with
1013 * cancelled updates. Note that it is important to ensure that the framebuffer
1014 * cleanup is still done when cancelling.
1015 *
1016 * For sufficient parallelism it is recommended to have a work item per crtc
1017 * (for updates which don't touch global state) and a global one. Then we only
1018 * need to synchronize with the crtc work items for changed crtcs and the global
1019 * work item, which allows nice concurrent updates on disjoint sets of crtcs.
1020 *
1021 * 3. The software state is updated synchronously with
1022 * drm_atomic_helper_swap_state. Doing this under the protection of all modeset
1023 * locks means concurrent callers never see inconsistent state. And doing this
1024 * while it's guaranteed that no relevant async worker runs means that async
1025 * workers do not need grab any locks. Actually they must not grab locks, for
1026 * otherwise the work flushing will deadlock.
1027 *
1028 * 4. Schedule a work item to do all subsequent steps, using the split-out
1029 * commit helpers: a) pre-plane commit b) plane commit c) post-plane commit and
1030 * then cleaning up the framebuffers after the old framebuffer is no longer
1031 * being displayed.
1032 */
1033
1034/**
Daniel Vetter2e3afd42015-02-26 14:17:38 +01001035 * drm_atomic_helper_prepare_planes - prepare plane resources before commit
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001036 * @dev: DRM device
Daniel Vetter2e3afd42015-02-26 14:17:38 +01001037 * @state: atomic state object with new state structures
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001038 *
1039 * This function prepares plane state, specifically framebuffers, for the new
1040 * configuration. If any failure is encountered this function will call
1041 * ->cleanup_fb on any already successfully prepared framebuffer.
1042 *
1043 * Returns:
1044 * 0 on success, negative error code on failure.
1045 */
1046int drm_atomic_helper_prepare_planes(struct drm_device *dev,
1047 struct drm_atomic_state *state)
1048{
1049 int nplanes = dev->mode_config.num_total_plane;
1050 int ret, i;
1051
1052 for (i = 0; i < nplanes; i++) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +02001053 const struct drm_plane_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001054 struct drm_plane *plane = state->planes[i];
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +00001055 struct drm_plane_state *plane_state = state->plane_states[i];
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001056 struct drm_framebuffer *fb;
1057
1058 if (!plane)
1059 continue;
1060
1061 funcs = plane->helper_private;
1062
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +00001063 fb = plane_state->fb;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001064
1065 if (fb && funcs->prepare_fb) {
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +00001066 ret = funcs->prepare_fb(plane, fb, plane_state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001067 if (ret)
1068 goto fail;
1069 }
1070 }
1071
1072 return 0;
1073
1074fail:
1075 for (i--; i >= 0; i--) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +02001076 const struct drm_plane_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001077 struct drm_plane *plane = state->planes[i];
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +00001078 struct drm_plane_state *plane_state = state->plane_states[i];
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001079 struct drm_framebuffer *fb;
1080
1081 if (!plane)
1082 continue;
1083
1084 funcs = plane->helper_private;
1085
1086 fb = state->plane_states[i]->fb;
1087
1088 if (fb && funcs->cleanup_fb)
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +00001089 funcs->cleanup_fb(plane, fb, plane_state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001090
1091 }
1092
1093 return ret;
1094}
1095EXPORT_SYMBOL(drm_atomic_helper_prepare_planes);
1096
1097/**
1098 * drm_atomic_helper_commit_planes - commit plane state
1099 * @dev: DRM device
Daniel Vetterb0fcfc82014-11-19 18:38:11 +01001100 * @old_state: atomic state object with old state structures
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001101 *
1102 * This function commits the new plane state using the plane and atomic helper
1103 * functions for planes and crtcs. It assumes that the atomic state has already
1104 * been pushed into the relevant object state pointers, since this step can no
1105 * longer fail.
1106 *
Daniel Vetterb0fcfc82014-11-19 18:38:11 +01001107 * It still requires the global state object @old_state to know which planes and
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001108 * crtcs need to be updated though.
1109 */
1110void drm_atomic_helper_commit_planes(struct drm_device *dev,
Daniel Vetterb0fcfc82014-11-19 18:38:11 +01001111 struct drm_atomic_state *old_state)
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001112{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001113 struct drm_crtc *crtc;
1114 struct drm_crtc_state *old_crtc_state;
1115 struct drm_plane *plane;
1116 struct drm_plane_state *old_plane_state;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001117 int i;
1118
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001119 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +02001120 const struct drm_crtc_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001121
1122 funcs = crtc->helper_private;
1123
1124 if (!funcs || !funcs->atomic_begin)
1125 continue;
1126
1127 funcs->atomic_begin(crtc);
1128 }
1129
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001130 for_each_plane_in_state(old_state, plane, old_plane_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +02001131 const struct drm_plane_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001132
1133 funcs = plane->helper_private;
1134
Thierry Reding3cad4b62014-11-25 13:05:12 +01001135 if (!funcs)
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001136 continue;
1137
Thierry Redingf1c37e12014-11-25 12:09:44 +01001138 old_plane_state = old_state->plane_states[i];
1139
Thierry Reding407b8bd2014-11-20 12:05:50 +01001140 /*
1141 * Special-case disabling the plane if drivers support it.
1142 */
1143 if (drm_atomic_plane_disabling(plane, old_plane_state) &&
1144 funcs->atomic_disable)
1145 funcs->atomic_disable(plane, old_plane_state);
Daniel Vetter475d2312015-04-10 16:22:39 +02001146 else if (plane->state->crtc ||
1147 drm_atomic_plane_disabling(plane, old_plane_state))
Thierry Reding407b8bd2014-11-20 12:05:50 +01001148 funcs->atomic_update(plane, old_plane_state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001149 }
1150
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001151 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +02001152 const struct drm_crtc_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001153
1154 funcs = crtc->helper_private;
1155
1156 if (!funcs || !funcs->atomic_flush)
1157 continue;
1158
1159 funcs->atomic_flush(crtc);
1160 }
1161}
1162EXPORT_SYMBOL(drm_atomic_helper_commit_planes);
1163
1164/**
1165 * drm_atomic_helper_cleanup_planes - cleanup plane resources after commit
1166 * @dev: DRM device
1167 * @old_state: atomic state object with old state structures
1168 *
1169 * This function cleans up plane state, specifically framebuffers, from the old
1170 * configuration. Hence the old configuration must be perserved in @old_state to
1171 * be able to call this function.
1172 *
1173 * This function must also be called on the new state when the atomic update
1174 * fails at any point after calling drm_atomic_helper_prepare_planes().
1175 */
1176void drm_atomic_helper_cleanup_planes(struct drm_device *dev,
1177 struct drm_atomic_state *old_state)
1178{
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001179 struct drm_plane *plane;
1180 struct drm_plane_state *plane_state;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001181 int i;
1182
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001183 for_each_plane_in_state(old_state, plane, plane_state, i) {
Ville Syrjäläb5ceff202015-03-10 14:35:20 +02001184 const struct drm_plane_helper_funcs *funcs;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001185 struct drm_framebuffer *old_fb;
1186
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001187 funcs = plane->helper_private;
1188
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +00001189 old_fb = plane_state->fb;
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001190
1191 if (old_fb && funcs->cleanup_fb)
Tvrtko Ursulind136dfe2015-03-03 14:22:31 +00001192 funcs->cleanup_fb(plane, old_fb, plane_state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001193 }
1194}
1195EXPORT_SYMBOL(drm_atomic_helper_cleanup_planes);
1196
1197/**
1198 * drm_atomic_helper_swap_state - store atomic state into current sw state
1199 * @dev: DRM device
1200 * @state: atomic state
1201 *
1202 * This function stores the atomic state into the current state pointers in all
1203 * driver objects. It should be called after all failing steps have been done
1204 * and succeeded, but before the actual hardware state is committed.
1205 *
1206 * For cleanup and error recovery the current state for all changed objects will
1207 * be swaped into @state.
1208 *
1209 * With that sequence it fits perfectly into the plane prepare/cleanup sequence:
1210 *
1211 * 1. Call drm_atomic_helper_prepare_planes() with the staged atomic state.
1212 *
1213 * 2. Do any other steps that might fail.
1214 *
1215 * 3. Put the staged state into the current state pointers with this function.
1216 *
1217 * 4. Actually commit the hardware state.
1218 *
1219 * 5. Call drm_atomic_helper_cleanup_planes with @state, which since step 3
1220 * contains the old state. Also do any other cleanup required with that state.
1221 */
1222void drm_atomic_helper_swap_state(struct drm_device *dev,
1223 struct drm_atomic_state *state)
1224{
1225 int i;
1226
1227 for (i = 0; i < dev->mode_config.num_connector; i++) {
1228 struct drm_connector *connector = state->connectors[i];
1229
1230 if (!connector)
1231 continue;
1232
1233 connector->state->state = state;
1234 swap(state->connector_states[i], connector->state);
1235 connector->state->state = NULL;
1236 }
1237
1238 for (i = 0; i < dev->mode_config.num_crtc; i++) {
1239 struct drm_crtc *crtc = state->crtcs[i];
1240
1241 if (!crtc)
1242 continue;
1243
1244 crtc->state->state = state;
1245 swap(state->crtc_states[i], crtc->state);
1246 crtc->state->state = NULL;
1247 }
1248
1249 for (i = 0; i < dev->mode_config.num_total_plane; i++) {
1250 struct drm_plane *plane = state->planes[i];
1251
1252 if (!plane)
1253 continue;
1254
1255 plane->state->state = state;
1256 swap(state->plane_states[i], plane->state);
1257 plane->state->state = NULL;
1258 }
1259}
1260EXPORT_SYMBOL(drm_atomic_helper_swap_state);
Daniel Vetter042652e2014-07-27 13:46:52 +02001261
1262/**
1263 * drm_atomic_helper_update_plane - Helper for primary plane update using atomic
1264 * @plane: plane object to update
1265 * @crtc: owning CRTC of owning plane
1266 * @fb: framebuffer to flip onto plane
1267 * @crtc_x: x offset of primary plane on crtc
1268 * @crtc_y: y offset of primary plane on crtc
1269 * @crtc_w: width of primary plane rectangle on crtc
1270 * @crtc_h: height of primary plane rectangle on crtc
1271 * @src_x: x offset of @fb for panning
1272 * @src_y: y offset of @fb for panning
1273 * @src_w: width of source rectangle in @fb
1274 * @src_h: height of source rectangle in @fb
1275 *
1276 * Provides a default plane update handler using the atomic driver interface.
1277 *
1278 * RETURNS:
1279 * Zero on success, error code on failure
1280 */
1281int drm_atomic_helper_update_plane(struct drm_plane *plane,
1282 struct drm_crtc *crtc,
1283 struct drm_framebuffer *fb,
1284 int crtc_x, int crtc_y,
1285 unsigned int crtc_w, unsigned int crtc_h,
1286 uint32_t src_x, uint32_t src_y,
1287 uint32_t src_w, uint32_t src_h)
1288{
1289 struct drm_atomic_state *state;
1290 struct drm_plane_state *plane_state;
1291 int ret = 0;
1292
1293 state = drm_atomic_state_alloc(plane->dev);
1294 if (!state)
1295 return -ENOMEM;
1296
1297 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
1298retry:
1299 plane_state = drm_atomic_get_plane_state(state, plane);
1300 if (IS_ERR(plane_state)) {
1301 ret = PTR_ERR(plane_state);
1302 goto fail;
1303 }
1304
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01001305 ret = drm_atomic_set_crtc_for_plane(plane_state, crtc);
Daniel Vetter042652e2014-07-27 13:46:52 +02001306 if (ret != 0)
1307 goto fail;
Daniel Vetter321ebf02014-11-04 22:57:27 +01001308 drm_atomic_set_fb_for_plane(plane_state, fb);
Daniel Vetter042652e2014-07-27 13:46:52 +02001309 plane_state->crtc_x = crtc_x;
1310 plane_state->crtc_y = crtc_y;
1311 plane_state->crtc_h = crtc_h;
1312 plane_state->crtc_w = crtc_w;
1313 plane_state->src_x = src_x;
1314 plane_state->src_y = src_y;
1315 plane_state->src_h = src_h;
1316 plane_state->src_w = src_w;
1317
Daniel Vetter3671c582015-05-04 15:40:52 +02001318 if (plane == crtc->cursor)
1319 state->legacy_cursor_update = true;
1320
Daniel Vetter042652e2014-07-27 13:46:52 +02001321 ret = drm_atomic_commit(state);
1322 if (ret != 0)
1323 goto fail;
1324
1325 /* Driver takes ownership of state on successful commit. */
1326 return 0;
1327fail:
1328 if (ret == -EDEADLK)
1329 goto backoff;
1330
1331 drm_atomic_state_free(state);
1332
1333 return ret;
1334backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02001335 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01001336 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02001337
1338 /*
1339 * Someone might have exchanged the framebuffer while we dropped locks
1340 * in the backoff code. We need to fix up the fb refcount tracking the
1341 * core does for us.
1342 */
1343 plane->old_fb = plane->fb;
1344
1345 goto retry;
1346}
1347EXPORT_SYMBOL(drm_atomic_helper_update_plane);
1348
1349/**
1350 * drm_atomic_helper_disable_plane - Helper for primary plane disable using * atomic
1351 * @plane: plane to disable
1352 *
1353 * Provides a default plane disable handler using the atomic driver interface.
1354 *
1355 * RETURNS:
1356 * Zero on success, error code on failure
1357 */
1358int drm_atomic_helper_disable_plane(struct drm_plane *plane)
1359{
1360 struct drm_atomic_state *state;
1361 struct drm_plane_state *plane_state;
1362 int ret = 0;
1363
Jasper St. Pierreaa54e2e2014-11-20 19:59:15 -08001364 /*
1365 * FIXME: Without plane->crtc set we can't get at the implicit legacy
1366 * acquire context. The real fix will be to wire the acquire ctx through
1367 * everywhere we need it, but meanwhile prevent chaos by just skipping
1368 * this noop. The critical case is the cursor ioctls which a) only grab
1369 * crtc/cursor-plane locks (so we need the crtc to get at the right
1370 * acquire context) and b) can try to disable the plane multiple times.
1371 */
1372 if (!plane->crtc)
1373 return 0;
1374
Daniel Vetter042652e2014-07-27 13:46:52 +02001375 state = drm_atomic_state_alloc(plane->dev);
1376 if (!state)
1377 return -ENOMEM;
1378
1379 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(plane->crtc);
1380retry:
1381 plane_state = drm_atomic_get_plane_state(state, plane);
1382 if (IS_ERR(plane_state)) {
1383 ret = PTR_ERR(plane_state);
1384 goto fail;
1385 }
1386
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01001387 ret = drm_atomic_set_crtc_for_plane(plane_state, NULL);
Daniel Vetter042652e2014-07-27 13:46:52 +02001388 if (ret != 0)
1389 goto fail;
Daniel Vetter321ebf02014-11-04 22:57:27 +01001390 drm_atomic_set_fb_for_plane(plane_state, NULL);
Daniel Vetter042652e2014-07-27 13:46:52 +02001391 plane_state->crtc_x = 0;
1392 plane_state->crtc_y = 0;
1393 plane_state->crtc_h = 0;
1394 plane_state->crtc_w = 0;
1395 plane_state->src_x = 0;
1396 plane_state->src_y = 0;
1397 plane_state->src_h = 0;
1398 plane_state->src_w = 0;
1399
Daniel Vetterf02ad902015-01-22 16:36:23 +01001400 if (plane == plane->crtc->cursor)
1401 state->legacy_cursor_update = true;
1402
Daniel Vetter042652e2014-07-27 13:46:52 +02001403 ret = drm_atomic_commit(state);
1404 if (ret != 0)
1405 goto fail;
1406
1407 /* Driver takes ownership of state on successful commit. */
1408 return 0;
1409fail:
1410 if (ret == -EDEADLK)
1411 goto backoff;
1412
1413 drm_atomic_state_free(state);
1414
1415 return ret;
1416backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02001417 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01001418 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02001419
1420 /*
1421 * Someone might have exchanged the framebuffer while we dropped locks
1422 * in the backoff code. We need to fix up the fb refcount tracking the
1423 * core does for us.
1424 */
1425 plane->old_fb = plane->fb;
1426
1427 goto retry;
1428}
1429EXPORT_SYMBOL(drm_atomic_helper_disable_plane);
1430
1431static int update_output_state(struct drm_atomic_state *state,
1432 struct drm_mode_set *set)
1433{
1434 struct drm_device *dev = set->crtc->dev;
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001435 struct drm_crtc *crtc;
1436 struct drm_crtc_state *crtc_state;
1437 struct drm_connector *connector;
Daniel Vetter042652e2014-07-27 13:46:52 +02001438 struct drm_connector_state *conn_state;
Daniel Vetter042652e2014-07-27 13:46:52 +02001439 int ret, i, j;
1440
1441 ret = drm_modeset_lock(&dev->mode_config.connection_mutex,
1442 state->acquire_ctx);
1443 if (ret)
1444 return ret;
1445
1446 /* First grab all affected connector/crtc states. */
1447 for (i = 0; i < set->num_connectors; i++) {
1448 conn_state = drm_atomic_get_connector_state(state,
1449 set->connectors[i]);
1450 if (IS_ERR(conn_state))
1451 return PTR_ERR(conn_state);
1452 }
1453
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001454 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Daniel Vetter042652e2014-07-27 13:46:52 +02001455 ret = drm_atomic_add_affected_connectors(state, crtc);
1456 if (ret)
1457 return ret;
1458 }
1459
1460 /* Then recompute connector->crtc links and crtc enabling state. */
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001461 for_each_connector_in_state(state, connector, conn_state, i) {
Daniel Vetter042652e2014-07-27 13:46:52 +02001462 if (conn_state->crtc == set->crtc) {
1463 ret = drm_atomic_set_crtc_for_connector(conn_state,
1464 NULL);
1465 if (ret)
1466 return ret;
1467 }
1468
1469 for (j = 0; j < set->num_connectors; j++) {
1470 if (set->connectors[j] == connector) {
1471 ret = drm_atomic_set_crtc_for_connector(conn_state,
1472 set->crtc);
1473 if (ret)
1474 return ret;
1475 break;
1476 }
1477 }
1478 }
1479
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +03001480 for_each_crtc_in_state(state, crtc, crtc_state, i) {
Daniel Vetter042652e2014-07-27 13:46:52 +02001481 /* Don't update ->enable for the CRTC in the set_config request,
1482 * since a mismatch would indicate a bug in the upper layers.
1483 * The actual modeset code later on will catch any
1484 * inconsistencies here. */
1485 if (crtc == set->crtc)
1486 continue;
1487
1488 crtc_state->enable =
1489 drm_atomic_connectors_for_crtc(state, crtc);
1490 }
1491
1492 return 0;
1493}
1494
1495/**
1496 * drm_atomic_helper_set_config - set a new config from userspace
1497 * @set: mode set configuration
1498 *
1499 * Provides a default crtc set_config handler using the atomic driver interface.
1500 *
1501 * Returns:
1502 * Returns 0 on success, negative errno numbers on failure.
1503 */
1504int drm_atomic_helper_set_config(struct drm_mode_set *set)
1505{
1506 struct drm_atomic_state *state;
1507 struct drm_crtc *crtc = set->crtc;
1508 struct drm_crtc_state *crtc_state;
1509 struct drm_plane_state *primary_state;
1510 int ret = 0;
1511
1512 state = drm_atomic_state_alloc(crtc->dev);
1513 if (!state)
1514 return -ENOMEM;
1515
1516 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
1517retry:
1518 crtc_state = drm_atomic_get_crtc_state(state, crtc);
1519 if (IS_ERR(crtc_state)) {
1520 ret = PTR_ERR(crtc_state);
1521 goto fail;
1522 }
1523
Rob Clarke5b53412014-11-26 18:58:04 -05001524 primary_state = drm_atomic_get_plane_state(state, crtc->primary);
1525 if (IS_ERR(primary_state)) {
1526 ret = PTR_ERR(primary_state);
1527 goto fail;
1528 }
1529
Daniel Vetter042652e2014-07-27 13:46:52 +02001530 if (!set->mode) {
1531 WARN_ON(set->fb);
1532 WARN_ON(set->num_connectors);
1533
1534 crtc_state->enable = false;
Daniel Vettereab3bbe2015-01-22 16:36:21 +01001535 crtc_state->active = false;
Rob Clarke5b53412014-11-26 18:58:04 -05001536
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01001537 ret = drm_atomic_set_crtc_for_plane(primary_state, NULL);
Rob Clarke5b53412014-11-26 18:58:04 -05001538 if (ret != 0)
1539 goto fail;
1540
1541 drm_atomic_set_fb_for_plane(primary_state, NULL);
1542
Daniel Vetter042652e2014-07-27 13:46:52 +02001543 goto commit;
1544 }
1545
1546 WARN_ON(!set->fb);
1547 WARN_ON(!set->num_connectors);
1548
1549 crtc_state->enable = true;
Daniel Vettereab3bbe2015-01-22 16:36:21 +01001550 crtc_state->active = true;
Daniel Vetter042652e2014-07-27 13:46:52 +02001551 drm_mode_copy(&crtc_state->mode, set->mode);
1552
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01001553 ret = drm_atomic_set_crtc_for_plane(primary_state, crtc);
Daniel Vetter042652e2014-07-27 13:46:52 +02001554 if (ret != 0)
1555 goto fail;
Daniel Vetter321ebf02014-11-04 22:57:27 +01001556 drm_atomic_set_fb_for_plane(primary_state, set->fb);
Daniel Vetter042652e2014-07-27 13:46:52 +02001557 primary_state->crtc_x = 0;
1558 primary_state->crtc_y = 0;
1559 primary_state->crtc_h = set->mode->vdisplay;
1560 primary_state->crtc_w = set->mode->hdisplay;
1561 primary_state->src_x = set->x << 16;
1562 primary_state->src_y = set->y << 16;
1563 primary_state->src_h = set->mode->vdisplay << 16;
1564 primary_state->src_w = set->mode->hdisplay << 16;
1565
1566commit:
1567 ret = update_output_state(state, set);
1568 if (ret)
1569 goto fail;
1570
1571 ret = drm_atomic_commit(state);
1572 if (ret != 0)
1573 goto fail;
1574
1575 /* Driver takes ownership of state on successful commit. */
1576 return 0;
1577fail:
1578 if (ret == -EDEADLK)
1579 goto backoff;
1580
1581 drm_atomic_state_free(state);
1582
1583 return ret;
1584backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02001585 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01001586 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02001587
1588 /*
1589 * Someone might have exchanged the framebuffer while we dropped locks
1590 * in the backoff code. We need to fix up the fb refcount tracking the
1591 * core does for us.
1592 */
1593 crtc->primary->old_fb = crtc->primary->fb;
1594
1595 goto retry;
1596}
1597EXPORT_SYMBOL(drm_atomic_helper_set_config);
1598
1599/**
Laurent Pinchart7f500022015-02-23 02:50:23 +02001600 * drm_atomic_helper_crtc_set_property - helper for crtc properties
Daniel Vetter042652e2014-07-27 13:46:52 +02001601 * @crtc: DRM crtc
1602 * @property: DRM property
1603 * @val: value of property
1604 *
Laurent Pinchart7f500022015-02-23 02:50:23 +02001605 * Provides a default crtc set_property handler using the atomic driver
1606 * interface.
Daniel Vetter042652e2014-07-27 13:46:52 +02001607 *
1608 * RETURNS:
1609 * Zero on success, error code on failure
1610 */
1611int
1612drm_atomic_helper_crtc_set_property(struct drm_crtc *crtc,
1613 struct drm_property *property,
1614 uint64_t val)
1615{
1616 struct drm_atomic_state *state;
1617 struct drm_crtc_state *crtc_state;
1618 int ret = 0;
1619
1620 state = drm_atomic_state_alloc(crtc->dev);
1621 if (!state)
1622 return -ENOMEM;
1623
1624 /* ->set_property is always called with all locks held. */
1625 state->acquire_ctx = crtc->dev->mode_config.acquire_ctx;
1626retry:
1627 crtc_state = drm_atomic_get_crtc_state(state, crtc);
1628 if (IS_ERR(crtc_state)) {
1629 ret = PTR_ERR(crtc_state);
1630 goto fail;
1631 }
1632
Rob Clark40ecc692014-12-18 16:01:46 -05001633 ret = drm_atomic_crtc_set_property(crtc, crtc_state,
1634 property, val);
Daniel Vetter042652e2014-07-27 13:46:52 +02001635 if (ret)
1636 goto fail;
1637
1638 ret = drm_atomic_commit(state);
1639 if (ret != 0)
1640 goto fail;
1641
1642 /* Driver takes ownership of state on successful commit. */
1643 return 0;
1644fail:
1645 if (ret == -EDEADLK)
1646 goto backoff;
1647
1648 drm_atomic_state_free(state);
1649
1650 return ret;
1651backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02001652 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01001653 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02001654
1655 goto retry;
1656}
1657EXPORT_SYMBOL(drm_atomic_helper_crtc_set_property);
1658
1659/**
Laurent Pinchart7f500022015-02-23 02:50:23 +02001660 * drm_atomic_helper_plane_set_property - helper for plane properties
Daniel Vetter042652e2014-07-27 13:46:52 +02001661 * @plane: DRM plane
1662 * @property: DRM property
1663 * @val: value of property
1664 *
Laurent Pinchart7f500022015-02-23 02:50:23 +02001665 * Provides a default plane set_property handler using the atomic driver
1666 * interface.
Daniel Vetter042652e2014-07-27 13:46:52 +02001667 *
1668 * RETURNS:
1669 * Zero on success, error code on failure
1670 */
1671int
1672drm_atomic_helper_plane_set_property(struct drm_plane *plane,
1673 struct drm_property *property,
1674 uint64_t val)
1675{
1676 struct drm_atomic_state *state;
1677 struct drm_plane_state *plane_state;
1678 int ret = 0;
1679
1680 state = drm_atomic_state_alloc(plane->dev);
1681 if (!state)
1682 return -ENOMEM;
1683
1684 /* ->set_property is always called with all locks held. */
1685 state->acquire_ctx = plane->dev->mode_config.acquire_ctx;
1686retry:
1687 plane_state = drm_atomic_get_plane_state(state, plane);
1688 if (IS_ERR(plane_state)) {
1689 ret = PTR_ERR(plane_state);
1690 goto fail;
1691 }
1692
Rob Clark40ecc692014-12-18 16:01:46 -05001693 ret = drm_atomic_plane_set_property(plane, plane_state,
1694 property, val);
Daniel Vetter042652e2014-07-27 13:46:52 +02001695 if (ret)
1696 goto fail;
1697
1698 ret = drm_atomic_commit(state);
1699 if (ret != 0)
1700 goto fail;
1701
1702 /* Driver takes ownership of state on successful commit. */
1703 return 0;
1704fail:
1705 if (ret == -EDEADLK)
1706 goto backoff;
1707
1708 drm_atomic_state_free(state);
1709
1710 return ret;
1711backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02001712 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01001713 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02001714
1715 goto retry;
1716}
1717EXPORT_SYMBOL(drm_atomic_helper_plane_set_property);
1718
1719/**
Laurent Pinchart7f500022015-02-23 02:50:23 +02001720 * drm_atomic_helper_connector_set_property - helper for connector properties
Daniel Vetter042652e2014-07-27 13:46:52 +02001721 * @connector: DRM connector
1722 * @property: DRM property
1723 * @val: value of property
1724 *
Laurent Pinchart7f500022015-02-23 02:50:23 +02001725 * Provides a default connector set_property handler using the atomic driver
1726 * interface.
Daniel Vetter042652e2014-07-27 13:46:52 +02001727 *
1728 * RETURNS:
1729 * Zero on success, error code on failure
1730 */
1731int
1732drm_atomic_helper_connector_set_property(struct drm_connector *connector,
1733 struct drm_property *property,
1734 uint64_t val)
1735{
1736 struct drm_atomic_state *state;
1737 struct drm_connector_state *connector_state;
1738 int ret = 0;
1739
1740 state = drm_atomic_state_alloc(connector->dev);
1741 if (!state)
1742 return -ENOMEM;
1743
1744 /* ->set_property is always called with all locks held. */
1745 state->acquire_ctx = connector->dev->mode_config.acquire_ctx;
1746retry:
1747 connector_state = drm_atomic_get_connector_state(state, connector);
1748 if (IS_ERR(connector_state)) {
1749 ret = PTR_ERR(connector_state);
1750 goto fail;
1751 }
1752
Rob Clark40ecc692014-12-18 16:01:46 -05001753 ret = drm_atomic_connector_set_property(connector, connector_state,
1754 property, val);
Daniel Vetter042652e2014-07-27 13:46:52 +02001755 if (ret)
1756 goto fail;
1757
1758 ret = drm_atomic_commit(state);
1759 if (ret != 0)
1760 goto fail;
1761
1762 /* Driver takes ownership of state on successful commit. */
1763 return 0;
1764fail:
1765 if (ret == -EDEADLK)
1766 goto backoff;
1767
1768 drm_atomic_state_free(state);
1769
1770 return ret;
1771backoff:
Daniel Vetter042652e2014-07-27 13:46:52 +02001772 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01001773 drm_atomic_legacy_backoff(state);
Daniel Vetter042652e2014-07-27 13:46:52 +02001774
1775 goto retry;
1776}
1777EXPORT_SYMBOL(drm_atomic_helper_connector_set_property);
Daniel Vetter8bc0f312014-07-27 18:42:37 +02001778
1779/**
1780 * drm_atomic_helper_page_flip - execute a legacy page flip
1781 * @crtc: DRM crtc
1782 * @fb: DRM framebuffer
1783 * @event: optional DRM event to signal upon completion
1784 * @flags: flip flags for non-vblank sync'ed updates
1785 *
1786 * Provides a default page flip implementation using the atomic driver interface.
1787 *
1788 * Note that for now so called async page flips (i.e. updates which are not
1789 * synchronized to vblank) are not supported, since the atomic interfaces have
1790 * no provisions for this yet.
1791 *
1792 * Returns:
1793 * Returns 0 on success, negative errno numbers on failure.
1794 */
1795int drm_atomic_helper_page_flip(struct drm_crtc *crtc,
1796 struct drm_framebuffer *fb,
1797 struct drm_pending_vblank_event *event,
1798 uint32_t flags)
1799{
1800 struct drm_plane *plane = crtc->primary;
1801 struct drm_atomic_state *state;
1802 struct drm_plane_state *plane_state;
1803 struct drm_crtc_state *crtc_state;
1804 int ret = 0;
1805
1806 if (flags & DRM_MODE_PAGE_FLIP_ASYNC)
1807 return -EINVAL;
1808
1809 state = drm_atomic_state_alloc(plane->dev);
1810 if (!state)
1811 return -ENOMEM;
1812
1813 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
1814retry:
1815 crtc_state = drm_atomic_get_crtc_state(state, crtc);
1816 if (IS_ERR(crtc_state)) {
1817 ret = PTR_ERR(crtc_state);
1818 goto fail;
1819 }
1820 crtc_state->event = event;
1821
1822 plane_state = drm_atomic_get_plane_state(state, plane);
1823 if (IS_ERR(plane_state)) {
1824 ret = PTR_ERR(plane_state);
1825 goto fail;
1826 }
1827
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01001828 ret = drm_atomic_set_crtc_for_plane(plane_state, crtc);
Daniel Vetter8bc0f312014-07-27 18:42:37 +02001829 if (ret != 0)
1830 goto fail;
Daniel Vetter321ebf02014-11-04 22:57:27 +01001831 drm_atomic_set_fb_for_plane(plane_state, fb);
Daniel Vetter8bc0f312014-07-27 18:42:37 +02001832
1833 ret = drm_atomic_async_commit(state);
1834 if (ret != 0)
1835 goto fail;
1836
1837 /* TODO: ->page_flip is the only driver callback where the core
1838 * doesn't update plane->fb. For now patch it up here. */
1839 plane->fb = plane->state->fb;
1840
1841 /* Driver takes ownership of state on successful async commit. */
1842 return 0;
1843fail:
1844 if (ret == -EDEADLK)
1845 goto backoff;
1846
1847 drm_atomic_state_free(state);
1848
1849 return ret;
1850backoff:
Daniel Vetter8bc0f312014-07-27 18:42:37 +02001851 drm_atomic_state_clear(state);
Daniel Vetter6f75cea2014-11-19 18:38:07 +01001852 drm_atomic_legacy_backoff(state);
Daniel Vetter8bc0f312014-07-27 18:42:37 +02001853
1854 /*
1855 * Someone might have exchanged the framebuffer while we dropped locks
1856 * in the backoff code. We need to fix up the fb refcount tracking the
1857 * core does for us.
1858 */
1859 plane->old_fb = plane->fb;
1860
1861 goto retry;
1862}
1863EXPORT_SYMBOL(drm_atomic_helper_page_flip);
Daniel Vetterd4617012014-11-03 15:56:43 +01001864
1865/**
Daniel Vetterb486e0e2015-01-22 18:53:05 +01001866 * drm_atomic_helper_connector_dpms() - connector dpms helper implementation
1867 * @connector: affected connector
1868 * @mode: DPMS mode
1869 *
1870 * This is the main helper function provided by the atomic helper framework for
1871 * implementing the legacy DPMS connector interface. It computes the new desired
1872 * ->active state for the corresponding CRTC (if the connector is enabled) and
1873 * updates it.
1874 */
1875void drm_atomic_helper_connector_dpms(struct drm_connector *connector,
1876 int mode)
1877{
1878 struct drm_mode_config *config = &connector->dev->mode_config;
1879 struct drm_atomic_state *state;
1880 struct drm_crtc_state *crtc_state;
1881 struct drm_crtc *crtc;
1882 struct drm_connector *tmp_connector;
1883 int ret;
1884 bool active = false;
1885
1886 if (mode != DRM_MODE_DPMS_ON)
1887 mode = DRM_MODE_DPMS_OFF;
1888
1889 connector->dpms = mode;
1890 crtc = connector->state->crtc;
1891
1892 if (!crtc)
1893 return;
1894
1895 /* FIXME: ->dpms has no return value so can't forward the -ENOMEM. */
1896 state = drm_atomic_state_alloc(connector->dev);
1897 if (!state)
1898 return;
1899
1900 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
1901retry:
1902 crtc_state = drm_atomic_get_crtc_state(state, crtc);
1903 if (IS_ERR(crtc_state))
1904 return;
1905
1906 WARN_ON(!drm_modeset_is_locked(&config->connection_mutex));
1907
1908 list_for_each_entry(tmp_connector, &config->connector_list, head) {
John Hunter0388df02015-03-17 15:30:28 +08001909 if (tmp_connector->state->crtc != crtc)
Daniel Vetterb486e0e2015-01-22 18:53:05 +01001910 continue;
1911
John Hunter0388df02015-03-17 15:30:28 +08001912 if (tmp_connector->dpms == DRM_MODE_DPMS_ON) {
Daniel Vetterb486e0e2015-01-22 18:53:05 +01001913 active = true;
1914 break;
1915 }
1916 }
1917 crtc_state->active = active;
1918
1919 ret = drm_atomic_commit(state);
1920 if (ret != 0)
1921 goto fail;
1922
1923 /* Driver takes ownership of state on successful async commit. */
1924 return;
1925fail:
1926 if (ret == -EDEADLK)
1927 goto backoff;
1928
1929 drm_atomic_state_free(state);
1930
1931 WARN(1, "Driver bug: Changing ->active failed with ret=%i\n", ret);
1932
1933 return;
1934backoff:
1935 drm_atomic_state_clear(state);
1936 drm_atomic_legacy_backoff(state);
1937
1938 goto retry;
1939}
1940EXPORT_SYMBOL(drm_atomic_helper_connector_dpms);
1941
1942/**
Daniel Vetter3150c7d2014-11-06 20:53:29 +01001943 * DOC: atomic state reset and initialization
1944 *
1945 * Both the drm core and the atomic helpers assume that there is always the full
1946 * and correct atomic software state for all connectors, CRTCs and planes
1947 * available. Which is a bit a problem on driver load and also after system
1948 * suspend. One way to solve this is to have a hardware state read-out
1949 * infrastructure which reconstructs the full software state (e.g. the i915
1950 * driver).
1951 *
1952 * The simpler solution is to just reset the software state to everything off,
1953 * which is easiest to do by calling drm_mode_config_reset(). To facilitate this
1954 * the atomic helpers provide default reset implementations for all hooks.
1955 */
1956
1957/**
Daniel Vetterd4617012014-11-03 15:56:43 +01001958 * drm_atomic_helper_crtc_reset - default ->reset hook for CRTCs
1959 * @crtc: drm CRTC
1960 *
1961 * Resets the atomic state for @crtc by freeing the state pointer (which might
1962 * be NULL, e.g. at driver load time) and allocating a new empty state object.
1963 */
1964void drm_atomic_helper_crtc_reset(struct drm_crtc *crtc)
1965{
1966 kfree(crtc->state);
1967 crtc->state = kzalloc(sizeof(*crtc->state), GFP_KERNEL);
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01001968
1969 if (crtc->state)
1970 crtc->state->crtc = crtc;
Daniel Vetterd4617012014-11-03 15:56:43 +01001971}
1972EXPORT_SYMBOL(drm_atomic_helper_crtc_reset);
1973
1974/**
Thierry Redingf5e78402015-01-28 14:54:32 +01001975 * __drm_atomic_helper_crtc_duplicate_state - copy atomic CRTC state
1976 * @crtc: CRTC object
1977 * @state: atomic CRTC state
1978 *
1979 * Copies atomic state from a CRTC's current state and resets inferred values.
1980 * This is useful for drivers that subclass the CRTC state.
1981 */
1982void __drm_atomic_helper_crtc_duplicate_state(struct drm_crtc *crtc,
1983 struct drm_crtc_state *state)
1984{
1985 memcpy(state, crtc->state, sizeof(*state));
1986
1987 state->mode_changed = false;
1988 state->active_changed = false;
1989 state->planes_changed = false;
1990 state->event = NULL;
1991}
1992EXPORT_SYMBOL(__drm_atomic_helper_crtc_duplicate_state);
1993
1994/**
Daniel Vetterd4617012014-11-03 15:56:43 +01001995 * drm_atomic_helper_crtc_duplicate_state - default state duplicate hook
1996 * @crtc: drm CRTC
1997 *
1998 * Default CRTC state duplicate hook for drivers which don't have their own
1999 * subclassed CRTC state structure.
2000 */
2001struct drm_crtc_state *
2002drm_atomic_helper_crtc_duplicate_state(struct drm_crtc *crtc)
2003{
2004 struct drm_crtc_state *state;
2005
2006 if (WARN_ON(!crtc->state))
2007 return NULL;
2008
Thierry Redingf5e78402015-01-28 14:54:32 +01002009 state = kmalloc(sizeof(*state), GFP_KERNEL);
2010 if (state)
2011 __drm_atomic_helper_crtc_duplicate_state(crtc, state);
Daniel Vetterd4617012014-11-03 15:56:43 +01002012
2013 return state;
2014}
2015EXPORT_SYMBOL(drm_atomic_helper_crtc_duplicate_state);
2016
2017/**
Thierry Redingf5e78402015-01-28 14:54:32 +01002018 * __drm_atomic_helper_crtc_destroy_state - release CRTC state
2019 * @crtc: CRTC object
2020 * @state: CRTC state object to release
2021 *
2022 * Releases all resources stored in the CRTC state without actually freeing
2023 * the memory of the CRTC state. This is useful for drivers that subclass the
2024 * CRTC state.
2025 */
2026void __drm_atomic_helper_crtc_destroy_state(struct drm_crtc *crtc,
2027 struct drm_crtc_state *state)
2028{
2029 /*
2030 * This is currently a placeholder so that drivers that subclass the
2031 * state will automatically do the right thing if code is ever added
2032 * to this function.
2033 */
2034}
2035EXPORT_SYMBOL(__drm_atomic_helper_crtc_destroy_state);
2036
2037/**
Daniel Vetterd4617012014-11-03 15:56:43 +01002038 * drm_atomic_helper_crtc_destroy_state - default state destroy hook
2039 * @crtc: drm CRTC
2040 * @state: CRTC state object to release
2041 *
2042 * Default CRTC state destroy hook for drivers which don't have their own
2043 * subclassed CRTC state structure.
2044 */
2045void drm_atomic_helper_crtc_destroy_state(struct drm_crtc *crtc,
2046 struct drm_crtc_state *state)
2047{
Thierry Redingf5e78402015-01-28 14:54:32 +01002048 __drm_atomic_helper_crtc_destroy_state(crtc, state);
Daniel Vetterd4617012014-11-03 15:56:43 +01002049 kfree(state);
2050}
2051EXPORT_SYMBOL(drm_atomic_helper_crtc_destroy_state);
2052
2053/**
2054 * drm_atomic_helper_plane_reset - default ->reset hook for planes
2055 * @plane: drm plane
2056 *
2057 * Resets the atomic state for @plane by freeing the state pointer (which might
2058 * be NULL, e.g. at driver load time) and allocating a new empty state object.
2059 */
2060void drm_atomic_helper_plane_reset(struct drm_plane *plane)
2061{
Daniel Vetter321ebf02014-11-04 22:57:27 +01002062 if (plane->state && plane->state->fb)
2063 drm_framebuffer_unreference(plane->state->fb);
2064
Daniel Vetterd4617012014-11-03 15:56:43 +01002065 kfree(plane->state);
2066 plane->state = kzalloc(sizeof(*plane->state), GFP_KERNEL);
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01002067
2068 if (plane->state)
2069 plane->state->plane = plane;
Daniel Vetterd4617012014-11-03 15:56:43 +01002070}
2071EXPORT_SYMBOL(drm_atomic_helper_plane_reset);
2072
2073/**
Thierry Redingf5e78402015-01-28 14:54:32 +01002074 * __drm_atomic_helper_plane_duplicate_state - copy atomic plane state
2075 * @plane: plane object
2076 * @state: atomic plane state
2077 *
2078 * Copies atomic state from a plane's current state. This is useful for
2079 * drivers that subclass the plane state.
2080 */
2081void __drm_atomic_helper_plane_duplicate_state(struct drm_plane *plane,
2082 struct drm_plane_state *state)
2083{
2084 memcpy(state, plane->state, sizeof(*state));
2085
2086 if (state->fb)
2087 drm_framebuffer_reference(state->fb);
2088}
2089EXPORT_SYMBOL(__drm_atomic_helper_plane_duplicate_state);
2090
2091/**
Daniel Vetterd4617012014-11-03 15:56:43 +01002092 * drm_atomic_helper_plane_duplicate_state - default state duplicate hook
2093 * @plane: drm plane
2094 *
2095 * Default plane state duplicate hook for drivers which don't have their own
2096 * subclassed plane state structure.
2097 */
2098struct drm_plane_state *
2099drm_atomic_helper_plane_duplicate_state(struct drm_plane *plane)
2100{
Daniel Vetter321ebf02014-11-04 22:57:27 +01002101 struct drm_plane_state *state;
2102
Daniel Vetterd4617012014-11-03 15:56:43 +01002103 if (WARN_ON(!plane->state))
2104 return NULL;
2105
Thierry Redingf5e78402015-01-28 14:54:32 +01002106 state = kmalloc(sizeof(*state), GFP_KERNEL);
2107 if (state)
2108 __drm_atomic_helper_plane_duplicate_state(plane, state);
Daniel Vetter321ebf02014-11-04 22:57:27 +01002109
2110 return state;
Daniel Vetterd4617012014-11-03 15:56:43 +01002111}
2112EXPORT_SYMBOL(drm_atomic_helper_plane_duplicate_state);
2113
2114/**
Thierry Redingf5e78402015-01-28 14:54:32 +01002115 * __drm_atomic_helper_plane_destroy_state - release plane state
2116 * @plane: plane object
2117 * @state: plane state object to release
2118 *
2119 * Releases all resources stored in the plane state without actually freeing
2120 * the memory of the plane state. This is useful for drivers that subclass the
2121 * plane state.
2122 */
2123void __drm_atomic_helper_plane_destroy_state(struct drm_plane *plane,
2124 struct drm_plane_state *state)
2125{
2126 if (state->fb)
2127 drm_framebuffer_unreference(state->fb);
2128}
2129EXPORT_SYMBOL(__drm_atomic_helper_plane_destroy_state);
2130
2131/**
Daniel Vetterd4617012014-11-03 15:56:43 +01002132 * drm_atomic_helper_plane_destroy_state - default state destroy hook
2133 * @plane: drm plane
2134 * @state: plane state object to release
2135 *
2136 * Default plane state destroy hook for drivers which don't have their own
2137 * subclassed plane state structure.
2138 */
2139void drm_atomic_helper_plane_destroy_state(struct drm_plane *plane,
Daniel Vetter321ebf02014-11-04 22:57:27 +01002140 struct drm_plane_state *state)
Daniel Vetterd4617012014-11-03 15:56:43 +01002141{
Thierry Redingf5e78402015-01-28 14:54:32 +01002142 __drm_atomic_helper_plane_destroy_state(plane, state);
Daniel Vetterd4617012014-11-03 15:56:43 +01002143 kfree(state);
2144}
2145EXPORT_SYMBOL(drm_atomic_helper_plane_destroy_state);
2146
2147/**
2148 * drm_atomic_helper_connector_reset - default ->reset hook for connectors
2149 * @connector: drm connector
2150 *
2151 * Resets the atomic state for @connector by freeing the state pointer (which
2152 * might be NULL, e.g. at driver load time) and allocating a new empty state
2153 * object.
2154 */
2155void drm_atomic_helper_connector_reset(struct drm_connector *connector)
2156{
2157 kfree(connector->state);
2158 connector->state = kzalloc(sizeof(*connector->state), GFP_KERNEL);
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01002159
2160 if (connector->state)
2161 connector->state->connector = connector;
Daniel Vetterd4617012014-11-03 15:56:43 +01002162}
2163EXPORT_SYMBOL(drm_atomic_helper_connector_reset);
2164
2165/**
Thierry Redingf5e78402015-01-28 14:54:32 +01002166 * __drm_atomic_helper_connector_duplicate_state - copy atomic connector state
2167 * @connector: connector object
2168 * @state: atomic connector state
2169 *
2170 * Copies atomic state from a connector's current state. This is useful for
2171 * drivers that subclass the connector state.
2172 */
2173void
2174__drm_atomic_helper_connector_duplicate_state(struct drm_connector *connector,
2175 struct drm_connector_state *state)
2176{
2177 memcpy(state, connector->state, sizeof(*state));
2178}
2179EXPORT_SYMBOL(__drm_atomic_helper_connector_duplicate_state);
2180
2181/**
Daniel Vetterd4617012014-11-03 15:56:43 +01002182 * drm_atomic_helper_connector_duplicate_state - default state duplicate hook
2183 * @connector: drm connector
2184 *
2185 * Default connector state duplicate hook for drivers which don't have their own
2186 * subclassed connector state structure.
2187 */
2188struct drm_connector_state *
2189drm_atomic_helper_connector_duplicate_state(struct drm_connector *connector)
2190{
Thierry Redingf5e78402015-01-28 14:54:32 +01002191 struct drm_connector_state *state;
2192
Daniel Vetterd4617012014-11-03 15:56:43 +01002193 if (WARN_ON(!connector->state))
2194 return NULL;
2195
Thierry Redingf5e78402015-01-28 14:54:32 +01002196 state = kmalloc(sizeof(*state), GFP_KERNEL);
2197 if (state)
2198 __drm_atomic_helper_connector_duplicate_state(connector, state);
2199
2200 return state;
Daniel Vetterd4617012014-11-03 15:56:43 +01002201}
2202EXPORT_SYMBOL(drm_atomic_helper_connector_duplicate_state);
2203
2204/**
Thierry Redingf5e78402015-01-28 14:54:32 +01002205 * __drm_atomic_helper_connector_destroy_state - release connector state
2206 * @connector: connector object
2207 * @state: connector state object to release
2208 *
2209 * Releases all resources stored in the connector state without actually
2210 * freeing the memory of the connector state. This is useful for drivers that
2211 * subclass the connector state.
2212 */
2213void
2214__drm_atomic_helper_connector_destroy_state(struct drm_connector *connector,
2215 struct drm_connector_state *state)
2216{
2217 /*
2218 * This is currently a placeholder so that drivers that subclass the
2219 * state will automatically do the right thing if code is ever added
2220 * to this function.
2221 */
2222}
2223EXPORT_SYMBOL(__drm_atomic_helper_connector_destroy_state);
2224
2225/**
Daniel Vetterd4617012014-11-03 15:56:43 +01002226 * drm_atomic_helper_connector_destroy_state - default state destroy hook
2227 * @connector: drm connector
2228 * @state: connector state object to release
2229 *
2230 * Default connector state destroy hook for drivers which don't have their own
2231 * subclassed connector state structure.
2232 */
2233void drm_atomic_helper_connector_destroy_state(struct drm_connector *connector,
2234 struct drm_connector_state *state)
2235{
Thierry Redingf5e78402015-01-28 14:54:32 +01002236 __drm_atomic_helper_connector_destroy_state(connector, state);
Daniel Vetterd4617012014-11-03 15:56:43 +01002237 kfree(state);
2238}
2239EXPORT_SYMBOL(drm_atomic_helper_connector_destroy_state);