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 |
Daniel Vetter | 26196f7 | 2015-08-25 16:26:03 +0200 | [diff] [blame] | 45 | * drm_atomic_helper_check() and for the commit callback with |
| 46 | * drm_atomic_helper_commit(). But the individual stages and callbacks are |
| 47 | * exposed to allow drivers to mix and match and e.g. use the plane helpers only |
Daniel Vetter | 3150c7d | 2014-11-06 20:53:29 +0100 | [diff] [blame] | 48 | * together with a driver private modeset implementation. |
| 49 | * |
| 50 | * This library also provides implementations for all the legacy driver |
Daniel Vetter | 26196f7 | 2015-08-25 16:26:03 +0200 | [diff] [blame] | 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 |
Daniel Vetter | 3150c7d | 2014-11-06 20:53:29 +0100 | [diff] [blame] | 53 | * various functions to implement set_property callbacks. New drivers must not |
| 54 | * implement these functions themselves but must use the provided helpers. |
Daniel Vetter | 092d01d | 2015-12-04 09:45:44 +0100 | [diff] [blame] | 55 | * |
| 56 | * The atomic helper uses the same function table structures as all other |
| 57 | * modesetting helpers. See the documentation for struct &drm_crtc_helper_funcs, |
| 58 | * struct &drm_encoder_helper_funcs and struct &drm_connector_helper_funcs. It |
| 59 | * also shares the struct &drm_plane_helper_funcs function table with the plane |
| 60 | * helpers. |
Daniel Vetter | 3150c7d | 2014-11-06 20:53:29 +0100 | [diff] [blame] | 61 | */ |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 62 | static void |
| 63 | drm_atomic_helper_plane_changed(struct drm_atomic_state *state, |
| 64 | struct drm_plane_state *plane_state, |
| 65 | struct drm_plane *plane) |
| 66 | { |
| 67 | struct drm_crtc_state *crtc_state; |
| 68 | |
| 69 | if (plane->state->crtc) { |
Andrzej Hajda | 2943ef3 | 2016-03-15 13:46:00 +0100 | [diff] [blame] | 70 | crtc_state = drm_atomic_get_existing_crtc_state(state, |
| 71 | plane->state->crtc); |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 72 | |
| 73 | if (WARN_ON(!crtc_state)) |
| 74 | return; |
| 75 | |
| 76 | crtc_state->planes_changed = true; |
| 77 | } |
| 78 | |
| 79 | if (plane_state->crtc) { |
Andrzej Hajda | 2943ef3 | 2016-03-15 13:46:00 +0100 | [diff] [blame] | 80 | crtc_state = drm_atomic_get_existing_crtc_state(state, |
| 81 | plane_state->crtc); |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 82 | |
| 83 | if (WARN_ON(!crtc_state)) |
| 84 | return; |
| 85 | |
| 86 | crtc_state->planes_changed = true; |
| 87 | } |
| 88 | } |
| 89 | |
Maarten Lankhorst | 8248b65 | 2016-03-03 10:17:40 +0100 | [diff] [blame] | 90 | static int handle_conflicting_encoders(struct drm_atomic_state *state, |
| 91 | bool disable_conflicting_encoders) |
Daniel Vetter | 97ac320 | 2015-12-03 10:49:14 +0100 | [diff] [blame] | 92 | { |
Daniel Vetter | 97ac320 | 2015-12-03 10:49:14 +0100 | [diff] [blame] | 93 | struct drm_connector_state *conn_state; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 94 | struct drm_connector *connector; |
Maarten Lankhorst | 40616a2 | 2016-03-03 10:17:39 +0100 | [diff] [blame] | 95 | struct drm_encoder *encoder; |
| 96 | unsigned encoder_mask = 0; |
| 97 | int i, ret; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 98 | |
Maarten Lankhorst | 8248b65 | 2016-03-03 10:17:40 +0100 | [diff] [blame] | 99 | /* |
| 100 | * First loop, find all newly assigned encoders from the connectors |
| 101 | * part of the state. If the same encoder is assigned to multiple |
| 102 | * connectors bail out. |
| 103 | */ |
Maarten Lankhorst | 40616a2 | 2016-03-03 10:17:39 +0100 | [diff] [blame] | 104 | for_each_connector_in_state(state, connector, conn_state, i) { |
| 105 | const struct drm_connector_helper_funcs *funcs = connector->helper_private; |
| 106 | struct drm_encoder *new_encoder; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 107 | |
Maarten Lankhorst | 40616a2 | 2016-03-03 10:17:39 +0100 | [diff] [blame] | 108 | if (!conn_state->crtc) |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 109 | continue; |
| 110 | |
Maarten Lankhorst | 40616a2 | 2016-03-03 10:17:39 +0100 | [diff] [blame] | 111 | if (funcs->atomic_best_encoder) |
| 112 | new_encoder = funcs->atomic_best_encoder(connector, conn_state); |
| 113 | else |
| 114 | new_encoder = funcs->best_encoder(connector); |
| 115 | |
Maarten Lankhorst | 8248b65 | 2016-03-03 10:17:40 +0100 | [diff] [blame] | 116 | if (new_encoder) { |
| 117 | if (encoder_mask & (1 << drm_encoder_index(new_encoder))) { |
| 118 | DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] on [CONNECTOR:%d:%s] already assigned\n", |
| 119 | new_encoder->base.id, new_encoder->name, |
| 120 | connector->base.id, connector->name); |
| 121 | |
| 122 | return -EINVAL; |
| 123 | } |
| 124 | |
Maarten Lankhorst | 40616a2 | 2016-03-03 10:17:39 +0100 | [diff] [blame] | 125 | encoder_mask |= 1 << drm_encoder_index(new_encoder); |
Maarten Lankhorst | 8248b65 | 2016-03-03 10:17:40 +0100 | [diff] [blame] | 126 | } |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 127 | } |
| 128 | |
Maarten Lankhorst | 8248b65 | 2016-03-03 10:17:40 +0100 | [diff] [blame] | 129 | if (!encoder_mask) |
| 130 | return 0; |
| 131 | |
| 132 | /* |
| 133 | * Second loop, iterate over all connectors not part of the state. |
| 134 | * |
| 135 | * If a conflicting encoder is found and disable_conflicting_encoders |
| 136 | * is not set, an error is returned. Userspace can provide a solution |
| 137 | * through the atomic ioctl. |
| 138 | * |
| 139 | * If the flag is set conflicting connectors are removed from the crtc |
| 140 | * and the crtc is disabled if no encoder is left. This preserves |
| 141 | * compatibility with the legacy set_config behavior. |
| 142 | */ |
Maarten Lankhorst | 40616a2 | 2016-03-03 10:17:39 +0100 | [diff] [blame] | 143 | drm_for_each_connector(connector, state->dev) { |
| 144 | struct drm_crtc_state *crtc_state; |
| 145 | |
| 146 | if (drm_atomic_get_existing_connector_state(state, connector)) |
| 147 | continue; |
| 148 | |
| 149 | encoder = connector->state->best_encoder; |
| 150 | if (!encoder || !(encoder_mask & (1 << drm_encoder_index(encoder)))) |
| 151 | continue; |
| 152 | |
Maarten Lankhorst | 8248b65 | 2016-03-03 10:17:40 +0100 | [diff] [blame] | 153 | if (!disable_conflicting_encoders) { |
| 154 | DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] in use on [CRTC:%d:%s] by [CONNECTOR:%d:%s]\n", |
| 155 | encoder->base.id, encoder->name, |
| 156 | connector->state->crtc->base.id, |
| 157 | connector->state->crtc->name, |
| 158 | connector->base.id, connector->name); |
| 159 | return -EINVAL; |
| 160 | } |
| 161 | |
Maarten Lankhorst | 40616a2 | 2016-03-03 10:17:39 +0100 | [diff] [blame] | 162 | conn_state = drm_atomic_get_connector_state(state, connector); |
| 163 | if (IS_ERR(conn_state)) |
| 164 | return PTR_ERR(conn_state); |
| 165 | |
| 166 | DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] in use on [CRTC:%d:%s], disabling [CONNECTOR:%d:%s]\n", |
| 167 | encoder->base.id, encoder->name, |
| 168 | conn_state->crtc->base.id, conn_state->crtc->name, |
| 169 | connector->base.id, connector->name); |
| 170 | |
| 171 | crtc_state = drm_atomic_get_existing_crtc_state(state, conn_state->crtc); |
| 172 | |
| 173 | ret = drm_atomic_set_crtc_for_connector(conn_state, NULL); |
| 174 | if (ret) |
| 175 | return ret; |
| 176 | |
| 177 | if (!crtc_state->connector_mask) { |
| 178 | ret = drm_atomic_set_mode_prop_for_crtc(crtc_state, |
| 179 | NULL); |
| 180 | if (ret < 0) |
| 181 | return ret; |
| 182 | |
| 183 | crtc_state->active = false; |
| 184 | } |
| 185 | } |
| 186 | |
| 187 | return 0; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 188 | } |
| 189 | |
Maarten Lankhorst | e87a52b | 2016-01-28 15:04:58 +0100 | [diff] [blame] | 190 | static void |
| 191 | set_best_encoder(struct drm_atomic_state *state, |
| 192 | struct drm_connector_state *conn_state, |
| 193 | struct drm_encoder *encoder) |
| 194 | { |
| 195 | struct drm_crtc_state *crtc_state; |
| 196 | struct drm_crtc *crtc; |
| 197 | |
| 198 | if (conn_state->best_encoder) { |
| 199 | /* Unset the encoder_mask in the old crtc state. */ |
| 200 | crtc = conn_state->connector->state->crtc; |
| 201 | |
| 202 | /* A NULL crtc is an error here because we should have |
| 203 | * duplicated a NULL best_encoder when crtc was NULL. |
| 204 | * As an exception restoring duplicated atomic state |
| 205 | * during resume is allowed, so don't warn when |
| 206 | * best_encoder is equal to encoder we intend to set. |
| 207 | */ |
| 208 | WARN_ON(!crtc && encoder != conn_state->best_encoder); |
| 209 | if (crtc) { |
| 210 | crtc_state = drm_atomic_get_existing_crtc_state(state, crtc); |
| 211 | |
| 212 | crtc_state->encoder_mask &= |
| 213 | ~(1 << drm_encoder_index(conn_state->best_encoder)); |
| 214 | } |
| 215 | } |
| 216 | |
| 217 | if (encoder) { |
| 218 | crtc = conn_state->crtc; |
| 219 | WARN_ON(!crtc); |
| 220 | if (crtc) { |
| 221 | crtc_state = drm_atomic_get_existing_crtc_state(state, crtc); |
| 222 | |
| 223 | crtc_state->encoder_mask |= |
| 224 | 1 << drm_encoder_index(encoder); |
| 225 | } |
| 226 | } |
| 227 | |
| 228 | conn_state->best_encoder = encoder; |
| 229 | } |
| 230 | |
Maarten Lankhorst | ec5aaa5 | 2016-03-03 10:17:41 +0100 | [diff] [blame] | 231 | static void |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 232 | steal_encoder(struct drm_atomic_state *state, |
Maarten Lankhorst | ff19b78 | 2016-03-03 10:17:38 +0100 | [diff] [blame] | 233 | struct drm_encoder *encoder) |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 234 | { |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 235 | struct drm_crtc_state *crtc_state; |
| 236 | struct drm_connector *connector; |
| 237 | struct drm_connector_state *connector_state; |
Maarten Lankhorst | ec5aaa5 | 2016-03-03 10:17:41 +0100 | [diff] [blame] | 238 | int i; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 239 | |
Maarten Lankhorst | ec5aaa5 | 2016-03-03 10:17:41 +0100 | [diff] [blame] | 240 | for_each_connector_in_state(state, connector, connector_state, i) { |
Maarten Lankhorst | ff19b78 | 2016-03-03 10:17:38 +0100 | [diff] [blame] | 241 | struct drm_crtc *encoder_crtc; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 242 | |
Maarten Lankhorst | e87a52b | 2016-01-28 15:04:58 +0100 | [diff] [blame] | 243 | if (connector_state->best_encoder != encoder) |
| 244 | continue; |
| 245 | |
Maarten Lankhorst | ff19b78 | 2016-03-03 10:17:38 +0100 | [diff] [blame] | 246 | encoder_crtc = connector->state->crtc; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 247 | |
Maarten Lankhorst | ff19b78 | 2016-03-03 10:17:38 +0100 | [diff] [blame] | 248 | DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] in use on [CRTC:%d:%s], stealing it\n", |
| 249 | encoder->base.id, encoder->name, |
| 250 | encoder_crtc->base.id, encoder_crtc->name); |
| 251 | |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 252 | set_best_encoder(state, connector_state, NULL); |
Maarten Lankhorst | ff19b78 | 2016-03-03 10:17:38 +0100 | [diff] [blame] | 253 | |
| 254 | crtc_state = drm_atomic_get_existing_crtc_state(state, encoder_crtc); |
| 255 | crtc_state->connectors_changed = true; |
| 256 | |
Maarten Lankhorst | ec5aaa5 | 2016-03-03 10:17:41 +0100 | [diff] [blame] | 257 | return; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 258 | } |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 259 | } |
| 260 | |
| 261 | static int |
Maarten Lankhorst | 9459545 | 2016-02-24 09:37:29 +0100 | [diff] [blame] | 262 | update_connector_routing(struct drm_atomic_state *state, |
| 263 | struct drm_connector *connector, |
| 264 | struct drm_connector_state *connector_state) |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 265 | { |
Ville Syrjälä | b5ceff2 | 2015-03-10 14:35:20 +0200 | [diff] [blame] | 266 | const struct drm_connector_helper_funcs *funcs; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 267 | struct drm_encoder *new_encoder; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 268 | struct drm_crtc_state *crtc_state; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 269 | |
Daniel Vetter | 17a38d9 | 2015-02-22 12:24:16 +0100 | [diff] [blame] | 270 | DRM_DEBUG_ATOMIC("Updating routing for [CONNECTOR:%d:%s]\n", |
| 271 | connector->base.id, |
| 272 | connector->name); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 273 | |
| 274 | if (connector->state->crtc != connector_state->crtc) { |
| 275 | if (connector->state->crtc) { |
Maarten Lankhorst | 9b8d1e5 | 2016-03-03 10:17:42 +0100 | [diff] [blame] | 276 | crtc_state = drm_atomic_get_existing_crtc_state(state, connector->state->crtc); |
Maarten Lankhorst | fc59666 | 2015-07-21 13:28:57 +0200 | [diff] [blame] | 277 | crtc_state->connectors_changed = true; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 278 | } |
| 279 | |
| 280 | if (connector_state->crtc) { |
Maarten Lankhorst | 9b8d1e5 | 2016-03-03 10:17:42 +0100 | [diff] [blame] | 281 | crtc_state = drm_atomic_get_existing_crtc_state(state, connector_state->crtc); |
Maarten Lankhorst | fc59666 | 2015-07-21 13:28:57 +0200 | [diff] [blame] | 282 | crtc_state->connectors_changed = true; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 283 | } |
| 284 | } |
| 285 | |
| 286 | if (!connector_state->crtc) { |
Daniel Vetter | 17a38d9 | 2015-02-22 12:24:16 +0100 | [diff] [blame] | 287 | DRM_DEBUG_ATOMIC("Disabling [CONNECTOR:%d:%s]\n", |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 288 | connector->base.id, |
| 289 | connector->name); |
| 290 | |
Maarten Lankhorst | e87a52b | 2016-01-28 15:04:58 +0100 | [diff] [blame] | 291 | set_best_encoder(state, connector_state, NULL); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 292 | |
| 293 | return 0; |
| 294 | } |
| 295 | |
| 296 | funcs = connector->helper_private; |
Daniel Vetter | 3b8a684b | 2015-08-03 17:24:08 +0200 | [diff] [blame] | 297 | |
| 298 | if (funcs->atomic_best_encoder) |
| 299 | new_encoder = funcs->atomic_best_encoder(connector, |
| 300 | connector_state); |
| 301 | else |
| 302 | new_encoder = funcs->best_encoder(connector); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 303 | |
| 304 | if (!new_encoder) { |
Daniel Vetter | 17a38d9 | 2015-02-22 12:24:16 +0100 | [diff] [blame] | 305 | DRM_DEBUG_ATOMIC("No suitable encoder found for [CONNECTOR:%d:%s]\n", |
| 306 | connector->base.id, |
| 307 | connector->name); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 308 | return -EINVAL; |
| 309 | } |
| 310 | |
Daniel Vetter | 5481c8f | 2015-11-18 18:46:48 +0100 | [diff] [blame] | 311 | if (!drm_encoder_crtc_ok(new_encoder, connector_state->crtc)) { |
| 312 | DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] incompatible with [CRTC:%d]\n", |
| 313 | new_encoder->base.id, |
| 314 | new_encoder->name, |
| 315 | connector_state->crtc->base.id); |
| 316 | return -EINVAL; |
| 317 | } |
| 318 | |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 319 | if (new_encoder == connector_state->best_encoder) { |
Maarten Lankhorst | e87a52b | 2016-01-28 15:04:58 +0100 | [diff] [blame] | 320 | set_best_encoder(state, connector_state, new_encoder); |
| 321 | |
Ville Syrjälä | fa3ab4c | 2015-12-08 18:41:53 +0200 | [diff] [blame] | 322 | DRM_DEBUG_ATOMIC("[CONNECTOR:%d:%s] keeps [ENCODER:%d:%s], now on [CRTC:%d:%s]\n", |
Daniel Vetter | 17a38d9 | 2015-02-22 12:24:16 +0100 | [diff] [blame] | 323 | connector->base.id, |
| 324 | connector->name, |
| 325 | new_encoder->base.id, |
| 326 | new_encoder->name, |
Ville Syrjälä | fa3ab4c | 2015-12-08 18:41:53 +0200 | [diff] [blame] | 327 | connector_state->crtc->base.id, |
| 328 | connector_state->crtc->name); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 329 | |
| 330 | return 0; |
| 331 | } |
| 332 | |
Maarten Lankhorst | ec5aaa5 | 2016-03-03 10:17:41 +0100 | [diff] [blame] | 333 | steal_encoder(state, new_encoder); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 334 | |
Maarten Lankhorst | e87a52b | 2016-01-28 15:04:58 +0100 | [diff] [blame] | 335 | set_best_encoder(state, connector_state, new_encoder); |
| 336 | |
Maarten Lankhorst | 9b8d1e5 | 2016-03-03 10:17:42 +0100 | [diff] [blame] | 337 | crtc_state = drm_atomic_get_existing_crtc_state(state, connector_state->crtc); |
Maarten Lankhorst | fc59666 | 2015-07-21 13:28:57 +0200 | [diff] [blame] | 338 | crtc_state->connectors_changed = true; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 339 | |
Ville Syrjälä | fa3ab4c | 2015-12-08 18:41:53 +0200 | [diff] [blame] | 340 | DRM_DEBUG_ATOMIC("[CONNECTOR:%d:%s] using [ENCODER:%d:%s] on [CRTC:%d:%s]\n", |
Daniel Vetter | 17a38d9 | 2015-02-22 12:24:16 +0100 | [diff] [blame] | 341 | connector->base.id, |
| 342 | connector->name, |
| 343 | new_encoder->base.id, |
| 344 | new_encoder->name, |
Ville Syrjälä | fa3ab4c | 2015-12-08 18:41:53 +0200 | [diff] [blame] | 345 | connector_state->crtc->base.id, |
| 346 | connector_state->crtc->name); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 347 | |
| 348 | return 0; |
| 349 | } |
| 350 | |
| 351 | static int |
| 352 | mode_fixup(struct drm_atomic_state *state) |
| 353 | { |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 354 | struct drm_crtc *crtc; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 355 | struct drm_crtc_state *crtc_state; |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 356 | struct drm_connector *connector; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 357 | struct drm_connector_state *conn_state; |
| 358 | int i; |
| 359 | bool ret; |
| 360 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 361 | for_each_crtc_in_state(state, crtc, crtc_state, i) { |
Maarten Lankhorst | fc59666 | 2015-07-21 13:28:57 +0200 | [diff] [blame] | 362 | if (!crtc_state->mode_changed && |
| 363 | !crtc_state->connectors_changed) |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 364 | continue; |
| 365 | |
| 366 | drm_mode_copy(&crtc_state->adjusted_mode, &crtc_state->mode); |
| 367 | } |
| 368 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 369 | for_each_connector_in_state(state, connector, conn_state, i) { |
Ville Syrjälä | b5ceff2 | 2015-03-10 14:35:20 +0200 | [diff] [blame] | 370 | const struct drm_encoder_helper_funcs *funcs; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 371 | struct drm_encoder *encoder; |
| 372 | |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 373 | WARN_ON(!!conn_state->best_encoder != !!conn_state->crtc); |
| 374 | |
| 375 | if (!conn_state->crtc || !conn_state->best_encoder) |
| 376 | continue; |
| 377 | |
Andrzej Hajda | 2943ef3 | 2016-03-15 13:46:00 +0100 | [diff] [blame] | 378 | crtc_state = drm_atomic_get_existing_crtc_state(state, |
| 379 | conn_state->crtc); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 380 | |
| 381 | /* |
| 382 | * Each encoder has at most one connector (since we always steal |
| 383 | * it away), so we won't call ->mode_fixup twice. |
| 384 | */ |
| 385 | encoder = conn_state->best_encoder; |
| 386 | funcs = encoder->helper_private; |
| 387 | |
Archit Taneja | 862e686 | 2015-05-21 11:03:16 +0530 | [diff] [blame] | 388 | ret = drm_bridge_mode_fixup(encoder->bridge, &crtc_state->mode, |
| 389 | &crtc_state->adjusted_mode); |
| 390 | if (!ret) { |
| 391 | DRM_DEBUG_ATOMIC("Bridge fixup failed\n"); |
| 392 | return -EINVAL; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 393 | } |
| 394 | |
Noralf Trønnes | 2827635 | 2016-05-11 18:09:20 +0200 | [diff] [blame] | 395 | if (funcs && funcs->atomic_check) { |
Thierry Reding | 4cd4df8 | 2014-12-03 16:44:34 +0100 | [diff] [blame] | 396 | ret = funcs->atomic_check(encoder, crtc_state, |
| 397 | conn_state); |
| 398 | if (ret) { |
Daniel Vetter | 17a38d9 | 2015-02-22 12:24:16 +0100 | [diff] [blame] | 399 | DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] check failed\n", |
| 400 | encoder->base.id, encoder->name); |
Thierry Reding | 4cd4df8 | 2014-12-03 16:44:34 +0100 | [diff] [blame] | 401 | return ret; |
| 402 | } |
Noralf Trønnes | 2827635 | 2016-05-11 18:09:20 +0200 | [diff] [blame] | 403 | } else if (funcs && funcs->mode_fixup) { |
Thierry Reding | 4cd4df8 | 2014-12-03 16:44:34 +0100 | [diff] [blame] | 404 | ret = funcs->mode_fixup(encoder, &crtc_state->mode, |
| 405 | &crtc_state->adjusted_mode); |
| 406 | if (!ret) { |
Daniel Vetter | 17a38d9 | 2015-02-22 12:24:16 +0100 | [diff] [blame] | 407 | DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] fixup failed\n", |
| 408 | encoder->base.id, encoder->name); |
Thierry Reding | 4cd4df8 | 2014-12-03 16:44:34 +0100 | [diff] [blame] | 409 | return -EINVAL; |
| 410 | } |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 411 | } |
| 412 | } |
| 413 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 414 | for_each_crtc_in_state(state, crtc, crtc_state, i) { |
Ville Syrjälä | b5ceff2 | 2015-03-10 14:35:20 +0200 | [diff] [blame] | 415 | const struct drm_crtc_helper_funcs *funcs; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 416 | |
Maarten Lankhorst | fc59666 | 2015-07-21 13:28:57 +0200 | [diff] [blame] | 417 | if (!crtc_state->mode_changed && |
| 418 | !crtc_state->connectors_changed) |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 419 | continue; |
| 420 | |
| 421 | funcs = crtc->helper_private; |
Ander Conselvan de Oliveira | 840bfe9 | 2015-04-21 17:13:18 +0300 | [diff] [blame] | 422 | if (!funcs->mode_fixup) |
| 423 | continue; |
| 424 | |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 425 | ret = funcs->mode_fixup(crtc, &crtc_state->mode, |
| 426 | &crtc_state->adjusted_mode); |
| 427 | if (!ret) { |
Ville Syrjälä | fa3ab4c | 2015-12-08 18:41:53 +0200 | [diff] [blame] | 428 | DRM_DEBUG_ATOMIC("[CRTC:%d:%s] fixup failed\n", |
| 429 | crtc->base.id, crtc->name); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 430 | return -EINVAL; |
| 431 | } |
| 432 | } |
| 433 | |
| 434 | return 0; |
| 435 | } |
| 436 | |
Daniel Vetter | d9b1362 | 2014-11-26 16:57:41 +0100 | [diff] [blame] | 437 | /** |
John Hunter | f98bd3e | 2015-03-17 15:30:26 +0800 | [diff] [blame] | 438 | * drm_atomic_helper_check_modeset - validate state object for modeset changes |
Daniel Vetter | d9b1362 | 2014-11-26 16:57:41 +0100 | [diff] [blame] | 439 | * @dev: DRM device |
| 440 | * @state: the driver state object |
| 441 | * |
| 442 | * Check the state object to see if the requested state is physically possible. |
| 443 | * This does all the crtc and connector related computations for an atomic |
Maarten Lankhorst | fc59666 | 2015-07-21 13:28:57 +0200 | [diff] [blame] | 444 | * update and adds any additional connectors needed for full modesets and calls |
| 445 | * down into ->mode_fixup functions of the driver backend. |
| 446 | * |
| 447 | * crtc_state->mode_changed is set when the input mode is changed. |
| 448 | * crtc_state->connectors_changed is set when a connector is added or |
| 449 | * removed from the crtc. |
| 450 | * crtc_state->active_changed is set when crtc_state->active changes, |
| 451 | * which is used for dpms. |
Daniel Vetter | d9b1362 | 2014-11-26 16:57:41 +0100 | [diff] [blame] | 452 | * |
| 453 | * IMPORTANT: |
| 454 | * |
| 455 | * Drivers which update ->mode_changed (e.g. in their ->atomic_check hooks if a |
| 456 | * plane update can't be done without a full modeset) _must_ call this function |
| 457 | * afterwards after that change. It is permitted to call this function multiple |
| 458 | * times for the same update, e.g. when the ->atomic_check functions depend upon |
| 459 | * the adjusted dotclock for fifo space allocation and watermark computation. |
| 460 | * |
| 461 | * RETURNS |
| 462 | * Zero for success or -errno |
| 463 | */ |
| 464 | int |
Rob Clark | 934ce1c | 2014-11-19 16:41:33 -0500 | [diff] [blame] | 465 | drm_atomic_helper_check_modeset(struct drm_device *dev, |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 466 | struct drm_atomic_state *state) |
| 467 | { |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 468 | struct drm_crtc *crtc; |
| 469 | struct drm_crtc_state *crtc_state; |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 470 | struct drm_connector *connector; |
| 471 | struct drm_connector_state *connector_state; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 472 | int i, ret; |
| 473 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 474 | for_each_crtc_in_state(state, crtc, crtc_state, i) { |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 475 | if (!drm_mode_equal(&crtc->state->mode, &crtc_state->mode)) { |
Ville Syrjälä | fa3ab4c | 2015-12-08 18:41:53 +0200 | [diff] [blame] | 476 | DRM_DEBUG_ATOMIC("[CRTC:%d:%s] mode changed\n", |
| 477 | crtc->base.id, crtc->name); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 478 | crtc_state->mode_changed = true; |
| 479 | } |
| 480 | |
| 481 | if (crtc->state->enable != crtc_state->enable) { |
Ville Syrjälä | fa3ab4c | 2015-12-08 18:41:53 +0200 | [diff] [blame] | 482 | DRM_DEBUG_ATOMIC("[CRTC:%d:%s] enable changed\n", |
| 483 | crtc->base.id, crtc->name); |
Maarten Lankhorst | fc59666 | 2015-07-21 13:28:57 +0200 | [diff] [blame] | 484 | |
| 485 | /* |
| 486 | * For clarity this assignment is done here, but |
| 487 | * enable == 0 is only true when there are no |
| 488 | * connectors and a NULL mode. |
| 489 | * |
| 490 | * The other way around is true as well. enable != 0 |
| 491 | * iff connectors are attached and a mode is set. |
| 492 | */ |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 493 | crtc_state->mode_changed = true; |
Maarten Lankhorst | fc59666 | 2015-07-21 13:28:57 +0200 | [diff] [blame] | 494 | crtc_state->connectors_changed = true; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 495 | } |
| 496 | } |
| 497 | |
Maarten Lankhorst | 8248b65 | 2016-03-03 10:17:40 +0100 | [diff] [blame] | 498 | ret = handle_conflicting_encoders(state, state->legacy_set_config); |
| 499 | if (ret) |
| 500 | return ret; |
Maarten Lankhorst | 40616a2 | 2016-03-03 10:17:39 +0100 | [diff] [blame] | 501 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 502 | for_each_connector_in_state(state, connector, connector_state, i) { |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 503 | /* |
| 504 | * This only sets crtc->mode_changed for routing changes, |
| 505 | * drivers must set crtc->mode_changed themselves when connector |
| 506 | * properties need to be updated. |
| 507 | */ |
Maarten Lankhorst | 9459545 | 2016-02-24 09:37:29 +0100 | [diff] [blame] | 508 | ret = update_connector_routing(state, connector, |
| 509 | connector_state); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 510 | if (ret) |
| 511 | return ret; |
| 512 | } |
| 513 | |
| 514 | /* |
| 515 | * After all the routing has been prepared we need to add in any |
| 516 | * connector which is itself unchanged, but who's crtc changes it's |
| 517 | * configuration. This must be done before calling mode_fixup in case a |
| 518 | * crtc only changed its mode but has the same set of connectors. |
| 519 | */ |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 520 | for_each_crtc_in_state(state, crtc, crtc_state, i) { |
Maarten Lankhorst | 14de6c4 | 2016-01-04 12:53:20 +0100 | [diff] [blame] | 521 | bool has_connectors = |
| 522 | !!crtc_state->connector_mask; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 523 | |
Daniel Vetter | eab3bbe | 2015-01-22 16:36:21 +0100 | [diff] [blame] | 524 | /* |
| 525 | * We must set ->active_changed after walking connectors for |
| 526 | * otherwise an update that only changes active would result in |
| 527 | * a full modeset because update_connector_routing force that. |
| 528 | */ |
| 529 | if (crtc->state->active != crtc_state->active) { |
Ville Syrjälä | fa3ab4c | 2015-12-08 18:41:53 +0200 | [diff] [blame] | 530 | DRM_DEBUG_ATOMIC("[CRTC:%d:%s] active changed\n", |
| 531 | crtc->base.id, crtc->name); |
Daniel Vetter | eab3bbe | 2015-01-22 16:36:21 +0100 | [diff] [blame] | 532 | crtc_state->active_changed = true; |
| 533 | } |
| 534 | |
Daniel Vetter | 2465ff6 | 2015-06-18 09:58:55 +0200 | [diff] [blame] | 535 | if (!drm_atomic_crtc_needs_modeset(crtc_state)) |
Daniel Vetter | eab3bbe | 2015-01-22 16:36:21 +0100 | [diff] [blame] | 536 | continue; |
| 537 | |
Ville Syrjälä | fa3ab4c | 2015-12-08 18:41:53 +0200 | [diff] [blame] | 538 | DRM_DEBUG_ATOMIC("[CRTC:%d:%s] needs all connectors, enable: %c, active: %c\n", |
| 539 | crtc->base.id, crtc->name, |
Daniel Vetter | 17a38d9 | 2015-02-22 12:24:16 +0100 | [diff] [blame] | 540 | crtc_state->enable ? 'y' : 'n', |
Ville Syrjälä | fa3ab4c | 2015-12-08 18:41:53 +0200 | [diff] [blame] | 541 | crtc_state->active ? 'y' : 'n'); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 542 | |
| 543 | ret = drm_atomic_add_affected_connectors(state, crtc); |
| 544 | if (ret != 0) |
| 545 | return ret; |
| 546 | |
Maarten Lankhorst | 57744aa | 2015-05-19 16:41:03 +0200 | [diff] [blame] | 547 | ret = drm_atomic_add_affected_planes(state, crtc); |
| 548 | if (ret != 0) |
| 549 | return ret; |
| 550 | |
Maarten Lankhorst | 14de6c4 | 2016-01-04 12:53:20 +0100 | [diff] [blame] | 551 | if (crtc_state->enable != has_connectors) { |
Ville Syrjälä | fa3ab4c | 2015-12-08 18:41:53 +0200 | [diff] [blame] | 552 | DRM_DEBUG_ATOMIC("[CRTC:%d:%s] enabled/connectors mismatch\n", |
| 553 | crtc->base.id, crtc->name); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 554 | |
| 555 | return -EINVAL; |
| 556 | } |
| 557 | } |
| 558 | |
| 559 | return mode_fixup(state); |
| 560 | } |
Daniel Vetter | d9b1362 | 2014-11-26 16:57:41 +0100 | [diff] [blame] | 561 | EXPORT_SYMBOL(drm_atomic_helper_check_modeset); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 562 | |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 563 | /** |
John Hunter | f98bd3e | 2015-03-17 15:30:26 +0800 | [diff] [blame] | 564 | * drm_atomic_helper_check_planes - validate state object for planes changes |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 565 | * @dev: DRM device |
| 566 | * @state: the driver state object |
| 567 | * |
| 568 | * 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] | 569 | * This does all the plane update related checks using by calling into the |
| 570 | * ->atomic_check hooks provided by the driver. |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 571 | * |
Maarten Lankhorst | fc59666 | 2015-07-21 13:28:57 +0200 | [diff] [blame] | 572 | * It also sets crtc_state->planes_changed to indicate that a crtc has |
| 573 | * updated planes. |
| 574 | * |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 575 | * RETURNS |
| 576 | * Zero for success or -errno |
| 577 | */ |
Daniel Vetter | d9b1362 | 2014-11-26 16:57:41 +0100 | [diff] [blame] | 578 | int |
| 579 | drm_atomic_helper_check_planes(struct drm_device *dev, |
| 580 | struct drm_atomic_state *state) |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 581 | { |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 582 | struct drm_crtc *crtc; |
| 583 | struct drm_crtc_state *crtc_state; |
| 584 | struct drm_plane *plane; |
| 585 | struct drm_plane_state *plane_state; |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 586 | int i, ret = 0; |
| 587 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 588 | for_each_plane_in_state(state, plane, plane_state, i) { |
Ville Syrjälä | b5ceff2 | 2015-03-10 14:35:20 +0200 | [diff] [blame] | 589 | const struct drm_plane_helper_funcs *funcs; |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 590 | |
| 591 | funcs = plane->helper_private; |
| 592 | |
| 593 | drm_atomic_helper_plane_changed(state, plane_state, plane); |
| 594 | |
| 595 | if (!funcs || !funcs->atomic_check) |
| 596 | continue; |
| 597 | |
| 598 | ret = funcs->atomic_check(plane, plane_state); |
| 599 | if (ret) { |
Ville Syrjälä | 9f4c97a | 2015-12-08 18:41:54 +0200 | [diff] [blame] | 600 | DRM_DEBUG_ATOMIC("[PLANE:%d:%s] atomic driver check failed\n", |
| 601 | plane->base.id, plane->name); |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 602 | return ret; |
| 603 | } |
| 604 | } |
| 605 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 606 | for_each_crtc_in_state(state, crtc, crtc_state, i) { |
Ville Syrjälä | b5ceff2 | 2015-03-10 14:35:20 +0200 | [diff] [blame] | 607 | const struct drm_crtc_helper_funcs *funcs; |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 608 | |
| 609 | funcs = crtc->helper_private; |
| 610 | |
| 611 | if (!funcs || !funcs->atomic_check) |
| 612 | continue; |
| 613 | |
| 614 | ret = funcs->atomic_check(crtc, state->crtc_states[i]); |
| 615 | if (ret) { |
Ville Syrjälä | fa3ab4c | 2015-12-08 18:41:53 +0200 | [diff] [blame] | 616 | DRM_DEBUG_ATOMIC("[CRTC:%d:%s] atomic driver check failed\n", |
| 617 | crtc->base.id, crtc->name); |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 618 | return ret; |
| 619 | } |
| 620 | } |
| 621 | |
Daniel Vetter | d9b1362 | 2014-11-26 16:57:41 +0100 | [diff] [blame] | 622 | return ret; |
| 623 | } |
| 624 | EXPORT_SYMBOL(drm_atomic_helper_check_planes); |
| 625 | |
| 626 | /** |
| 627 | * drm_atomic_helper_check - validate state object |
| 628 | * @dev: DRM device |
| 629 | * @state: the driver state object |
| 630 | * |
| 631 | * Check the state object to see if the requested state is physically possible. |
| 632 | * Only crtcs and planes have check callbacks, so for any additional (global) |
| 633 | * checking that a driver needs it can simply wrap that around this function. |
| 634 | * Drivers without such needs can directly use this as their ->atomic_check() |
| 635 | * callback. |
| 636 | * |
Daniel Vetter | b4274fb | 2014-11-26 17:02:18 +0100 | [diff] [blame] | 637 | * This just wraps the two parts of the state checking for planes and modeset |
| 638 | * state in the default order: First it calls drm_atomic_helper_check_modeset() |
| 639 | * and then drm_atomic_helper_check_planes(). The assumption is that the |
| 640 | * ->atomic_check functions depend upon an updated adjusted_mode.clock to |
| 641 | * e.g. properly compute watermarks. |
| 642 | * |
Daniel Vetter | d9b1362 | 2014-11-26 16:57:41 +0100 | [diff] [blame] | 643 | * RETURNS |
| 644 | * Zero for success or -errno |
| 645 | */ |
| 646 | int drm_atomic_helper_check(struct drm_device *dev, |
| 647 | struct drm_atomic_state *state) |
| 648 | { |
| 649 | int ret; |
| 650 | |
Daniel Vetter | b4274fb | 2014-11-26 17:02:18 +0100 | [diff] [blame] | 651 | ret = drm_atomic_helper_check_modeset(dev, state); |
Daniel Vetter | d9b1362 | 2014-11-26 16:57:41 +0100 | [diff] [blame] | 652 | if (ret) |
| 653 | return ret; |
| 654 | |
Daniel Vetter | b4274fb | 2014-11-26 17:02:18 +0100 | [diff] [blame] | 655 | ret = drm_atomic_helper_check_planes(dev, state); |
Rob Clark | 934ce1c | 2014-11-19 16:41:33 -0500 | [diff] [blame] | 656 | if (ret) |
| 657 | return ret; |
| 658 | |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 659 | return ret; |
| 660 | } |
| 661 | EXPORT_SYMBOL(drm_atomic_helper_check); |
| 662 | |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 663 | static void |
| 664 | disable_outputs(struct drm_device *dev, struct drm_atomic_state *old_state) |
| 665 | { |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 666 | struct drm_connector *connector; |
| 667 | struct drm_connector_state *old_conn_state; |
| 668 | struct drm_crtc *crtc; |
| 669 | struct drm_crtc_state *old_crtc_state; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 670 | int i; |
| 671 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 672 | for_each_connector_in_state(old_state, connector, old_conn_state, i) { |
Ville Syrjälä | b5ceff2 | 2015-03-10 14:35:20 +0200 | [diff] [blame] | 673 | const struct drm_encoder_helper_funcs *funcs; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 674 | struct drm_encoder *encoder; |
| 675 | |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 676 | /* Shut down everything that's in the changeset and currently |
| 677 | * still on. So need to check the old, saved state. */ |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 678 | if (!old_conn_state->crtc) |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 679 | continue; |
| 680 | |
Andrzej Hajda | 2943ef3 | 2016-03-15 13:46:00 +0100 | [diff] [blame] | 681 | old_crtc_state = drm_atomic_get_existing_crtc_state(old_state, |
| 682 | old_conn_state->crtc); |
Daniel Vetter | eab3bbe | 2015-01-22 16:36:21 +0100 | [diff] [blame] | 683 | |
Daniel Vetter | 4218a32 | 2015-03-26 22:18:40 +0100 | [diff] [blame] | 684 | if (!old_crtc_state->active || |
Daniel Vetter | 2465ff6 | 2015-06-18 09:58:55 +0200 | [diff] [blame] | 685 | !drm_atomic_crtc_needs_modeset(old_conn_state->crtc->state)) |
Daniel Vetter | eab3bbe | 2015-01-22 16:36:21 +0100 | [diff] [blame] | 686 | continue; |
| 687 | |
Rob Clark | 46df9ad | 2014-11-20 15:40:36 -0500 | [diff] [blame] | 688 | encoder = old_conn_state->best_encoder; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 689 | |
Rob Clark | 46df9ad | 2014-11-20 15:40:36 -0500 | [diff] [blame] | 690 | /* We shouldn't get this far if we didn't previously have |
| 691 | * an encoder.. but WARN_ON() rather than explode. |
| 692 | */ |
| 693 | if (WARN_ON(!encoder)) |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 694 | continue; |
| 695 | |
| 696 | funcs = encoder->helper_private; |
| 697 | |
Daniel Vetter | 17a38d9 | 2015-02-22 12:24:16 +0100 | [diff] [blame] | 698 | DRM_DEBUG_ATOMIC("disabling [ENCODER:%d:%s]\n", |
| 699 | encoder->base.id, encoder->name); |
Daniel Vetter | 95d6eb3 | 2015-01-22 16:36:25 +0100 | [diff] [blame] | 700 | |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 701 | /* |
| 702 | * Each encoder has at most one connector (since we always steal |
John Hunter | f98bd3e | 2015-03-17 15:30:26 +0800 | [diff] [blame] | 703 | * it away), so we won't call disable hooks twice. |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 704 | */ |
Archit Taneja | 862e686 | 2015-05-21 11:03:16 +0530 | [diff] [blame] | 705 | drm_bridge_disable(encoder->bridge); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 706 | |
| 707 | /* Right function depends upon target state. */ |
Noralf Trønnes | 2827635 | 2016-05-11 18:09:20 +0200 | [diff] [blame] | 708 | if (funcs) { |
| 709 | if (connector->state->crtc && funcs->prepare) |
| 710 | funcs->prepare(encoder); |
| 711 | else if (funcs->disable) |
| 712 | funcs->disable(encoder); |
| 713 | else if (funcs->dpms) |
| 714 | funcs->dpms(encoder, DRM_MODE_DPMS_OFF); |
| 715 | } |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 716 | |
Archit Taneja | 862e686 | 2015-05-21 11:03:16 +0530 | [diff] [blame] | 717 | drm_bridge_post_disable(encoder->bridge); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 718 | } |
| 719 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 720 | for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) { |
Ville Syrjälä | b5ceff2 | 2015-03-10 14:35:20 +0200 | [diff] [blame] | 721 | const struct drm_crtc_helper_funcs *funcs; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 722 | |
| 723 | /* Shut down everything that needs a full modeset. */ |
Daniel Vetter | 2465ff6 | 2015-06-18 09:58:55 +0200 | [diff] [blame] | 724 | if (!drm_atomic_crtc_needs_modeset(crtc->state)) |
Daniel Vetter | eab3bbe | 2015-01-22 16:36:21 +0100 | [diff] [blame] | 725 | continue; |
| 726 | |
| 727 | if (!old_crtc_state->active) |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 728 | continue; |
| 729 | |
| 730 | funcs = crtc->helper_private; |
| 731 | |
Ville Syrjälä | fa3ab4c | 2015-12-08 18:41:53 +0200 | [diff] [blame] | 732 | DRM_DEBUG_ATOMIC("disabling [CRTC:%d:%s]\n", |
| 733 | crtc->base.id, crtc->name); |
Daniel Vetter | 95d6eb3 | 2015-01-22 16:36:25 +0100 | [diff] [blame] | 734 | |
| 735 | |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 736 | /* Right function depends upon target state. */ |
Daniel Vetter | ee0a89c | 2015-01-22 16:36:24 +0100 | [diff] [blame] | 737 | if (crtc->state->enable && funcs->prepare) |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 738 | funcs->prepare(crtc); |
| 739 | else if (funcs->disable) |
| 740 | funcs->disable(crtc); |
| 741 | else |
| 742 | funcs->dpms(crtc, DRM_MODE_DPMS_OFF); |
| 743 | } |
| 744 | } |
| 745 | |
Daniel Vetter | 4c18d30 | 2015-05-12 15:27:37 +0200 | [diff] [blame] | 746 | /** |
| 747 | * drm_atomic_helper_update_legacy_modeset_state - update legacy modeset state |
| 748 | * @dev: DRM device |
| 749 | * @old_state: atomic state object with old state structures |
| 750 | * |
| 751 | * This function updates all the various legacy modeset state pointers in |
| 752 | * connectors, encoders and crtcs. It also updates the timestamping constants |
| 753 | * used for precise vblank timestamps by calling |
| 754 | * drm_calc_timestamping_constants(). |
| 755 | * |
| 756 | * Drivers can use this for building their own atomic commit if they don't have |
| 757 | * a pure helper-based modeset implementation. |
| 758 | */ |
| 759 | void |
| 760 | drm_atomic_helper_update_legacy_modeset_state(struct drm_device *dev, |
| 761 | struct drm_atomic_state *old_state) |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 762 | { |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 763 | struct drm_connector *connector; |
| 764 | struct drm_connector_state *old_conn_state; |
| 765 | struct drm_crtc *crtc; |
| 766 | struct drm_crtc_state *old_crtc_state; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 767 | int i; |
| 768 | |
Maarten Lankhorst | 8c10342 | 2015-07-27 13:24:29 +0200 | [diff] [blame] | 769 | /* clear out existing links and update dpms */ |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 770 | for_each_connector_in_state(old_state, connector, old_conn_state, i) { |
Maarten Lankhorst | 8c10342 | 2015-07-27 13:24:29 +0200 | [diff] [blame] | 771 | if (connector->encoder) { |
| 772 | WARN_ON(!connector->encoder->crtc); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 773 | |
Maarten Lankhorst | 8c10342 | 2015-07-27 13:24:29 +0200 | [diff] [blame] | 774 | connector->encoder->crtc = NULL; |
| 775 | connector->encoder = NULL; |
| 776 | } |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 777 | |
Maarten Lankhorst | 8c10342 | 2015-07-27 13:24:29 +0200 | [diff] [blame] | 778 | crtc = connector->state->crtc; |
| 779 | if ((!crtc && old_conn_state->crtc) || |
| 780 | (crtc && drm_atomic_crtc_needs_modeset(crtc->state))) { |
| 781 | struct drm_property *dpms_prop = |
| 782 | dev->mode_config.dpms_property; |
| 783 | int mode = DRM_MODE_DPMS_OFF; |
| 784 | |
| 785 | if (crtc && crtc->state->active) |
| 786 | mode = DRM_MODE_DPMS_ON; |
| 787 | |
| 788 | connector->dpms = mode; |
| 789 | drm_object_property_set_value(&connector->base, |
| 790 | dpms_prop, mode); |
| 791 | } |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 792 | } |
| 793 | |
| 794 | /* set new links */ |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 795 | for_each_connector_in_state(old_state, connector, old_conn_state, i) { |
| 796 | if (!connector->state->crtc) |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 797 | continue; |
| 798 | |
| 799 | if (WARN_ON(!connector->state->best_encoder)) |
| 800 | continue; |
| 801 | |
| 802 | connector->encoder = connector->state->best_encoder; |
| 803 | connector->encoder->crtc = connector->state->crtc; |
| 804 | } |
| 805 | |
| 806 | /* set legacy state in the crtc structure */ |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 807 | for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) { |
Maarten Lankhorst | 2660801 | 2015-07-16 15:51:01 +0200 | [diff] [blame] | 808 | struct drm_plane *primary = crtc->primary; |
| 809 | |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 810 | crtc->mode = crtc->state->mode; |
| 811 | crtc->enabled = crtc->state->enable; |
Maarten Lankhorst | 2660801 | 2015-07-16 15:51:01 +0200 | [diff] [blame] | 812 | |
| 813 | if (drm_atomic_get_existing_plane_state(old_state, primary) && |
| 814 | primary->state->crtc == crtc) { |
| 815 | crtc->x = primary->state->src_x >> 16; |
| 816 | crtc->y = primary->state->src_y >> 16; |
| 817 | } |
Daniel Vetter | 3d51d2d | 2015-05-12 15:21:06 +0200 | [diff] [blame] | 818 | |
| 819 | if (crtc->state->enable) |
| 820 | drm_calc_timestamping_constants(crtc, |
| 821 | &crtc->state->adjusted_mode); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 822 | } |
| 823 | } |
Daniel Vetter | 4c18d30 | 2015-05-12 15:27:37 +0200 | [diff] [blame] | 824 | EXPORT_SYMBOL(drm_atomic_helper_update_legacy_modeset_state); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 825 | |
| 826 | static void |
| 827 | crtc_set_mode(struct drm_device *dev, struct drm_atomic_state *old_state) |
| 828 | { |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 829 | struct drm_crtc *crtc; |
| 830 | struct drm_crtc_state *old_crtc_state; |
| 831 | struct drm_connector *connector; |
| 832 | struct drm_connector_state *old_conn_state; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 833 | int i; |
| 834 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 835 | for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) { |
Ville Syrjälä | b5ceff2 | 2015-03-10 14:35:20 +0200 | [diff] [blame] | 836 | const struct drm_crtc_helper_funcs *funcs; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 837 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 838 | if (!crtc->state->mode_changed) |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 839 | continue; |
| 840 | |
| 841 | funcs = crtc->helper_private; |
| 842 | |
Daniel Vetter | c982bd9 | 2015-02-22 12:24:20 +0100 | [diff] [blame] | 843 | if (crtc->state->enable && funcs->mode_set_nofb) { |
Ville Syrjälä | fa3ab4c | 2015-12-08 18:41:53 +0200 | [diff] [blame] | 844 | DRM_DEBUG_ATOMIC("modeset on [CRTC:%d:%s]\n", |
| 845 | crtc->base.id, crtc->name); |
Daniel Vetter | 95d6eb3 | 2015-01-22 16:36:25 +0100 | [diff] [blame] | 846 | |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 847 | funcs->mode_set_nofb(crtc); |
Daniel Vetter | 95d6eb3 | 2015-01-22 16:36:25 +0100 | [diff] [blame] | 848 | } |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 849 | } |
| 850 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 851 | for_each_connector_in_state(old_state, connector, old_conn_state, i) { |
Ville Syrjälä | b5ceff2 | 2015-03-10 14:35:20 +0200 | [diff] [blame] | 852 | const struct drm_encoder_helper_funcs *funcs; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 853 | struct drm_crtc_state *new_crtc_state; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 854 | struct drm_encoder *encoder; |
| 855 | struct drm_display_mode *mode, *adjusted_mode; |
| 856 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 857 | if (!connector->state->best_encoder) |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 858 | continue; |
| 859 | |
| 860 | encoder = connector->state->best_encoder; |
| 861 | funcs = encoder->helper_private; |
| 862 | new_crtc_state = connector->state->crtc->state; |
| 863 | mode = &new_crtc_state->mode; |
| 864 | adjusted_mode = &new_crtc_state->adjusted_mode; |
| 865 | |
Daniel Vetter | eab3bbe | 2015-01-22 16:36:21 +0100 | [diff] [blame] | 866 | if (!new_crtc_state->mode_changed) |
| 867 | continue; |
| 868 | |
Daniel Vetter | 17a38d9 | 2015-02-22 12:24:16 +0100 | [diff] [blame] | 869 | DRM_DEBUG_ATOMIC("modeset on [ENCODER:%d:%s]\n", |
| 870 | encoder->base.id, encoder->name); |
Daniel Vetter | 95d6eb3 | 2015-01-22 16:36:25 +0100 | [diff] [blame] | 871 | |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 872 | /* |
| 873 | * Each encoder has at most one connector (since we always steal |
John Hunter | f98bd3e | 2015-03-17 15:30:26 +0800 | [diff] [blame] | 874 | * it away), so we won't call mode_set hooks twice. |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 875 | */ |
Noralf Trønnes | 2827635 | 2016-05-11 18:09:20 +0200 | [diff] [blame] | 876 | if (funcs && funcs->mode_set) |
Daniel Vetter | c982bd9 | 2015-02-22 12:24:20 +0100 | [diff] [blame] | 877 | funcs->mode_set(encoder, mode, adjusted_mode); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 878 | |
Archit Taneja | 862e686 | 2015-05-21 11:03:16 +0530 | [diff] [blame] | 879 | drm_bridge_mode_set(encoder->bridge, mode, adjusted_mode); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 880 | } |
| 881 | } |
| 882 | |
| 883 | /** |
Daniel Vetter | 1af434a | 2015-02-22 12:24:19 +0100 | [diff] [blame] | 884 | * drm_atomic_helper_commit_modeset_disables - modeset commit to disable outputs |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 885 | * @dev: DRM device |
Laurent Pinchart | a072f80 | 2015-02-22 12:24:18 +0100 | [diff] [blame] | 886 | * @old_state: atomic state object with old state structures |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 887 | * |
Daniel Vetter | 1af434a | 2015-02-22 12:24:19 +0100 | [diff] [blame] | 888 | * 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] | 889 | * prepares them (if required) with the new mode. |
Daniel Vetter | 1af434a | 2015-02-22 12:24:19 +0100 | [diff] [blame] | 890 | * |
Laurent Pinchart | 60acc4e | 2015-05-27 15:05:42 +0300 | [diff] [blame] | 891 | * For compatibility with legacy crtc helpers this should be called before |
Daniel Vetter | 1af434a | 2015-02-22 12:24:19 +0100 | [diff] [blame] | 892 | * drm_atomic_helper_commit_planes(), which is what the default commit function |
| 893 | * does. But drivers with different needs can group the modeset commits together |
| 894 | * and do the plane commits at the end. This is useful for drivers doing runtime |
| 895 | * 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] | 896 | */ |
Daniel Vetter | 1af434a | 2015-02-22 12:24:19 +0100 | [diff] [blame] | 897 | void drm_atomic_helper_commit_modeset_disables(struct drm_device *dev, |
| 898 | struct drm_atomic_state *old_state) |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 899 | { |
Laurent Pinchart | a072f80 | 2015-02-22 12:24:18 +0100 | [diff] [blame] | 900 | disable_outputs(dev, old_state); |
Daniel Vetter | 4c18d30 | 2015-05-12 15:27:37 +0200 | [diff] [blame] | 901 | |
| 902 | drm_atomic_helper_update_legacy_modeset_state(dev, old_state); |
| 903 | |
Laurent Pinchart | a072f80 | 2015-02-22 12:24:18 +0100 | [diff] [blame] | 904 | crtc_set_mode(dev, old_state); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 905 | } |
Daniel Vetter | 1af434a | 2015-02-22 12:24:19 +0100 | [diff] [blame] | 906 | EXPORT_SYMBOL(drm_atomic_helper_commit_modeset_disables); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 907 | |
| 908 | /** |
Daniel Vetter | 1af434a | 2015-02-22 12:24:19 +0100 | [diff] [blame] | 909 | * drm_atomic_helper_commit_modeset_enables - modeset commit to enable outputs |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 910 | * @dev: DRM device |
| 911 | * @old_state: atomic state object with old state structures |
| 912 | * |
Daniel Vetter | 1af434a | 2015-02-22 12:24:19 +0100 | [diff] [blame] | 913 | * This function enables all the outputs with the new configuration which had to |
| 914 | * be turned off for the update. |
| 915 | * |
Laurent Pinchart | 60acc4e | 2015-05-27 15:05:42 +0300 | [diff] [blame] | 916 | * For compatibility with legacy crtc helpers this should be called after |
Daniel Vetter | 1af434a | 2015-02-22 12:24:19 +0100 | [diff] [blame] | 917 | * drm_atomic_helper_commit_planes(), which is what the default commit function |
| 918 | * does. But drivers with different needs can group the modeset commits together |
| 919 | * and do the plane commits at the end. This is useful for drivers doing runtime |
| 920 | * 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] | 921 | */ |
Daniel Vetter | 1af434a | 2015-02-22 12:24:19 +0100 | [diff] [blame] | 922 | void drm_atomic_helper_commit_modeset_enables(struct drm_device *dev, |
| 923 | struct drm_atomic_state *old_state) |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 924 | { |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 925 | struct drm_crtc *crtc; |
| 926 | struct drm_crtc_state *old_crtc_state; |
| 927 | struct drm_connector *connector; |
| 928 | struct drm_connector_state *old_conn_state; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 929 | int i; |
| 930 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 931 | for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) { |
Ville Syrjälä | b5ceff2 | 2015-03-10 14:35:20 +0200 | [diff] [blame] | 932 | const struct drm_crtc_helper_funcs *funcs; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 933 | |
| 934 | /* Need to filter out CRTCs where only planes change. */ |
Daniel Vetter | 2465ff6 | 2015-06-18 09:58:55 +0200 | [diff] [blame] | 935 | if (!drm_atomic_crtc_needs_modeset(crtc->state)) |
Daniel Vetter | eab3bbe | 2015-01-22 16:36:21 +0100 | [diff] [blame] | 936 | continue; |
| 937 | |
| 938 | if (!crtc->state->active) |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 939 | continue; |
| 940 | |
| 941 | funcs = crtc->helper_private; |
| 942 | |
Daniel Vetter | ee0a89c | 2015-01-22 16:36:24 +0100 | [diff] [blame] | 943 | if (crtc->state->enable) { |
Ville Syrjälä | fa3ab4c | 2015-12-08 18:41:53 +0200 | [diff] [blame] | 944 | DRM_DEBUG_ATOMIC("enabling [CRTC:%d:%s]\n", |
| 945 | crtc->base.id, crtc->name); |
Daniel Vetter | 95d6eb3 | 2015-01-22 16:36:25 +0100 | [diff] [blame] | 946 | |
Daniel Vetter | ee0a89c | 2015-01-22 16:36:24 +0100 | [diff] [blame] | 947 | if (funcs->enable) |
| 948 | funcs->enable(crtc); |
| 949 | else |
| 950 | funcs->commit(crtc); |
| 951 | } |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 952 | } |
| 953 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 954 | for_each_connector_in_state(old_state, connector, old_conn_state, i) { |
Ville Syrjälä | b5ceff2 | 2015-03-10 14:35:20 +0200 | [diff] [blame] | 955 | const struct drm_encoder_helper_funcs *funcs; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 956 | struct drm_encoder *encoder; |
| 957 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 958 | if (!connector->state->best_encoder) |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 959 | continue; |
| 960 | |
Daniel Vetter | 4218a32 | 2015-03-26 22:18:40 +0100 | [diff] [blame] | 961 | if (!connector->state->crtc->state->active || |
Daniel Vetter | 2465ff6 | 2015-06-18 09:58:55 +0200 | [diff] [blame] | 962 | !drm_atomic_crtc_needs_modeset(connector->state->crtc->state)) |
Daniel Vetter | eab3bbe | 2015-01-22 16:36:21 +0100 | [diff] [blame] | 963 | continue; |
| 964 | |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 965 | encoder = connector->state->best_encoder; |
| 966 | funcs = encoder->helper_private; |
| 967 | |
Daniel Vetter | 17a38d9 | 2015-02-22 12:24:16 +0100 | [diff] [blame] | 968 | DRM_DEBUG_ATOMIC("enabling [ENCODER:%d:%s]\n", |
| 969 | encoder->base.id, encoder->name); |
Daniel Vetter | 95d6eb3 | 2015-01-22 16:36:25 +0100 | [diff] [blame] | 970 | |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 971 | /* |
| 972 | * Each encoder has at most one connector (since we always steal |
John Hunter | f98bd3e | 2015-03-17 15:30:26 +0800 | [diff] [blame] | 973 | * it away), so we won't call enable hooks twice. |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 974 | */ |
Archit Taneja | 862e686 | 2015-05-21 11:03:16 +0530 | [diff] [blame] | 975 | drm_bridge_pre_enable(encoder->bridge); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 976 | |
Noralf Trønnes | 2827635 | 2016-05-11 18:09:20 +0200 | [diff] [blame] | 977 | if (funcs) { |
| 978 | if (funcs->enable) |
| 979 | funcs->enable(encoder); |
| 980 | else if (funcs->commit) |
| 981 | funcs->commit(encoder); |
| 982 | } |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 983 | |
Archit Taneja | 862e686 | 2015-05-21 11:03:16 +0530 | [diff] [blame] | 984 | drm_bridge_enable(encoder->bridge); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 985 | } |
| 986 | } |
Daniel Vetter | 1af434a | 2015-02-22 12:24:19 +0100 | [diff] [blame] | 987 | EXPORT_SYMBOL(drm_atomic_helper_commit_modeset_enables); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 988 | |
Rob Clark | 4c5b7f3 | 2016-03-18 19:14:55 -0400 | [diff] [blame] | 989 | /** |
| 990 | * drm_atomic_helper_wait_for_fences - wait for fences stashed in plane state |
| 991 | * @dev: DRM device |
| 992 | * @state: atomic state object with old state structures |
| 993 | * |
| 994 | * For implicit sync, driver should fish the exclusive fence out from the |
| 995 | * incoming fb's and stash it in the drm_plane_state. This is called after |
| 996 | * drm_atomic_helper_swap_state() so it uses the current plane state (and |
| 997 | * just uses the atomic state to find the changed planes) |
| 998 | */ |
| 999 | void drm_atomic_helper_wait_for_fences(struct drm_device *dev, |
Daniel Vetter | e2330f0 | 2014-10-29 11:34:56 +0100 | [diff] [blame] | 1000 | struct drm_atomic_state *state) |
| 1001 | { |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 1002 | struct drm_plane *plane; |
| 1003 | struct drm_plane_state *plane_state; |
Daniel Vetter | e2330f0 | 2014-10-29 11:34:56 +0100 | [diff] [blame] | 1004 | int i; |
| 1005 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 1006 | for_each_plane_in_state(state, plane, plane_state, i) { |
| 1007 | if (!plane->state->fence) |
Daniel Vetter | e2330f0 | 2014-10-29 11:34:56 +0100 | [diff] [blame] | 1008 | continue; |
| 1009 | |
| 1010 | WARN_ON(!plane->state->fb); |
| 1011 | |
| 1012 | fence_wait(plane->state->fence, false); |
| 1013 | fence_put(plane->state->fence); |
| 1014 | plane->state->fence = NULL; |
| 1015 | } |
| 1016 | } |
Rob Clark | 4c5b7f3 | 2016-03-18 19:14:55 -0400 | [diff] [blame] | 1017 | EXPORT_SYMBOL(drm_atomic_helper_wait_for_fences); |
Daniel Vetter | e2330f0 | 2014-10-29 11:34:56 +0100 | [diff] [blame] | 1018 | |
John Keeping | c240906 | 2016-01-19 10:46:58 +0000 | [diff] [blame] | 1019 | /** |
| 1020 | * drm_atomic_helper_framebuffer_changed - check if framebuffer has changed |
| 1021 | * @dev: DRM device |
| 1022 | * @old_state: atomic state object with old state structures |
| 1023 | * @crtc: DRM crtc |
| 1024 | * |
| 1025 | * Checks whether the framebuffer used for this CRTC changes as a result of |
| 1026 | * the atomic update. This is useful for drivers which cannot use |
| 1027 | * drm_atomic_helper_wait_for_vblanks() and need to reimplement its |
| 1028 | * functionality. |
| 1029 | * |
| 1030 | * Returns: |
| 1031 | * true if the framebuffer changed. |
| 1032 | */ |
| 1033 | bool drm_atomic_helper_framebuffer_changed(struct drm_device *dev, |
| 1034 | struct drm_atomic_state *old_state, |
| 1035 | struct drm_crtc *crtc) |
Daniel Vetter | ab58e33 | 2014-11-24 20:42:42 +0100 | [diff] [blame] | 1036 | { |
| 1037 | struct drm_plane *plane; |
| 1038 | struct drm_plane_state *old_plane_state; |
Daniel Vetter | ab58e33 | 2014-11-24 20:42:42 +0100 | [diff] [blame] | 1039 | int i; |
| 1040 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 1041 | for_each_plane_in_state(old_state, plane, old_plane_state, i) { |
Daniel Vetter | ab58e33 | 2014-11-24 20:42:42 +0100 | [diff] [blame] | 1042 | if (plane->state->crtc != crtc && |
| 1043 | old_plane_state->crtc != crtc) |
| 1044 | continue; |
| 1045 | |
| 1046 | if (plane->state->fb != old_plane_state->fb) |
| 1047 | return true; |
| 1048 | } |
| 1049 | |
| 1050 | return false; |
| 1051 | } |
John Keeping | c240906 | 2016-01-19 10:46:58 +0000 | [diff] [blame] | 1052 | EXPORT_SYMBOL(drm_atomic_helper_framebuffer_changed); |
Daniel Vetter | ab58e33 | 2014-11-24 20:42:42 +0100 | [diff] [blame] | 1053 | |
Rob Clark | 5ee3229 | 2014-11-11 19:38:59 -0500 | [diff] [blame] | 1054 | /** |
| 1055 | * drm_atomic_helper_wait_for_vblanks - wait for vblank on crtcs |
| 1056 | * @dev: DRM device |
| 1057 | * @old_state: atomic state object with old state structures |
| 1058 | * |
| 1059 | * Helper to, after atomic commit, wait for vblanks on all effected |
| 1060 | * crtcs (ie. before cleaning up old framebuffers using |
Daniel Vetter | ab58e33 | 2014-11-24 20:42:42 +0100 | [diff] [blame] | 1061 | * drm_atomic_helper_cleanup_planes()). It will only wait on crtcs where the |
| 1062 | * framebuffers have actually changed to optimize for the legacy cursor and |
| 1063 | * plane update use-case. |
Rob Clark | 5ee3229 | 2014-11-11 19:38:59 -0500 | [diff] [blame] | 1064 | */ |
| 1065 | void |
| 1066 | drm_atomic_helper_wait_for_vblanks(struct drm_device *dev, |
| 1067 | struct drm_atomic_state *old_state) |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 1068 | { |
| 1069 | struct drm_crtc *crtc; |
| 1070 | struct drm_crtc_state *old_crtc_state; |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 1071 | int i, ret; |
| 1072 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 1073 | for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) { |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 1074 | /* No one cares about the old state, so abuse it for tracking |
| 1075 | * and store whether we hold a vblank reference (and should do a |
| 1076 | * vblank wait) in the ->enable boolean. */ |
| 1077 | old_crtc_state->enable = false; |
| 1078 | |
| 1079 | if (!crtc->state->enable) |
| 1080 | continue; |
| 1081 | |
Daniel Vetter | f02ad90 | 2015-01-22 16:36:23 +0100 | [diff] [blame] | 1082 | /* Legacy cursor ioctls are completely unsynced, and userspace |
| 1083 | * relies on that (by doing tons of cursor updates). */ |
| 1084 | if (old_state->legacy_cursor_update) |
| 1085 | continue; |
| 1086 | |
John Keeping | c240906 | 2016-01-19 10:46:58 +0000 | [diff] [blame] | 1087 | if (!drm_atomic_helper_framebuffer_changed(dev, |
| 1088 | old_state, crtc)) |
Daniel Vetter | ab58e33 | 2014-11-24 20:42:42 +0100 | [diff] [blame] | 1089 | continue; |
| 1090 | |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 1091 | ret = drm_crtc_vblank_get(crtc); |
| 1092 | if (ret != 0) |
| 1093 | continue; |
| 1094 | |
| 1095 | old_crtc_state->enable = true; |
Thierry Reding | d485363 | 2015-08-12 17:00:35 +0200 | [diff] [blame] | 1096 | old_crtc_state->last_vblank_count = drm_crtc_vblank_count(crtc); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 1097 | } |
| 1098 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 1099 | for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) { |
| 1100 | if (!old_crtc_state->enable) |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 1101 | continue; |
| 1102 | |
| 1103 | ret = wait_event_timeout(dev->vblank[i].queue, |
| 1104 | old_crtc_state->last_vblank_count != |
Thierry Reding | d485363 | 2015-08-12 17:00:35 +0200 | [diff] [blame] | 1105 | drm_crtc_vblank_count(crtc), |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 1106 | msecs_to_jiffies(50)); |
| 1107 | |
Ville Syrjälä | 8d4d0d7 | 2016-04-18 14:29:33 +0300 | [diff] [blame] | 1108 | WARN(!ret, "[CRTC:%d] vblank wait timed out\n", crtc->base.id); |
| 1109 | |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 1110 | drm_crtc_vblank_put(crtc); |
| 1111 | } |
| 1112 | } |
Rob Clark | 5ee3229 | 2014-11-11 19:38:59 -0500 | [diff] [blame] | 1113 | EXPORT_SYMBOL(drm_atomic_helper_wait_for_vblanks); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 1114 | |
| 1115 | /** |
| 1116 | * drm_atomic_helper_commit - commit validated state object |
| 1117 | * @dev: DRM device |
| 1118 | * @state: the driver state object |
Maarten Lankhorst | 286dbb8 | 2016-04-26 16:11:34 +0200 | [diff] [blame] | 1119 | * @nonblocking: whether nonblocking behavior is requested. |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 1120 | * |
| 1121 | * This function commits a with drm_atomic_helper_check() pre-validated state |
| 1122 | * object. This can still fail when e.g. the framebuffer reservation fails. For |
Maarten Lankhorst | 286dbb8 | 2016-04-26 16:11:34 +0200 | [diff] [blame] | 1123 | * now this doesn't implement nonblocking commits. |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 1124 | * |
Maarten Lankhorst | 286dbb8 | 2016-04-26 16:11:34 +0200 | [diff] [blame] | 1125 | * Note that right now this function does not support nonblocking commits, hence |
Daniel Vetter | 6e48ae3 | 2015-09-08 13:52:45 +0200 | [diff] [blame] | 1126 | * driver writers must implement their own version for now. Also note that the |
| 1127 | * default ordering of how the various stages are called is to match the legacy |
| 1128 | * modeset helper library closest. One peculiarity of that is that it doesn't |
| 1129 | * mesh well with runtime PM at all. |
| 1130 | * |
| 1131 | * For drivers supporting runtime PM the recommended sequence is |
| 1132 | * |
| 1133 | * drm_atomic_helper_commit_modeset_disables(dev, state); |
| 1134 | * |
| 1135 | * drm_atomic_helper_commit_modeset_enables(dev, state); |
| 1136 | * |
| 1137 | * drm_atomic_helper_commit_planes(dev, state, true); |
| 1138 | * |
| 1139 | * See the kerneldoc entries for these three functions for more details. |
| 1140 | * |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 1141 | * RETURNS |
| 1142 | * Zero for success or -errno. |
| 1143 | */ |
| 1144 | int drm_atomic_helper_commit(struct drm_device *dev, |
| 1145 | struct drm_atomic_state *state, |
Maarten Lankhorst | 286dbb8 | 2016-04-26 16:11:34 +0200 | [diff] [blame] | 1146 | bool nonblock) |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 1147 | { |
| 1148 | int ret; |
| 1149 | |
Maarten Lankhorst | 286dbb8 | 2016-04-26 16:11:34 +0200 | [diff] [blame] | 1150 | if (nonblock) |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 1151 | return -EBUSY; |
| 1152 | |
| 1153 | ret = drm_atomic_helper_prepare_planes(dev, state); |
| 1154 | if (ret) |
| 1155 | return ret; |
| 1156 | |
| 1157 | /* |
| 1158 | * This is the point of no return - everything below never fails except |
| 1159 | * when the hw goes bonghits. Which means we can commit the new state on |
| 1160 | * the software side now. |
| 1161 | */ |
| 1162 | |
| 1163 | drm_atomic_helper_swap_state(dev, state); |
| 1164 | |
| 1165 | /* |
| 1166 | * Everything below can be run asynchronously without the need to grab |
John Hunter | f98bd3e | 2015-03-17 15:30:26 +0800 | [diff] [blame] | 1167 | * any modeset locks at all under one condition: It must be guaranteed |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 1168 | * that the asynchronous work has either been cancelled (if the driver |
| 1169 | * supports it, which at least requires that the framebuffers get |
| 1170 | * cleaned up with drm_atomic_helper_cleanup_planes()) or completed |
| 1171 | * before the new state gets committed on the software side with |
| 1172 | * drm_atomic_helper_swap_state(). |
| 1173 | * |
| 1174 | * This scheme allows new atomic state updates to be prepared and |
| 1175 | * checked in parallel to the asynchronous completion of the previous |
| 1176 | * update. Which is important since compositors need to figure out the |
| 1177 | * composition of the next frame right after having submitted the |
| 1178 | * current layout. |
| 1179 | */ |
| 1180 | |
Rob Clark | 4c5b7f3 | 2016-03-18 19:14:55 -0400 | [diff] [blame] | 1181 | drm_atomic_helper_wait_for_fences(dev, state); |
Daniel Vetter | e2330f0 | 2014-10-29 11:34:56 +0100 | [diff] [blame] | 1182 | |
Daniel Vetter | 1af434a | 2015-02-22 12:24:19 +0100 | [diff] [blame] | 1183 | drm_atomic_helper_commit_modeset_disables(dev, state); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 1184 | |
Daniel Vetter | aef9dbb | 2015-09-08 12:02:07 +0200 | [diff] [blame] | 1185 | drm_atomic_helper_commit_planes(dev, state, false); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 1186 | |
Daniel Vetter | 1af434a | 2015-02-22 12:24:19 +0100 | [diff] [blame] | 1187 | drm_atomic_helper_commit_modeset_enables(dev, state); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 1188 | |
Rob Clark | 5ee3229 | 2014-11-11 19:38:59 -0500 | [diff] [blame] | 1189 | drm_atomic_helper_wait_for_vblanks(dev, state); |
Daniel Vetter | 623369e | 2014-09-16 17:50:47 +0200 | [diff] [blame] | 1190 | |
| 1191 | drm_atomic_helper_cleanup_planes(dev, state); |
| 1192 | |
| 1193 | drm_atomic_state_free(state); |
| 1194 | |
| 1195 | return 0; |
| 1196 | } |
| 1197 | EXPORT_SYMBOL(drm_atomic_helper_commit); |
| 1198 | |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1199 | /** |
Maarten Lankhorst | 286dbb8 | 2016-04-26 16:11:34 +0200 | [diff] [blame] | 1200 | * DOC: implementing nonblocking commit |
Daniel Vetter | e8c833a | 2014-07-27 18:30:19 +0200 | [diff] [blame] | 1201 | * |
Maarten Lankhorst | 286dbb8 | 2016-04-26 16:11:34 +0200 | [diff] [blame] | 1202 | * For now the atomic helpers don't support nonblocking commit directly. If |
| 1203 | * there is real need it could be added though, using the dma-buf fence |
| 1204 | * infrastructure for generic synchronization with outstanding rendering. |
Daniel Vetter | e8c833a | 2014-07-27 18:30:19 +0200 | [diff] [blame] | 1205 | * |
Maarten Lankhorst | 286dbb8 | 2016-04-26 16:11:34 +0200 | [diff] [blame] | 1206 | * For now drivers have to implement nonblocking commit themselves, with the |
| 1207 | * following sequence being the recommended one: |
Daniel Vetter | e8c833a | 2014-07-27 18:30:19 +0200 | [diff] [blame] | 1208 | * |
| 1209 | * 1. Run drm_atomic_helper_prepare_planes() first. This is the only function |
| 1210 | * which commit needs to call which can fail, so we want to run it first and |
| 1211 | * synchronously. |
| 1212 | * |
Maarten Lankhorst | 286dbb8 | 2016-04-26 16:11:34 +0200 | [diff] [blame] | 1213 | * 2. Synchronize with any outstanding nonblocking commit worker threads which |
Daniel Vetter | e8c833a | 2014-07-27 18:30:19 +0200 | [diff] [blame] | 1214 | * might be affected the new state update. This can be done by either cancelling |
| 1215 | * or flushing the work items, depending upon whether the driver can deal with |
| 1216 | * cancelled updates. Note that it is important to ensure that the framebuffer |
| 1217 | * cleanup is still done when cancelling. |
| 1218 | * |
| 1219 | * For sufficient parallelism it is recommended to have a work item per crtc |
| 1220 | * (for updates which don't touch global state) and a global one. Then we only |
| 1221 | * need to synchronize with the crtc work items for changed crtcs and the global |
| 1222 | * work item, which allows nice concurrent updates on disjoint sets of crtcs. |
| 1223 | * |
| 1224 | * 3. The software state is updated synchronously with |
Daniel Vetter | 26196f7 | 2015-08-25 16:26:03 +0200 | [diff] [blame] | 1225 | * drm_atomic_helper_swap_state(). Doing this under the protection of all modeset |
Daniel Vetter | e8c833a | 2014-07-27 18:30:19 +0200 | [diff] [blame] | 1226 | * locks means concurrent callers never see inconsistent state. And doing this |
Maarten Lankhorst | 286dbb8 | 2016-04-26 16:11:34 +0200 | [diff] [blame] | 1227 | * while it's guaranteed that no relevant nonblocking worker runs means that |
| 1228 | * nonblocking workers do not need grab any locks. Actually they must not grab |
| 1229 | * locks, for otherwise the work flushing will deadlock. |
Daniel Vetter | e8c833a | 2014-07-27 18:30:19 +0200 | [diff] [blame] | 1230 | * |
| 1231 | * 4. Schedule a work item to do all subsequent steps, using the split-out |
| 1232 | * commit helpers: a) pre-plane commit b) plane commit c) post-plane commit and |
| 1233 | * then cleaning up the framebuffers after the old framebuffer is no longer |
| 1234 | * being displayed. |
| 1235 | */ |
| 1236 | |
| 1237 | /** |
Daniel Vetter | 2e3afd4 | 2015-02-26 14:17:38 +0100 | [diff] [blame] | 1238 | * drm_atomic_helper_prepare_planes - prepare plane resources before commit |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1239 | * @dev: DRM device |
Daniel Vetter | 2e3afd4 | 2015-02-26 14:17:38 +0100 | [diff] [blame] | 1240 | * @state: atomic state object with new state structures |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1241 | * |
| 1242 | * This function prepares plane state, specifically framebuffers, for the new |
| 1243 | * configuration. If any failure is encountered this function will call |
| 1244 | * ->cleanup_fb on any already successfully prepared framebuffer. |
| 1245 | * |
| 1246 | * Returns: |
| 1247 | * 0 on success, negative error code on failure. |
| 1248 | */ |
| 1249 | int drm_atomic_helper_prepare_planes(struct drm_device *dev, |
| 1250 | struct drm_atomic_state *state) |
| 1251 | { |
| 1252 | int nplanes = dev->mode_config.num_total_plane; |
| 1253 | int ret, i; |
| 1254 | |
| 1255 | for (i = 0; i < nplanes; i++) { |
Ville Syrjälä | b5ceff2 | 2015-03-10 14:35:20 +0200 | [diff] [blame] | 1256 | const struct drm_plane_helper_funcs *funcs; |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1257 | struct drm_plane *plane = state->planes[i]; |
Tvrtko Ursulin | d136dfe | 2015-03-03 14:22:31 +0000 | [diff] [blame] | 1258 | struct drm_plane_state *plane_state = state->plane_states[i]; |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1259 | |
| 1260 | if (!plane) |
| 1261 | continue; |
| 1262 | |
| 1263 | funcs = plane->helper_private; |
| 1264 | |
Maarten Lankhorst | 844f911 | 2015-09-02 10:42:40 +0200 | [diff] [blame] | 1265 | if (funcs->prepare_fb) { |
| 1266 | ret = funcs->prepare_fb(plane, plane_state); |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1267 | if (ret) |
| 1268 | goto fail; |
| 1269 | } |
| 1270 | } |
| 1271 | |
| 1272 | return 0; |
| 1273 | |
| 1274 | fail: |
| 1275 | for (i--; i >= 0; i--) { |
Ville Syrjälä | b5ceff2 | 2015-03-10 14:35:20 +0200 | [diff] [blame] | 1276 | const struct drm_plane_helper_funcs *funcs; |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1277 | struct drm_plane *plane = state->planes[i]; |
Tvrtko Ursulin | d136dfe | 2015-03-03 14:22:31 +0000 | [diff] [blame] | 1278 | struct drm_plane_state *plane_state = state->plane_states[i]; |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1279 | |
| 1280 | if (!plane) |
| 1281 | continue; |
| 1282 | |
| 1283 | funcs = plane->helper_private; |
| 1284 | |
Maarten Lankhorst | 844f911 | 2015-09-02 10:42:40 +0200 | [diff] [blame] | 1285 | if (funcs->cleanup_fb) |
| 1286 | funcs->cleanup_fb(plane, plane_state); |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1287 | |
| 1288 | } |
| 1289 | |
| 1290 | return ret; |
| 1291 | } |
| 1292 | EXPORT_SYMBOL(drm_atomic_helper_prepare_planes); |
| 1293 | |
Daniel Vetter | aef9dbb | 2015-09-08 12:02:07 +0200 | [diff] [blame] | 1294 | bool plane_crtc_active(struct drm_plane_state *state) |
| 1295 | { |
| 1296 | return state->crtc && state->crtc->state->active; |
| 1297 | } |
| 1298 | |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1299 | /** |
| 1300 | * drm_atomic_helper_commit_planes - commit plane state |
| 1301 | * @dev: DRM device |
Daniel Vetter | b0fcfc8 | 2014-11-19 18:38:11 +0100 | [diff] [blame] | 1302 | * @old_state: atomic state object with old state structures |
Daniel Vetter | aef9dbb | 2015-09-08 12:02:07 +0200 | [diff] [blame] | 1303 | * @active_only: Only commit on active CRTC if set |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1304 | * |
| 1305 | * This function commits the new plane state using the plane and atomic helper |
| 1306 | * functions for planes and crtcs. It assumes that the atomic state has already |
| 1307 | * been pushed into the relevant object state pointers, since this step can no |
| 1308 | * longer fail. |
| 1309 | * |
Daniel Vetter | b0fcfc8 | 2014-11-19 18:38:11 +0100 | [diff] [blame] | 1310 | * 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] | 1311 | * crtcs need to be updated though. |
Maarten Lankhorst | de28d02 | 2015-05-19 16:41:01 +0200 | [diff] [blame] | 1312 | * |
| 1313 | * Note that this function does all plane updates across all CRTCs in one step. |
| 1314 | * If the hardware can't support this approach look at |
| 1315 | * drm_atomic_helper_commit_planes_on_crtc() instead. |
Daniel Vetter | 6e48ae3 | 2015-09-08 13:52:45 +0200 | [diff] [blame] | 1316 | * |
| 1317 | * Plane parameters can be updated by applications while the associated CRTC is |
| 1318 | * disabled. The DRM/KMS core will store the parameters in the plane state, |
| 1319 | * which will be available to the driver when the CRTC is turned on. As a result |
| 1320 | * most drivers don't need to be immediately notified of plane updates for a |
| 1321 | * disabled CRTC. |
| 1322 | * |
| 1323 | * Unless otherwise needed, drivers are advised to set the @active_only |
| 1324 | * parameters to true in order not to receive plane update notifications related |
| 1325 | * to a disabled CRTC. This avoids the need to manually ignore plane updates in |
| 1326 | * driver code when the driver and/or hardware can't or just don't need to deal |
| 1327 | * with updates on disabled CRTCs, for example when supporting runtime PM. |
| 1328 | * |
| 1329 | * The drm_atomic_helper_commit() default implementation only sets @active_only |
| 1330 | * to false to most closely match the behaviour of the legacy helpers. This should |
| 1331 | * not be copied blindly by drivers. |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1332 | */ |
| 1333 | void drm_atomic_helper_commit_planes(struct drm_device *dev, |
Daniel Vetter | aef9dbb | 2015-09-08 12:02:07 +0200 | [diff] [blame] | 1334 | struct drm_atomic_state *old_state, |
| 1335 | bool active_only) |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1336 | { |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 1337 | struct drm_crtc *crtc; |
| 1338 | struct drm_crtc_state *old_crtc_state; |
| 1339 | struct drm_plane *plane; |
| 1340 | struct drm_plane_state *old_plane_state; |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1341 | int i; |
| 1342 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 1343 | for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) { |
Ville Syrjälä | b5ceff2 | 2015-03-10 14:35:20 +0200 | [diff] [blame] | 1344 | const struct drm_crtc_helper_funcs *funcs; |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1345 | |
| 1346 | funcs = crtc->helper_private; |
| 1347 | |
| 1348 | if (!funcs || !funcs->atomic_begin) |
| 1349 | continue; |
| 1350 | |
Daniel Vetter | aef9dbb | 2015-09-08 12:02:07 +0200 | [diff] [blame] | 1351 | if (active_only && !crtc->state->active) |
| 1352 | continue; |
| 1353 | |
Maarten Lankhorst | 613d2b2 | 2015-07-21 13:28:58 +0200 | [diff] [blame] | 1354 | funcs->atomic_begin(crtc, old_crtc_state); |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1355 | } |
| 1356 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 1357 | for_each_plane_in_state(old_state, plane, old_plane_state, i) { |
Ville Syrjälä | b5ceff2 | 2015-03-10 14:35:20 +0200 | [diff] [blame] | 1358 | const struct drm_plane_helper_funcs *funcs; |
Laurent Pinchart | 216c59d | 2015-09-11 00:07:19 +0300 | [diff] [blame] | 1359 | bool disabling; |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1360 | |
| 1361 | funcs = plane->helper_private; |
| 1362 | |
Thierry Reding | 3cad4b6 | 2014-11-25 13:05:12 +0100 | [diff] [blame] | 1363 | if (!funcs) |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1364 | continue; |
| 1365 | |
Laurent Pinchart | 216c59d | 2015-09-11 00:07:19 +0300 | [diff] [blame] | 1366 | disabling = drm_atomic_plane_disabling(plane, old_plane_state); |
| 1367 | |
| 1368 | if (active_only) { |
| 1369 | /* |
| 1370 | * Skip planes related to inactive CRTCs. If the plane |
| 1371 | * is enabled use the state of the current CRTC. If the |
| 1372 | * plane is being disabled use the state of the old |
| 1373 | * CRTC to avoid skipping planes being disabled on an |
| 1374 | * active CRTC. |
| 1375 | */ |
| 1376 | if (!disabling && !plane_crtc_active(plane->state)) |
| 1377 | continue; |
| 1378 | if (disabling && !plane_crtc_active(old_plane_state)) |
| 1379 | continue; |
| 1380 | } |
Daniel Vetter | aef9dbb | 2015-09-08 12:02:07 +0200 | [diff] [blame] | 1381 | |
Thierry Reding | 407b8bd | 2014-11-20 12:05:50 +0100 | [diff] [blame] | 1382 | /* |
| 1383 | * Special-case disabling the plane if drivers support it. |
| 1384 | */ |
Laurent Pinchart | 216c59d | 2015-09-11 00:07:19 +0300 | [diff] [blame] | 1385 | if (disabling && funcs->atomic_disable) |
Thierry Reding | 407b8bd | 2014-11-20 12:05:50 +0100 | [diff] [blame] | 1386 | funcs->atomic_disable(plane, old_plane_state); |
Laurent Pinchart | 216c59d | 2015-09-11 00:07:19 +0300 | [diff] [blame] | 1387 | else if (plane->state->crtc || disabling) |
Thierry Reding | 407b8bd | 2014-11-20 12:05:50 +0100 | [diff] [blame] | 1388 | funcs->atomic_update(plane, old_plane_state); |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1389 | } |
| 1390 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 1391 | for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) { |
Ville Syrjälä | b5ceff2 | 2015-03-10 14:35:20 +0200 | [diff] [blame] | 1392 | const struct drm_crtc_helper_funcs *funcs; |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1393 | |
| 1394 | funcs = crtc->helper_private; |
| 1395 | |
| 1396 | if (!funcs || !funcs->atomic_flush) |
| 1397 | continue; |
| 1398 | |
Daniel Vetter | aef9dbb | 2015-09-08 12:02:07 +0200 | [diff] [blame] | 1399 | if (active_only && !crtc->state->active) |
| 1400 | continue; |
| 1401 | |
Maarten Lankhorst | 613d2b2 | 2015-07-21 13:28:58 +0200 | [diff] [blame] | 1402 | funcs->atomic_flush(crtc, old_crtc_state); |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1403 | } |
| 1404 | } |
| 1405 | EXPORT_SYMBOL(drm_atomic_helper_commit_planes); |
| 1406 | |
| 1407 | /** |
Maarten Lankhorst | de28d02 | 2015-05-19 16:41:01 +0200 | [diff] [blame] | 1408 | * drm_atomic_helper_commit_planes_on_crtc - commit plane state for a crtc |
| 1409 | * @old_crtc_state: atomic state object with the old crtc state |
| 1410 | * |
| 1411 | * This function commits the new plane state using the plane and atomic helper |
| 1412 | * functions for planes on the specific crtc. It assumes that the atomic state |
| 1413 | * has already been pushed into the relevant object state pointers, since this |
| 1414 | * step can no longer fail. |
| 1415 | * |
| 1416 | * This function is useful when plane updates should be done crtc-by-crtc |
| 1417 | * instead of one global step like drm_atomic_helper_commit_planes() does. |
| 1418 | * |
| 1419 | * This function can only be savely used when planes are not allowed to move |
| 1420 | * between different CRTCs because this function doesn't handle inter-CRTC |
| 1421 | * depencies. Callers need to ensure that either no such depencies exist, |
| 1422 | * resolve them through ordering of commit calls or through some other means. |
| 1423 | */ |
| 1424 | void |
| 1425 | drm_atomic_helper_commit_planes_on_crtc(struct drm_crtc_state *old_crtc_state) |
| 1426 | { |
| 1427 | const struct drm_crtc_helper_funcs *crtc_funcs; |
| 1428 | struct drm_crtc *crtc = old_crtc_state->crtc; |
| 1429 | struct drm_atomic_state *old_state = old_crtc_state->state; |
| 1430 | struct drm_plane *plane; |
| 1431 | unsigned plane_mask; |
| 1432 | |
| 1433 | plane_mask = old_crtc_state->plane_mask; |
| 1434 | plane_mask |= crtc->state->plane_mask; |
| 1435 | |
| 1436 | crtc_funcs = crtc->helper_private; |
| 1437 | if (crtc_funcs && crtc_funcs->atomic_begin) |
Maarten Lankhorst | 613d2b2 | 2015-07-21 13:28:58 +0200 | [diff] [blame] | 1438 | crtc_funcs->atomic_begin(crtc, old_crtc_state); |
Maarten Lankhorst | de28d02 | 2015-05-19 16:41:01 +0200 | [diff] [blame] | 1439 | |
| 1440 | drm_for_each_plane_mask(plane, crtc->dev, plane_mask) { |
| 1441 | struct drm_plane_state *old_plane_state = |
| 1442 | drm_atomic_get_existing_plane_state(old_state, plane); |
| 1443 | const struct drm_plane_helper_funcs *plane_funcs; |
| 1444 | |
| 1445 | plane_funcs = plane->helper_private; |
| 1446 | |
| 1447 | if (!old_plane_state || !plane_funcs) |
| 1448 | continue; |
| 1449 | |
| 1450 | WARN_ON(plane->state->crtc && plane->state->crtc != crtc); |
| 1451 | |
| 1452 | if (drm_atomic_plane_disabling(plane, old_plane_state) && |
| 1453 | plane_funcs->atomic_disable) |
| 1454 | plane_funcs->atomic_disable(plane, old_plane_state); |
| 1455 | else if (plane->state->crtc || |
| 1456 | drm_atomic_plane_disabling(plane, old_plane_state)) |
| 1457 | plane_funcs->atomic_update(plane, old_plane_state); |
| 1458 | } |
| 1459 | |
| 1460 | if (crtc_funcs && crtc_funcs->atomic_flush) |
Maarten Lankhorst | 613d2b2 | 2015-07-21 13:28:58 +0200 | [diff] [blame] | 1461 | crtc_funcs->atomic_flush(crtc, old_crtc_state); |
Maarten Lankhorst | de28d02 | 2015-05-19 16:41:01 +0200 | [diff] [blame] | 1462 | } |
| 1463 | EXPORT_SYMBOL(drm_atomic_helper_commit_planes_on_crtc); |
| 1464 | |
| 1465 | /** |
Jyri Sarha | 6753ba9 | 2015-11-27 16:14:01 +0200 | [diff] [blame] | 1466 | * drm_atomic_helper_disable_planes_on_crtc - helper to disable CRTC's planes |
| 1467 | * @crtc: CRTC |
| 1468 | * @atomic: if set, synchronize with CRTC's atomic_begin/flush hooks |
| 1469 | * |
| 1470 | * Disables all planes associated with the given CRTC. This can be |
| 1471 | * used for instance in the CRTC helper disable callback to disable |
| 1472 | * all planes before shutting down the display pipeline. |
| 1473 | * |
| 1474 | * If the atomic-parameter is set the function calls the CRTC's |
| 1475 | * atomic_begin hook before and atomic_flush hook after disabling the |
| 1476 | * planes. |
| 1477 | * |
| 1478 | * It is a bug to call this function without having implemented the |
| 1479 | * ->atomic_disable() plane hook. |
| 1480 | */ |
| 1481 | void drm_atomic_helper_disable_planes_on_crtc(struct drm_crtc *crtc, |
| 1482 | bool atomic) |
| 1483 | { |
| 1484 | const struct drm_crtc_helper_funcs *crtc_funcs = |
| 1485 | crtc->helper_private; |
| 1486 | struct drm_plane *plane; |
| 1487 | |
| 1488 | if (atomic && crtc_funcs && crtc_funcs->atomic_begin) |
| 1489 | crtc_funcs->atomic_begin(crtc, NULL); |
| 1490 | |
| 1491 | drm_for_each_plane(plane, crtc->dev) { |
| 1492 | const struct drm_plane_helper_funcs *plane_funcs = |
| 1493 | plane->helper_private; |
| 1494 | |
| 1495 | if (plane->state->crtc != crtc || !plane_funcs) |
| 1496 | continue; |
| 1497 | |
| 1498 | WARN_ON(!plane_funcs->atomic_disable); |
| 1499 | if (plane_funcs->atomic_disable) |
| 1500 | plane_funcs->atomic_disable(plane, NULL); |
| 1501 | } |
| 1502 | |
| 1503 | if (atomic && crtc_funcs && crtc_funcs->atomic_flush) |
| 1504 | crtc_funcs->atomic_flush(crtc, NULL); |
| 1505 | } |
| 1506 | EXPORT_SYMBOL(drm_atomic_helper_disable_planes_on_crtc); |
| 1507 | |
| 1508 | /** |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1509 | * drm_atomic_helper_cleanup_planes - cleanup plane resources after commit |
| 1510 | * @dev: DRM device |
| 1511 | * @old_state: atomic state object with old state structures |
| 1512 | * |
| 1513 | * This function cleans up plane state, specifically framebuffers, from the old |
| 1514 | * configuration. Hence the old configuration must be perserved in @old_state to |
| 1515 | * be able to call this function. |
| 1516 | * |
| 1517 | * This function must also be called on the new state when the atomic update |
| 1518 | * fails at any point after calling drm_atomic_helper_prepare_planes(). |
| 1519 | */ |
| 1520 | void drm_atomic_helper_cleanup_planes(struct drm_device *dev, |
| 1521 | struct drm_atomic_state *old_state) |
| 1522 | { |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 1523 | struct drm_plane *plane; |
| 1524 | struct drm_plane_state *plane_state; |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1525 | int i; |
| 1526 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 1527 | for_each_plane_in_state(old_state, plane, plane_state, i) { |
Ville Syrjälä | b5ceff2 | 2015-03-10 14:35:20 +0200 | [diff] [blame] | 1528 | const struct drm_plane_helper_funcs *funcs; |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1529 | |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1530 | funcs = plane->helper_private; |
| 1531 | |
Maarten Lankhorst | 844f911 | 2015-09-02 10:42:40 +0200 | [diff] [blame] | 1532 | if (funcs->cleanup_fb) |
| 1533 | funcs->cleanup_fb(plane, plane_state); |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1534 | } |
| 1535 | } |
| 1536 | EXPORT_SYMBOL(drm_atomic_helper_cleanup_planes); |
| 1537 | |
| 1538 | /** |
| 1539 | * drm_atomic_helper_swap_state - store atomic state into current sw state |
| 1540 | * @dev: DRM device |
| 1541 | * @state: atomic state |
| 1542 | * |
| 1543 | * This function stores the atomic state into the current state pointers in all |
| 1544 | * driver objects. It should be called after all failing steps have been done |
| 1545 | * and succeeded, but before the actual hardware state is committed. |
| 1546 | * |
| 1547 | * For cleanup and error recovery the current state for all changed objects will |
| 1548 | * be swaped into @state. |
| 1549 | * |
| 1550 | * With that sequence it fits perfectly into the plane prepare/cleanup sequence: |
| 1551 | * |
| 1552 | * 1. Call drm_atomic_helper_prepare_planes() with the staged atomic state. |
| 1553 | * |
| 1554 | * 2. Do any other steps that might fail. |
| 1555 | * |
| 1556 | * 3. Put the staged state into the current state pointers with this function. |
| 1557 | * |
| 1558 | * 4. Actually commit the hardware state. |
| 1559 | * |
Daniel Vetter | 26196f7 | 2015-08-25 16:26:03 +0200 | [diff] [blame] | 1560 | * 5. Call drm_atomic_helper_cleanup_planes() with @state, which since step 3 |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1561 | * contains the old state. Also do any other cleanup required with that state. |
| 1562 | */ |
| 1563 | void drm_atomic_helper_swap_state(struct drm_device *dev, |
| 1564 | struct drm_atomic_state *state) |
| 1565 | { |
| 1566 | int i; |
| 1567 | |
Maarten Lankhorst | 5fff80b | 2016-02-17 08:32:05 +0100 | [diff] [blame] | 1568 | for (i = 0; i < state->num_connector; i++) { |
Daniel Vetter | c2fcd27 | 2014-11-05 00:14:14 +0100 | [diff] [blame] | 1569 | struct drm_connector *connector = state->connectors[i]; |
| 1570 | |
| 1571 | if (!connector) |
| 1572 | continue; |
| 1573 | |
| 1574 | connector->state->state = state; |
| 1575 | swap(state->connector_states[i], connector->state); |
| 1576 | connector->state->state = NULL; |
| 1577 | } |
| 1578 | |
| 1579 | for (i = 0; i < dev->mode_config.num_crtc; i++) { |
| 1580 | struct drm_crtc *crtc = state->crtcs[i]; |
| 1581 | |
| 1582 | if (!crtc) |
| 1583 | continue; |
| 1584 | |
| 1585 | crtc->state->state = state; |
| 1586 | swap(state->crtc_states[i], crtc->state); |
| 1587 | crtc->state->state = NULL; |
| 1588 | } |
| 1589 | |
| 1590 | for (i = 0; i < dev->mode_config.num_total_plane; i++) { |
| 1591 | struct drm_plane *plane = state->planes[i]; |
| 1592 | |
| 1593 | if (!plane) |
| 1594 | continue; |
| 1595 | |
| 1596 | plane->state->state = state; |
| 1597 | swap(state->plane_states[i], plane->state); |
| 1598 | plane->state->state = NULL; |
| 1599 | } |
| 1600 | } |
| 1601 | EXPORT_SYMBOL(drm_atomic_helper_swap_state); |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1602 | |
| 1603 | /** |
| 1604 | * drm_atomic_helper_update_plane - Helper for primary plane update using atomic |
| 1605 | * @plane: plane object to update |
| 1606 | * @crtc: owning CRTC of owning plane |
| 1607 | * @fb: framebuffer to flip onto plane |
| 1608 | * @crtc_x: x offset of primary plane on crtc |
| 1609 | * @crtc_y: y offset of primary plane on crtc |
| 1610 | * @crtc_w: width of primary plane rectangle on crtc |
| 1611 | * @crtc_h: height of primary plane rectangle on crtc |
| 1612 | * @src_x: x offset of @fb for panning |
| 1613 | * @src_y: y offset of @fb for panning |
| 1614 | * @src_w: width of source rectangle in @fb |
| 1615 | * @src_h: height of source rectangle in @fb |
| 1616 | * |
| 1617 | * Provides a default plane update handler using the atomic driver interface. |
| 1618 | * |
| 1619 | * RETURNS: |
| 1620 | * Zero on success, error code on failure |
| 1621 | */ |
| 1622 | int drm_atomic_helper_update_plane(struct drm_plane *plane, |
| 1623 | struct drm_crtc *crtc, |
| 1624 | struct drm_framebuffer *fb, |
| 1625 | int crtc_x, int crtc_y, |
| 1626 | unsigned int crtc_w, unsigned int crtc_h, |
| 1627 | uint32_t src_x, uint32_t src_y, |
| 1628 | uint32_t src_w, uint32_t src_h) |
| 1629 | { |
| 1630 | struct drm_atomic_state *state; |
| 1631 | struct drm_plane_state *plane_state; |
| 1632 | int ret = 0; |
| 1633 | |
| 1634 | state = drm_atomic_state_alloc(plane->dev); |
| 1635 | if (!state) |
| 1636 | return -ENOMEM; |
| 1637 | |
| 1638 | state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc); |
| 1639 | retry: |
| 1640 | plane_state = drm_atomic_get_plane_state(state, plane); |
| 1641 | if (IS_ERR(plane_state)) { |
| 1642 | ret = PTR_ERR(plane_state); |
| 1643 | goto fail; |
| 1644 | } |
| 1645 | |
Daniel Vetter | 07cc0ef | 2014-11-27 15:49:39 +0100 | [diff] [blame] | 1646 | ret = drm_atomic_set_crtc_for_plane(plane_state, crtc); |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1647 | if (ret != 0) |
| 1648 | goto fail; |
Daniel Vetter | 321ebf0 | 2014-11-04 22:57:27 +0100 | [diff] [blame] | 1649 | drm_atomic_set_fb_for_plane(plane_state, fb); |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1650 | plane_state->crtc_x = crtc_x; |
| 1651 | plane_state->crtc_y = crtc_y; |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1652 | plane_state->crtc_w = crtc_w; |
Ville Syrjälä | 02e6f37 | 2015-11-16 17:02:35 +0200 | [diff] [blame] | 1653 | plane_state->crtc_h = crtc_h; |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1654 | plane_state->src_x = src_x; |
| 1655 | plane_state->src_y = src_y; |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1656 | plane_state->src_w = src_w; |
Ville Syrjälä | 02e6f37 | 2015-11-16 17:02:35 +0200 | [diff] [blame] | 1657 | plane_state->src_h = src_h; |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1658 | |
Daniel Vetter | 3671c58 | 2015-05-04 15:40:52 +0200 | [diff] [blame] | 1659 | if (plane == crtc->cursor) |
| 1660 | state->legacy_cursor_update = true; |
| 1661 | |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1662 | ret = drm_atomic_commit(state); |
| 1663 | if (ret != 0) |
| 1664 | goto fail; |
| 1665 | |
| 1666 | /* Driver takes ownership of state on successful commit. */ |
| 1667 | return 0; |
| 1668 | fail: |
| 1669 | if (ret == -EDEADLK) |
| 1670 | goto backoff; |
| 1671 | |
| 1672 | drm_atomic_state_free(state); |
| 1673 | |
| 1674 | return ret; |
| 1675 | backoff: |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1676 | drm_atomic_state_clear(state); |
Daniel Vetter | 6f75cea | 2014-11-19 18:38:07 +0100 | [diff] [blame] | 1677 | drm_atomic_legacy_backoff(state); |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1678 | |
| 1679 | /* |
| 1680 | * Someone might have exchanged the framebuffer while we dropped locks |
| 1681 | * in the backoff code. We need to fix up the fb refcount tracking the |
| 1682 | * core does for us. |
| 1683 | */ |
| 1684 | plane->old_fb = plane->fb; |
| 1685 | |
| 1686 | goto retry; |
| 1687 | } |
| 1688 | EXPORT_SYMBOL(drm_atomic_helper_update_plane); |
| 1689 | |
| 1690 | /** |
| 1691 | * drm_atomic_helper_disable_plane - Helper for primary plane disable using * atomic |
| 1692 | * @plane: plane to disable |
| 1693 | * |
| 1694 | * Provides a default plane disable handler using the atomic driver interface. |
| 1695 | * |
| 1696 | * RETURNS: |
| 1697 | * Zero on success, error code on failure |
| 1698 | */ |
| 1699 | int drm_atomic_helper_disable_plane(struct drm_plane *plane) |
| 1700 | { |
| 1701 | struct drm_atomic_state *state; |
| 1702 | struct drm_plane_state *plane_state; |
| 1703 | int ret = 0; |
| 1704 | |
Jasper St. Pierre | aa54e2e | 2014-11-20 19:59:15 -0800 | [diff] [blame] | 1705 | /* |
| 1706 | * FIXME: Without plane->crtc set we can't get at the implicit legacy |
| 1707 | * acquire context. The real fix will be to wire the acquire ctx through |
| 1708 | * everywhere we need it, but meanwhile prevent chaos by just skipping |
| 1709 | * this noop. The critical case is the cursor ioctls which a) only grab |
| 1710 | * crtc/cursor-plane locks (so we need the crtc to get at the right |
| 1711 | * acquire context) and b) can try to disable the plane multiple times. |
| 1712 | */ |
| 1713 | if (!plane->crtc) |
| 1714 | return 0; |
| 1715 | |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1716 | state = drm_atomic_state_alloc(plane->dev); |
| 1717 | if (!state) |
| 1718 | return -ENOMEM; |
| 1719 | |
| 1720 | state->acquire_ctx = drm_modeset_legacy_acquire_ctx(plane->crtc); |
| 1721 | retry: |
| 1722 | plane_state = drm_atomic_get_plane_state(state, plane); |
| 1723 | if (IS_ERR(plane_state)) { |
| 1724 | ret = PTR_ERR(plane_state); |
| 1725 | goto fail; |
| 1726 | } |
| 1727 | |
Maarten Lankhorst | 24e79d0 | 2015-11-11 11:29:07 +0100 | [diff] [blame] | 1728 | if (plane_state->crtc && (plane == plane->crtc->cursor)) |
| 1729 | plane_state->state->legacy_cursor_update = true; |
| 1730 | |
Rob Clark | bbb1e52 | 2015-08-25 15:35:58 -0400 | [diff] [blame] | 1731 | ret = __drm_atomic_helper_disable_plane(plane, plane_state); |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1732 | if (ret != 0) |
| 1733 | goto fail; |
Daniel Vetter | f02ad90 | 2015-01-22 16:36:23 +0100 | [diff] [blame] | 1734 | |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1735 | ret = drm_atomic_commit(state); |
| 1736 | if (ret != 0) |
| 1737 | goto fail; |
| 1738 | |
| 1739 | /* Driver takes ownership of state on successful commit. */ |
| 1740 | return 0; |
| 1741 | fail: |
| 1742 | if (ret == -EDEADLK) |
| 1743 | goto backoff; |
| 1744 | |
| 1745 | drm_atomic_state_free(state); |
| 1746 | |
| 1747 | return ret; |
| 1748 | backoff: |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1749 | drm_atomic_state_clear(state); |
Daniel Vetter | 6f75cea | 2014-11-19 18:38:07 +0100 | [diff] [blame] | 1750 | drm_atomic_legacy_backoff(state); |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1751 | |
| 1752 | /* |
| 1753 | * Someone might have exchanged the framebuffer while we dropped locks |
| 1754 | * in the backoff code. We need to fix up the fb refcount tracking the |
| 1755 | * core does for us. |
| 1756 | */ |
| 1757 | plane->old_fb = plane->fb; |
| 1758 | |
| 1759 | goto retry; |
| 1760 | } |
| 1761 | EXPORT_SYMBOL(drm_atomic_helper_disable_plane); |
| 1762 | |
Rob Clark | bbb1e52 | 2015-08-25 15:35:58 -0400 | [diff] [blame] | 1763 | /* just used from fb-helper and atomic-helper: */ |
| 1764 | int __drm_atomic_helper_disable_plane(struct drm_plane *plane, |
| 1765 | struct drm_plane_state *plane_state) |
| 1766 | { |
| 1767 | int ret; |
| 1768 | |
| 1769 | ret = drm_atomic_set_crtc_for_plane(plane_state, NULL); |
| 1770 | if (ret != 0) |
| 1771 | return ret; |
| 1772 | |
| 1773 | drm_atomic_set_fb_for_plane(plane_state, NULL); |
| 1774 | plane_state->crtc_x = 0; |
| 1775 | plane_state->crtc_y = 0; |
Rob Clark | bbb1e52 | 2015-08-25 15:35:58 -0400 | [diff] [blame] | 1776 | plane_state->crtc_w = 0; |
Ville Syrjälä | 02e6f37 | 2015-11-16 17:02:35 +0200 | [diff] [blame] | 1777 | plane_state->crtc_h = 0; |
Rob Clark | bbb1e52 | 2015-08-25 15:35:58 -0400 | [diff] [blame] | 1778 | plane_state->src_x = 0; |
| 1779 | plane_state->src_y = 0; |
Rob Clark | bbb1e52 | 2015-08-25 15:35:58 -0400 | [diff] [blame] | 1780 | plane_state->src_w = 0; |
Ville Syrjälä | 02e6f37 | 2015-11-16 17:02:35 +0200 | [diff] [blame] | 1781 | plane_state->src_h = 0; |
Rob Clark | bbb1e52 | 2015-08-25 15:35:58 -0400 | [diff] [blame] | 1782 | |
Rob Clark | bbb1e52 | 2015-08-25 15:35:58 -0400 | [diff] [blame] | 1783 | return 0; |
| 1784 | } |
| 1785 | |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1786 | static int update_output_state(struct drm_atomic_state *state, |
| 1787 | struct drm_mode_set *set) |
| 1788 | { |
| 1789 | struct drm_device *dev = set->crtc->dev; |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 1790 | struct drm_crtc *crtc; |
| 1791 | struct drm_crtc_state *crtc_state; |
| 1792 | struct drm_connector *connector; |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1793 | struct drm_connector_state *conn_state; |
Maarten Lankhorst | 6ab520a | 2016-02-24 09:37:28 +0100 | [diff] [blame] | 1794 | int ret, i; |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1795 | |
| 1796 | ret = drm_modeset_lock(&dev->mode_config.connection_mutex, |
| 1797 | state->acquire_ctx); |
| 1798 | if (ret) |
| 1799 | return ret; |
| 1800 | |
Maarten Lankhorst | 6ab520a | 2016-02-24 09:37:28 +0100 | [diff] [blame] | 1801 | /* First disable all connectors on the target crtc. */ |
| 1802 | ret = drm_atomic_add_affected_connectors(state, set->crtc); |
| 1803 | if (ret) |
| 1804 | return ret; |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1805 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 1806 | for_each_connector_in_state(state, connector, conn_state, i) { |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1807 | if (conn_state->crtc == set->crtc) { |
| 1808 | ret = drm_atomic_set_crtc_for_connector(conn_state, |
| 1809 | NULL); |
| 1810 | if (ret) |
| 1811 | return ret; |
| 1812 | } |
Maarten Lankhorst | 6ab520a | 2016-02-24 09:37:28 +0100 | [diff] [blame] | 1813 | } |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1814 | |
Maarten Lankhorst | 6ab520a | 2016-02-24 09:37:28 +0100 | [diff] [blame] | 1815 | /* Then set all connectors from set->connectors on the target crtc */ |
| 1816 | for (i = 0; i < set->num_connectors; i++) { |
| 1817 | conn_state = drm_atomic_get_connector_state(state, |
| 1818 | set->connectors[i]); |
| 1819 | if (IS_ERR(conn_state)) |
| 1820 | return PTR_ERR(conn_state); |
| 1821 | |
| 1822 | ret = drm_atomic_set_crtc_for_connector(conn_state, |
| 1823 | set->crtc); |
| 1824 | if (ret) |
| 1825 | return ret; |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1826 | } |
| 1827 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 1828 | for_each_crtc_in_state(state, crtc, crtc_state, i) { |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1829 | /* Don't update ->enable for the CRTC in the set_config request, |
| 1830 | * since a mismatch would indicate a bug in the upper layers. |
| 1831 | * The actual modeset code later on will catch any |
| 1832 | * inconsistencies here. */ |
| 1833 | if (crtc == set->crtc) |
| 1834 | continue; |
| 1835 | |
Maarten Lankhorst | 14de6c4 | 2016-01-04 12:53:20 +0100 | [diff] [blame] | 1836 | if (!crtc_state->connector_mask) { |
Laurent Pinchart | c30f55a | 2015-06-22 13:37:46 +0300 | [diff] [blame] | 1837 | ret = drm_atomic_set_mode_prop_for_crtc(crtc_state, |
| 1838 | NULL); |
| 1839 | if (ret < 0) |
| 1840 | return ret; |
| 1841 | |
Maarten Lankhorst | 9b5edbf | 2015-06-01 08:59:53 +0200 | [diff] [blame] | 1842 | crtc_state->active = false; |
Laurent Pinchart | c30f55a | 2015-06-22 13:37:46 +0300 | [diff] [blame] | 1843 | } |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1844 | } |
| 1845 | |
| 1846 | return 0; |
| 1847 | } |
| 1848 | |
| 1849 | /** |
| 1850 | * drm_atomic_helper_set_config - set a new config from userspace |
| 1851 | * @set: mode set configuration |
| 1852 | * |
| 1853 | * Provides a default crtc set_config handler using the atomic driver interface. |
| 1854 | * |
| 1855 | * Returns: |
| 1856 | * Returns 0 on success, negative errno numbers on failure. |
| 1857 | */ |
| 1858 | int drm_atomic_helper_set_config(struct drm_mode_set *set) |
| 1859 | { |
| 1860 | struct drm_atomic_state *state; |
| 1861 | struct drm_crtc *crtc = set->crtc; |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1862 | int ret = 0; |
| 1863 | |
| 1864 | state = drm_atomic_state_alloc(crtc->dev); |
| 1865 | if (!state) |
| 1866 | return -ENOMEM; |
| 1867 | |
Maarten Lankhorst | 40616a2 | 2016-03-03 10:17:39 +0100 | [diff] [blame] | 1868 | state->legacy_set_config = true; |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1869 | state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc); |
| 1870 | retry: |
Rob Clark | bbb1e52 | 2015-08-25 15:35:58 -0400 | [diff] [blame] | 1871 | ret = __drm_atomic_helper_set_config(set, state); |
Daniel Stone | 819364d | 2015-05-26 14:36:48 +0100 | [diff] [blame] | 1872 | if (ret != 0) |
| 1873 | goto fail; |
| 1874 | |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1875 | ret = drm_atomic_commit(state); |
| 1876 | if (ret != 0) |
| 1877 | goto fail; |
| 1878 | |
| 1879 | /* Driver takes ownership of state on successful commit. */ |
| 1880 | return 0; |
| 1881 | fail: |
| 1882 | if (ret == -EDEADLK) |
| 1883 | goto backoff; |
| 1884 | |
| 1885 | drm_atomic_state_free(state); |
| 1886 | |
| 1887 | return ret; |
| 1888 | backoff: |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1889 | drm_atomic_state_clear(state); |
Daniel Vetter | 6f75cea | 2014-11-19 18:38:07 +0100 | [diff] [blame] | 1890 | drm_atomic_legacy_backoff(state); |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1891 | |
| 1892 | /* |
| 1893 | * Someone might have exchanged the framebuffer while we dropped locks |
| 1894 | * in the backoff code. We need to fix up the fb refcount tracking the |
| 1895 | * core does for us. |
| 1896 | */ |
| 1897 | crtc->primary->old_fb = crtc->primary->fb; |
| 1898 | |
| 1899 | goto retry; |
| 1900 | } |
| 1901 | EXPORT_SYMBOL(drm_atomic_helper_set_config); |
| 1902 | |
Rob Clark | bbb1e52 | 2015-08-25 15:35:58 -0400 | [diff] [blame] | 1903 | /* just used from fb-helper and atomic-helper: */ |
| 1904 | int __drm_atomic_helper_set_config(struct drm_mode_set *set, |
| 1905 | struct drm_atomic_state *state) |
| 1906 | { |
| 1907 | struct drm_crtc_state *crtc_state; |
| 1908 | struct drm_plane_state *primary_state; |
| 1909 | struct drm_crtc *crtc = set->crtc; |
Ville Syrjälä | 8392611 | 2015-11-16 17:02:34 +0200 | [diff] [blame] | 1910 | int hdisplay, vdisplay; |
Rob Clark | bbb1e52 | 2015-08-25 15:35:58 -0400 | [diff] [blame] | 1911 | int ret; |
| 1912 | |
| 1913 | crtc_state = drm_atomic_get_crtc_state(state, crtc); |
| 1914 | if (IS_ERR(crtc_state)) |
| 1915 | return PTR_ERR(crtc_state); |
| 1916 | |
| 1917 | primary_state = drm_atomic_get_plane_state(state, crtc->primary); |
| 1918 | if (IS_ERR(primary_state)) |
| 1919 | return PTR_ERR(primary_state); |
| 1920 | |
| 1921 | if (!set->mode) { |
| 1922 | WARN_ON(set->fb); |
| 1923 | WARN_ON(set->num_connectors); |
| 1924 | |
| 1925 | ret = drm_atomic_set_mode_for_crtc(crtc_state, NULL); |
| 1926 | if (ret != 0) |
| 1927 | return ret; |
| 1928 | |
| 1929 | crtc_state->active = false; |
| 1930 | |
| 1931 | ret = drm_atomic_set_crtc_for_plane(primary_state, NULL); |
| 1932 | if (ret != 0) |
| 1933 | return ret; |
| 1934 | |
| 1935 | drm_atomic_set_fb_for_plane(primary_state, NULL); |
| 1936 | |
| 1937 | goto commit; |
| 1938 | } |
| 1939 | |
| 1940 | WARN_ON(!set->fb); |
| 1941 | WARN_ON(!set->num_connectors); |
| 1942 | |
| 1943 | ret = drm_atomic_set_mode_for_crtc(crtc_state, set->mode); |
| 1944 | if (ret != 0) |
| 1945 | return ret; |
| 1946 | |
| 1947 | crtc_state->active = true; |
| 1948 | |
| 1949 | ret = drm_atomic_set_crtc_for_plane(primary_state, crtc); |
| 1950 | if (ret != 0) |
| 1951 | return ret; |
| 1952 | |
Ville Syrjälä | 8392611 | 2015-11-16 17:02:34 +0200 | [diff] [blame] | 1953 | drm_crtc_get_hv_timing(set->mode, &hdisplay, &vdisplay); |
| 1954 | |
Rob Clark | bbb1e52 | 2015-08-25 15:35:58 -0400 | [diff] [blame] | 1955 | drm_atomic_set_fb_for_plane(primary_state, set->fb); |
| 1956 | primary_state->crtc_x = 0; |
| 1957 | primary_state->crtc_y = 0; |
Ville Syrjälä | 8392611 | 2015-11-16 17:02:34 +0200 | [diff] [blame] | 1958 | primary_state->crtc_w = hdisplay; |
Ville Syrjälä | 02e6f37 | 2015-11-16 17:02:35 +0200 | [diff] [blame] | 1959 | primary_state->crtc_h = vdisplay; |
Rob Clark | bbb1e52 | 2015-08-25 15:35:58 -0400 | [diff] [blame] | 1960 | primary_state->src_x = set->x << 16; |
| 1961 | primary_state->src_y = set->y << 16; |
Ville Syrjälä | 4112124 | 2015-10-15 20:39:59 +0300 | [diff] [blame] | 1962 | if (primary_state->rotation & (BIT(DRM_ROTATE_90) | BIT(DRM_ROTATE_270))) { |
Ville Syrjälä | 8392611 | 2015-11-16 17:02:34 +0200 | [diff] [blame] | 1963 | primary_state->src_w = vdisplay << 16; |
Ville Syrjälä | 02e6f37 | 2015-11-16 17:02:35 +0200 | [diff] [blame] | 1964 | primary_state->src_h = hdisplay << 16; |
Ville Syrjälä | 4112124 | 2015-10-15 20:39:59 +0300 | [diff] [blame] | 1965 | } else { |
Ville Syrjälä | 8392611 | 2015-11-16 17:02:34 +0200 | [diff] [blame] | 1966 | primary_state->src_w = hdisplay << 16; |
Ville Syrjälä | 02e6f37 | 2015-11-16 17:02:35 +0200 | [diff] [blame] | 1967 | primary_state->src_h = vdisplay << 16; |
Ville Syrjälä | 4112124 | 2015-10-15 20:39:59 +0300 | [diff] [blame] | 1968 | } |
Rob Clark | bbb1e52 | 2015-08-25 15:35:58 -0400 | [diff] [blame] | 1969 | |
| 1970 | commit: |
| 1971 | ret = update_output_state(state, set); |
| 1972 | if (ret) |
| 1973 | return ret; |
| 1974 | |
| 1975 | return 0; |
| 1976 | } |
| 1977 | |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 1978 | /** |
Thierry Reding | 1494276 | 2015-12-02 17:50:04 +0100 | [diff] [blame] | 1979 | * drm_atomic_helper_disable_all - disable all currently active outputs |
| 1980 | * @dev: DRM device |
| 1981 | * @ctx: lock acquisition context |
| 1982 | * |
| 1983 | * Loops through all connectors, finding those that aren't turned off and then |
| 1984 | * turns them off by setting their DPMS mode to OFF and deactivating the CRTC |
| 1985 | * that they are connected to. |
| 1986 | * |
| 1987 | * This is used for example in suspend/resume to disable all currently active |
| 1988 | * functions when suspending. |
| 1989 | * |
| 1990 | * Note that if callers haven't already acquired all modeset locks this might |
| 1991 | * return -EDEADLK, which must be handled by calling drm_modeset_backoff(). |
| 1992 | * |
| 1993 | * Returns: |
| 1994 | * 0 on success or a negative error code on failure. |
| 1995 | * |
| 1996 | * See also: |
| 1997 | * drm_atomic_helper_suspend(), drm_atomic_helper_resume() |
| 1998 | */ |
| 1999 | int drm_atomic_helper_disable_all(struct drm_device *dev, |
| 2000 | struct drm_modeset_acquire_ctx *ctx) |
| 2001 | { |
| 2002 | struct drm_atomic_state *state; |
| 2003 | struct drm_connector *conn; |
| 2004 | int err; |
| 2005 | |
| 2006 | state = drm_atomic_state_alloc(dev); |
| 2007 | if (!state) |
| 2008 | return -ENOMEM; |
| 2009 | |
| 2010 | state->acquire_ctx = ctx; |
| 2011 | |
| 2012 | drm_for_each_connector(conn, dev) { |
| 2013 | struct drm_crtc *crtc = conn->state->crtc; |
| 2014 | struct drm_crtc_state *crtc_state; |
| 2015 | |
| 2016 | if (!crtc || conn->dpms != DRM_MODE_DPMS_ON) |
| 2017 | continue; |
| 2018 | |
| 2019 | crtc_state = drm_atomic_get_crtc_state(state, crtc); |
| 2020 | if (IS_ERR(crtc_state)) { |
| 2021 | err = PTR_ERR(crtc_state); |
| 2022 | goto free; |
| 2023 | } |
| 2024 | |
| 2025 | crtc_state->active = false; |
| 2026 | } |
| 2027 | |
| 2028 | err = drm_atomic_commit(state); |
| 2029 | |
| 2030 | free: |
| 2031 | if (err < 0) |
| 2032 | drm_atomic_state_free(state); |
| 2033 | |
| 2034 | return err; |
| 2035 | } |
| 2036 | EXPORT_SYMBOL(drm_atomic_helper_disable_all); |
| 2037 | |
| 2038 | /** |
| 2039 | * drm_atomic_helper_suspend - subsystem-level suspend helper |
| 2040 | * @dev: DRM device |
| 2041 | * |
| 2042 | * Duplicates the current atomic state, disables all active outputs and then |
| 2043 | * returns a pointer to the original atomic state to the caller. Drivers can |
| 2044 | * pass this pointer to the drm_atomic_helper_resume() helper upon resume to |
| 2045 | * restore the output configuration that was active at the time the system |
| 2046 | * entered suspend. |
| 2047 | * |
| 2048 | * Note that it is potentially unsafe to use this. The atomic state object |
| 2049 | * returned by this function is assumed to be persistent. Drivers must ensure |
| 2050 | * that this holds true. Before calling this function, drivers must make sure |
| 2051 | * to suspend fbdev emulation so that nothing can be using the device. |
| 2052 | * |
| 2053 | * Returns: |
| 2054 | * A pointer to a copy of the state before suspend on success or an ERR_PTR()- |
| 2055 | * encoded error code on failure. Drivers should store the returned atomic |
| 2056 | * state object and pass it to the drm_atomic_helper_resume() helper upon |
| 2057 | * resume. |
| 2058 | * |
| 2059 | * See also: |
| 2060 | * drm_atomic_helper_duplicate_state(), drm_atomic_helper_disable_all(), |
| 2061 | * drm_atomic_helper_resume() |
| 2062 | */ |
| 2063 | struct drm_atomic_state *drm_atomic_helper_suspend(struct drm_device *dev) |
| 2064 | { |
| 2065 | struct drm_modeset_acquire_ctx ctx; |
| 2066 | struct drm_atomic_state *state; |
| 2067 | int err; |
| 2068 | |
| 2069 | drm_modeset_acquire_init(&ctx, 0); |
| 2070 | |
| 2071 | retry: |
| 2072 | err = drm_modeset_lock_all_ctx(dev, &ctx); |
| 2073 | if (err < 0) { |
| 2074 | state = ERR_PTR(err); |
| 2075 | goto unlock; |
| 2076 | } |
| 2077 | |
| 2078 | state = drm_atomic_helper_duplicate_state(dev, &ctx); |
| 2079 | if (IS_ERR(state)) |
| 2080 | goto unlock; |
| 2081 | |
| 2082 | err = drm_atomic_helper_disable_all(dev, &ctx); |
| 2083 | if (err < 0) { |
| 2084 | drm_atomic_state_free(state); |
| 2085 | state = ERR_PTR(err); |
| 2086 | goto unlock; |
| 2087 | } |
| 2088 | |
| 2089 | unlock: |
| 2090 | if (PTR_ERR(state) == -EDEADLK) { |
| 2091 | drm_modeset_backoff(&ctx); |
| 2092 | goto retry; |
| 2093 | } |
| 2094 | |
| 2095 | drm_modeset_drop_locks(&ctx); |
| 2096 | drm_modeset_acquire_fini(&ctx); |
| 2097 | return state; |
| 2098 | } |
| 2099 | EXPORT_SYMBOL(drm_atomic_helper_suspend); |
| 2100 | |
| 2101 | /** |
| 2102 | * drm_atomic_helper_resume - subsystem-level resume helper |
| 2103 | * @dev: DRM device |
| 2104 | * @state: atomic state to resume to |
| 2105 | * |
| 2106 | * Calls drm_mode_config_reset() to synchronize hardware and software states, |
| 2107 | * grabs all modeset locks and commits the atomic state object. This can be |
| 2108 | * used in conjunction with the drm_atomic_helper_suspend() helper to |
| 2109 | * implement suspend/resume for drivers that support atomic mode-setting. |
| 2110 | * |
| 2111 | * Returns: |
| 2112 | * 0 on success or a negative error code on failure. |
| 2113 | * |
| 2114 | * See also: |
| 2115 | * drm_atomic_helper_suspend() |
| 2116 | */ |
| 2117 | int drm_atomic_helper_resume(struct drm_device *dev, |
| 2118 | struct drm_atomic_state *state) |
| 2119 | { |
| 2120 | struct drm_mode_config *config = &dev->mode_config; |
| 2121 | int err; |
| 2122 | |
| 2123 | drm_mode_config_reset(dev); |
| 2124 | drm_modeset_lock_all(dev); |
| 2125 | state->acquire_ctx = config->acquire_ctx; |
| 2126 | err = drm_atomic_commit(state); |
| 2127 | drm_modeset_unlock_all(dev); |
| 2128 | |
| 2129 | return err; |
| 2130 | } |
| 2131 | EXPORT_SYMBOL(drm_atomic_helper_resume); |
| 2132 | |
| 2133 | /** |
Laurent Pinchart | 7f50002 | 2015-02-23 02:50:23 +0200 | [diff] [blame] | 2134 | * drm_atomic_helper_crtc_set_property - helper for crtc properties |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 2135 | * @crtc: DRM crtc |
| 2136 | * @property: DRM property |
| 2137 | * @val: value of property |
| 2138 | * |
Laurent Pinchart | 7f50002 | 2015-02-23 02:50:23 +0200 | [diff] [blame] | 2139 | * Provides a default crtc set_property handler using the atomic driver |
| 2140 | * interface. |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 2141 | * |
| 2142 | * RETURNS: |
| 2143 | * Zero on success, error code on failure |
| 2144 | */ |
| 2145 | int |
| 2146 | drm_atomic_helper_crtc_set_property(struct drm_crtc *crtc, |
| 2147 | struct drm_property *property, |
| 2148 | uint64_t val) |
| 2149 | { |
| 2150 | struct drm_atomic_state *state; |
| 2151 | struct drm_crtc_state *crtc_state; |
| 2152 | int ret = 0; |
| 2153 | |
| 2154 | state = drm_atomic_state_alloc(crtc->dev); |
| 2155 | if (!state) |
| 2156 | return -ENOMEM; |
| 2157 | |
| 2158 | /* ->set_property is always called with all locks held. */ |
| 2159 | state->acquire_ctx = crtc->dev->mode_config.acquire_ctx; |
| 2160 | retry: |
| 2161 | crtc_state = drm_atomic_get_crtc_state(state, crtc); |
| 2162 | if (IS_ERR(crtc_state)) { |
| 2163 | ret = PTR_ERR(crtc_state); |
| 2164 | goto fail; |
| 2165 | } |
| 2166 | |
Rob Clark | 40ecc69 | 2014-12-18 16:01:46 -0500 | [diff] [blame] | 2167 | ret = drm_atomic_crtc_set_property(crtc, crtc_state, |
| 2168 | property, val); |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 2169 | if (ret) |
| 2170 | goto fail; |
| 2171 | |
| 2172 | ret = drm_atomic_commit(state); |
| 2173 | if (ret != 0) |
| 2174 | goto fail; |
| 2175 | |
| 2176 | /* Driver takes ownership of state on successful commit. */ |
| 2177 | return 0; |
| 2178 | fail: |
| 2179 | if (ret == -EDEADLK) |
| 2180 | goto backoff; |
| 2181 | |
| 2182 | drm_atomic_state_free(state); |
| 2183 | |
| 2184 | return ret; |
| 2185 | backoff: |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 2186 | drm_atomic_state_clear(state); |
Daniel Vetter | 6f75cea | 2014-11-19 18:38:07 +0100 | [diff] [blame] | 2187 | drm_atomic_legacy_backoff(state); |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 2188 | |
| 2189 | goto retry; |
| 2190 | } |
| 2191 | EXPORT_SYMBOL(drm_atomic_helper_crtc_set_property); |
| 2192 | |
| 2193 | /** |
Laurent Pinchart | 7f50002 | 2015-02-23 02:50:23 +0200 | [diff] [blame] | 2194 | * drm_atomic_helper_plane_set_property - helper for plane properties |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 2195 | * @plane: DRM plane |
| 2196 | * @property: DRM property |
| 2197 | * @val: value of property |
| 2198 | * |
Laurent Pinchart | 7f50002 | 2015-02-23 02:50:23 +0200 | [diff] [blame] | 2199 | * Provides a default plane set_property handler using the atomic driver |
| 2200 | * interface. |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 2201 | * |
| 2202 | * RETURNS: |
| 2203 | * Zero on success, error code on failure |
| 2204 | */ |
| 2205 | int |
| 2206 | drm_atomic_helper_plane_set_property(struct drm_plane *plane, |
| 2207 | struct drm_property *property, |
| 2208 | uint64_t val) |
| 2209 | { |
| 2210 | struct drm_atomic_state *state; |
| 2211 | struct drm_plane_state *plane_state; |
| 2212 | int ret = 0; |
| 2213 | |
| 2214 | state = drm_atomic_state_alloc(plane->dev); |
| 2215 | if (!state) |
| 2216 | return -ENOMEM; |
| 2217 | |
| 2218 | /* ->set_property is always called with all locks held. */ |
| 2219 | state->acquire_ctx = plane->dev->mode_config.acquire_ctx; |
| 2220 | retry: |
| 2221 | plane_state = drm_atomic_get_plane_state(state, plane); |
| 2222 | if (IS_ERR(plane_state)) { |
| 2223 | ret = PTR_ERR(plane_state); |
| 2224 | goto fail; |
| 2225 | } |
| 2226 | |
Rob Clark | 40ecc69 | 2014-12-18 16:01:46 -0500 | [diff] [blame] | 2227 | ret = drm_atomic_plane_set_property(plane, plane_state, |
| 2228 | property, val); |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 2229 | if (ret) |
| 2230 | goto fail; |
| 2231 | |
| 2232 | ret = drm_atomic_commit(state); |
| 2233 | if (ret != 0) |
| 2234 | goto fail; |
| 2235 | |
| 2236 | /* Driver takes ownership of state on successful commit. */ |
| 2237 | return 0; |
| 2238 | fail: |
| 2239 | if (ret == -EDEADLK) |
| 2240 | goto backoff; |
| 2241 | |
| 2242 | drm_atomic_state_free(state); |
| 2243 | |
| 2244 | return ret; |
| 2245 | backoff: |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 2246 | drm_atomic_state_clear(state); |
Daniel Vetter | 6f75cea | 2014-11-19 18:38:07 +0100 | [diff] [blame] | 2247 | drm_atomic_legacy_backoff(state); |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 2248 | |
| 2249 | goto retry; |
| 2250 | } |
| 2251 | EXPORT_SYMBOL(drm_atomic_helper_plane_set_property); |
| 2252 | |
| 2253 | /** |
Laurent Pinchart | 7f50002 | 2015-02-23 02:50:23 +0200 | [diff] [blame] | 2254 | * drm_atomic_helper_connector_set_property - helper for connector properties |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 2255 | * @connector: DRM connector |
| 2256 | * @property: DRM property |
| 2257 | * @val: value of property |
| 2258 | * |
Laurent Pinchart | 7f50002 | 2015-02-23 02:50:23 +0200 | [diff] [blame] | 2259 | * Provides a default connector set_property handler using the atomic driver |
| 2260 | * interface. |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 2261 | * |
| 2262 | * RETURNS: |
| 2263 | * Zero on success, error code on failure |
| 2264 | */ |
| 2265 | int |
| 2266 | drm_atomic_helper_connector_set_property(struct drm_connector *connector, |
| 2267 | struct drm_property *property, |
| 2268 | uint64_t val) |
| 2269 | { |
| 2270 | struct drm_atomic_state *state; |
| 2271 | struct drm_connector_state *connector_state; |
| 2272 | int ret = 0; |
| 2273 | |
| 2274 | state = drm_atomic_state_alloc(connector->dev); |
| 2275 | if (!state) |
| 2276 | return -ENOMEM; |
| 2277 | |
| 2278 | /* ->set_property is always called with all locks held. */ |
| 2279 | state->acquire_ctx = connector->dev->mode_config.acquire_ctx; |
| 2280 | retry: |
| 2281 | connector_state = drm_atomic_get_connector_state(state, connector); |
| 2282 | if (IS_ERR(connector_state)) { |
| 2283 | ret = PTR_ERR(connector_state); |
| 2284 | goto fail; |
| 2285 | } |
| 2286 | |
Rob Clark | 40ecc69 | 2014-12-18 16:01:46 -0500 | [diff] [blame] | 2287 | ret = drm_atomic_connector_set_property(connector, connector_state, |
| 2288 | property, val); |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 2289 | if (ret) |
| 2290 | goto fail; |
| 2291 | |
| 2292 | ret = drm_atomic_commit(state); |
| 2293 | if (ret != 0) |
| 2294 | goto fail; |
| 2295 | |
| 2296 | /* Driver takes ownership of state on successful commit. */ |
| 2297 | return 0; |
| 2298 | fail: |
| 2299 | if (ret == -EDEADLK) |
| 2300 | goto backoff; |
| 2301 | |
| 2302 | drm_atomic_state_free(state); |
| 2303 | |
| 2304 | return ret; |
| 2305 | backoff: |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 2306 | drm_atomic_state_clear(state); |
Daniel Vetter | 6f75cea | 2014-11-19 18:38:07 +0100 | [diff] [blame] | 2307 | drm_atomic_legacy_backoff(state); |
Daniel Vetter | 042652e | 2014-07-27 13:46:52 +0200 | [diff] [blame] | 2308 | |
| 2309 | goto retry; |
| 2310 | } |
| 2311 | EXPORT_SYMBOL(drm_atomic_helper_connector_set_property); |
Daniel Vetter | 8bc0f31 | 2014-07-27 18:42:37 +0200 | [diff] [blame] | 2312 | |
| 2313 | /** |
| 2314 | * drm_atomic_helper_page_flip - execute a legacy page flip |
| 2315 | * @crtc: DRM crtc |
| 2316 | * @fb: DRM framebuffer |
| 2317 | * @event: optional DRM event to signal upon completion |
| 2318 | * @flags: flip flags for non-vblank sync'ed updates |
| 2319 | * |
| 2320 | * Provides a default page flip implementation using the atomic driver interface. |
| 2321 | * |
| 2322 | * Note that for now so called async page flips (i.e. updates which are not |
| 2323 | * synchronized to vblank) are not supported, since the atomic interfaces have |
| 2324 | * no provisions for this yet. |
| 2325 | * |
| 2326 | * Returns: |
| 2327 | * Returns 0 on success, negative errno numbers on failure. |
| 2328 | */ |
| 2329 | int drm_atomic_helper_page_flip(struct drm_crtc *crtc, |
| 2330 | struct drm_framebuffer *fb, |
| 2331 | struct drm_pending_vblank_event *event, |
| 2332 | uint32_t flags) |
| 2333 | { |
| 2334 | struct drm_plane *plane = crtc->primary; |
| 2335 | struct drm_atomic_state *state; |
| 2336 | struct drm_plane_state *plane_state; |
| 2337 | struct drm_crtc_state *crtc_state; |
| 2338 | int ret = 0; |
| 2339 | |
| 2340 | if (flags & DRM_MODE_PAGE_FLIP_ASYNC) |
| 2341 | return -EINVAL; |
| 2342 | |
| 2343 | state = drm_atomic_state_alloc(plane->dev); |
| 2344 | if (!state) |
| 2345 | return -ENOMEM; |
| 2346 | |
| 2347 | state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc); |
| 2348 | retry: |
| 2349 | crtc_state = drm_atomic_get_crtc_state(state, crtc); |
| 2350 | if (IS_ERR(crtc_state)) { |
| 2351 | ret = PTR_ERR(crtc_state); |
| 2352 | goto fail; |
| 2353 | } |
| 2354 | crtc_state->event = event; |
| 2355 | |
| 2356 | plane_state = drm_atomic_get_plane_state(state, plane); |
| 2357 | if (IS_ERR(plane_state)) { |
| 2358 | ret = PTR_ERR(plane_state); |
| 2359 | goto fail; |
| 2360 | } |
| 2361 | |
Daniel Vetter | 07cc0ef | 2014-11-27 15:49:39 +0100 | [diff] [blame] | 2362 | ret = drm_atomic_set_crtc_for_plane(plane_state, crtc); |
Daniel Vetter | 8bc0f31 | 2014-07-27 18:42:37 +0200 | [diff] [blame] | 2363 | if (ret != 0) |
| 2364 | goto fail; |
Daniel Vetter | 321ebf0 | 2014-11-04 22:57:27 +0100 | [diff] [blame] | 2365 | drm_atomic_set_fb_for_plane(plane_state, fb); |
Daniel Vetter | 8bc0f31 | 2014-07-27 18:42:37 +0200 | [diff] [blame] | 2366 | |
Daniel Vetter | 4cba685 | 2015-12-08 09:49:20 +0100 | [diff] [blame] | 2367 | /* Make sure we don't accidentally do a full modeset. */ |
| 2368 | state->allow_modeset = false; |
| 2369 | if (!crtc_state->active) { |
| 2370 | DRM_DEBUG_ATOMIC("[CRTC:%d] disabled, rejecting legacy flip\n", |
| 2371 | crtc->base.id); |
| 2372 | ret = -EINVAL; |
| 2373 | goto fail; |
| 2374 | } |
| 2375 | |
Maarten Lankhorst | b837ba0 | 2016-04-26 16:11:35 +0200 | [diff] [blame] | 2376 | ret = drm_atomic_nonblocking_commit(state); |
Daniel Vetter | 8bc0f31 | 2014-07-27 18:42:37 +0200 | [diff] [blame] | 2377 | if (ret != 0) |
| 2378 | goto fail; |
| 2379 | |
Maarten Lankhorst | b837ba0 | 2016-04-26 16:11:35 +0200 | [diff] [blame] | 2380 | /* Driver takes ownership of state on successful commit. */ |
Daniel Vetter | 8bc0f31 | 2014-07-27 18:42:37 +0200 | [diff] [blame] | 2381 | return 0; |
| 2382 | fail: |
| 2383 | if (ret == -EDEADLK) |
| 2384 | goto backoff; |
| 2385 | |
| 2386 | drm_atomic_state_free(state); |
| 2387 | |
| 2388 | return ret; |
| 2389 | backoff: |
Daniel Vetter | 8bc0f31 | 2014-07-27 18:42:37 +0200 | [diff] [blame] | 2390 | drm_atomic_state_clear(state); |
Daniel Vetter | 6f75cea | 2014-11-19 18:38:07 +0100 | [diff] [blame] | 2391 | drm_atomic_legacy_backoff(state); |
Daniel Vetter | 8bc0f31 | 2014-07-27 18:42:37 +0200 | [diff] [blame] | 2392 | |
| 2393 | /* |
| 2394 | * Someone might have exchanged the framebuffer while we dropped locks |
| 2395 | * in the backoff code. We need to fix up the fb refcount tracking the |
| 2396 | * core does for us. |
| 2397 | */ |
| 2398 | plane->old_fb = plane->fb; |
| 2399 | |
| 2400 | goto retry; |
| 2401 | } |
| 2402 | EXPORT_SYMBOL(drm_atomic_helper_page_flip); |
Daniel Vetter | d461701 | 2014-11-03 15:56:43 +0100 | [diff] [blame] | 2403 | |
| 2404 | /** |
Daniel Vetter | b486e0e | 2015-01-22 18:53:05 +0100 | [diff] [blame] | 2405 | * drm_atomic_helper_connector_dpms() - connector dpms helper implementation |
| 2406 | * @connector: affected connector |
| 2407 | * @mode: DPMS mode |
| 2408 | * |
| 2409 | * This is the main helper function provided by the atomic helper framework for |
| 2410 | * implementing the legacy DPMS connector interface. It computes the new desired |
| 2411 | * ->active state for the corresponding CRTC (if the connector is enabled) and |
| 2412 | * updates it. |
Maarten Lankhorst | 9a69a9a | 2015-07-21 11:34:55 +0200 | [diff] [blame] | 2413 | * |
| 2414 | * Returns: |
| 2415 | * Returns 0 on success, negative errno numbers on failure. |
Daniel Vetter | b486e0e | 2015-01-22 18:53:05 +0100 | [diff] [blame] | 2416 | */ |
Maarten Lankhorst | 9a69a9a | 2015-07-21 11:34:55 +0200 | [diff] [blame] | 2417 | int drm_atomic_helper_connector_dpms(struct drm_connector *connector, |
| 2418 | int mode) |
Daniel Vetter | b486e0e | 2015-01-22 18:53:05 +0100 | [diff] [blame] | 2419 | { |
| 2420 | struct drm_mode_config *config = &connector->dev->mode_config; |
| 2421 | struct drm_atomic_state *state; |
| 2422 | struct drm_crtc_state *crtc_state; |
| 2423 | struct drm_crtc *crtc; |
| 2424 | struct drm_connector *tmp_connector; |
| 2425 | int ret; |
| 2426 | bool active = false; |
Maarten Lankhorst | 9a69a9a | 2015-07-21 11:34:55 +0200 | [diff] [blame] | 2427 | int old_mode = connector->dpms; |
Daniel Vetter | b486e0e | 2015-01-22 18:53:05 +0100 | [diff] [blame] | 2428 | |
| 2429 | if (mode != DRM_MODE_DPMS_ON) |
| 2430 | mode = DRM_MODE_DPMS_OFF; |
| 2431 | |
| 2432 | connector->dpms = mode; |
| 2433 | crtc = connector->state->crtc; |
| 2434 | |
| 2435 | if (!crtc) |
Maarten Lankhorst | 9a69a9a | 2015-07-21 11:34:55 +0200 | [diff] [blame] | 2436 | return 0; |
Daniel Vetter | b486e0e | 2015-01-22 18:53:05 +0100 | [diff] [blame] | 2437 | |
Daniel Vetter | b486e0e | 2015-01-22 18:53:05 +0100 | [diff] [blame] | 2438 | state = drm_atomic_state_alloc(connector->dev); |
| 2439 | if (!state) |
Maarten Lankhorst | 9a69a9a | 2015-07-21 11:34:55 +0200 | [diff] [blame] | 2440 | return -ENOMEM; |
Daniel Vetter | b486e0e | 2015-01-22 18:53:05 +0100 | [diff] [blame] | 2441 | |
| 2442 | state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc); |
| 2443 | retry: |
| 2444 | crtc_state = drm_atomic_get_crtc_state(state, crtc); |
Maarten Lankhorst | 9a69a9a | 2015-07-21 11:34:55 +0200 | [diff] [blame] | 2445 | if (IS_ERR(crtc_state)) { |
| 2446 | ret = PTR_ERR(crtc_state); |
| 2447 | goto fail; |
| 2448 | } |
Daniel Vetter | b486e0e | 2015-01-22 18:53:05 +0100 | [diff] [blame] | 2449 | |
| 2450 | WARN_ON(!drm_modeset_is_locked(&config->connection_mutex)); |
| 2451 | |
Daniel Vetter | 9a9f5ce | 2015-07-09 23:44:34 +0200 | [diff] [blame] | 2452 | drm_for_each_connector(tmp_connector, connector->dev) { |
John Hunter | 0388df0 | 2015-03-17 15:30:28 +0800 | [diff] [blame] | 2453 | if (tmp_connector->state->crtc != crtc) |
Daniel Vetter | b486e0e | 2015-01-22 18:53:05 +0100 | [diff] [blame] | 2454 | continue; |
| 2455 | |
John Hunter | 0388df0 | 2015-03-17 15:30:28 +0800 | [diff] [blame] | 2456 | if (tmp_connector->dpms == DRM_MODE_DPMS_ON) { |
Daniel Vetter | b486e0e | 2015-01-22 18:53:05 +0100 | [diff] [blame] | 2457 | active = true; |
| 2458 | break; |
| 2459 | } |
| 2460 | } |
| 2461 | crtc_state->active = active; |
| 2462 | |
| 2463 | ret = drm_atomic_commit(state); |
| 2464 | if (ret != 0) |
| 2465 | goto fail; |
| 2466 | |
Maarten Lankhorst | 9a69a9a | 2015-07-21 11:34:55 +0200 | [diff] [blame] | 2467 | /* Driver takes ownership of state on successful commit. */ |
| 2468 | return 0; |
Daniel Vetter | b486e0e | 2015-01-22 18:53:05 +0100 | [diff] [blame] | 2469 | fail: |
| 2470 | if (ret == -EDEADLK) |
| 2471 | goto backoff; |
| 2472 | |
Maarten Lankhorst | 9a69a9a | 2015-07-21 11:34:55 +0200 | [diff] [blame] | 2473 | connector->dpms = old_mode; |
Daniel Vetter | b486e0e | 2015-01-22 18:53:05 +0100 | [diff] [blame] | 2474 | drm_atomic_state_free(state); |
| 2475 | |
Maarten Lankhorst | 9a69a9a | 2015-07-21 11:34:55 +0200 | [diff] [blame] | 2476 | return ret; |
Daniel Vetter | b486e0e | 2015-01-22 18:53:05 +0100 | [diff] [blame] | 2477 | backoff: |
| 2478 | drm_atomic_state_clear(state); |
| 2479 | drm_atomic_legacy_backoff(state); |
| 2480 | |
| 2481 | goto retry; |
| 2482 | } |
| 2483 | EXPORT_SYMBOL(drm_atomic_helper_connector_dpms); |
| 2484 | |
| 2485 | /** |
Noralf Trønnes | 9ecb549 | 2016-05-11 18:09:21 +0200 | [diff] [blame] | 2486 | * drm_atomic_helper_best_encoder - Helper for &drm_connector_helper_funcs |
| 2487 | * ->best_encoder callback |
| 2488 | * @connector: Connector control structure |
| 2489 | * |
| 2490 | * This is a &drm_connector_helper_funcs ->best_encoder callback helper for |
| 2491 | * connectors that support exactly 1 encoder, statically determined at driver |
| 2492 | * init time. |
| 2493 | */ |
| 2494 | struct drm_encoder * |
| 2495 | drm_atomic_helper_best_encoder(struct drm_connector *connector) |
| 2496 | { |
| 2497 | WARN_ON(connector->encoder_ids[1]); |
| 2498 | return drm_encoder_find(connector->dev, connector->encoder_ids[0]); |
| 2499 | } |
| 2500 | EXPORT_SYMBOL(drm_atomic_helper_best_encoder); |
| 2501 | |
| 2502 | /** |
Daniel Vetter | 3150c7d | 2014-11-06 20:53:29 +0100 | [diff] [blame] | 2503 | * DOC: atomic state reset and initialization |
| 2504 | * |
| 2505 | * Both the drm core and the atomic helpers assume that there is always the full |
| 2506 | * and correct atomic software state for all connectors, CRTCs and planes |
| 2507 | * available. Which is a bit a problem on driver load and also after system |
| 2508 | * suspend. One way to solve this is to have a hardware state read-out |
| 2509 | * infrastructure which reconstructs the full software state (e.g. the i915 |
| 2510 | * driver). |
| 2511 | * |
| 2512 | * The simpler solution is to just reset the software state to everything off, |
| 2513 | * which is easiest to do by calling drm_mode_config_reset(). To facilitate this |
| 2514 | * the atomic helpers provide default reset implementations for all hooks. |
Daniel Vetter | 7f8ee3e | 2015-12-04 09:46:06 +0100 | [diff] [blame] | 2515 | * |
| 2516 | * On the upside the precise state tracking of atomic simplifies system suspend |
| 2517 | * and resume a lot. For drivers using drm_mode_config_reset() a complete recipe |
| 2518 | * is implemented in drm_atomic_helper_suspend() and drm_atomic_helper_resume(). |
| 2519 | * For other drivers the building blocks are split out, see the documentation |
| 2520 | * for these functions. |
Daniel Vetter | 3150c7d | 2014-11-06 20:53:29 +0100 | [diff] [blame] | 2521 | */ |
| 2522 | |
| 2523 | /** |
Daniel Vetter | d461701 | 2014-11-03 15:56:43 +0100 | [diff] [blame] | 2524 | * drm_atomic_helper_crtc_reset - default ->reset hook for CRTCs |
| 2525 | * @crtc: drm CRTC |
| 2526 | * |
| 2527 | * Resets the atomic state for @crtc by freeing the state pointer (which might |
| 2528 | * be NULL, e.g. at driver load time) and allocating a new empty state object. |
| 2529 | */ |
| 2530 | void drm_atomic_helper_crtc_reset(struct drm_crtc *crtc) |
| 2531 | { |
Daniel Vetter | b0b5511 | 2016-04-22 22:10:29 +0200 | [diff] [blame] | 2532 | if (crtc->state) |
Daniel Vetter | ec2dc6a | 2016-05-09 16:34:09 +0200 | [diff] [blame] | 2533 | __drm_atomic_helper_crtc_destroy_state(crtc->state); |
Daniel Vetter | b0b5511 | 2016-04-22 22:10:29 +0200 | [diff] [blame] | 2534 | |
Daniel Vetter | d461701 | 2014-11-03 15:56:43 +0100 | [diff] [blame] | 2535 | kfree(crtc->state); |
| 2536 | crtc->state = kzalloc(sizeof(*crtc->state), GFP_KERNEL); |
Daniel Vetter | 07cc0ef | 2014-11-27 15:49:39 +0100 | [diff] [blame] | 2537 | |
| 2538 | if (crtc->state) |
| 2539 | crtc->state->crtc = crtc; |
Daniel Vetter | d461701 | 2014-11-03 15:56:43 +0100 | [diff] [blame] | 2540 | } |
| 2541 | EXPORT_SYMBOL(drm_atomic_helper_crtc_reset); |
| 2542 | |
| 2543 | /** |
Thierry Reding | f5e7840 | 2015-01-28 14:54:32 +0100 | [diff] [blame] | 2544 | * __drm_atomic_helper_crtc_duplicate_state - copy atomic CRTC state |
| 2545 | * @crtc: CRTC object |
| 2546 | * @state: atomic CRTC state |
| 2547 | * |
| 2548 | * Copies atomic state from a CRTC's current state and resets inferred values. |
| 2549 | * This is useful for drivers that subclass the CRTC state. |
| 2550 | */ |
| 2551 | void __drm_atomic_helper_crtc_duplicate_state(struct drm_crtc *crtc, |
| 2552 | struct drm_crtc_state *state) |
| 2553 | { |
| 2554 | memcpy(state, crtc->state, sizeof(*state)); |
| 2555 | |
Daniel Stone | 99cf4a2 | 2015-05-25 19:11:51 +0100 | [diff] [blame] | 2556 | if (state->mode_blob) |
| 2557 | drm_property_reference_blob(state->mode_blob); |
Lionel Landwerlin | 5488dc1 | 2016-02-26 17:05:00 +0000 | [diff] [blame] | 2558 | if (state->degamma_lut) |
| 2559 | drm_property_reference_blob(state->degamma_lut); |
| 2560 | if (state->ctm) |
| 2561 | drm_property_reference_blob(state->ctm); |
| 2562 | if (state->gamma_lut) |
| 2563 | drm_property_reference_blob(state->gamma_lut); |
Thierry Reding | f5e7840 | 2015-01-28 14:54:32 +0100 | [diff] [blame] | 2564 | state->mode_changed = false; |
| 2565 | state->active_changed = false; |
| 2566 | state->planes_changed = false; |
Maarten Lankhorst | fc59666 | 2015-07-21 13:28:57 +0200 | [diff] [blame] | 2567 | state->connectors_changed = false; |
Lionel Landwerlin | 5488dc1 | 2016-02-26 17:05:00 +0000 | [diff] [blame] | 2568 | state->color_mgmt_changed = false; |
Thierry Reding | f5e7840 | 2015-01-28 14:54:32 +0100 | [diff] [blame] | 2569 | state->event = NULL; |
| 2570 | } |
| 2571 | EXPORT_SYMBOL(__drm_atomic_helper_crtc_duplicate_state); |
| 2572 | |
| 2573 | /** |
Daniel Vetter | d461701 | 2014-11-03 15:56:43 +0100 | [diff] [blame] | 2574 | * drm_atomic_helper_crtc_duplicate_state - default state duplicate hook |
| 2575 | * @crtc: drm CRTC |
| 2576 | * |
| 2577 | * Default CRTC state duplicate hook for drivers which don't have their own |
| 2578 | * subclassed CRTC state structure. |
| 2579 | */ |
| 2580 | struct drm_crtc_state * |
| 2581 | drm_atomic_helper_crtc_duplicate_state(struct drm_crtc *crtc) |
| 2582 | { |
| 2583 | struct drm_crtc_state *state; |
| 2584 | |
| 2585 | if (WARN_ON(!crtc->state)) |
| 2586 | return NULL; |
| 2587 | |
Thierry Reding | f5e7840 | 2015-01-28 14:54:32 +0100 | [diff] [blame] | 2588 | state = kmalloc(sizeof(*state), GFP_KERNEL); |
| 2589 | if (state) |
| 2590 | __drm_atomic_helper_crtc_duplicate_state(crtc, state); |
Daniel Vetter | d461701 | 2014-11-03 15:56:43 +0100 | [diff] [blame] | 2591 | |
| 2592 | return state; |
| 2593 | } |
| 2594 | EXPORT_SYMBOL(drm_atomic_helper_crtc_duplicate_state); |
| 2595 | |
| 2596 | /** |
Thierry Reding | f5e7840 | 2015-01-28 14:54:32 +0100 | [diff] [blame] | 2597 | * __drm_atomic_helper_crtc_destroy_state - release CRTC state |
Thierry Reding | f5e7840 | 2015-01-28 14:54:32 +0100 | [diff] [blame] | 2598 | * @state: CRTC state object to release |
| 2599 | * |
| 2600 | * Releases all resources stored in the CRTC state without actually freeing |
| 2601 | * the memory of the CRTC state. This is useful for drivers that subclass the |
| 2602 | * CRTC state. |
| 2603 | */ |
Daniel Vetter | ec2dc6a | 2016-05-09 16:34:09 +0200 | [diff] [blame] | 2604 | void __drm_atomic_helper_crtc_destroy_state(struct drm_crtc_state *state) |
Thierry Reding | f5e7840 | 2015-01-28 14:54:32 +0100 | [diff] [blame] | 2605 | { |
Markus Elfring | 5f91190 | 2015-11-06 12:03:46 +0100 | [diff] [blame] | 2606 | drm_property_unreference_blob(state->mode_blob); |
Lionel Landwerlin | 5488dc1 | 2016-02-26 17:05:00 +0000 | [diff] [blame] | 2607 | drm_property_unreference_blob(state->degamma_lut); |
| 2608 | drm_property_unreference_blob(state->ctm); |
| 2609 | drm_property_unreference_blob(state->gamma_lut); |
Thierry Reding | f5e7840 | 2015-01-28 14:54:32 +0100 | [diff] [blame] | 2610 | } |
| 2611 | EXPORT_SYMBOL(__drm_atomic_helper_crtc_destroy_state); |
| 2612 | |
| 2613 | /** |
Daniel Vetter | d461701 | 2014-11-03 15:56:43 +0100 | [diff] [blame] | 2614 | * drm_atomic_helper_crtc_destroy_state - default state destroy hook |
| 2615 | * @crtc: drm CRTC |
| 2616 | * @state: CRTC state object to release |
| 2617 | * |
| 2618 | * Default CRTC state destroy hook for drivers which don't have their own |
| 2619 | * subclassed CRTC state structure. |
| 2620 | */ |
| 2621 | void drm_atomic_helper_crtc_destroy_state(struct drm_crtc *crtc, |
| 2622 | struct drm_crtc_state *state) |
| 2623 | { |
Daniel Vetter | ec2dc6a | 2016-05-09 16:34:09 +0200 | [diff] [blame] | 2624 | __drm_atomic_helper_crtc_destroy_state(state); |
Daniel Vetter | d461701 | 2014-11-03 15:56:43 +0100 | [diff] [blame] | 2625 | kfree(state); |
| 2626 | } |
| 2627 | EXPORT_SYMBOL(drm_atomic_helper_crtc_destroy_state); |
| 2628 | |
| 2629 | /** |
| 2630 | * drm_atomic_helper_plane_reset - default ->reset hook for planes |
| 2631 | * @plane: drm plane |
| 2632 | * |
| 2633 | * Resets the atomic state for @plane by freeing the state pointer (which might |
| 2634 | * be NULL, e.g. at driver load time) and allocating a new empty state object. |
| 2635 | */ |
| 2636 | void drm_atomic_helper_plane_reset(struct drm_plane *plane) |
| 2637 | { |
Daniel Vetter | b0b5511 | 2016-04-22 22:10:29 +0200 | [diff] [blame] | 2638 | if (plane->state) |
Daniel Vetter | 2f70169 | 2016-05-09 16:34:10 +0200 | [diff] [blame] | 2639 | __drm_atomic_helper_plane_destroy_state(plane->state); |
Daniel Vetter | 321ebf0 | 2014-11-04 22:57:27 +0100 | [diff] [blame] | 2640 | |
Daniel Vetter | d461701 | 2014-11-03 15:56:43 +0100 | [diff] [blame] | 2641 | kfree(plane->state); |
| 2642 | plane->state = kzalloc(sizeof(*plane->state), GFP_KERNEL); |
Daniel Vetter | 07cc0ef | 2014-11-27 15:49:39 +0100 | [diff] [blame] | 2643 | |
Marek Szyprowski | 25aaa3a | 2016-01-19 09:26:48 +0100 | [diff] [blame] | 2644 | if (plane->state) { |
Daniel Vetter | 07cc0ef | 2014-11-27 15:49:39 +0100 | [diff] [blame] | 2645 | plane->state->plane = plane; |
Marek Szyprowski | 25aaa3a | 2016-01-19 09:26:48 +0100 | [diff] [blame] | 2646 | plane->state->rotation = BIT(DRM_ROTATE_0); |
| 2647 | } |
Daniel Vetter | d461701 | 2014-11-03 15:56:43 +0100 | [diff] [blame] | 2648 | } |
| 2649 | EXPORT_SYMBOL(drm_atomic_helper_plane_reset); |
| 2650 | |
| 2651 | /** |
Thierry Reding | f5e7840 | 2015-01-28 14:54:32 +0100 | [diff] [blame] | 2652 | * __drm_atomic_helper_plane_duplicate_state - copy atomic plane state |
| 2653 | * @plane: plane object |
| 2654 | * @state: atomic plane state |
| 2655 | * |
| 2656 | * Copies atomic state from a plane's current state. This is useful for |
| 2657 | * drivers that subclass the plane state. |
| 2658 | */ |
| 2659 | void __drm_atomic_helper_plane_duplicate_state(struct drm_plane *plane, |
| 2660 | struct drm_plane_state *state) |
| 2661 | { |
| 2662 | memcpy(state, plane->state, sizeof(*state)); |
| 2663 | |
| 2664 | if (state->fb) |
| 2665 | drm_framebuffer_reference(state->fb); |
| 2666 | } |
| 2667 | EXPORT_SYMBOL(__drm_atomic_helper_plane_duplicate_state); |
| 2668 | |
| 2669 | /** |
Daniel Vetter | d461701 | 2014-11-03 15:56:43 +0100 | [diff] [blame] | 2670 | * drm_atomic_helper_plane_duplicate_state - default state duplicate hook |
| 2671 | * @plane: drm plane |
| 2672 | * |
| 2673 | * Default plane state duplicate hook for drivers which don't have their own |
| 2674 | * subclassed plane state structure. |
| 2675 | */ |
| 2676 | struct drm_plane_state * |
| 2677 | drm_atomic_helper_plane_duplicate_state(struct drm_plane *plane) |
| 2678 | { |
Daniel Vetter | 321ebf0 | 2014-11-04 22:57:27 +0100 | [diff] [blame] | 2679 | struct drm_plane_state *state; |
| 2680 | |
Daniel Vetter | d461701 | 2014-11-03 15:56:43 +0100 | [diff] [blame] | 2681 | if (WARN_ON(!plane->state)) |
| 2682 | return NULL; |
| 2683 | |
Thierry Reding | f5e7840 | 2015-01-28 14:54:32 +0100 | [diff] [blame] | 2684 | state = kmalloc(sizeof(*state), GFP_KERNEL); |
| 2685 | if (state) |
| 2686 | __drm_atomic_helper_plane_duplicate_state(plane, state); |
Daniel Vetter | 321ebf0 | 2014-11-04 22:57:27 +0100 | [diff] [blame] | 2687 | |
| 2688 | return state; |
Daniel Vetter | d461701 | 2014-11-03 15:56:43 +0100 | [diff] [blame] | 2689 | } |
| 2690 | EXPORT_SYMBOL(drm_atomic_helper_plane_duplicate_state); |
| 2691 | |
| 2692 | /** |
Thierry Reding | f5e7840 | 2015-01-28 14:54:32 +0100 | [diff] [blame] | 2693 | * __drm_atomic_helper_plane_destroy_state - release plane state |
Thierry Reding | f5e7840 | 2015-01-28 14:54:32 +0100 | [diff] [blame] | 2694 | * @state: plane state object to release |
| 2695 | * |
| 2696 | * Releases all resources stored in the plane state without actually freeing |
| 2697 | * the memory of the plane state. This is useful for drivers that subclass the |
| 2698 | * plane state. |
| 2699 | */ |
Daniel Vetter | 2f70169 | 2016-05-09 16:34:10 +0200 | [diff] [blame] | 2700 | void __drm_atomic_helper_plane_destroy_state(struct drm_plane_state *state) |
Thierry Reding | f5e7840 | 2015-01-28 14:54:32 +0100 | [diff] [blame] | 2701 | { |
| 2702 | if (state->fb) |
| 2703 | drm_framebuffer_unreference(state->fb); |
| 2704 | } |
| 2705 | EXPORT_SYMBOL(__drm_atomic_helper_plane_destroy_state); |
| 2706 | |
| 2707 | /** |
Daniel Vetter | d461701 | 2014-11-03 15:56:43 +0100 | [diff] [blame] | 2708 | * drm_atomic_helper_plane_destroy_state - default state destroy hook |
| 2709 | * @plane: drm plane |
| 2710 | * @state: plane state object to release |
| 2711 | * |
| 2712 | * Default plane state destroy hook for drivers which don't have their own |
| 2713 | * subclassed plane state structure. |
| 2714 | */ |
| 2715 | void drm_atomic_helper_plane_destroy_state(struct drm_plane *plane, |
Daniel Vetter | 321ebf0 | 2014-11-04 22:57:27 +0100 | [diff] [blame] | 2716 | struct drm_plane_state *state) |
Daniel Vetter | d461701 | 2014-11-03 15:56:43 +0100 | [diff] [blame] | 2717 | { |
Daniel Vetter | 2f70169 | 2016-05-09 16:34:10 +0200 | [diff] [blame] | 2718 | __drm_atomic_helper_plane_destroy_state(state); |
Daniel Vetter | d461701 | 2014-11-03 15:56:43 +0100 | [diff] [blame] | 2719 | kfree(state); |
| 2720 | } |
| 2721 | EXPORT_SYMBOL(drm_atomic_helper_plane_destroy_state); |
| 2722 | |
| 2723 | /** |
Maarten Lankhorst | 4cd3991 | 2016-01-04 12:53:16 +0100 | [diff] [blame] | 2724 | * __drm_atomic_helper_connector_reset - reset state on connector |
| 2725 | * @connector: drm connector |
| 2726 | * @conn_state: connector state to assign |
| 2727 | * |
| 2728 | * Initializes the newly allocated @conn_state and assigns it to |
| 2729 | * #connector ->state, usually required when initializing the drivers |
| 2730 | * or when called from the ->reset hook. |
| 2731 | * |
| 2732 | * This is useful for drivers that subclass the connector state. |
| 2733 | */ |
| 2734 | void |
| 2735 | __drm_atomic_helper_connector_reset(struct drm_connector *connector, |
| 2736 | struct drm_connector_state *conn_state) |
| 2737 | { |
| 2738 | if (conn_state) |
| 2739 | conn_state->connector = connector; |
| 2740 | |
| 2741 | connector->state = conn_state; |
| 2742 | } |
| 2743 | EXPORT_SYMBOL(__drm_atomic_helper_connector_reset); |
| 2744 | |
| 2745 | /** |
Daniel Vetter | d461701 | 2014-11-03 15:56:43 +0100 | [diff] [blame] | 2746 | * drm_atomic_helper_connector_reset - default ->reset hook for connectors |
| 2747 | * @connector: drm connector |
| 2748 | * |
| 2749 | * Resets the atomic state for @connector by freeing the state pointer (which |
| 2750 | * might be NULL, e.g. at driver load time) and allocating a new empty state |
| 2751 | * object. |
| 2752 | */ |
| 2753 | void drm_atomic_helper_connector_reset(struct drm_connector *connector) |
| 2754 | { |
Maarten Lankhorst | 4cd3991 | 2016-01-04 12:53:16 +0100 | [diff] [blame] | 2755 | struct drm_connector_state *conn_state = |
| 2756 | kzalloc(sizeof(*conn_state), GFP_KERNEL); |
Daniel Vetter | 07cc0ef | 2014-11-27 15:49:39 +0100 | [diff] [blame] | 2757 | |
Daniel Vetter | b0b5511 | 2016-04-22 22:10:29 +0200 | [diff] [blame] | 2758 | if (connector->state) |
Daniel Vetter | fabd910 | 2016-05-09 16:34:11 +0200 | [diff] [blame] | 2759 | __drm_atomic_helper_connector_destroy_state(connector->state); |
Daniel Vetter | b0b5511 | 2016-04-22 22:10:29 +0200 | [diff] [blame] | 2760 | |
Maarten Lankhorst | 4cd3991 | 2016-01-04 12:53:16 +0100 | [diff] [blame] | 2761 | kfree(connector->state); |
| 2762 | __drm_atomic_helper_connector_reset(connector, conn_state); |
Daniel Vetter | d461701 | 2014-11-03 15:56:43 +0100 | [diff] [blame] | 2763 | } |
| 2764 | EXPORT_SYMBOL(drm_atomic_helper_connector_reset); |
| 2765 | |
| 2766 | /** |
Thierry Reding | f5e7840 | 2015-01-28 14:54:32 +0100 | [diff] [blame] | 2767 | * __drm_atomic_helper_connector_duplicate_state - copy atomic connector state |
| 2768 | * @connector: connector object |
| 2769 | * @state: atomic connector state |
| 2770 | * |
| 2771 | * Copies atomic state from a connector's current state. This is useful for |
| 2772 | * drivers that subclass the connector state. |
| 2773 | */ |
| 2774 | void |
| 2775 | __drm_atomic_helper_connector_duplicate_state(struct drm_connector *connector, |
| 2776 | struct drm_connector_state *state) |
| 2777 | { |
| 2778 | memcpy(state, connector->state, sizeof(*state)); |
Dave Airlie | d2307de | 2016-04-27 11:27:39 +1000 | [diff] [blame] | 2779 | if (state->crtc) |
| 2780 | drm_connector_reference(connector); |
Thierry Reding | f5e7840 | 2015-01-28 14:54:32 +0100 | [diff] [blame] | 2781 | } |
| 2782 | EXPORT_SYMBOL(__drm_atomic_helper_connector_duplicate_state); |
| 2783 | |
| 2784 | /** |
Daniel Vetter | d461701 | 2014-11-03 15:56:43 +0100 | [diff] [blame] | 2785 | * drm_atomic_helper_connector_duplicate_state - default state duplicate hook |
| 2786 | * @connector: drm connector |
| 2787 | * |
| 2788 | * Default connector state duplicate hook for drivers which don't have their own |
| 2789 | * subclassed connector state structure. |
| 2790 | */ |
| 2791 | struct drm_connector_state * |
| 2792 | drm_atomic_helper_connector_duplicate_state(struct drm_connector *connector) |
| 2793 | { |
Thierry Reding | f5e7840 | 2015-01-28 14:54:32 +0100 | [diff] [blame] | 2794 | struct drm_connector_state *state; |
| 2795 | |
Daniel Vetter | d461701 | 2014-11-03 15:56:43 +0100 | [diff] [blame] | 2796 | if (WARN_ON(!connector->state)) |
| 2797 | return NULL; |
| 2798 | |
Thierry Reding | f5e7840 | 2015-01-28 14:54:32 +0100 | [diff] [blame] | 2799 | state = kmalloc(sizeof(*state), GFP_KERNEL); |
| 2800 | if (state) |
| 2801 | __drm_atomic_helper_connector_duplicate_state(connector, state); |
| 2802 | |
| 2803 | return state; |
Daniel Vetter | d461701 | 2014-11-03 15:56:43 +0100 | [diff] [blame] | 2804 | } |
| 2805 | EXPORT_SYMBOL(drm_atomic_helper_connector_duplicate_state); |
| 2806 | |
| 2807 | /** |
Thierry Reding | 397fd77 | 2015-09-08 15:00:45 +0200 | [diff] [blame] | 2808 | * drm_atomic_helper_duplicate_state - duplicate an atomic state object |
| 2809 | * @dev: DRM device |
| 2810 | * @ctx: lock acquisition context |
| 2811 | * |
| 2812 | * Makes a copy of the current atomic state by looping over all objects and |
Thierry Reding | 1494276 | 2015-12-02 17:50:04 +0100 | [diff] [blame] | 2813 | * duplicating their respective states. This is used for example by suspend/ |
| 2814 | * resume support code to save the state prior to suspend such that it can |
| 2815 | * be restored upon resume. |
Thierry Reding | 397fd77 | 2015-09-08 15:00:45 +0200 | [diff] [blame] | 2816 | * |
| 2817 | * Note that this treats atomic state as persistent between save and restore. |
| 2818 | * Drivers must make sure that this is possible and won't result in confusion |
| 2819 | * or erroneous behaviour. |
| 2820 | * |
| 2821 | * Note that if callers haven't already acquired all modeset locks this might |
| 2822 | * return -EDEADLK, which must be handled by calling drm_modeset_backoff(). |
| 2823 | * |
| 2824 | * Returns: |
| 2825 | * A pointer to the copy of the atomic state object on success or an |
| 2826 | * ERR_PTR()-encoded error code on failure. |
Thierry Reding | 1494276 | 2015-12-02 17:50:04 +0100 | [diff] [blame] | 2827 | * |
| 2828 | * See also: |
| 2829 | * drm_atomic_helper_suspend(), drm_atomic_helper_resume() |
Thierry Reding | 397fd77 | 2015-09-08 15:00:45 +0200 | [diff] [blame] | 2830 | */ |
| 2831 | struct drm_atomic_state * |
| 2832 | drm_atomic_helper_duplicate_state(struct drm_device *dev, |
| 2833 | struct drm_modeset_acquire_ctx *ctx) |
| 2834 | { |
| 2835 | struct drm_atomic_state *state; |
| 2836 | struct drm_connector *conn; |
| 2837 | struct drm_plane *plane; |
| 2838 | struct drm_crtc *crtc; |
| 2839 | int err = 0; |
| 2840 | |
| 2841 | state = drm_atomic_state_alloc(dev); |
| 2842 | if (!state) |
| 2843 | return ERR_PTR(-ENOMEM); |
| 2844 | |
| 2845 | state->acquire_ctx = ctx; |
| 2846 | |
| 2847 | drm_for_each_crtc(crtc, dev) { |
| 2848 | struct drm_crtc_state *crtc_state; |
| 2849 | |
| 2850 | crtc_state = drm_atomic_get_crtc_state(state, crtc); |
| 2851 | if (IS_ERR(crtc_state)) { |
| 2852 | err = PTR_ERR(crtc_state); |
| 2853 | goto free; |
| 2854 | } |
| 2855 | } |
| 2856 | |
| 2857 | drm_for_each_plane(plane, dev) { |
| 2858 | struct drm_plane_state *plane_state; |
| 2859 | |
| 2860 | plane_state = drm_atomic_get_plane_state(state, plane); |
| 2861 | if (IS_ERR(plane_state)) { |
| 2862 | err = PTR_ERR(plane_state); |
| 2863 | goto free; |
| 2864 | } |
| 2865 | } |
| 2866 | |
| 2867 | drm_for_each_connector(conn, dev) { |
| 2868 | struct drm_connector_state *conn_state; |
| 2869 | |
| 2870 | conn_state = drm_atomic_get_connector_state(state, conn); |
| 2871 | if (IS_ERR(conn_state)) { |
| 2872 | err = PTR_ERR(conn_state); |
| 2873 | goto free; |
| 2874 | } |
| 2875 | } |
| 2876 | |
| 2877 | /* clear the acquire context so that it isn't accidentally reused */ |
| 2878 | state->acquire_ctx = NULL; |
| 2879 | |
| 2880 | free: |
| 2881 | if (err < 0) { |
| 2882 | drm_atomic_state_free(state); |
| 2883 | state = ERR_PTR(err); |
| 2884 | } |
| 2885 | |
| 2886 | return state; |
| 2887 | } |
| 2888 | EXPORT_SYMBOL(drm_atomic_helper_duplicate_state); |
| 2889 | |
| 2890 | /** |
Thierry Reding | f5e7840 | 2015-01-28 14:54:32 +0100 | [diff] [blame] | 2891 | * __drm_atomic_helper_connector_destroy_state - release connector state |
Thierry Reding | f5e7840 | 2015-01-28 14:54:32 +0100 | [diff] [blame] | 2892 | * @state: connector state object to release |
| 2893 | * |
| 2894 | * Releases all resources stored in the connector state without actually |
| 2895 | * freeing the memory of the connector state. This is useful for drivers that |
| 2896 | * subclass the connector state. |
| 2897 | */ |
| 2898 | void |
Daniel Vetter | fabd910 | 2016-05-09 16:34:11 +0200 | [diff] [blame] | 2899 | __drm_atomic_helper_connector_destroy_state(struct drm_connector_state *state) |
Thierry Reding | f5e7840 | 2015-01-28 14:54:32 +0100 | [diff] [blame] | 2900 | { |
| 2901 | /* |
| 2902 | * This is currently a placeholder so that drivers that subclass the |
| 2903 | * state will automatically do the right thing if code is ever added |
| 2904 | * to this function. |
| 2905 | */ |
Dave Airlie | d2307de | 2016-04-27 11:27:39 +1000 | [diff] [blame] | 2906 | if (state->crtc) |
| 2907 | drm_connector_unreference(state->connector); |
Thierry Reding | f5e7840 | 2015-01-28 14:54:32 +0100 | [diff] [blame] | 2908 | } |
| 2909 | EXPORT_SYMBOL(__drm_atomic_helper_connector_destroy_state); |
| 2910 | |
| 2911 | /** |
Daniel Vetter | d461701 | 2014-11-03 15:56:43 +0100 | [diff] [blame] | 2912 | * drm_atomic_helper_connector_destroy_state - default state destroy hook |
| 2913 | * @connector: drm connector |
| 2914 | * @state: connector state object to release |
| 2915 | * |
| 2916 | * Default connector state destroy hook for drivers which don't have their own |
| 2917 | * subclassed connector state structure. |
| 2918 | */ |
| 2919 | void drm_atomic_helper_connector_destroy_state(struct drm_connector *connector, |
| 2920 | struct drm_connector_state *state) |
| 2921 | { |
Daniel Vetter | fabd910 | 2016-05-09 16:34:11 +0200 | [diff] [blame] | 2922 | __drm_atomic_helper_connector_destroy_state(state); |
Daniel Vetter | d461701 | 2014-11-03 15:56:43 +0100 | [diff] [blame] | 2923 | kfree(state); |
| 2924 | } |
| 2925 | EXPORT_SYMBOL(drm_atomic_helper_connector_destroy_state); |
Lionel Landwerlin | 5488dc1 | 2016-02-26 17:05:00 +0000 | [diff] [blame] | 2926 | |
| 2927 | /** |
| 2928 | * drm_atomic_helper_legacy_gamma_set - set the legacy gamma correction table |
| 2929 | * @crtc: CRTC object |
| 2930 | * @red: red correction table |
| 2931 | * @green: green correction table |
| 2932 | * @blue: green correction table |
| 2933 | * @start: |
| 2934 | * @size: size of the tables |
| 2935 | * |
| 2936 | * Implements support for legacy gamma correction table for drivers |
| 2937 | * that support color management through the DEGAMMA_LUT/GAMMA_LUT |
| 2938 | * properties. |
| 2939 | */ |
| 2940 | void drm_atomic_helper_legacy_gamma_set(struct drm_crtc *crtc, |
| 2941 | u16 *red, u16 *green, u16 *blue, |
| 2942 | uint32_t start, uint32_t size) |
| 2943 | { |
| 2944 | struct drm_device *dev = crtc->dev; |
| 2945 | struct drm_mode_config *config = &dev->mode_config; |
| 2946 | struct drm_atomic_state *state; |
| 2947 | struct drm_crtc_state *crtc_state; |
| 2948 | struct drm_property_blob *blob = NULL; |
| 2949 | struct drm_color_lut *blob_data; |
| 2950 | int i, ret = 0; |
| 2951 | |
| 2952 | state = drm_atomic_state_alloc(crtc->dev); |
| 2953 | if (!state) |
| 2954 | return; |
| 2955 | |
| 2956 | blob = drm_property_create_blob(dev, |
| 2957 | sizeof(struct drm_color_lut) * size, |
| 2958 | NULL); |
Lionel Landwerlin | 562c5b4 | 2016-03-10 12:04:21 +0000 | [diff] [blame] | 2959 | if (IS_ERR(blob)) { |
| 2960 | ret = PTR_ERR(blob); |
Lionel Landwerlin | c1f415c | 2016-03-11 12:17:26 +0000 | [diff] [blame] | 2961 | blob = NULL; |
Lionel Landwerlin | 5488dc1 | 2016-02-26 17:05:00 +0000 | [diff] [blame] | 2962 | goto fail; |
| 2963 | } |
| 2964 | |
| 2965 | /* Prepare GAMMA_LUT with the legacy values. */ |
| 2966 | blob_data = (struct drm_color_lut *) blob->data; |
| 2967 | for (i = 0; i < size; i++) { |
| 2968 | blob_data[i].red = red[i]; |
| 2969 | blob_data[i].green = green[i]; |
| 2970 | blob_data[i].blue = blue[i]; |
| 2971 | } |
| 2972 | |
| 2973 | state->acquire_ctx = crtc->dev->mode_config.acquire_ctx; |
| 2974 | retry: |
| 2975 | crtc_state = drm_atomic_get_crtc_state(state, crtc); |
| 2976 | if (IS_ERR(crtc_state)) { |
| 2977 | ret = PTR_ERR(crtc_state); |
| 2978 | goto fail; |
| 2979 | } |
| 2980 | |
| 2981 | /* Reset DEGAMMA_LUT and CTM properties. */ |
| 2982 | ret = drm_atomic_crtc_set_property(crtc, crtc_state, |
| 2983 | config->degamma_lut_property, 0); |
| 2984 | if (ret) |
| 2985 | goto fail; |
| 2986 | |
| 2987 | ret = drm_atomic_crtc_set_property(crtc, crtc_state, |
| 2988 | config->ctm_property, 0); |
| 2989 | if (ret) |
| 2990 | goto fail; |
| 2991 | |
| 2992 | ret = drm_atomic_crtc_set_property(crtc, crtc_state, |
| 2993 | config->gamma_lut_property, blob->base.id); |
| 2994 | if (ret) |
| 2995 | goto fail; |
| 2996 | |
| 2997 | ret = drm_atomic_commit(state); |
| 2998 | if (ret) |
| 2999 | goto fail; |
| 3000 | |
| 3001 | /* Driver takes ownership of state on successful commit. */ |
| 3002 | |
| 3003 | drm_property_unreference_blob(blob); |
| 3004 | |
| 3005 | return; |
| 3006 | fail: |
| 3007 | if (ret == -EDEADLK) |
| 3008 | goto backoff; |
| 3009 | |
| 3010 | drm_atomic_state_free(state); |
| 3011 | drm_property_unreference_blob(blob); |
| 3012 | |
| 3013 | return; |
| 3014 | backoff: |
| 3015 | drm_atomic_state_clear(state); |
| 3016 | drm_atomic_legacy_backoff(state); |
| 3017 | |
| 3018 | goto retry; |
| 3019 | } |
| 3020 | EXPORT_SYMBOL(drm_atomic_helper_legacy_gamma_set); |