Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1 | /* |
| 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 Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 32 | #include <drm/drm_atomic_helper.h> |
Daniel Vetter | e2330f0 | 2014-10-29 11:34:56 +0100 | [diff] [blame] | 33 | #include <linux/fence.h> |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 34 | |
Daniel Vetter | 3150c7d | 2014-11-06 20:53:29 +0100 | [diff] [blame] | 35 | /** |
| 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 Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 56 | static void |
| 57 | drm_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 Clark | 4b08eae | 2014-12-08 10:45:43 -0500 | [diff] [blame] | 64 | crtc_state = state->crtc_states[drm_crtc_index(plane->state->crtc)]; |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 65 | |
| 66 | if (WARN_ON(!crtc_state)) |
| 67 | return; |
| 68 | |
| 69 | crtc_state->planes_changed = true; |
| 70 | } |
| 71 | |
| 72 | if (plane_state->crtc) { |
| 73 | crtc_state = |
| 74 | state->crtc_states[drm_crtc_index(plane_state->crtc)]; |
| 75 | |
| 76 | if (WARN_ON(!crtc_state)) |
| 77 | return; |
| 78 | |
| 79 | crtc_state->planes_changed = true; |
| 80 | } |
| 81 | } |
| 82 | |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 83 | static struct drm_crtc * |
| 84 | get_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 | |
| 102 | static int |
| 103 | steal_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 Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 111 | int ret; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 112 | |
| 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 Vetter | 17a38d9 | 2015-02-22 12:24:16 +0100 | [diff] [blame] | 119 | 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 Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 122 | |
| 123 | crtc_state = drm_atomic_get_crtc_state(state, encoder_crtc); |
| 124 | if (IS_ERR(crtc_state)) |
| 125 | return PTR_ERR(crtc_state); |
| 126 | |
| 127 | crtc_state->mode_changed = true; |
| 128 | |
| 129 | list_for_each_entry(connector, &config->connector_list, head) { |
| 130 | if (connector->state->best_encoder != encoder) |
| 131 | continue; |
| 132 | |
Daniel Vetter | 17a38d9 | 2015-02-22 12:24:16 +0100 | [diff] [blame] | 133 | DRM_DEBUG_ATOMIC("Stealing encoder from [CONNECTOR:%d:%s]\n", |
| 134 | connector->base.id, |
| 135 | connector->name); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 136 | |
| 137 | connector_state = drm_atomic_get_connector_state(state, |
| 138 | connector); |
| 139 | if (IS_ERR(connector_state)) |
| 140 | return PTR_ERR(connector_state); |
| 141 | |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 142 | ret = drm_atomic_set_crtc_for_connector(connector_state, NULL); |
| 143 | if (ret) |
| 144 | return ret; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 145 | connector_state->best_encoder = NULL; |
| 146 | } |
| 147 | |
| 148 | return 0; |
| 149 | } |
| 150 | |
| 151 | static int |
| 152 | update_connector_routing(struct drm_atomic_state *state, int conn_idx) |
| 153 | { |
Ville Syrjälä | b5ceff20 | 2015-03-10 14:35:20 +0200 | [diff] [blame] | 154 | const struct drm_connector_helper_funcs *funcs; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 155 | struct drm_encoder *new_encoder; |
| 156 | struct drm_crtc *encoder_crtc; |
| 157 | struct drm_connector *connector; |
| 158 | struct drm_connector_state *connector_state; |
| 159 | struct drm_crtc_state *crtc_state; |
| 160 | int idx, ret; |
| 161 | |
| 162 | connector = state->connectors[conn_idx]; |
| 163 | connector_state = state->connector_states[conn_idx]; |
| 164 | |
| 165 | if (!connector) |
| 166 | return 0; |
| 167 | |
Daniel Vetter | 17a38d9 | 2015-02-22 12:24:16 +0100 | [diff] [blame] | 168 | DRM_DEBUG_ATOMIC("Updating routing for [CONNECTOR:%d:%s]\n", |
| 169 | connector->base.id, |
| 170 | connector->name); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 171 | |
| 172 | if (connector->state->crtc != connector_state->crtc) { |
| 173 | if (connector->state->crtc) { |
| 174 | idx = drm_crtc_index(connector->state->crtc); |
| 175 | |
| 176 | crtc_state = state->crtc_states[idx]; |
| 177 | crtc_state->mode_changed = true; |
| 178 | } |
| 179 | |
| 180 | if (connector_state->crtc) { |
| 181 | idx = drm_crtc_index(connector_state->crtc); |
| 182 | |
| 183 | crtc_state = state->crtc_states[idx]; |
| 184 | crtc_state->mode_changed = true; |
| 185 | } |
| 186 | } |
| 187 | |
| 188 | if (!connector_state->crtc) { |
Daniel Vetter | 17a38d9 | 2015-02-22 12:24:16 +0100 | [diff] [blame] | 189 | DRM_DEBUG_ATOMIC("Disabling [CONNECTOR:%d:%s]\n", |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 190 | connector->base.id, |
| 191 | connector->name); |
| 192 | |
| 193 | connector_state->best_encoder = NULL; |
| 194 | |
| 195 | return 0; |
| 196 | } |
| 197 | |
| 198 | funcs = connector->helper_private; |
| 199 | new_encoder = funcs->best_encoder(connector); |
| 200 | |
| 201 | if (!new_encoder) { |
Daniel Vetter | 17a38d9 | 2015-02-22 12:24:16 +0100 | [diff] [blame] | 202 | DRM_DEBUG_ATOMIC("No suitable encoder found for [CONNECTOR:%d:%s]\n", |
| 203 | connector->base.id, |
| 204 | connector->name); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 205 | return -EINVAL; |
| 206 | } |
| 207 | |
| 208 | if (new_encoder == connector_state->best_encoder) { |
Daniel Vetter | 17a38d9 | 2015-02-22 12:24:16 +0100 | [diff] [blame] | 209 | 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 Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 215 | |
| 216 | return 0; |
| 217 | } |
| 218 | |
| 219 | encoder_crtc = get_current_crtc_for_encoder(state->dev, |
| 220 | new_encoder); |
| 221 | |
| 222 | if (encoder_crtc) { |
| 223 | ret = steal_encoder(state, new_encoder, encoder_crtc); |
| 224 | if (ret) { |
Daniel Vetter | 17a38d9 | 2015-02-22 12:24:16 +0100 | [diff] [blame] | 225 | DRM_DEBUG_ATOMIC("Encoder stealing failed for [CONNECTOR:%d:%s]\n", |
| 226 | connector->base.id, |
| 227 | connector->name); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 228 | return ret; |
| 229 | } |
| 230 | } |
| 231 | |
| 232 | connector_state->best_encoder = new_encoder; |
| 233 | idx = drm_crtc_index(connector_state->crtc); |
| 234 | |
| 235 | crtc_state = state->crtc_states[idx]; |
| 236 | crtc_state->mode_changed = true; |
| 237 | |
Daniel Vetter | 17a38d9 | 2015-02-22 12:24:16 +0100 | [diff] [blame] | 238 | 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 Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 244 | |
| 245 | return 0; |
| 246 | } |
| 247 | |
| 248 | static int |
| 249 | mode_fixup(struct drm_atomic_state *state) |
| 250 | { |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 251 | struct drm_crtc *crtc; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 252 | struct drm_crtc_state *crtc_state; |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 253 | struct drm_connector *connector; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 254 | struct drm_connector_state *conn_state; |
| 255 | int i; |
| 256 | bool ret; |
| 257 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 258 | for_each_crtc_in_state(state, crtc, crtc_state, i) { |
| 259 | if (!crtc_state->mode_changed) |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 260 | continue; |
| 261 | |
| 262 | drm_mode_copy(&crtc_state->adjusted_mode, &crtc_state->mode); |
| 263 | } |
| 264 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 265 | for_each_connector_in_state(state, connector, conn_state, i) { |
Ville Syrjälä | b5ceff20 | 2015-03-10 14:35:20 +0200 | [diff] [blame] | 266 | const struct drm_encoder_helper_funcs *funcs; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 267 | struct drm_encoder *encoder; |
| 268 | |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 269 | 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 Oliveira | 840bfe9 | 2015-04-21 17:13:18 +0300 | [diff] [blame] | 283 | if (!funcs) |
| 284 | continue; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 285 | |
Archit Taneja | 862e686 | 2015-05-21 11:03:16 +0530 | [diff] [blame^] | 286 | ret = drm_bridge_mode_fixup(encoder->bridge, &crtc_state->mode, |
| 287 | &crtc_state->adjusted_mode); |
| 288 | if (!ret) { |
| 289 | DRM_DEBUG_ATOMIC("Bridge fixup failed\n"); |
| 290 | return -EINVAL; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 291 | } |
| 292 | |
Thierry Reding | 4cd4df8 | 2014-12-03 16:44:34 +0100 | [diff] [blame] | 293 | if (funcs->atomic_check) { |
| 294 | ret = funcs->atomic_check(encoder, crtc_state, |
| 295 | conn_state); |
| 296 | if (ret) { |
Daniel Vetter | 17a38d9 | 2015-02-22 12:24:16 +0100 | [diff] [blame] | 297 | DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] check failed\n", |
| 298 | encoder->base.id, encoder->name); |
Thierry Reding | 4cd4df8 | 2014-12-03 16:44:34 +0100 | [diff] [blame] | 299 | return ret; |
| 300 | } |
| 301 | } else { |
| 302 | ret = funcs->mode_fixup(encoder, &crtc_state->mode, |
| 303 | &crtc_state->adjusted_mode); |
| 304 | if (!ret) { |
Daniel Vetter | 17a38d9 | 2015-02-22 12:24:16 +0100 | [diff] [blame] | 305 | DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] fixup failed\n", |
| 306 | encoder->base.id, encoder->name); |
Thierry Reding | 4cd4df8 | 2014-12-03 16:44:34 +0100 | [diff] [blame] | 307 | return -EINVAL; |
| 308 | } |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 309 | } |
| 310 | } |
| 311 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 312 | for_each_crtc_in_state(state, crtc, crtc_state, i) { |
Ville Syrjälä | b5ceff20 | 2015-03-10 14:35:20 +0200 | [diff] [blame] | 313 | const struct drm_crtc_helper_funcs *funcs; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 314 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 315 | if (!crtc_state->mode_changed) |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 316 | continue; |
| 317 | |
| 318 | funcs = crtc->helper_private; |
Ander Conselvan de Oliveira | 840bfe9 | 2015-04-21 17:13:18 +0300 | [diff] [blame] | 319 | if (!funcs->mode_fixup) |
| 320 | continue; |
| 321 | |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 322 | ret = funcs->mode_fixup(crtc, &crtc_state->mode, |
| 323 | &crtc_state->adjusted_mode); |
| 324 | if (!ret) { |
Daniel Vetter | 17a38d9 | 2015-02-22 12:24:16 +0100 | [diff] [blame] | 325 | DRM_DEBUG_ATOMIC("[CRTC:%d] fixup failed\n", |
| 326 | crtc->base.id); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 327 | return -EINVAL; |
| 328 | } |
| 329 | } |
| 330 | |
| 331 | return 0; |
| 332 | } |
| 333 | |
Daniel Vetter | eab3bbe | 2015-01-22 16:36:21 +0100 | [diff] [blame] | 334 | static bool |
| 335 | needs_modeset(struct drm_crtc_state *state) |
| 336 | { |
| 337 | return state->mode_changed || state->active_changed; |
| 338 | } |
| 339 | |
Daniel Vetter | d9b1362 | 2014-11-26 16:57:41 +0100 | [diff] [blame] | 340 | /** |
John Hunter | f98bd3e | 2015-03-17 15:30:26 +0800 | [diff] [blame] | 341 | * drm_atomic_helper_check_modeset - validate state object for modeset changes |
Daniel Vetter | d9b1362 | 2014-11-26 16:57:41 +0100 | [diff] [blame] | 342 | * @dev: DRM device |
| 343 | * @state: the driver state object |
| 344 | * |
| 345 | * Check the state object to see if the requested state is physically possible. |
| 346 | * This does all the crtc and connector related computations for an atomic |
| 347 | * update. It computes and updates crtc_state->mode_changed, adds any additional |
| 348 | * connectors needed for full modesets and calls down into ->mode_fixup |
| 349 | * functions of the driver backend. |
| 350 | * |
| 351 | * IMPORTANT: |
| 352 | * |
| 353 | * Drivers which update ->mode_changed (e.g. in their ->atomic_check hooks if a |
| 354 | * plane update can't be done without a full modeset) _must_ call this function |
| 355 | * afterwards after that change. It is permitted to call this function multiple |
| 356 | * times for the same update, e.g. when the ->atomic_check functions depend upon |
| 357 | * the adjusted dotclock for fifo space allocation and watermark computation. |
| 358 | * |
| 359 | * RETURNS |
| 360 | * Zero for success or -errno |
| 361 | */ |
| 362 | int |
Rob Clark | 934ce1c | 2014-11-19 16:41:33 -0500 | [diff] [blame] | 363 | drm_atomic_helper_check_modeset(struct drm_device *dev, |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 364 | struct drm_atomic_state *state) |
| 365 | { |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 366 | struct drm_crtc *crtc; |
| 367 | struct drm_crtc_state *crtc_state; |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 368 | struct drm_connector *connector; |
| 369 | struct drm_connector_state *connector_state; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 370 | int i, ret; |
| 371 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 372 | for_each_crtc_in_state(state, crtc, crtc_state, i) { |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 373 | if (!drm_mode_equal(&crtc->state->mode, &crtc_state->mode)) { |
Daniel Vetter | 17a38d9 | 2015-02-22 12:24:16 +0100 | [diff] [blame] | 374 | DRM_DEBUG_ATOMIC("[CRTC:%d] mode changed\n", |
| 375 | crtc->base.id); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 376 | crtc_state->mode_changed = true; |
| 377 | } |
| 378 | |
| 379 | if (crtc->state->enable != crtc_state->enable) { |
Daniel Vetter | 17a38d9 | 2015-02-22 12:24:16 +0100 | [diff] [blame] | 380 | DRM_DEBUG_ATOMIC("[CRTC:%d] enable changed\n", |
| 381 | crtc->base.id); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 382 | crtc_state->mode_changed = true; |
| 383 | } |
| 384 | } |
| 385 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 386 | for_each_connector_in_state(state, connector, connector_state, i) { |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 387 | /* |
| 388 | * This only sets crtc->mode_changed for routing changes, |
| 389 | * drivers must set crtc->mode_changed themselves when connector |
| 390 | * properties need to be updated. |
| 391 | */ |
| 392 | ret = update_connector_routing(state, i); |
| 393 | if (ret) |
| 394 | return ret; |
| 395 | } |
| 396 | |
| 397 | /* |
| 398 | * After all the routing has been prepared we need to add in any |
| 399 | * connector which is itself unchanged, but who's crtc changes it's |
| 400 | * configuration. This must be done before calling mode_fixup in case a |
| 401 | * crtc only changed its mode but has the same set of connectors. |
| 402 | */ |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 403 | for_each_crtc_in_state(state, crtc, crtc_state, i) { |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 404 | int num_connectors; |
| 405 | |
Daniel Vetter | eab3bbe | 2015-01-22 16:36:21 +0100 | [diff] [blame] | 406 | /* |
| 407 | * We must set ->active_changed after walking connectors for |
| 408 | * otherwise an update that only changes active would result in |
| 409 | * a full modeset because update_connector_routing force that. |
| 410 | */ |
| 411 | if (crtc->state->active != crtc_state->active) { |
Daniel Vetter | 17a38d9 | 2015-02-22 12:24:16 +0100 | [diff] [blame] | 412 | DRM_DEBUG_ATOMIC("[CRTC:%d] active changed\n", |
| 413 | crtc->base.id); |
Daniel Vetter | eab3bbe | 2015-01-22 16:36:21 +0100 | [diff] [blame] | 414 | crtc_state->active_changed = true; |
| 415 | } |
| 416 | |
| 417 | if (!needs_modeset(crtc_state)) |
| 418 | continue; |
| 419 | |
Daniel Vetter | 17a38d9 | 2015-02-22 12:24:16 +0100 | [diff] [blame] | 420 | DRM_DEBUG_ATOMIC("[CRTC:%d] needs all connectors, enable: %c, active: %c\n", |
| 421 | crtc->base.id, |
| 422 | crtc_state->enable ? 'y' : 'n', |
Daniel Vetter | eab3bbe | 2015-01-22 16:36:21 +0100 | [diff] [blame] | 423 | crtc_state->active ? 'y' : 'n'); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 424 | |
| 425 | ret = drm_atomic_add_affected_connectors(state, crtc); |
| 426 | if (ret != 0) |
| 427 | return ret; |
| 428 | |
Maarten Lankhorst | 57744aa | 2015-05-19 16:41:03 +0200 | [diff] [blame] | 429 | ret = drm_atomic_add_affected_planes(state, crtc); |
| 430 | if (ret != 0) |
| 431 | return ret; |
| 432 | |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 433 | num_connectors = drm_atomic_connectors_for_crtc(state, |
| 434 | crtc); |
| 435 | |
| 436 | if (crtc_state->enable != !!num_connectors) { |
Daniel Vetter | 17a38d9 | 2015-02-22 12:24:16 +0100 | [diff] [blame] | 437 | DRM_DEBUG_ATOMIC("[CRTC:%d] enabled/connectors mismatch\n", |
| 438 | crtc->base.id); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 439 | |
| 440 | return -EINVAL; |
| 441 | } |
| 442 | } |
| 443 | |
| 444 | return mode_fixup(state); |
| 445 | } |
Daniel Vetter | d9b1362 | 2014-11-26 16:57:41 +0100 | [diff] [blame] | 446 | EXPORT_SYMBOL(drm_atomic_helper_check_modeset); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 447 | |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 448 | /** |
John Hunter | f98bd3e | 2015-03-17 15:30:26 +0800 | [diff] [blame] | 449 | * drm_atomic_helper_check_planes - validate state object for planes changes |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 450 | * @dev: DRM device |
| 451 | * @state: the driver state object |
| 452 | * |
| 453 | * Check the state object to see if the requested state is physically possible. |
Daniel Vetter | d9b1362 | 2014-11-26 16:57:41 +0100 | [diff] [blame] | 454 | * This does all the plane update related checks using by calling into the |
| 455 | * ->atomic_check hooks provided by the driver. |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 456 | * |
| 457 | * RETURNS |
| 458 | * Zero for success or -errno |
| 459 | */ |
Daniel Vetter | d9b1362 | 2014-11-26 16:57:41 +0100 | [diff] [blame] | 460 | int |
| 461 | drm_atomic_helper_check_planes(struct drm_device *dev, |
| 462 | struct drm_atomic_state *state) |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 463 | { |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 464 | struct drm_crtc *crtc; |
| 465 | struct drm_crtc_state *crtc_state; |
| 466 | struct drm_plane *plane; |
| 467 | struct drm_plane_state *plane_state; |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 468 | int i, ret = 0; |
| 469 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 470 | for_each_plane_in_state(state, plane, plane_state, i) { |
Ville Syrjälä | b5ceff20 | 2015-03-10 14:35:20 +0200 | [diff] [blame] | 471 | const struct drm_plane_helper_funcs *funcs; |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 472 | |
| 473 | funcs = plane->helper_private; |
| 474 | |
| 475 | drm_atomic_helper_plane_changed(state, plane_state, plane); |
| 476 | |
| 477 | if (!funcs || !funcs->atomic_check) |
| 478 | continue; |
| 479 | |
| 480 | ret = funcs->atomic_check(plane, plane_state); |
| 481 | if (ret) { |
Daniel Vetter | 17a38d9 | 2015-02-22 12:24:16 +0100 | [diff] [blame] | 482 | DRM_DEBUG_ATOMIC("[PLANE:%d] atomic driver check failed\n", |
| 483 | plane->base.id); |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 484 | return ret; |
| 485 | } |
| 486 | } |
| 487 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 488 | for_each_crtc_in_state(state, crtc, crtc_state, i) { |
Ville Syrjälä | b5ceff20 | 2015-03-10 14:35:20 +0200 | [diff] [blame] | 489 | const struct drm_crtc_helper_funcs *funcs; |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 490 | |
| 491 | funcs = crtc->helper_private; |
| 492 | |
| 493 | if (!funcs || !funcs->atomic_check) |
| 494 | continue; |
| 495 | |
| 496 | ret = funcs->atomic_check(crtc, state->crtc_states[i]); |
| 497 | if (ret) { |
Daniel Vetter | 17a38d9 | 2015-02-22 12:24:16 +0100 | [diff] [blame] | 498 | DRM_DEBUG_ATOMIC("[CRTC:%d] atomic driver check failed\n", |
| 499 | crtc->base.id); |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 500 | return ret; |
| 501 | } |
| 502 | } |
| 503 | |
Daniel Vetter | d9b1362 | 2014-11-26 16:57:41 +0100 | [diff] [blame] | 504 | return ret; |
| 505 | } |
| 506 | EXPORT_SYMBOL(drm_atomic_helper_check_planes); |
| 507 | |
| 508 | /** |
| 509 | * drm_atomic_helper_check - validate state object |
| 510 | * @dev: DRM device |
| 511 | * @state: the driver state object |
| 512 | * |
| 513 | * Check the state object to see if the requested state is physically possible. |
| 514 | * Only crtcs and planes have check callbacks, so for any additional (global) |
| 515 | * checking that a driver needs it can simply wrap that around this function. |
| 516 | * Drivers without such needs can directly use this as their ->atomic_check() |
| 517 | * callback. |
| 518 | * |
Daniel Vetter | b4274fb | 2014-11-26 17:02:18 +0100 | [diff] [blame] | 519 | * This just wraps the two parts of the state checking for planes and modeset |
| 520 | * state in the default order: First it calls drm_atomic_helper_check_modeset() |
| 521 | * and then drm_atomic_helper_check_planes(). The assumption is that the |
| 522 | * ->atomic_check functions depend upon an updated adjusted_mode.clock to |
| 523 | * e.g. properly compute watermarks. |
| 524 | * |
Daniel Vetter | d9b1362 | 2014-11-26 16:57:41 +0100 | [diff] [blame] | 525 | * RETURNS |
| 526 | * Zero for success or -errno |
| 527 | */ |
| 528 | int drm_atomic_helper_check(struct drm_device *dev, |
| 529 | struct drm_atomic_state *state) |
| 530 | { |
| 531 | int ret; |
| 532 | |
Daniel Vetter | b4274fb | 2014-11-26 17:02:18 +0100 | [diff] [blame] | 533 | ret = drm_atomic_helper_check_modeset(dev, state); |
Daniel Vetter | d9b1362 | 2014-11-26 16:57:41 +0100 | [diff] [blame] | 534 | if (ret) |
| 535 | return ret; |
| 536 | |
Daniel Vetter | b4274fb | 2014-11-26 17:02:18 +0100 | [diff] [blame] | 537 | ret = drm_atomic_helper_check_planes(dev, state); |
Rob Clark | 934ce1c | 2014-11-19 16:41:33 -0500 | [diff] [blame] | 538 | if (ret) |
| 539 | return ret; |
| 540 | |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 541 | return ret; |
| 542 | } |
| 543 | EXPORT_SYMBOL(drm_atomic_helper_check); |
| 544 | |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 545 | static void |
| 546 | disable_outputs(struct drm_device *dev, struct drm_atomic_state *old_state) |
| 547 | { |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 548 | struct drm_connector *connector; |
| 549 | struct drm_connector_state *old_conn_state; |
| 550 | struct drm_crtc *crtc; |
| 551 | struct drm_crtc_state *old_crtc_state; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 552 | int i; |
| 553 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 554 | for_each_connector_in_state(old_state, connector, old_conn_state, i) { |
Ville Syrjälä | b5ceff20 | 2015-03-10 14:35:20 +0200 | [diff] [blame] | 555 | const struct drm_encoder_helper_funcs *funcs; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 556 | struct drm_encoder *encoder; |
Daniel Vetter | eab3bbe | 2015-01-22 16:36:21 +0100 | [diff] [blame] | 557 | struct drm_crtc_state *old_crtc_state; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 558 | |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 559 | /* Shut down everything that's in the changeset and currently |
| 560 | * still on. So need to check the old, saved state. */ |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 561 | if (!old_conn_state->crtc) |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 562 | continue; |
| 563 | |
Daniel Vetter | eab3bbe | 2015-01-22 16:36:21 +0100 | [diff] [blame] | 564 | old_crtc_state = old_state->crtc_states[drm_crtc_index(old_conn_state->crtc)]; |
| 565 | |
Daniel Vetter | 4218a32 | 2015-03-26 22:18:40 +0100 | [diff] [blame] | 566 | if (!old_crtc_state->active || |
| 567 | !needs_modeset(old_conn_state->crtc->state)) |
Daniel Vetter | eab3bbe | 2015-01-22 16:36:21 +0100 | [diff] [blame] | 568 | continue; |
| 569 | |
Rob Clark | 46df9ad | 2014-11-20 15:40:36 -0500 | [diff] [blame] | 570 | encoder = old_conn_state->best_encoder; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 571 | |
Rob Clark | 46df9ad | 2014-11-20 15:40:36 -0500 | [diff] [blame] | 572 | /* We shouldn't get this far if we didn't previously have |
| 573 | * an encoder.. but WARN_ON() rather than explode. |
| 574 | */ |
| 575 | if (WARN_ON(!encoder)) |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 576 | continue; |
| 577 | |
| 578 | funcs = encoder->helper_private; |
| 579 | |
Daniel Vetter | 17a38d9 | 2015-02-22 12:24:16 +0100 | [diff] [blame] | 580 | DRM_DEBUG_ATOMIC("disabling [ENCODER:%d:%s]\n", |
| 581 | encoder->base.id, encoder->name); |
Daniel Vetter | 95d6eb3 | 2015-01-22 16:36:25 +0100 | [diff] [blame] | 582 | |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 583 | /* |
| 584 | * Each encoder has at most one connector (since we always steal |
John Hunter | f98bd3e | 2015-03-17 15:30:26 +0800 | [diff] [blame] | 585 | * it away), so we won't call disable hooks twice. |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 586 | */ |
Archit Taneja | 862e686 | 2015-05-21 11:03:16 +0530 | [diff] [blame^] | 587 | drm_bridge_disable(encoder->bridge); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 588 | |
| 589 | /* Right function depends upon target state. */ |
Daniel Vetter | ee0a89c | 2015-01-22 16:36:24 +0100 | [diff] [blame] | 590 | if (connector->state->crtc && funcs->prepare) |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 591 | funcs->prepare(encoder); |
| 592 | else if (funcs->disable) |
| 593 | funcs->disable(encoder); |
| 594 | else |
| 595 | funcs->dpms(encoder, DRM_MODE_DPMS_OFF); |
| 596 | |
Archit Taneja | 862e686 | 2015-05-21 11:03:16 +0530 | [diff] [blame^] | 597 | drm_bridge_post_disable(encoder->bridge); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 598 | } |
| 599 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 600 | for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) { |
Ville Syrjälä | b5ceff20 | 2015-03-10 14:35:20 +0200 | [diff] [blame] | 601 | const struct drm_crtc_helper_funcs *funcs; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 602 | |
| 603 | /* Shut down everything that needs a full modeset. */ |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 604 | if (!needs_modeset(crtc->state)) |
Daniel Vetter | eab3bbe | 2015-01-22 16:36:21 +0100 | [diff] [blame] | 605 | continue; |
| 606 | |
| 607 | if (!old_crtc_state->active) |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 608 | continue; |
| 609 | |
| 610 | funcs = crtc->helper_private; |
| 611 | |
Daniel Vetter | 17a38d9 | 2015-02-22 12:24:16 +0100 | [diff] [blame] | 612 | DRM_DEBUG_ATOMIC("disabling [CRTC:%d]\n", |
| 613 | crtc->base.id); |
Daniel Vetter | 95d6eb3 | 2015-01-22 16:36:25 +0100 | [diff] [blame] | 614 | |
| 615 | |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 616 | /* Right function depends upon target state. */ |
Daniel Vetter | ee0a89c | 2015-01-22 16:36:24 +0100 | [diff] [blame] | 617 | if (crtc->state->enable && funcs->prepare) |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 618 | funcs->prepare(crtc); |
| 619 | else if (funcs->disable) |
| 620 | funcs->disable(crtc); |
| 621 | else |
| 622 | funcs->dpms(crtc, DRM_MODE_DPMS_OFF); |
| 623 | } |
| 624 | } |
| 625 | |
Daniel Vetter | 4c18d30 | 2015-05-12 15:27:37 +0200 | [diff] [blame] | 626 | /** |
| 627 | * drm_atomic_helper_update_legacy_modeset_state - update legacy modeset state |
| 628 | * @dev: DRM device |
| 629 | * @old_state: atomic state object with old state structures |
| 630 | * |
| 631 | * This function updates all the various legacy modeset state pointers in |
| 632 | * connectors, encoders and crtcs. It also updates the timestamping constants |
| 633 | * used for precise vblank timestamps by calling |
| 634 | * drm_calc_timestamping_constants(). |
| 635 | * |
| 636 | * Drivers can use this for building their own atomic commit if they don't have |
| 637 | * a pure helper-based modeset implementation. |
| 638 | */ |
| 639 | void |
| 640 | drm_atomic_helper_update_legacy_modeset_state(struct drm_device *dev, |
| 641 | struct drm_atomic_state *old_state) |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 642 | { |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 643 | struct drm_connector *connector; |
| 644 | struct drm_connector_state *old_conn_state; |
| 645 | struct drm_crtc *crtc; |
| 646 | struct drm_crtc_state *old_crtc_state; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 647 | int i; |
| 648 | |
| 649 | /* clear out existing links */ |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 650 | for_each_connector_in_state(old_state, connector, old_conn_state, i) { |
| 651 | if (!connector->encoder) |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 652 | continue; |
| 653 | |
| 654 | WARN_ON(!connector->encoder->crtc); |
| 655 | |
| 656 | connector->encoder->crtc = NULL; |
| 657 | connector->encoder = NULL; |
| 658 | } |
| 659 | |
| 660 | /* set new links */ |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 661 | for_each_connector_in_state(old_state, connector, old_conn_state, i) { |
| 662 | if (!connector->state->crtc) |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 663 | continue; |
| 664 | |
| 665 | if (WARN_ON(!connector->state->best_encoder)) |
| 666 | continue; |
| 667 | |
| 668 | connector->encoder = connector->state->best_encoder; |
| 669 | connector->encoder->crtc = connector->state->crtc; |
| 670 | } |
| 671 | |
| 672 | /* set legacy state in the crtc structure */ |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 673 | for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) { |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 674 | crtc->mode = crtc->state->mode; |
| 675 | crtc->enabled = crtc->state->enable; |
| 676 | crtc->x = crtc->primary->state->src_x >> 16; |
| 677 | crtc->y = crtc->primary->state->src_y >> 16; |
Daniel Vetter | 3d51d2d | 2015-05-12 15:21:06 +0200 | [diff] [blame] | 678 | |
| 679 | if (crtc->state->enable) |
| 680 | drm_calc_timestamping_constants(crtc, |
| 681 | &crtc->state->adjusted_mode); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 682 | } |
| 683 | } |
Daniel Vetter | 4c18d30 | 2015-05-12 15:27:37 +0200 | [diff] [blame] | 684 | EXPORT_SYMBOL(drm_atomic_helper_update_legacy_modeset_state); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 685 | |
| 686 | static void |
| 687 | crtc_set_mode(struct drm_device *dev, struct drm_atomic_state *old_state) |
| 688 | { |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 689 | struct drm_crtc *crtc; |
| 690 | struct drm_crtc_state *old_crtc_state; |
| 691 | struct drm_connector *connector; |
| 692 | struct drm_connector_state *old_conn_state; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 693 | int i; |
| 694 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 695 | for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) { |
Ville Syrjälä | b5ceff20 | 2015-03-10 14:35:20 +0200 | [diff] [blame] | 696 | const struct drm_crtc_helper_funcs *funcs; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 697 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 698 | if (!crtc->state->mode_changed) |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 699 | continue; |
| 700 | |
| 701 | funcs = crtc->helper_private; |
| 702 | |
Daniel Vetter | c982bd9 | 2015-02-22 12:24:20 +0100 | [diff] [blame] | 703 | if (crtc->state->enable && funcs->mode_set_nofb) { |
Daniel Vetter | 17a38d9 | 2015-02-22 12:24:16 +0100 | [diff] [blame] | 704 | DRM_DEBUG_ATOMIC("modeset on [CRTC:%d]\n", |
| 705 | crtc->base.id); |
Daniel Vetter | 95d6eb3 | 2015-01-22 16:36:25 +0100 | [diff] [blame] | 706 | |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 707 | funcs->mode_set_nofb(crtc); |
Daniel Vetter | 95d6eb3 | 2015-01-22 16:36:25 +0100 | [diff] [blame] | 708 | } |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 709 | } |
| 710 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 711 | for_each_connector_in_state(old_state, connector, old_conn_state, i) { |
Ville Syrjälä | b5ceff20 | 2015-03-10 14:35:20 +0200 | [diff] [blame] | 712 | const struct drm_encoder_helper_funcs *funcs; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 713 | struct drm_crtc_state *new_crtc_state; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 714 | struct drm_encoder *encoder; |
| 715 | struct drm_display_mode *mode, *adjusted_mode; |
| 716 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 717 | if (!connector->state->best_encoder) |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 718 | continue; |
| 719 | |
| 720 | encoder = connector->state->best_encoder; |
| 721 | funcs = encoder->helper_private; |
| 722 | new_crtc_state = connector->state->crtc->state; |
| 723 | mode = &new_crtc_state->mode; |
| 724 | adjusted_mode = &new_crtc_state->adjusted_mode; |
| 725 | |
Daniel Vetter | eab3bbe | 2015-01-22 16:36:21 +0100 | [diff] [blame] | 726 | if (!new_crtc_state->mode_changed) |
| 727 | continue; |
| 728 | |
Daniel Vetter | 17a38d9 | 2015-02-22 12:24:16 +0100 | [diff] [blame] | 729 | DRM_DEBUG_ATOMIC("modeset on [ENCODER:%d:%s]\n", |
| 730 | encoder->base.id, encoder->name); |
Daniel Vetter | 95d6eb3 | 2015-01-22 16:36:25 +0100 | [diff] [blame] | 731 | |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 732 | /* |
| 733 | * Each encoder has at most one connector (since we always steal |
John Hunter | f98bd3e | 2015-03-17 15:30:26 +0800 | [diff] [blame] | 734 | * it away), so we won't call mode_set hooks twice. |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 735 | */ |
Daniel Vetter | c982bd9 | 2015-02-22 12:24:20 +0100 | [diff] [blame] | 736 | if (funcs->mode_set) |
| 737 | funcs->mode_set(encoder, mode, adjusted_mode); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 738 | |
Archit Taneja | 862e686 | 2015-05-21 11:03:16 +0530 | [diff] [blame^] | 739 | drm_bridge_mode_set(encoder->bridge, mode, adjusted_mode); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 740 | } |
| 741 | } |
| 742 | |
| 743 | /** |
Daniel Vetter | 1af434a | 2015-02-22 12:24:19 +0100 | [diff] [blame] | 744 | * drm_atomic_helper_commit_modeset_disables - modeset commit to disable outputs |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 745 | * @dev: DRM device |
Laurent Pinchart | a072f80 | 2015-02-22 12:24:18 +0100 | [diff] [blame] | 746 | * @old_state: atomic state object with old state structures |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 747 | * |
Daniel Vetter | 1af434a | 2015-02-22 12:24:19 +0100 | [diff] [blame] | 748 | * This function shuts down all the outputs that need to be shut down and |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 749 | * prepares them (if required) with the new mode. |
Daniel Vetter | 1af434a | 2015-02-22 12:24:19 +0100 | [diff] [blame] | 750 | * |
| 751 | * For compatability with legacy crtc helpers this should be called before |
| 752 | * drm_atomic_helper_commit_planes(), which is what the default commit function |
| 753 | * does. But drivers with different needs can group the modeset commits together |
| 754 | * and do the plane commits at the end. This is useful for drivers doing runtime |
| 755 | * PM since planes updates then only happen when the CRTC is actually enabled. |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 756 | */ |
Daniel Vetter | 1af434a | 2015-02-22 12:24:19 +0100 | [diff] [blame] | 757 | void drm_atomic_helper_commit_modeset_disables(struct drm_device *dev, |
| 758 | struct drm_atomic_state *old_state) |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 759 | { |
Laurent Pinchart | a072f80 | 2015-02-22 12:24:18 +0100 | [diff] [blame] | 760 | disable_outputs(dev, old_state); |
Daniel Vetter | 4c18d30 | 2015-05-12 15:27:37 +0200 | [diff] [blame] | 761 | |
| 762 | drm_atomic_helper_update_legacy_modeset_state(dev, old_state); |
| 763 | |
Laurent Pinchart | a072f80 | 2015-02-22 12:24:18 +0100 | [diff] [blame] | 764 | crtc_set_mode(dev, old_state); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 765 | } |
Daniel Vetter | 1af434a | 2015-02-22 12:24:19 +0100 | [diff] [blame] | 766 | EXPORT_SYMBOL(drm_atomic_helper_commit_modeset_disables); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 767 | |
| 768 | /** |
Daniel Vetter | 1af434a | 2015-02-22 12:24:19 +0100 | [diff] [blame] | 769 | * drm_atomic_helper_commit_modeset_enables - modeset commit to enable outputs |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 770 | * @dev: DRM device |
| 771 | * @old_state: atomic state object with old state structures |
| 772 | * |
Daniel Vetter | 1af434a | 2015-02-22 12:24:19 +0100 | [diff] [blame] | 773 | * This function enables all the outputs with the new configuration which had to |
| 774 | * be turned off for the update. |
| 775 | * |
| 776 | * For compatability with legacy crtc helpers this should be called after |
| 777 | * drm_atomic_helper_commit_planes(), which is what the default commit function |
| 778 | * does. But drivers with different needs can group the modeset commits together |
| 779 | * and do the plane commits at the end. This is useful for drivers doing runtime |
| 780 | * PM since planes updates then only happen when the CRTC is actually enabled. |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 781 | */ |
Daniel Vetter | 1af434a | 2015-02-22 12:24:19 +0100 | [diff] [blame] | 782 | void drm_atomic_helper_commit_modeset_enables(struct drm_device *dev, |
| 783 | struct drm_atomic_state *old_state) |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 784 | { |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 785 | struct drm_crtc *crtc; |
| 786 | struct drm_crtc_state *old_crtc_state; |
| 787 | struct drm_connector *connector; |
| 788 | struct drm_connector_state *old_conn_state; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 789 | int i; |
| 790 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 791 | for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) { |
Ville Syrjälä | b5ceff20 | 2015-03-10 14:35:20 +0200 | [diff] [blame] | 792 | const struct drm_crtc_helper_funcs *funcs; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 793 | |
| 794 | /* Need to filter out CRTCs where only planes change. */ |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 795 | if (!needs_modeset(crtc->state)) |
Daniel Vetter | eab3bbe | 2015-01-22 16:36:21 +0100 | [diff] [blame] | 796 | continue; |
| 797 | |
| 798 | if (!crtc->state->active) |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 799 | continue; |
| 800 | |
| 801 | funcs = crtc->helper_private; |
| 802 | |
Daniel Vetter | ee0a89c | 2015-01-22 16:36:24 +0100 | [diff] [blame] | 803 | if (crtc->state->enable) { |
Daniel Vetter | 17a38d9 | 2015-02-22 12:24:16 +0100 | [diff] [blame] | 804 | DRM_DEBUG_ATOMIC("enabling [CRTC:%d]\n", |
| 805 | crtc->base.id); |
Daniel Vetter | 95d6eb3 | 2015-01-22 16:36:25 +0100 | [diff] [blame] | 806 | |
Daniel Vetter | ee0a89c | 2015-01-22 16:36:24 +0100 | [diff] [blame] | 807 | if (funcs->enable) |
| 808 | funcs->enable(crtc); |
| 809 | else |
| 810 | funcs->commit(crtc); |
| 811 | } |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 812 | } |
| 813 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 814 | for_each_connector_in_state(old_state, connector, old_conn_state, i) { |
Ville Syrjälä | b5ceff20 | 2015-03-10 14:35:20 +0200 | [diff] [blame] | 815 | const struct drm_encoder_helper_funcs *funcs; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 816 | struct drm_encoder *encoder; |
| 817 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 818 | if (!connector->state->best_encoder) |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 819 | continue; |
| 820 | |
Daniel Vetter | 4218a32 | 2015-03-26 22:18:40 +0100 | [diff] [blame] | 821 | if (!connector->state->crtc->state->active || |
| 822 | !needs_modeset(connector->state->crtc->state)) |
Daniel Vetter | eab3bbe | 2015-01-22 16:36:21 +0100 | [diff] [blame] | 823 | continue; |
| 824 | |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 825 | encoder = connector->state->best_encoder; |
| 826 | funcs = encoder->helper_private; |
| 827 | |
Daniel Vetter | 17a38d9 | 2015-02-22 12:24:16 +0100 | [diff] [blame] | 828 | DRM_DEBUG_ATOMIC("enabling [ENCODER:%d:%s]\n", |
| 829 | encoder->base.id, encoder->name); |
Daniel Vetter | 95d6eb3 | 2015-01-22 16:36:25 +0100 | [diff] [blame] | 830 | |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 831 | /* |
| 832 | * Each encoder has at most one connector (since we always steal |
John Hunter | f98bd3e | 2015-03-17 15:30:26 +0800 | [diff] [blame] | 833 | * it away), so we won't call enable hooks twice. |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 834 | */ |
Archit Taneja | 862e686 | 2015-05-21 11:03:16 +0530 | [diff] [blame^] | 835 | drm_bridge_pre_enable(encoder->bridge); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 836 | |
Daniel Vetter | ee0a89c | 2015-01-22 16:36:24 +0100 | [diff] [blame] | 837 | if (funcs->enable) |
| 838 | funcs->enable(encoder); |
| 839 | else |
| 840 | funcs->commit(encoder); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 841 | |
Archit Taneja | 862e686 | 2015-05-21 11:03:16 +0530 | [diff] [blame^] | 842 | drm_bridge_enable(encoder->bridge); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 843 | } |
| 844 | } |
Daniel Vetter | 1af434a | 2015-02-22 12:24:19 +0100 | [diff] [blame] | 845 | EXPORT_SYMBOL(drm_atomic_helper_commit_modeset_enables); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 846 | |
Daniel Vetter | e2330f0 | 2014-10-29 11:34:56 +0100 | [diff] [blame] | 847 | static void wait_for_fences(struct drm_device *dev, |
| 848 | struct drm_atomic_state *state) |
| 849 | { |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 850 | struct drm_plane *plane; |
| 851 | struct drm_plane_state *plane_state; |
Daniel Vetter | e2330f0 | 2014-10-29 11:34:56 +0100 | [diff] [blame] | 852 | int i; |
| 853 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 854 | for_each_plane_in_state(state, plane, plane_state, i) { |
| 855 | if (!plane->state->fence) |
Daniel Vetter | e2330f0 | 2014-10-29 11:34:56 +0100 | [diff] [blame] | 856 | continue; |
| 857 | |
| 858 | WARN_ON(!plane->state->fb); |
| 859 | |
| 860 | fence_wait(plane->state->fence, false); |
| 861 | fence_put(plane->state->fence); |
| 862 | plane->state->fence = NULL; |
| 863 | } |
| 864 | } |
| 865 | |
Daniel Vetter | ab58e33 | 2014-11-24 20:42:42 +0100 | [diff] [blame] | 866 | static bool framebuffer_changed(struct drm_device *dev, |
| 867 | struct drm_atomic_state *old_state, |
| 868 | struct drm_crtc *crtc) |
| 869 | { |
| 870 | struct drm_plane *plane; |
| 871 | struct drm_plane_state *old_plane_state; |
Daniel Vetter | ab58e33 | 2014-11-24 20:42:42 +0100 | [diff] [blame] | 872 | int i; |
| 873 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 874 | for_each_plane_in_state(old_state, plane, old_plane_state, i) { |
Daniel Vetter | ab58e33 | 2014-11-24 20:42:42 +0100 | [diff] [blame] | 875 | if (plane->state->crtc != crtc && |
| 876 | old_plane_state->crtc != crtc) |
| 877 | continue; |
| 878 | |
| 879 | if (plane->state->fb != old_plane_state->fb) |
| 880 | return true; |
| 881 | } |
| 882 | |
| 883 | return false; |
| 884 | } |
| 885 | |
Rob Clark | 5ee3229 | 2014-11-11 19:38:59 -0500 | [diff] [blame] | 886 | /** |
| 887 | * drm_atomic_helper_wait_for_vblanks - wait for vblank on crtcs |
| 888 | * @dev: DRM device |
| 889 | * @old_state: atomic state object with old state structures |
| 890 | * |
| 891 | * Helper to, after atomic commit, wait for vblanks on all effected |
| 892 | * crtcs (ie. before cleaning up old framebuffers using |
Daniel Vetter | ab58e33 | 2014-11-24 20:42:42 +0100 | [diff] [blame] | 893 | * drm_atomic_helper_cleanup_planes()). It will only wait on crtcs where the |
| 894 | * framebuffers have actually changed to optimize for the legacy cursor and |
| 895 | * plane update use-case. |
Rob Clark | 5ee3229 | 2014-11-11 19:38:59 -0500 | [diff] [blame] | 896 | */ |
| 897 | void |
| 898 | drm_atomic_helper_wait_for_vblanks(struct drm_device *dev, |
| 899 | struct drm_atomic_state *old_state) |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 900 | { |
| 901 | struct drm_crtc *crtc; |
| 902 | struct drm_crtc_state *old_crtc_state; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 903 | int i, ret; |
| 904 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 905 | for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) { |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 906 | /* No one cares about the old state, so abuse it for tracking |
| 907 | * and store whether we hold a vblank reference (and should do a |
| 908 | * vblank wait) in the ->enable boolean. */ |
| 909 | old_crtc_state->enable = false; |
| 910 | |
| 911 | if (!crtc->state->enable) |
| 912 | continue; |
| 913 | |
Daniel Vetter | f02ad90 | 2015-01-22 16:36:23 +0100 | [diff] [blame] | 914 | /* Legacy cursor ioctls are completely unsynced, and userspace |
| 915 | * relies on that (by doing tons of cursor updates). */ |
| 916 | if (old_state->legacy_cursor_update) |
| 917 | continue; |
| 918 | |
Daniel Vetter | ab58e33 | 2014-11-24 20:42:42 +0100 | [diff] [blame] | 919 | if (!framebuffer_changed(dev, old_state, crtc)) |
| 920 | continue; |
| 921 | |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 922 | ret = drm_crtc_vblank_get(crtc); |
| 923 | if (ret != 0) |
| 924 | continue; |
| 925 | |
| 926 | old_crtc_state->enable = true; |
| 927 | old_crtc_state->last_vblank_count = drm_vblank_count(dev, i); |
| 928 | } |
| 929 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 930 | for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) { |
| 931 | if (!old_crtc_state->enable) |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 932 | continue; |
| 933 | |
| 934 | ret = wait_event_timeout(dev->vblank[i].queue, |
| 935 | old_crtc_state->last_vblank_count != |
| 936 | drm_vblank_count(dev, i), |
| 937 | msecs_to_jiffies(50)); |
| 938 | |
| 939 | drm_crtc_vblank_put(crtc); |
| 940 | } |
| 941 | } |
Rob Clark | 5ee3229 | 2014-11-11 19:38:59 -0500 | [diff] [blame] | 942 | EXPORT_SYMBOL(drm_atomic_helper_wait_for_vblanks); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 943 | |
| 944 | /** |
| 945 | * drm_atomic_helper_commit - commit validated state object |
| 946 | * @dev: DRM device |
| 947 | * @state: the driver state object |
| 948 | * @async: asynchronous commit |
| 949 | * |
| 950 | * This function commits a with drm_atomic_helper_check() pre-validated state |
| 951 | * object. This can still fail when e.g. the framebuffer reservation fails. For |
| 952 | * now this doesn't implement asynchronous commits. |
| 953 | * |
| 954 | * RETURNS |
| 955 | * Zero for success or -errno. |
| 956 | */ |
| 957 | int drm_atomic_helper_commit(struct drm_device *dev, |
| 958 | struct drm_atomic_state *state, |
| 959 | bool async) |
| 960 | { |
| 961 | int ret; |
| 962 | |
| 963 | if (async) |
| 964 | return -EBUSY; |
| 965 | |
| 966 | ret = drm_atomic_helper_prepare_planes(dev, state); |
| 967 | if (ret) |
| 968 | return ret; |
| 969 | |
| 970 | /* |
| 971 | * This is the point of no return - everything below never fails except |
| 972 | * when the hw goes bonghits. Which means we can commit the new state on |
| 973 | * the software side now. |
| 974 | */ |
| 975 | |
| 976 | drm_atomic_helper_swap_state(dev, state); |
| 977 | |
| 978 | /* |
| 979 | * Everything below can be run asynchronously without the need to grab |
John Hunter | f98bd3e | 2015-03-17 15:30:26 +0800 | [diff] [blame] | 980 | * any modeset locks at all under one condition: It must be guaranteed |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 981 | * that the asynchronous work has either been cancelled (if the driver |
| 982 | * supports it, which at least requires that the framebuffers get |
| 983 | * cleaned up with drm_atomic_helper_cleanup_planes()) or completed |
| 984 | * before the new state gets committed on the software side with |
| 985 | * drm_atomic_helper_swap_state(). |
| 986 | * |
| 987 | * This scheme allows new atomic state updates to be prepared and |
| 988 | * checked in parallel to the asynchronous completion of the previous |
| 989 | * update. Which is important since compositors need to figure out the |
| 990 | * composition of the next frame right after having submitted the |
| 991 | * current layout. |
| 992 | */ |
| 993 | |
Daniel Vetter | e2330f0 | 2014-10-29 11:34:56 +0100 | [diff] [blame] | 994 | wait_for_fences(dev, state); |
| 995 | |
Daniel Vetter | 1af434a | 2015-02-22 12:24:19 +0100 | [diff] [blame] | 996 | drm_atomic_helper_commit_modeset_disables(dev, state); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 997 | |
| 998 | drm_atomic_helper_commit_planes(dev, state); |
| 999 | |
Daniel Vetter | 1af434a | 2015-02-22 12:24:19 +0100 | [diff] [blame] | 1000 | drm_atomic_helper_commit_modeset_enables(dev, state); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 1001 | |
Rob Clark | 5ee3229 | 2014-11-11 19:38:59 -0500 | [diff] [blame] | 1002 | drm_atomic_helper_wait_for_vblanks(dev, state); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 1003 | |
| 1004 | drm_atomic_helper_cleanup_planes(dev, state); |
| 1005 | |
| 1006 | drm_atomic_state_free(state); |
| 1007 | |
| 1008 | return 0; |
| 1009 | } |
| 1010 | EXPORT_SYMBOL(drm_atomic_helper_commit); |
| 1011 | |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1012 | /** |
Daniel Vetter | e8c833a | 2014-07-27 18:30:19 +0200 | [diff] [blame] | 1013 | * DOC: implementing async commit |
| 1014 | * |
| 1015 | * For now the atomic helpers don't support async commit directly. If there is |
| 1016 | * real need it could be added though, using the dma-buf fence infrastructure |
| 1017 | * for generic synchronization with outstanding rendering. |
| 1018 | * |
| 1019 | * For now drivers have to implement async commit themselves, with the following |
| 1020 | * sequence being the recommended one: |
| 1021 | * |
| 1022 | * 1. Run drm_atomic_helper_prepare_planes() first. This is the only function |
| 1023 | * which commit needs to call which can fail, so we want to run it first and |
| 1024 | * synchronously. |
| 1025 | * |
| 1026 | * 2. Synchronize with any outstanding asynchronous commit worker threads which |
| 1027 | * might be affected the new state update. This can be done by either cancelling |
| 1028 | * or flushing the work items, depending upon whether the driver can deal with |
| 1029 | * cancelled updates. Note that it is important to ensure that the framebuffer |
| 1030 | * cleanup is still done when cancelling. |
| 1031 | * |
| 1032 | * For sufficient parallelism it is recommended to have a work item per crtc |
| 1033 | * (for updates which don't touch global state) and a global one. Then we only |
| 1034 | * need to synchronize with the crtc work items for changed crtcs and the global |
| 1035 | * work item, which allows nice concurrent updates on disjoint sets of crtcs. |
| 1036 | * |
| 1037 | * 3. The software state is updated synchronously with |
| 1038 | * drm_atomic_helper_swap_state. Doing this under the protection of all modeset |
| 1039 | * locks means concurrent callers never see inconsistent state. And doing this |
| 1040 | * while it's guaranteed that no relevant async worker runs means that async |
| 1041 | * workers do not need grab any locks. Actually they must not grab locks, for |
| 1042 | * otherwise the work flushing will deadlock. |
| 1043 | * |
| 1044 | * 4. Schedule a work item to do all subsequent steps, using the split-out |
| 1045 | * commit helpers: a) pre-plane commit b) plane commit c) post-plane commit and |
| 1046 | * then cleaning up the framebuffers after the old framebuffer is no longer |
| 1047 | * being displayed. |
| 1048 | */ |
| 1049 | |
| 1050 | /** |
Daniel Vetter | 2e3afd4 | 2015-02-26 14:17:38 +0100 | [diff] [blame] | 1051 | * drm_atomic_helper_prepare_planes - prepare plane resources before commit |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1052 | * @dev: DRM device |
Daniel Vetter | 2e3afd4 | 2015-02-26 14:17:38 +0100 | [diff] [blame] | 1053 | * @state: atomic state object with new state structures |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1054 | * |
| 1055 | * This function prepares plane state, specifically framebuffers, for the new |
| 1056 | * configuration. If any failure is encountered this function will call |
| 1057 | * ->cleanup_fb on any already successfully prepared framebuffer. |
| 1058 | * |
| 1059 | * Returns: |
| 1060 | * 0 on success, negative error code on failure. |
| 1061 | */ |
| 1062 | int drm_atomic_helper_prepare_planes(struct drm_device *dev, |
| 1063 | struct drm_atomic_state *state) |
| 1064 | { |
| 1065 | int nplanes = dev->mode_config.num_total_plane; |
| 1066 | int ret, i; |
| 1067 | |
| 1068 | for (i = 0; i < nplanes; i++) { |
Ville Syrjälä | b5ceff20 | 2015-03-10 14:35:20 +0200 | [diff] [blame] | 1069 | const struct drm_plane_helper_funcs *funcs; |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1070 | struct drm_plane *plane = state->planes[i]; |
Tvrtko Ursulin | d136dfe | 2015-03-03 14:22:31 +0000 | [diff] [blame] | 1071 | struct drm_plane_state *plane_state = state->plane_states[i]; |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1072 | struct drm_framebuffer *fb; |
| 1073 | |
| 1074 | if (!plane) |
| 1075 | continue; |
| 1076 | |
| 1077 | funcs = plane->helper_private; |
| 1078 | |
Tvrtko Ursulin | d136dfe | 2015-03-03 14:22:31 +0000 | [diff] [blame] | 1079 | fb = plane_state->fb; |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1080 | |
| 1081 | if (fb && funcs->prepare_fb) { |
Tvrtko Ursulin | d136dfe | 2015-03-03 14:22:31 +0000 | [diff] [blame] | 1082 | ret = funcs->prepare_fb(plane, fb, plane_state); |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1083 | if (ret) |
| 1084 | goto fail; |
| 1085 | } |
| 1086 | } |
| 1087 | |
| 1088 | return 0; |
| 1089 | |
| 1090 | fail: |
| 1091 | for (i--; i >= 0; i--) { |
Ville Syrjälä | b5ceff20 | 2015-03-10 14:35:20 +0200 | [diff] [blame] | 1092 | const struct drm_plane_helper_funcs *funcs; |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1093 | struct drm_plane *plane = state->planes[i]; |
Tvrtko Ursulin | d136dfe | 2015-03-03 14:22:31 +0000 | [diff] [blame] | 1094 | struct drm_plane_state *plane_state = state->plane_states[i]; |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1095 | struct drm_framebuffer *fb; |
| 1096 | |
| 1097 | if (!plane) |
| 1098 | continue; |
| 1099 | |
| 1100 | funcs = plane->helper_private; |
| 1101 | |
| 1102 | fb = state->plane_states[i]->fb; |
| 1103 | |
| 1104 | if (fb && funcs->cleanup_fb) |
Tvrtko Ursulin | d136dfe | 2015-03-03 14:22:31 +0000 | [diff] [blame] | 1105 | funcs->cleanup_fb(plane, fb, plane_state); |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1106 | |
| 1107 | } |
| 1108 | |
| 1109 | return ret; |
| 1110 | } |
| 1111 | EXPORT_SYMBOL(drm_atomic_helper_prepare_planes); |
| 1112 | |
| 1113 | /** |
| 1114 | * drm_atomic_helper_commit_planes - commit plane state |
| 1115 | * @dev: DRM device |
Daniel Vetter | b0fcfc8 | 2014-11-19 18:38:11 +0100 | [diff] [blame] | 1116 | * @old_state: atomic state object with old state structures |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1117 | * |
| 1118 | * This function commits the new plane state using the plane and atomic helper |
| 1119 | * functions for planes and crtcs. It assumes that the atomic state has already |
| 1120 | * been pushed into the relevant object state pointers, since this step can no |
| 1121 | * longer fail. |
| 1122 | * |
Daniel Vetter | b0fcfc8 | 2014-11-19 18:38:11 +0100 | [diff] [blame] | 1123 | * It still requires the global state object @old_state to know which planes and |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1124 | * crtcs need to be updated though. |
Maarten Lankhorst | de28d02 | 2015-05-19 16:41:01 +0200 | [diff] [blame] | 1125 | * |
| 1126 | * Note that this function does all plane updates across all CRTCs in one step. |
| 1127 | * If the hardware can't support this approach look at |
| 1128 | * drm_atomic_helper_commit_planes_on_crtc() instead. |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1129 | */ |
| 1130 | void drm_atomic_helper_commit_planes(struct drm_device *dev, |
Daniel Vetter | b0fcfc8 | 2014-11-19 18:38:11 +0100 | [diff] [blame] | 1131 | struct drm_atomic_state *old_state) |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1132 | { |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 1133 | struct drm_crtc *crtc; |
| 1134 | struct drm_crtc_state *old_crtc_state; |
| 1135 | struct drm_plane *plane; |
| 1136 | struct drm_plane_state *old_plane_state; |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1137 | int i; |
| 1138 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 1139 | for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) { |
Ville Syrjälä | b5ceff20 | 2015-03-10 14:35:20 +0200 | [diff] [blame] | 1140 | const struct drm_crtc_helper_funcs *funcs; |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1141 | |
| 1142 | funcs = crtc->helper_private; |
| 1143 | |
| 1144 | if (!funcs || !funcs->atomic_begin) |
| 1145 | continue; |
| 1146 | |
| 1147 | funcs->atomic_begin(crtc); |
| 1148 | } |
| 1149 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 1150 | for_each_plane_in_state(old_state, plane, old_plane_state, i) { |
Ville Syrjälä | b5ceff20 | 2015-03-10 14:35:20 +0200 | [diff] [blame] | 1151 | const struct drm_plane_helper_funcs *funcs; |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1152 | |
| 1153 | funcs = plane->helper_private; |
| 1154 | |
Thierry Reding | 3cad4b6 | 2014-11-25 13:05:12 +0100 | [diff] [blame] | 1155 | if (!funcs) |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1156 | continue; |
| 1157 | |
Thierry Reding | 407b8bd | 2014-11-20 12:05:50 +0100 | [diff] [blame] | 1158 | /* |
| 1159 | * Special-case disabling the plane if drivers support it. |
| 1160 | */ |
| 1161 | if (drm_atomic_plane_disabling(plane, old_plane_state) && |
| 1162 | funcs->atomic_disable) |
| 1163 | funcs->atomic_disable(plane, old_plane_state); |
Daniel Vetter | 475d231 | 2015-04-10 16:22:39 +0200 | [diff] [blame] | 1164 | else if (plane->state->crtc || |
| 1165 | drm_atomic_plane_disabling(plane, old_plane_state)) |
Thierry Reding | 407b8bd | 2014-11-20 12:05:50 +0100 | [diff] [blame] | 1166 | funcs->atomic_update(plane, old_plane_state); |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1167 | } |
| 1168 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 1169 | for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) { |
Ville Syrjälä | b5ceff20 | 2015-03-10 14:35:20 +0200 | [diff] [blame] | 1170 | const struct drm_crtc_helper_funcs *funcs; |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1171 | |
| 1172 | funcs = crtc->helper_private; |
| 1173 | |
| 1174 | if (!funcs || !funcs->atomic_flush) |
| 1175 | continue; |
| 1176 | |
| 1177 | funcs->atomic_flush(crtc); |
| 1178 | } |
| 1179 | } |
| 1180 | EXPORT_SYMBOL(drm_atomic_helper_commit_planes); |
| 1181 | |
| 1182 | /** |
Maarten Lankhorst | de28d02 | 2015-05-19 16:41:01 +0200 | [diff] [blame] | 1183 | * drm_atomic_helper_commit_planes_on_crtc - commit plane state for a crtc |
| 1184 | * @old_crtc_state: atomic state object with the old crtc state |
| 1185 | * |
| 1186 | * This function commits the new plane state using the plane and atomic helper |
| 1187 | * functions for planes on the specific crtc. It assumes that the atomic state |
| 1188 | * has already been pushed into the relevant object state pointers, since this |
| 1189 | * step can no longer fail. |
| 1190 | * |
| 1191 | * This function is useful when plane updates should be done crtc-by-crtc |
| 1192 | * instead of one global step like drm_atomic_helper_commit_planes() does. |
| 1193 | * |
| 1194 | * This function can only be savely used when planes are not allowed to move |
| 1195 | * between different CRTCs because this function doesn't handle inter-CRTC |
| 1196 | * depencies. Callers need to ensure that either no such depencies exist, |
| 1197 | * resolve them through ordering of commit calls or through some other means. |
| 1198 | */ |
| 1199 | void |
| 1200 | drm_atomic_helper_commit_planes_on_crtc(struct drm_crtc_state *old_crtc_state) |
| 1201 | { |
| 1202 | const struct drm_crtc_helper_funcs *crtc_funcs; |
| 1203 | struct drm_crtc *crtc = old_crtc_state->crtc; |
| 1204 | struct drm_atomic_state *old_state = old_crtc_state->state; |
| 1205 | struct drm_plane *plane; |
| 1206 | unsigned plane_mask; |
| 1207 | |
| 1208 | plane_mask = old_crtc_state->plane_mask; |
| 1209 | plane_mask |= crtc->state->plane_mask; |
| 1210 | |
| 1211 | crtc_funcs = crtc->helper_private; |
| 1212 | if (crtc_funcs && crtc_funcs->atomic_begin) |
| 1213 | crtc_funcs->atomic_begin(crtc); |
| 1214 | |
| 1215 | drm_for_each_plane_mask(plane, crtc->dev, plane_mask) { |
| 1216 | struct drm_plane_state *old_plane_state = |
| 1217 | drm_atomic_get_existing_plane_state(old_state, plane); |
| 1218 | const struct drm_plane_helper_funcs *plane_funcs; |
| 1219 | |
| 1220 | plane_funcs = plane->helper_private; |
| 1221 | |
| 1222 | if (!old_plane_state || !plane_funcs) |
| 1223 | continue; |
| 1224 | |
| 1225 | WARN_ON(plane->state->crtc && plane->state->crtc != crtc); |
| 1226 | |
| 1227 | if (drm_atomic_plane_disabling(plane, old_plane_state) && |
| 1228 | plane_funcs->atomic_disable) |
| 1229 | plane_funcs->atomic_disable(plane, old_plane_state); |
| 1230 | else if (plane->state->crtc || |
| 1231 | drm_atomic_plane_disabling(plane, old_plane_state)) |
| 1232 | plane_funcs->atomic_update(plane, old_plane_state); |
| 1233 | } |
| 1234 | |
| 1235 | if (crtc_funcs && crtc_funcs->atomic_flush) |
| 1236 | crtc_funcs->atomic_flush(crtc); |
| 1237 | } |
| 1238 | EXPORT_SYMBOL(drm_atomic_helper_commit_planes_on_crtc); |
| 1239 | |
| 1240 | /** |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1241 | * drm_atomic_helper_cleanup_planes - cleanup plane resources after commit |
| 1242 | * @dev: DRM device |
| 1243 | * @old_state: atomic state object with old state structures |
| 1244 | * |
| 1245 | * This function cleans up plane state, specifically framebuffers, from the old |
| 1246 | * configuration. Hence the old configuration must be perserved in @old_state to |
| 1247 | * be able to call this function. |
| 1248 | * |
| 1249 | * This function must also be called on the new state when the atomic update |
| 1250 | * fails at any point after calling drm_atomic_helper_prepare_planes(). |
| 1251 | */ |
| 1252 | void drm_atomic_helper_cleanup_planes(struct drm_device *dev, |
| 1253 | struct drm_atomic_state *old_state) |
| 1254 | { |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 1255 | struct drm_plane *plane; |
| 1256 | struct drm_plane_state *plane_state; |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1257 | int i; |
| 1258 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 1259 | for_each_plane_in_state(old_state, plane, plane_state, i) { |
Ville Syrjälä | b5ceff20 | 2015-03-10 14:35:20 +0200 | [diff] [blame] | 1260 | const struct drm_plane_helper_funcs *funcs; |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1261 | struct drm_framebuffer *old_fb; |
| 1262 | |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1263 | funcs = plane->helper_private; |
| 1264 | |
Tvrtko Ursulin | d136dfe | 2015-03-03 14:22:31 +0000 | [diff] [blame] | 1265 | old_fb = plane_state->fb; |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1266 | |
| 1267 | if (old_fb && funcs->cleanup_fb) |
Tvrtko Ursulin | d136dfe | 2015-03-03 14:22:31 +0000 | [diff] [blame] | 1268 | funcs->cleanup_fb(plane, old_fb, plane_state); |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1269 | } |
| 1270 | } |
| 1271 | EXPORT_SYMBOL(drm_atomic_helper_cleanup_planes); |
| 1272 | |
| 1273 | /** |
| 1274 | * drm_atomic_helper_swap_state - store atomic state into current sw state |
| 1275 | * @dev: DRM device |
| 1276 | * @state: atomic state |
| 1277 | * |
| 1278 | * This function stores the atomic state into the current state pointers in all |
| 1279 | * driver objects. It should be called after all failing steps have been done |
| 1280 | * and succeeded, but before the actual hardware state is committed. |
| 1281 | * |
| 1282 | * For cleanup and error recovery the current state for all changed objects will |
| 1283 | * be swaped into @state. |
| 1284 | * |
| 1285 | * With that sequence it fits perfectly into the plane prepare/cleanup sequence: |
| 1286 | * |
| 1287 | * 1. Call drm_atomic_helper_prepare_planes() with the staged atomic state. |
| 1288 | * |
| 1289 | * 2. Do any other steps that might fail. |
| 1290 | * |
| 1291 | * 3. Put the staged state into the current state pointers with this function. |
| 1292 | * |
| 1293 | * 4. Actually commit the hardware state. |
| 1294 | * |
| 1295 | * 5. Call drm_atomic_helper_cleanup_planes with @state, which since step 3 |
| 1296 | * contains the old state. Also do any other cleanup required with that state. |
| 1297 | */ |
| 1298 | void drm_atomic_helper_swap_state(struct drm_device *dev, |
| 1299 | struct drm_atomic_state *state) |
| 1300 | { |
| 1301 | int i; |
| 1302 | |
| 1303 | for (i = 0; i < dev->mode_config.num_connector; i++) { |
| 1304 | struct drm_connector *connector = state->connectors[i]; |
| 1305 | |
| 1306 | if (!connector) |
| 1307 | continue; |
| 1308 | |
| 1309 | connector->state->state = state; |
| 1310 | swap(state->connector_states[i], connector->state); |
| 1311 | connector->state->state = NULL; |
| 1312 | } |
| 1313 | |
| 1314 | for (i = 0; i < dev->mode_config.num_crtc; i++) { |
| 1315 | struct drm_crtc *crtc = state->crtcs[i]; |
| 1316 | |
| 1317 | if (!crtc) |
| 1318 | continue; |
| 1319 | |
| 1320 | crtc->state->state = state; |
| 1321 | swap(state->crtc_states[i], crtc->state); |
| 1322 | crtc->state->state = NULL; |
| 1323 | } |
| 1324 | |
| 1325 | for (i = 0; i < dev->mode_config.num_total_plane; i++) { |
| 1326 | struct drm_plane *plane = state->planes[i]; |
| 1327 | |
| 1328 | if (!plane) |
| 1329 | continue; |
| 1330 | |
| 1331 | plane->state->state = state; |
| 1332 | swap(state->plane_states[i], plane->state); |
| 1333 | plane->state->state = NULL; |
| 1334 | } |
| 1335 | } |
| 1336 | EXPORT_SYMBOL(drm_atomic_helper_swap_state); |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1337 | |
| 1338 | /** |
| 1339 | * drm_atomic_helper_update_plane - Helper for primary plane update using atomic |
| 1340 | * @plane: plane object to update |
| 1341 | * @crtc: owning CRTC of owning plane |
| 1342 | * @fb: framebuffer to flip onto plane |
| 1343 | * @crtc_x: x offset of primary plane on crtc |
| 1344 | * @crtc_y: y offset of primary plane on crtc |
| 1345 | * @crtc_w: width of primary plane rectangle on crtc |
| 1346 | * @crtc_h: height of primary plane rectangle on crtc |
| 1347 | * @src_x: x offset of @fb for panning |
| 1348 | * @src_y: y offset of @fb for panning |
| 1349 | * @src_w: width of source rectangle in @fb |
| 1350 | * @src_h: height of source rectangle in @fb |
| 1351 | * |
| 1352 | * Provides a default plane update handler using the atomic driver interface. |
| 1353 | * |
| 1354 | * RETURNS: |
| 1355 | * Zero on success, error code on failure |
| 1356 | */ |
| 1357 | int drm_atomic_helper_update_plane(struct drm_plane *plane, |
| 1358 | struct drm_crtc *crtc, |
| 1359 | struct drm_framebuffer *fb, |
| 1360 | int crtc_x, int crtc_y, |
| 1361 | unsigned int crtc_w, unsigned int crtc_h, |
| 1362 | uint32_t src_x, uint32_t src_y, |
| 1363 | uint32_t src_w, uint32_t src_h) |
| 1364 | { |
| 1365 | struct drm_atomic_state *state; |
| 1366 | struct drm_plane_state *plane_state; |
| 1367 | int ret = 0; |
| 1368 | |
| 1369 | state = drm_atomic_state_alloc(plane->dev); |
| 1370 | if (!state) |
| 1371 | return -ENOMEM; |
| 1372 | |
| 1373 | state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc); |
| 1374 | retry: |
| 1375 | plane_state = drm_atomic_get_plane_state(state, plane); |
| 1376 | if (IS_ERR(plane_state)) { |
| 1377 | ret = PTR_ERR(plane_state); |
| 1378 | goto fail; |
| 1379 | } |
| 1380 | |
Daniel Vetter | 07cc0ef | 2014-11-27 15:49:39 +0100 | [diff] [blame] | 1381 | ret = drm_atomic_set_crtc_for_plane(plane_state, crtc); |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1382 | if (ret != 0) |
| 1383 | goto fail; |
Daniel Vetter | 321ebf0 | 2014-11-04 22:57:27 +0100 | [diff] [blame] | 1384 | drm_atomic_set_fb_for_plane(plane_state, fb); |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1385 | plane_state->crtc_x = crtc_x; |
| 1386 | plane_state->crtc_y = crtc_y; |
| 1387 | plane_state->crtc_h = crtc_h; |
| 1388 | plane_state->crtc_w = crtc_w; |
| 1389 | plane_state->src_x = src_x; |
| 1390 | plane_state->src_y = src_y; |
| 1391 | plane_state->src_h = src_h; |
| 1392 | plane_state->src_w = src_w; |
| 1393 | |
Daniel Vetter | 3671c58 | 2015-05-04 15:40:52 +0200 | [diff] [blame] | 1394 | if (plane == crtc->cursor) |
| 1395 | state->legacy_cursor_update = true; |
| 1396 | |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1397 | ret = drm_atomic_commit(state); |
| 1398 | if (ret != 0) |
| 1399 | goto fail; |
| 1400 | |
| 1401 | /* Driver takes ownership of state on successful commit. */ |
| 1402 | return 0; |
| 1403 | fail: |
| 1404 | if (ret == -EDEADLK) |
| 1405 | goto backoff; |
| 1406 | |
| 1407 | drm_atomic_state_free(state); |
| 1408 | |
| 1409 | return ret; |
| 1410 | backoff: |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1411 | drm_atomic_state_clear(state); |
Daniel Vetter | 6f75cea | 2014-11-19 18:38:07 +0100 | [diff] [blame] | 1412 | drm_atomic_legacy_backoff(state); |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1413 | |
| 1414 | /* |
| 1415 | * Someone might have exchanged the framebuffer while we dropped locks |
| 1416 | * in the backoff code. We need to fix up the fb refcount tracking the |
| 1417 | * core does for us. |
| 1418 | */ |
| 1419 | plane->old_fb = plane->fb; |
| 1420 | |
| 1421 | goto retry; |
| 1422 | } |
| 1423 | EXPORT_SYMBOL(drm_atomic_helper_update_plane); |
| 1424 | |
| 1425 | /** |
| 1426 | * drm_atomic_helper_disable_plane - Helper for primary plane disable using * atomic |
| 1427 | * @plane: plane to disable |
| 1428 | * |
| 1429 | * Provides a default plane disable handler using the atomic driver interface. |
| 1430 | * |
| 1431 | * RETURNS: |
| 1432 | * Zero on success, error code on failure |
| 1433 | */ |
| 1434 | int drm_atomic_helper_disable_plane(struct drm_plane *plane) |
| 1435 | { |
| 1436 | struct drm_atomic_state *state; |
| 1437 | struct drm_plane_state *plane_state; |
| 1438 | int ret = 0; |
| 1439 | |
Jasper St. Pierre | aa54e2e | 2014-11-20 19:59:15 -0800 | [diff] [blame] | 1440 | /* |
| 1441 | * FIXME: Without plane->crtc set we can't get at the implicit legacy |
| 1442 | * acquire context. The real fix will be to wire the acquire ctx through |
| 1443 | * everywhere we need it, but meanwhile prevent chaos by just skipping |
| 1444 | * this noop. The critical case is the cursor ioctls which a) only grab |
| 1445 | * crtc/cursor-plane locks (so we need the crtc to get at the right |
| 1446 | * acquire context) and b) can try to disable the plane multiple times. |
| 1447 | */ |
| 1448 | if (!plane->crtc) |
| 1449 | return 0; |
| 1450 | |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1451 | state = drm_atomic_state_alloc(plane->dev); |
| 1452 | if (!state) |
| 1453 | return -ENOMEM; |
| 1454 | |
| 1455 | state->acquire_ctx = drm_modeset_legacy_acquire_ctx(plane->crtc); |
| 1456 | retry: |
| 1457 | plane_state = drm_atomic_get_plane_state(state, plane); |
| 1458 | if (IS_ERR(plane_state)) { |
| 1459 | ret = PTR_ERR(plane_state); |
| 1460 | goto fail; |
| 1461 | } |
| 1462 | |
Daniel Vetter | 07cc0ef | 2014-11-27 15:49:39 +0100 | [diff] [blame] | 1463 | ret = drm_atomic_set_crtc_for_plane(plane_state, NULL); |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1464 | if (ret != 0) |
| 1465 | goto fail; |
Daniel Vetter | 321ebf0 | 2014-11-04 22:57:27 +0100 | [diff] [blame] | 1466 | drm_atomic_set_fb_for_plane(plane_state, NULL); |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1467 | plane_state->crtc_x = 0; |
| 1468 | plane_state->crtc_y = 0; |
| 1469 | plane_state->crtc_h = 0; |
| 1470 | plane_state->crtc_w = 0; |
| 1471 | plane_state->src_x = 0; |
| 1472 | plane_state->src_y = 0; |
| 1473 | plane_state->src_h = 0; |
| 1474 | plane_state->src_w = 0; |
| 1475 | |
Daniel Vetter | f02ad90 | 2015-01-22 16:36:23 +0100 | [diff] [blame] | 1476 | if (plane == plane->crtc->cursor) |
| 1477 | state->legacy_cursor_update = true; |
| 1478 | |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1479 | ret = drm_atomic_commit(state); |
| 1480 | if (ret != 0) |
| 1481 | goto fail; |
| 1482 | |
| 1483 | /* Driver takes ownership of state on successful commit. */ |
| 1484 | return 0; |
| 1485 | fail: |
| 1486 | if (ret == -EDEADLK) |
| 1487 | goto backoff; |
| 1488 | |
| 1489 | drm_atomic_state_free(state); |
| 1490 | |
| 1491 | return ret; |
| 1492 | backoff: |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1493 | drm_atomic_state_clear(state); |
Daniel Vetter | 6f75cea | 2014-11-19 18:38:07 +0100 | [diff] [blame] | 1494 | drm_atomic_legacy_backoff(state); |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1495 | |
| 1496 | /* |
| 1497 | * Someone might have exchanged the framebuffer while we dropped locks |
| 1498 | * in the backoff code. We need to fix up the fb refcount tracking the |
| 1499 | * core does for us. |
| 1500 | */ |
| 1501 | plane->old_fb = plane->fb; |
| 1502 | |
| 1503 | goto retry; |
| 1504 | } |
| 1505 | EXPORT_SYMBOL(drm_atomic_helper_disable_plane); |
| 1506 | |
| 1507 | static int update_output_state(struct drm_atomic_state *state, |
| 1508 | struct drm_mode_set *set) |
| 1509 | { |
| 1510 | struct drm_device *dev = set->crtc->dev; |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 1511 | struct drm_crtc *crtc; |
| 1512 | struct drm_crtc_state *crtc_state; |
| 1513 | struct drm_connector *connector; |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1514 | struct drm_connector_state *conn_state; |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1515 | int ret, i, j; |
| 1516 | |
| 1517 | ret = drm_modeset_lock(&dev->mode_config.connection_mutex, |
| 1518 | state->acquire_ctx); |
| 1519 | if (ret) |
| 1520 | return ret; |
| 1521 | |
| 1522 | /* First grab all affected connector/crtc states. */ |
| 1523 | for (i = 0; i < set->num_connectors; i++) { |
| 1524 | conn_state = drm_atomic_get_connector_state(state, |
| 1525 | set->connectors[i]); |
| 1526 | if (IS_ERR(conn_state)) |
| 1527 | return PTR_ERR(conn_state); |
| 1528 | } |
| 1529 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 1530 | for_each_crtc_in_state(state, crtc, crtc_state, i) { |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1531 | ret = drm_atomic_add_affected_connectors(state, crtc); |
| 1532 | if (ret) |
| 1533 | return ret; |
| 1534 | } |
| 1535 | |
| 1536 | /* Then recompute connector->crtc links and crtc enabling state. */ |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 1537 | for_each_connector_in_state(state, connector, conn_state, i) { |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1538 | if (conn_state->crtc == set->crtc) { |
| 1539 | ret = drm_atomic_set_crtc_for_connector(conn_state, |
| 1540 | NULL); |
| 1541 | if (ret) |
| 1542 | return ret; |
| 1543 | } |
| 1544 | |
| 1545 | for (j = 0; j < set->num_connectors; j++) { |
| 1546 | if (set->connectors[j] == connector) { |
| 1547 | ret = drm_atomic_set_crtc_for_connector(conn_state, |
| 1548 | set->crtc); |
| 1549 | if (ret) |
| 1550 | return ret; |
| 1551 | break; |
| 1552 | } |
| 1553 | } |
| 1554 | } |
| 1555 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 1556 | for_each_crtc_in_state(state, crtc, crtc_state, i) { |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1557 | /* Don't update ->enable for the CRTC in the set_config request, |
| 1558 | * since a mismatch would indicate a bug in the upper layers. |
| 1559 | * The actual modeset code later on will catch any |
| 1560 | * inconsistencies here. */ |
| 1561 | if (crtc == set->crtc) |
| 1562 | continue; |
| 1563 | |
| 1564 | crtc_state->enable = |
| 1565 | drm_atomic_connectors_for_crtc(state, crtc); |
| 1566 | } |
| 1567 | |
| 1568 | return 0; |
| 1569 | } |
| 1570 | |
| 1571 | /** |
| 1572 | * drm_atomic_helper_set_config - set a new config from userspace |
| 1573 | * @set: mode set configuration |
| 1574 | * |
| 1575 | * Provides a default crtc set_config handler using the atomic driver interface. |
| 1576 | * |
| 1577 | * Returns: |
| 1578 | * Returns 0 on success, negative errno numbers on failure. |
| 1579 | */ |
| 1580 | int drm_atomic_helper_set_config(struct drm_mode_set *set) |
| 1581 | { |
| 1582 | struct drm_atomic_state *state; |
| 1583 | struct drm_crtc *crtc = set->crtc; |
| 1584 | struct drm_crtc_state *crtc_state; |
| 1585 | struct drm_plane_state *primary_state; |
| 1586 | int ret = 0; |
| 1587 | |
| 1588 | state = drm_atomic_state_alloc(crtc->dev); |
| 1589 | if (!state) |
| 1590 | return -ENOMEM; |
| 1591 | |
| 1592 | state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc); |
| 1593 | retry: |
| 1594 | crtc_state = drm_atomic_get_crtc_state(state, crtc); |
| 1595 | if (IS_ERR(crtc_state)) { |
| 1596 | ret = PTR_ERR(crtc_state); |
| 1597 | goto fail; |
| 1598 | } |
| 1599 | |
Rob Clark | e5b5341 | 2014-11-26 18:58:04 -0500 | [diff] [blame] | 1600 | primary_state = drm_atomic_get_plane_state(state, crtc->primary); |
| 1601 | if (IS_ERR(primary_state)) { |
| 1602 | ret = PTR_ERR(primary_state); |
| 1603 | goto fail; |
| 1604 | } |
| 1605 | |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1606 | if (!set->mode) { |
| 1607 | WARN_ON(set->fb); |
| 1608 | WARN_ON(set->num_connectors); |
| 1609 | |
| 1610 | crtc_state->enable = false; |
Daniel Vetter | eab3bbe | 2015-01-22 16:36:21 +0100 | [diff] [blame] | 1611 | crtc_state->active = false; |
Rob Clark | e5b5341 | 2014-11-26 18:58:04 -0500 | [diff] [blame] | 1612 | |
Daniel Vetter | 07cc0ef | 2014-11-27 15:49:39 +0100 | [diff] [blame] | 1613 | ret = drm_atomic_set_crtc_for_plane(primary_state, NULL); |
Rob Clark | e5b5341 | 2014-11-26 18:58:04 -0500 | [diff] [blame] | 1614 | if (ret != 0) |
| 1615 | goto fail; |
| 1616 | |
| 1617 | drm_atomic_set_fb_for_plane(primary_state, NULL); |
| 1618 | |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1619 | goto commit; |
| 1620 | } |
| 1621 | |
| 1622 | WARN_ON(!set->fb); |
| 1623 | WARN_ON(!set->num_connectors); |
| 1624 | |
| 1625 | crtc_state->enable = true; |
Daniel Vetter | eab3bbe | 2015-01-22 16:36:21 +0100 | [diff] [blame] | 1626 | crtc_state->active = true; |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1627 | drm_mode_copy(&crtc_state->mode, set->mode); |
| 1628 | |
Daniel Vetter | 07cc0ef | 2014-11-27 15:49:39 +0100 | [diff] [blame] | 1629 | ret = drm_atomic_set_crtc_for_plane(primary_state, crtc); |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1630 | if (ret != 0) |
| 1631 | goto fail; |
Daniel Vetter | 321ebf0 | 2014-11-04 22:57:27 +0100 | [diff] [blame] | 1632 | drm_atomic_set_fb_for_plane(primary_state, set->fb); |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1633 | primary_state->crtc_x = 0; |
| 1634 | primary_state->crtc_y = 0; |
| 1635 | primary_state->crtc_h = set->mode->vdisplay; |
| 1636 | primary_state->crtc_w = set->mode->hdisplay; |
| 1637 | primary_state->src_x = set->x << 16; |
| 1638 | primary_state->src_y = set->y << 16; |
| 1639 | primary_state->src_h = set->mode->vdisplay << 16; |
| 1640 | primary_state->src_w = set->mode->hdisplay << 16; |
| 1641 | |
| 1642 | commit: |
| 1643 | ret = update_output_state(state, set); |
| 1644 | if (ret) |
| 1645 | goto fail; |
| 1646 | |
| 1647 | ret = drm_atomic_commit(state); |
| 1648 | if (ret != 0) |
| 1649 | goto fail; |
| 1650 | |
| 1651 | /* Driver takes ownership of state on successful commit. */ |
| 1652 | return 0; |
| 1653 | fail: |
| 1654 | if (ret == -EDEADLK) |
| 1655 | goto backoff; |
| 1656 | |
| 1657 | drm_atomic_state_free(state); |
| 1658 | |
| 1659 | return ret; |
| 1660 | backoff: |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1661 | drm_atomic_state_clear(state); |
Daniel Vetter | 6f75cea | 2014-11-19 18:38:07 +0100 | [diff] [blame] | 1662 | drm_atomic_legacy_backoff(state); |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1663 | |
| 1664 | /* |
| 1665 | * Someone might have exchanged the framebuffer while we dropped locks |
| 1666 | * in the backoff code. We need to fix up the fb refcount tracking the |
| 1667 | * core does for us. |
| 1668 | */ |
| 1669 | crtc->primary->old_fb = crtc->primary->fb; |
| 1670 | |
| 1671 | goto retry; |
| 1672 | } |
| 1673 | EXPORT_SYMBOL(drm_atomic_helper_set_config); |
| 1674 | |
| 1675 | /** |
Laurent Pinchart | 7f50002 | 2015-02-23 02:50:23 +0200 | [diff] [blame] | 1676 | * drm_atomic_helper_crtc_set_property - helper for crtc properties |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1677 | * @crtc: DRM crtc |
| 1678 | * @property: DRM property |
| 1679 | * @val: value of property |
| 1680 | * |
Laurent Pinchart | 7f50002 | 2015-02-23 02:50:23 +0200 | [diff] [blame] | 1681 | * Provides a default crtc set_property handler using the atomic driver |
| 1682 | * interface. |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1683 | * |
| 1684 | * RETURNS: |
| 1685 | * Zero on success, error code on failure |
| 1686 | */ |
| 1687 | int |
| 1688 | drm_atomic_helper_crtc_set_property(struct drm_crtc *crtc, |
| 1689 | struct drm_property *property, |
| 1690 | uint64_t val) |
| 1691 | { |
| 1692 | struct drm_atomic_state *state; |
| 1693 | struct drm_crtc_state *crtc_state; |
| 1694 | int ret = 0; |
| 1695 | |
| 1696 | state = drm_atomic_state_alloc(crtc->dev); |
| 1697 | if (!state) |
| 1698 | return -ENOMEM; |
| 1699 | |
| 1700 | /* ->set_property is always called with all locks held. */ |
| 1701 | state->acquire_ctx = crtc->dev->mode_config.acquire_ctx; |
| 1702 | retry: |
| 1703 | crtc_state = drm_atomic_get_crtc_state(state, crtc); |
| 1704 | if (IS_ERR(crtc_state)) { |
| 1705 | ret = PTR_ERR(crtc_state); |
| 1706 | goto fail; |
| 1707 | } |
| 1708 | |
Rob Clark | 40ecc69 | 2014-12-18 16:01:46 -0500 | [diff] [blame] | 1709 | ret = drm_atomic_crtc_set_property(crtc, crtc_state, |
| 1710 | property, val); |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1711 | if (ret) |
| 1712 | goto fail; |
| 1713 | |
| 1714 | ret = drm_atomic_commit(state); |
| 1715 | if (ret != 0) |
| 1716 | goto fail; |
| 1717 | |
| 1718 | /* Driver takes ownership of state on successful commit. */ |
| 1719 | return 0; |
| 1720 | fail: |
| 1721 | if (ret == -EDEADLK) |
| 1722 | goto backoff; |
| 1723 | |
| 1724 | drm_atomic_state_free(state); |
| 1725 | |
| 1726 | return ret; |
| 1727 | backoff: |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1728 | drm_atomic_state_clear(state); |
Daniel Vetter | 6f75cea | 2014-11-19 18:38:07 +0100 | [diff] [blame] | 1729 | drm_atomic_legacy_backoff(state); |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1730 | |
| 1731 | goto retry; |
| 1732 | } |
| 1733 | EXPORT_SYMBOL(drm_atomic_helper_crtc_set_property); |
| 1734 | |
| 1735 | /** |
Laurent Pinchart | 7f50002 | 2015-02-23 02:50:23 +0200 | [diff] [blame] | 1736 | * drm_atomic_helper_plane_set_property - helper for plane properties |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1737 | * @plane: DRM plane |
| 1738 | * @property: DRM property |
| 1739 | * @val: value of property |
| 1740 | * |
Laurent Pinchart | 7f50002 | 2015-02-23 02:50:23 +0200 | [diff] [blame] | 1741 | * Provides a default plane set_property handler using the atomic driver |
| 1742 | * interface. |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1743 | * |
| 1744 | * RETURNS: |
| 1745 | * Zero on success, error code on failure |
| 1746 | */ |
| 1747 | int |
| 1748 | drm_atomic_helper_plane_set_property(struct drm_plane *plane, |
| 1749 | struct drm_property *property, |
| 1750 | uint64_t val) |
| 1751 | { |
| 1752 | struct drm_atomic_state *state; |
| 1753 | struct drm_plane_state *plane_state; |
| 1754 | int ret = 0; |
| 1755 | |
| 1756 | state = drm_atomic_state_alloc(plane->dev); |
| 1757 | if (!state) |
| 1758 | return -ENOMEM; |
| 1759 | |
| 1760 | /* ->set_property is always called with all locks held. */ |
| 1761 | state->acquire_ctx = plane->dev->mode_config.acquire_ctx; |
| 1762 | retry: |
| 1763 | plane_state = drm_atomic_get_plane_state(state, plane); |
| 1764 | if (IS_ERR(plane_state)) { |
| 1765 | ret = PTR_ERR(plane_state); |
| 1766 | goto fail; |
| 1767 | } |
| 1768 | |
Rob Clark | 40ecc69 | 2014-12-18 16:01:46 -0500 | [diff] [blame] | 1769 | ret = drm_atomic_plane_set_property(plane, plane_state, |
| 1770 | property, val); |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1771 | if (ret) |
| 1772 | goto fail; |
| 1773 | |
| 1774 | ret = drm_atomic_commit(state); |
| 1775 | if (ret != 0) |
| 1776 | goto fail; |
| 1777 | |
| 1778 | /* Driver takes ownership of state on successful commit. */ |
| 1779 | return 0; |
| 1780 | fail: |
| 1781 | if (ret == -EDEADLK) |
| 1782 | goto backoff; |
| 1783 | |
| 1784 | drm_atomic_state_free(state); |
| 1785 | |
| 1786 | return ret; |
| 1787 | backoff: |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1788 | drm_atomic_state_clear(state); |
Daniel Vetter | 6f75cea | 2014-11-19 18:38:07 +0100 | [diff] [blame] | 1789 | drm_atomic_legacy_backoff(state); |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1790 | |
| 1791 | goto retry; |
| 1792 | } |
| 1793 | EXPORT_SYMBOL(drm_atomic_helper_plane_set_property); |
| 1794 | |
| 1795 | /** |
Laurent Pinchart | 7f50002 | 2015-02-23 02:50:23 +0200 | [diff] [blame] | 1796 | * drm_atomic_helper_connector_set_property - helper for connector properties |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1797 | * @connector: DRM connector |
| 1798 | * @property: DRM property |
| 1799 | * @val: value of property |
| 1800 | * |
Laurent Pinchart | 7f50002 | 2015-02-23 02:50:23 +0200 | [diff] [blame] | 1801 | * Provides a default connector set_property handler using the atomic driver |
| 1802 | * interface. |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1803 | * |
| 1804 | * RETURNS: |
| 1805 | * Zero on success, error code on failure |
| 1806 | */ |
| 1807 | int |
| 1808 | drm_atomic_helper_connector_set_property(struct drm_connector *connector, |
| 1809 | struct drm_property *property, |
| 1810 | uint64_t val) |
| 1811 | { |
| 1812 | struct drm_atomic_state *state; |
| 1813 | struct drm_connector_state *connector_state; |
| 1814 | int ret = 0; |
| 1815 | |
| 1816 | state = drm_atomic_state_alloc(connector->dev); |
| 1817 | if (!state) |
| 1818 | return -ENOMEM; |
| 1819 | |
| 1820 | /* ->set_property is always called with all locks held. */ |
| 1821 | state->acquire_ctx = connector->dev->mode_config.acquire_ctx; |
| 1822 | retry: |
| 1823 | connector_state = drm_atomic_get_connector_state(state, connector); |
| 1824 | if (IS_ERR(connector_state)) { |
| 1825 | ret = PTR_ERR(connector_state); |
| 1826 | goto fail; |
| 1827 | } |
| 1828 | |
Rob Clark | 40ecc69 | 2014-12-18 16:01:46 -0500 | [diff] [blame] | 1829 | ret = drm_atomic_connector_set_property(connector, connector_state, |
| 1830 | property, val); |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1831 | if (ret) |
| 1832 | goto fail; |
| 1833 | |
| 1834 | ret = drm_atomic_commit(state); |
| 1835 | if (ret != 0) |
| 1836 | goto fail; |
| 1837 | |
| 1838 | /* Driver takes ownership of state on successful commit. */ |
| 1839 | return 0; |
| 1840 | fail: |
| 1841 | if (ret == -EDEADLK) |
| 1842 | goto backoff; |
| 1843 | |
| 1844 | drm_atomic_state_free(state); |
| 1845 | |
| 1846 | return ret; |
| 1847 | backoff: |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1848 | drm_atomic_state_clear(state); |
Daniel Vetter | 6f75cea | 2014-11-19 18:38:07 +0100 | [diff] [blame] | 1849 | drm_atomic_legacy_backoff(state); |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1850 | |
| 1851 | goto retry; |
| 1852 | } |
| 1853 | EXPORT_SYMBOL(drm_atomic_helper_connector_set_property); |
Daniel Vetter | 8bc0f31 | 2014-07-27 18:42:37 +0200 | [diff] [blame] | 1854 | |
| 1855 | /** |
| 1856 | * drm_atomic_helper_page_flip - execute a legacy page flip |
| 1857 | * @crtc: DRM crtc |
| 1858 | * @fb: DRM framebuffer |
| 1859 | * @event: optional DRM event to signal upon completion |
| 1860 | * @flags: flip flags for non-vblank sync'ed updates |
| 1861 | * |
| 1862 | * Provides a default page flip implementation using the atomic driver interface. |
| 1863 | * |
| 1864 | * Note that for now so called async page flips (i.e. updates which are not |
| 1865 | * synchronized to vblank) are not supported, since the atomic interfaces have |
| 1866 | * no provisions for this yet. |
| 1867 | * |
| 1868 | * Returns: |
| 1869 | * Returns 0 on success, negative errno numbers on failure. |
| 1870 | */ |
| 1871 | int drm_atomic_helper_page_flip(struct drm_crtc *crtc, |
| 1872 | struct drm_framebuffer *fb, |
| 1873 | struct drm_pending_vblank_event *event, |
| 1874 | uint32_t flags) |
| 1875 | { |
| 1876 | struct drm_plane *plane = crtc->primary; |
| 1877 | struct drm_atomic_state *state; |
| 1878 | struct drm_plane_state *plane_state; |
| 1879 | struct drm_crtc_state *crtc_state; |
| 1880 | int ret = 0; |
| 1881 | |
| 1882 | if (flags & DRM_MODE_PAGE_FLIP_ASYNC) |
| 1883 | return -EINVAL; |
| 1884 | |
| 1885 | state = drm_atomic_state_alloc(plane->dev); |
| 1886 | if (!state) |
| 1887 | return -ENOMEM; |
| 1888 | |
| 1889 | state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc); |
| 1890 | retry: |
| 1891 | crtc_state = drm_atomic_get_crtc_state(state, crtc); |
| 1892 | if (IS_ERR(crtc_state)) { |
| 1893 | ret = PTR_ERR(crtc_state); |
| 1894 | goto fail; |
| 1895 | } |
| 1896 | crtc_state->event = event; |
| 1897 | |
| 1898 | plane_state = drm_atomic_get_plane_state(state, plane); |
| 1899 | if (IS_ERR(plane_state)) { |
| 1900 | ret = PTR_ERR(plane_state); |
| 1901 | goto fail; |
| 1902 | } |
| 1903 | |
Daniel Vetter | 07cc0ef | 2014-11-27 15:49:39 +0100 | [diff] [blame] | 1904 | ret = drm_atomic_set_crtc_for_plane(plane_state, crtc); |
Daniel Vetter | 8bc0f31 | 2014-07-27 18:42:37 +0200 | [diff] [blame] | 1905 | if (ret != 0) |
| 1906 | goto fail; |
Daniel Vetter | 321ebf0 | 2014-11-04 22:57:27 +0100 | [diff] [blame] | 1907 | drm_atomic_set_fb_for_plane(plane_state, fb); |
Daniel Vetter | 8bc0f31 | 2014-07-27 18:42:37 +0200 | [diff] [blame] | 1908 | |
| 1909 | ret = drm_atomic_async_commit(state); |
| 1910 | if (ret != 0) |
| 1911 | goto fail; |
| 1912 | |
| 1913 | /* TODO: ->page_flip is the only driver callback where the core |
| 1914 | * doesn't update plane->fb. For now patch it up here. */ |
| 1915 | plane->fb = plane->state->fb; |
| 1916 | |
| 1917 | /* Driver takes ownership of state on successful async commit. */ |
| 1918 | return 0; |
| 1919 | fail: |
| 1920 | if (ret == -EDEADLK) |
| 1921 | goto backoff; |
| 1922 | |
| 1923 | drm_atomic_state_free(state); |
| 1924 | |
| 1925 | return ret; |
| 1926 | backoff: |
Daniel Vetter | 8bc0f31 | 2014-07-27 18:42:37 +0200 | [diff] [blame] | 1927 | drm_atomic_state_clear(state); |
Daniel Vetter | 6f75cea | 2014-11-19 18:38:07 +0100 | [diff] [blame] | 1928 | drm_atomic_legacy_backoff(state); |
Daniel Vetter | 8bc0f31 | 2014-07-27 18:42:37 +0200 | [diff] [blame] | 1929 | |
| 1930 | /* |
| 1931 | * Someone might have exchanged the framebuffer while we dropped locks |
| 1932 | * in the backoff code. We need to fix up the fb refcount tracking the |
| 1933 | * core does for us. |
| 1934 | */ |
| 1935 | plane->old_fb = plane->fb; |
| 1936 | |
| 1937 | goto retry; |
| 1938 | } |
| 1939 | EXPORT_SYMBOL(drm_atomic_helper_page_flip); |
Daniel Vetter | d461701 | 2014-11-03 15:56:43 +0100 | [diff] [blame] | 1940 | |
| 1941 | /** |
Daniel Vetter | b486e0e | 2015-01-22 18:53:05 +0100 | [diff] [blame] | 1942 | * drm_atomic_helper_connector_dpms() - connector dpms helper implementation |
| 1943 | * @connector: affected connector |
| 1944 | * @mode: DPMS mode |
| 1945 | * |
| 1946 | * This is the main helper function provided by the atomic helper framework for |
| 1947 | * implementing the legacy DPMS connector interface. It computes the new desired |
| 1948 | * ->active state for the corresponding CRTC (if the connector is enabled) and |
| 1949 | * updates it. |
| 1950 | */ |
| 1951 | void drm_atomic_helper_connector_dpms(struct drm_connector *connector, |
| 1952 | int mode) |
| 1953 | { |
| 1954 | struct drm_mode_config *config = &connector->dev->mode_config; |
| 1955 | struct drm_atomic_state *state; |
| 1956 | struct drm_crtc_state *crtc_state; |
| 1957 | struct drm_crtc *crtc; |
| 1958 | struct drm_connector *tmp_connector; |
| 1959 | int ret; |
| 1960 | bool active = false; |
| 1961 | |
| 1962 | if (mode != DRM_MODE_DPMS_ON) |
| 1963 | mode = DRM_MODE_DPMS_OFF; |
| 1964 | |
| 1965 | connector->dpms = mode; |
| 1966 | crtc = connector->state->crtc; |
| 1967 | |
| 1968 | if (!crtc) |
| 1969 | return; |
| 1970 | |
| 1971 | /* FIXME: ->dpms has no return value so can't forward the -ENOMEM. */ |
| 1972 | state = drm_atomic_state_alloc(connector->dev); |
| 1973 | if (!state) |
| 1974 | return; |
| 1975 | |
| 1976 | state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc); |
| 1977 | retry: |
| 1978 | crtc_state = drm_atomic_get_crtc_state(state, crtc); |
| 1979 | if (IS_ERR(crtc_state)) |
| 1980 | return; |
| 1981 | |
| 1982 | WARN_ON(!drm_modeset_is_locked(&config->connection_mutex)); |
| 1983 | |
| 1984 | list_for_each_entry(tmp_connector, &config->connector_list, head) { |
John Hunter | 0388df0 | 2015-03-17 15:30:28 +0800 | [diff] [blame] | 1985 | if (tmp_connector->state->crtc != crtc) |
Daniel Vetter | b486e0e | 2015-01-22 18:53:05 +0100 | [diff] [blame] | 1986 | continue; |
| 1987 | |
John Hunter | 0388df0 | 2015-03-17 15:30:28 +0800 | [diff] [blame] | 1988 | if (tmp_connector->dpms == DRM_MODE_DPMS_ON) { |
Daniel Vetter | b486e0e | 2015-01-22 18:53:05 +0100 | [diff] [blame] | 1989 | active = true; |
| 1990 | break; |
| 1991 | } |
| 1992 | } |
| 1993 | crtc_state->active = active; |
| 1994 | |
| 1995 | ret = drm_atomic_commit(state); |
| 1996 | if (ret != 0) |
| 1997 | goto fail; |
| 1998 | |
| 1999 | /* Driver takes ownership of state on successful async commit. */ |
| 2000 | return; |
| 2001 | fail: |
| 2002 | if (ret == -EDEADLK) |
| 2003 | goto backoff; |
| 2004 | |
| 2005 | drm_atomic_state_free(state); |
| 2006 | |
| 2007 | WARN(1, "Driver bug: Changing ->active failed with ret=%i\n", ret); |
| 2008 | |
| 2009 | return; |
| 2010 | backoff: |
| 2011 | drm_atomic_state_clear(state); |
| 2012 | drm_atomic_legacy_backoff(state); |
| 2013 | |
| 2014 | goto retry; |
| 2015 | } |
| 2016 | EXPORT_SYMBOL(drm_atomic_helper_connector_dpms); |
| 2017 | |
| 2018 | /** |
Daniel Vetter | 3150c7d | 2014-11-06 20:53:29 +0100 | [diff] [blame] | 2019 | * DOC: atomic state reset and initialization |
| 2020 | * |
| 2021 | * Both the drm core and the atomic helpers assume that there is always the full |
| 2022 | * and correct atomic software state for all connectors, CRTCs and planes |
| 2023 | * available. Which is a bit a problem on driver load and also after system |
| 2024 | * suspend. One way to solve this is to have a hardware state read-out |
| 2025 | * infrastructure which reconstructs the full software state (e.g. the i915 |
| 2026 | * driver). |
| 2027 | * |
| 2028 | * The simpler solution is to just reset the software state to everything off, |
| 2029 | * which is easiest to do by calling drm_mode_config_reset(). To facilitate this |
| 2030 | * the atomic helpers provide default reset implementations for all hooks. |
| 2031 | */ |
| 2032 | |
| 2033 | /** |
Daniel Vetter | d461701 | 2014-11-03 15:56:43 +0100 | [diff] [blame] | 2034 | * drm_atomic_helper_crtc_reset - default ->reset hook for CRTCs |
| 2035 | * @crtc: drm CRTC |
| 2036 | * |
| 2037 | * Resets the atomic state for @crtc by freeing the state pointer (which might |
| 2038 | * be NULL, e.g. at driver load time) and allocating a new empty state object. |
| 2039 | */ |
| 2040 | void drm_atomic_helper_crtc_reset(struct drm_crtc *crtc) |
| 2041 | { |
| 2042 | kfree(crtc->state); |
| 2043 | crtc->state = kzalloc(sizeof(*crtc->state), GFP_KERNEL); |
Daniel Vetter | 07cc0ef | 2014-11-27 15:49:39 +0100 | [diff] [blame] | 2044 | |
| 2045 | if (crtc->state) |
| 2046 | crtc->state->crtc = crtc; |
Daniel Vetter | d461701 | 2014-11-03 15:56:43 +0100 | [diff] [blame] | 2047 | } |
| 2048 | EXPORT_SYMBOL(drm_atomic_helper_crtc_reset); |
| 2049 | |
| 2050 | /** |
Thierry Reding | f5e7840 | 2015-01-28 14:54:32 +0100 | [diff] [blame] | 2051 | * __drm_atomic_helper_crtc_duplicate_state - copy atomic CRTC state |
| 2052 | * @crtc: CRTC object |
| 2053 | * @state: atomic CRTC state |
| 2054 | * |
| 2055 | * Copies atomic state from a CRTC's current state and resets inferred values. |
| 2056 | * This is useful for drivers that subclass the CRTC state. |
| 2057 | */ |
| 2058 | void __drm_atomic_helper_crtc_duplicate_state(struct drm_crtc *crtc, |
| 2059 | struct drm_crtc_state *state) |
| 2060 | { |
| 2061 | memcpy(state, crtc->state, sizeof(*state)); |
| 2062 | |
| 2063 | state->mode_changed = false; |
| 2064 | state->active_changed = false; |
| 2065 | state->planes_changed = false; |
| 2066 | state->event = NULL; |
| 2067 | } |
| 2068 | EXPORT_SYMBOL(__drm_atomic_helper_crtc_duplicate_state); |
| 2069 | |
| 2070 | /** |
Daniel Vetter | d461701 | 2014-11-03 15:56:43 +0100 | [diff] [blame] | 2071 | * drm_atomic_helper_crtc_duplicate_state - default state duplicate hook |
| 2072 | * @crtc: drm CRTC |
| 2073 | * |
| 2074 | * Default CRTC state duplicate hook for drivers which don't have their own |
| 2075 | * subclassed CRTC state structure. |
| 2076 | */ |
| 2077 | struct drm_crtc_state * |
| 2078 | drm_atomic_helper_crtc_duplicate_state(struct drm_crtc *crtc) |
| 2079 | { |
| 2080 | struct drm_crtc_state *state; |
| 2081 | |
| 2082 | if (WARN_ON(!crtc->state)) |
| 2083 | return NULL; |
| 2084 | |
Thierry Reding | f5e7840 | 2015-01-28 14:54:32 +0100 | [diff] [blame] | 2085 | state = kmalloc(sizeof(*state), GFP_KERNEL); |
| 2086 | if (state) |
| 2087 | __drm_atomic_helper_crtc_duplicate_state(crtc, state); |
Daniel Vetter | d461701 | 2014-11-03 15:56:43 +0100 | [diff] [blame] | 2088 | |
| 2089 | return state; |
| 2090 | } |
| 2091 | EXPORT_SYMBOL(drm_atomic_helper_crtc_duplicate_state); |
| 2092 | |
| 2093 | /** |
Thierry Reding | f5e7840 | 2015-01-28 14:54:32 +0100 | [diff] [blame] | 2094 | * __drm_atomic_helper_crtc_destroy_state - release CRTC state |
| 2095 | * @crtc: CRTC object |
| 2096 | * @state: CRTC state object to release |
| 2097 | * |
| 2098 | * Releases all resources stored in the CRTC state without actually freeing |
| 2099 | * the memory of the CRTC state. This is useful for drivers that subclass the |
| 2100 | * CRTC state. |
| 2101 | */ |
| 2102 | void __drm_atomic_helper_crtc_destroy_state(struct drm_crtc *crtc, |
| 2103 | struct drm_crtc_state *state) |
| 2104 | { |
| 2105 | /* |
| 2106 | * This is currently a placeholder so that drivers that subclass the |
| 2107 | * state will automatically do the right thing if code is ever added |
| 2108 | * to this function. |
| 2109 | */ |
| 2110 | } |
| 2111 | EXPORT_SYMBOL(__drm_atomic_helper_crtc_destroy_state); |
| 2112 | |
| 2113 | /** |
Daniel Vetter | d461701 | 2014-11-03 15:56:43 +0100 | [diff] [blame] | 2114 | * drm_atomic_helper_crtc_destroy_state - default state destroy hook |
| 2115 | * @crtc: drm CRTC |
| 2116 | * @state: CRTC state object to release |
| 2117 | * |
| 2118 | * Default CRTC state destroy hook for drivers which don't have their own |
| 2119 | * subclassed CRTC state structure. |
| 2120 | */ |
| 2121 | void drm_atomic_helper_crtc_destroy_state(struct drm_crtc *crtc, |
| 2122 | struct drm_crtc_state *state) |
| 2123 | { |
Thierry Reding | f5e7840 | 2015-01-28 14:54:32 +0100 | [diff] [blame] | 2124 | __drm_atomic_helper_crtc_destroy_state(crtc, state); |
Daniel Vetter | d461701 | 2014-11-03 15:56:43 +0100 | [diff] [blame] | 2125 | kfree(state); |
| 2126 | } |
| 2127 | EXPORT_SYMBOL(drm_atomic_helper_crtc_destroy_state); |
| 2128 | |
| 2129 | /** |
| 2130 | * drm_atomic_helper_plane_reset - default ->reset hook for planes |
| 2131 | * @plane: drm plane |
| 2132 | * |
| 2133 | * Resets the atomic state for @plane by freeing the state pointer (which might |
| 2134 | * be NULL, e.g. at driver load time) and allocating a new empty state object. |
| 2135 | */ |
| 2136 | void drm_atomic_helper_plane_reset(struct drm_plane *plane) |
| 2137 | { |
Daniel Vetter | 321ebf0 | 2014-11-04 22:57:27 +0100 | [diff] [blame] | 2138 | if (plane->state && plane->state->fb) |
| 2139 | drm_framebuffer_unreference(plane->state->fb); |
| 2140 | |
Daniel Vetter | d461701 | 2014-11-03 15:56:43 +0100 | [diff] [blame] | 2141 | kfree(plane->state); |
| 2142 | plane->state = kzalloc(sizeof(*plane->state), GFP_KERNEL); |
Daniel Vetter | 07cc0ef | 2014-11-27 15:49:39 +0100 | [diff] [blame] | 2143 | |
| 2144 | if (plane->state) |
| 2145 | plane->state->plane = plane; |
Daniel Vetter | d461701 | 2014-11-03 15:56:43 +0100 | [diff] [blame] | 2146 | } |
| 2147 | EXPORT_SYMBOL(drm_atomic_helper_plane_reset); |
| 2148 | |
| 2149 | /** |
Thierry Reding | f5e7840 | 2015-01-28 14:54:32 +0100 | [diff] [blame] | 2150 | * __drm_atomic_helper_plane_duplicate_state - copy atomic plane state |
| 2151 | * @plane: plane object |
| 2152 | * @state: atomic plane state |
| 2153 | * |
| 2154 | * Copies atomic state from a plane's current state. This is useful for |
| 2155 | * drivers that subclass the plane state. |
| 2156 | */ |
| 2157 | void __drm_atomic_helper_plane_duplicate_state(struct drm_plane *plane, |
| 2158 | struct drm_plane_state *state) |
| 2159 | { |
| 2160 | memcpy(state, plane->state, sizeof(*state)); |
| 2161 | |
| 2162 | if (state->fb) |
| 2163 | drm_framebuffer_reference(state->fb); |
| 2164 | } |
| 2165 | EXPORT_SYMBOL(__drm_atomic_helper_plane_duplicate_state); |
| 2166 | |
| 2167 | /** |
Daniel Vetter | d461701 | 2014-11-03 15:56:43 +0100 | [diff] [blame] | 2168 | * drm_atomic_helper_plane_duplicate_state - default state duplicate hook |
| 2169 | * @plane: drm plane |
| 2170 | * |
| 2171 | * Default plane state duplicate hook for drivers which don't have their own |
| 2172 | * subclassed plane state structure. |
| 2173 | */ |
| 2174 | struct drm_plane_state * |
| 2175 | drm_atomic_helper_plane_duplicate_state(struct drm_plane *plane) |
| 2176 | { |
Daniel Vetter | 321ebf0 | 2014-11-04 22:57:27 +0100 | [diff] [blame] | 2177 | struct drm_plane_state *state; |
| 2178 | |
Daniel Vetter | d461701 | 2014-11-03 15:56:43 +0100 | [diff] [blame] | 2179 | if (WARN_ON(!plane->state)) |
| 2180 | return NULL; |
| 2181 | |
Thierry Reding | f5e7840 | 2015-01-28 14:54:32 +0100 | [diff] [blame] | 2182 | state = kmalloc(sizeof(*state), GFP_KERNEL); |
| 2183 | if (state) |
| 2184 | __drm_atomic_helper_plane_duplicate_state(plane, state); |
Daniel Vetter | 321ebf0 | 2014-11-04 22:57:27 +0100 | [diff] [blame] | 2185 | |
| 2186 | return state; |
Daniel Vetter | d461701 | 2014-11-03 15:56:43 +0100 | [diff] [blame] | 2187 | } |
| 2188 | EXPORT_SYMBOL(drm_atomic_helper_plane_duplicate_state); |
| 2189 | |
| 2190 | /** |
Thierry Reding | f5e7840 | 2015-01-28 14:54:32 +0100 | [diff] [blame] | 2191 | * __drm_atomic_helper_plane_destroy_state - release plane state |
| 2192 | * @plane: plane object |
| 2193 | * @state: plane state object to release |
| 2194 | * |
| 2195 | * Releases all resources stored in the plane state without actually freeing |
| 2196 | * the memory of the plane state. This is useful for drivers that subclass the |
| 2197 | * plane state. |
| 2198 | */ |
| 2199 | void __drm_atomic_helper_plane_destroy_state(struct drm_plane *plane, |
| 2200 | struct drm_plane_state *state) |
| 2201 | { |
| 2202 | if (state->fb) |
| 2203 | drm_framebuffer_unreference(state->fb); |
| 2204 | } |
| 2205 | EXPORT_SYMBOL(__drm_atomic_helper_plane_destroy_state); |
| 2206 | |
| 2207 | /** |
Daniel Vetter | d461701 | 2014-11-03 15:56:43 +0100 | [diff] [blame] | 2208 | * drm_atomic_helper_plane_destroy_state - default state destroy hook |
| 2209 | * @plane: drm plane |
| 2210 | * @state: plane state object to release |
| 2211 | * |
| 2212 | * Default plane state destroy hook for drivers which don't have their own |
| 2213 | * subclassed plane state structure. |
| 2214 | */ |
| 2215 | void drm_atomic_helper_plane_destroy_state(struct drm_plane *plane, |
Daniel Vetter | 321ebf0 | 2014-11-04 22:57:27 +0100 | [diff] [blame] | 2216 | struct drm_plane_state *state) |
Daniel Vetter | d461701 | 2014-11-03 15:56:43 +0100 | [diff] [blame] | 2217 | { |
Thierry Reding | f5e7840 | 2015-01-28 14:54:32 +0100 | [diff] [blame] | 2218 | __drm_atomic_helper_plane_destroy_state(plane, state); |
Daniel Vetter | d461701 | 2014-11-03 15:56:43 +0100 | [diff] [blame] | 2219 | kfree(state); |
| 2220 | } |
| 2221 | EXPORT_SYMBOL(drm_atomic_helper_plane_destroy_state); |
| 2222 | |
| 2223 | /** |
| 2224 | * drm_atomic_helper_connector_reset - default ->reset hook for connectors |
| 2225 | * @connector: drm connector |
| 2226 | * |
| 2227 | * Resets the atomic state for @connector by freeing the state pointer (which |
| 2228 | * might be NULL, e.g. at driver load time) and allocating a new empty state |
| 2229 | * object. |
| 2230 | */ |
| 2231 | void drm_atomic_helper_connector_reset(struct drm_connector *connector) |
| 2232 | { |
| 2233 | kfree(connector->state); |
| 2234 | connector->state = kzalloc(sizeof(*connector->state), GFP_KERNEL); |
Daniel Vetter | 07cc0ef | 2014-11-27 15:49:39 +0100 | [diff] [blame] | 2235 | |
| 2236 | if (connector->state) |
| 2237 | connector->state->connector = connector; |
Daniel Vetter | d461701 | 2014-11-03 15:56:43 +0100 | [diff] [blame] | 2238 | } |
| 2239 | EXPORT_SYMBOL(drm_atomic_helper_connector_reset); |
| 2240 | |
| 2241 | /** |
Thierry Reding | f5e7840 | 2015-01-28 14:54:32 +0100 | [diff] [blame] | 2242 | * __drm_atomic_helper_connector_duplicate_state - copy atomic connector state |
| 2243 | * @connector: connector object |
| 2244 | * @state: atomic connector state |
| 2245 | * |
| 2246 | * Copies atomic state from a connector's current state. This is useful for |
| 2247 | * drivers that subclass the connector state. |
| 2248 | */ |
| 2249 | void |
| 2250 | __drm_atomic_helper_connector_duplicate_state(struct drm_connector *connector, |
| 2251 | struct drm_connector_state *state) |
| 2252 | { |
| 2253 | memcpy(state, connector->state, sizeof(*state)); |
| 2254 | } |
| 2255 | EXPORT_SYMBOL(__drm_atomic_helper_connector_duplicate_state); |
| 2256 | |
| 2257 | /** |
Daniel Vetter | d461701 | 2014-11-03 15:56:43 +0100 | [diff] [blame] | 2258 | * drm_atomic_helper_connector_duplicate_state - default state duplicate hook |
| 2259 | * @connector: drm connector |
| 2260 | * |
| 2261 | * Default connector state duplicate hook for drivers which don't have their own |
| 2262 | * subclassed connector state structure. |
| 2263 | */ |
| 2264 | struct drm_connector_state * |
| 2265 | drm_atomic_helper_connector_duplicate_state(struct drm_connector *connector) |
| 2266 | { |
Thierry Reding | f5e7840 | 2015-01-28 14:54:32 +0100 | [diff] [blame] | 2267 | struct drm_connector_state *state; |
| 2268 | |
Daniel Vetter | d461701 | 2014-11-03 15:56:43 +0100 | [diff] [blame] | 2269 | if (WARN_ON(!connector->state)) |
| 2270 | return NULL; |
| 2271 | |
Thierry Reding | f5e7840 | 2015-01-28 14:54:32 +0100 | [diff] [blame] | 2272 | state = kmalloc(sizeof(*state), GFP_KERNEL); |
| 2273 | if (state) |
| 2274 | __drm_atomic_helper_connector_duplicate_state(connector, state); |
| 2275 | |
| 2276 | return state; |
Daniel Vetter | d461701 | 2014-11-03 15:56:43 +0100 | [diff] [blame] | 2277 | } |
| 2278 | EXPORT_SYMBOL(drm_atomic_helper_connector_duplicate_state); |
| 2279 | |
| 2280 | /** |
Thierry Reding | f5e7840 | 2015-01-28 14:54:32 +0100 | [diff] [blame] | 2281 | * __drm_atomic_helper_connector_destroy_state - release connector state |
| 2282 | * @connector: connector object |
| 2283 | * @state: connector state object to release |
| 2284 | * |
| 2285 | * Releases all resources stored in the connector state without actually |
| 2286 | * freeing the memory of the connector state. This is useful for drivers that |
| 2287 | * subclass the connector state. |
| 2288 | */ |
| 2289 | void |
| 2290 | __drm_atomic_helper_connector_destroy_state(struct drm_connector *connector, |
| 2291 | struct drm_connector_state *state) |
| 2292 | { |
| 2293 | /* |
| 2294 | * This is currently a placeholder so that drivers that subclass the |
| 2295 | * state will automatically do the right thing if code is ever added |
| 2296 | * to this function. |
| 2297 | */ |
| 2298 | } |
| 2299 | EXPORT_SYMBOL(__drm_atomic_helper_connector_destroy_state); |
| 2300 | |
| 2301 | /** |
Daniel Vetter | d461701 | 2014-11-03 15:56:43 +0100 | [diff] [blame] | 2302 | * drm_atomic_helper_connector_destroy_state - default state destroy hook |
| 2303 | * @connector: drm connector |
| 2304 | * @state: connector state object to release |
| 2305 | * |
| 2306 | * Default connector state destroy hook for drivers which don't have their own |
| 2307 | * subclassed connector state structure. |
| 2308 | */ |
| 2309 | void drm_atomic_helper_connector_destroy_state(struct drm_connector *connector, |
| 2310 | struct drm_connector_state *state) |
| 2311 | { |
Thierry Reding | f5e7840 | 2015-01-28 14:54:32 +0100 | [diff] [blame] | 2312 | __drm_atomic_helper_connector_destroy_state(connector, state); |
Daniel Vetter | d461701 | 2014-11-03 15:56:43 +0100 | [diff] [blame] | 2313 | kfree(state); |
| 2314 | } |
| 2315 | EXPORT_SYMBOL(drm_atomic_helper_connector_destroy_state); |