Rob Clark | 51fd371 | 2013-11-19 12:10:12 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2014 Red Hat |
| 3 | * Author: Rob Clark <robdclark@gmail.com> |
| 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 | |
Rob Clark | b962a12 | 2018-10-22 14:31:22 +0200 | [diff] [blame] | 24 | #include <drm/drm_atomic.h> |
Rob Clark | 51fd371 | 2013-11-19 12:10:12 -0500 | [diff] [blame] | 25 | #include <drm/drm_crtc.h> |
Sam Ravnborg | 0500c04 | 2019-05-26 19:35:35 +0200 | [diff] [blame] | 26 | #include <drm/drm_device.h> |
Rob Clark | 51fd371 | 2013-11-19 12:10:12 -0500 | [diff] [blame] | 27 | #include <drm/drm_modeset_lock.h> |
| 28 | |
| 29 | /** |
| 30 | * DOC: kms locking |
| 31 | * |
| 32 | * As KMS moves toward more fine grained locking, and atomic ioctl where |
| 33 | * userspace can indirectly control locking order, it becomes necessary |
Daniel Vetter | 0645de5 | 2016-05-30 11:10:49 +0200 | [diff] [blame] | 34 | * to use &ww_mutex and acquire-contexts to avoid deadlocks. But because |
Rob Clark | 51fd371 | 2013-11-19 12:10:12 -0500 | [diff] [blame] | 35 | * the locking is more distributed around the driver code, we want a bit |
| 36 | * of extra utility/tracking out of our acquire-ctx. This is provided |
Daniel Vetter | d574528 | 2017-01-25 07:26:45 +0100 | [diff] [blame] | 37 | * by &struct drm_modeset_lock and &struct drm_modeset_acquire_ctx. |
Rob Clark | 51fd371 | 2013-11-19 12:10:12 -0500 | [diff] [blame] | 38 | * |
Mauro Carvalho Chehab | 387b146 | 2019-04-10 08:32:41 -0300 | [diff] [blame] | 39 | * For basic principles of &ww_mutex, see: Documentation/locking/ww-mutex-design.rst |
Rob Clark | 51fd371 | 2013-11-19 12:10:12 -0500 | [diff] [blame] | 40 | * |
Daniel Vetter | da5335b | 2016-05-31 22:55:13 +0200 | [diff] [blame] | 41 | * The basic usage pattern is to:: |
Rob Clark | 51fd371 | 2013-11-19 12:10:12 -0500 | [diff] [blame] | 42 | * |
Maarten Lankhorst | 6f8bcc7 | 2017-09-12 15:37:44 +0200 | [diff] [blame] | 43 | * drm_modeset_acquire_init(ctx, DRM_MODESET_ACQUIRE_INTERRUPTIBLE) |
Danilo Cesar Lemes de Paula | f03d8ed | 2015-11-25 18:07:55 +0100 | [diff] [blame] | 44 | * retry: |
Rob Clark | 51fd371 | 2013-11-19 12:10:12 -0500 | [diff] [blame] | 45 | * foreach (lock in random_ordered_set_of_locks) { |
Maarten Lankhorst | 6f8bcc7 | 2017-09-12 15:37:44 +0200 | [diff] [blame] | 46 | * ret = drm_modeset_lock(lock, ctx) |
Danilo Cesar Lemes de Paula | f03d8ed | 2015-11-25 18:07:55 +0100 | [diff] [blame] | 47 | * if (ret == -EDEADLK) { |
Maarten Lankhorst | 6f8bcc7 | 2017-09-12 15:37:44 +0200 | [diff] [blame] | 48 | * ret = drm_modeset_backoff(ctx); |
| 49 | * if (!ret) |
| 50 | * goto retry; |
Danilo Cesar Lemes de Paula | f03d8ed | 2015-11-25 18:07:55 +0100 | [diff] [blame] | 51 | * } |
Maarten Lankhorst | 6f8bcc7 | 2017-09-12 15:37:44 +0200 | [diff] [blame] | 52 | * if (ret) |
| 53 | * goto out; |
Rob Clark | 51fd371 | 2013-11-19 12:10:12 -0500 | [diff] [blame] | 54 | * } |
Rob Clark | 51fd371 | 2013-11-19 12:10:12 -0500 | [diff] [blame] | 55 | * ... do stuff ... |
Maarten Lankhorst | 6f8bcc7 | 2017-09-12 15:37:44 +0200 | [diff] [blame] | 56 | * out: |
| 57 | * drm_modeset_drop_locks(ctx); |
| 58 | * drm_modeset_acquire_fini(ctx); |
Daniel Vetter | 0645de5 | 2016-05-30 11:10:49 +0200 | [diff] [blame] | 59 | * |
Sean Paul | b7ea04d | 2018-11-29 10:04:17 -0500 | [diff] [blame] | 60 | * For convenience this control flow is implemented in |
| 61 | * DRM_MODESET_LOCK_ALL_BEGIN() and DRM_MODESET_LOCK_ALL_END() for the case |
| 62 | * where all modeset locks need to be taken through drm_modeset_lock_all_ctx(). |
| 63 | * |
Liviu Dudau | fc2157b | 2017-07-20 17:07:48 +0100 | [diff] [blame] | 64 | * If all that is needed is a single modeset lock, then the &struct |
| 65 | * drm_modeset_acquire_ctx is not needed and the locking can be simplified |
Maarten Lankhorst | 6f8bcc7 | 2017-09-12 15:37:44 +0200 | [diff] [blame] | 66 | * by passing a NULL instead of ctx in the drm_modeset_lock() call or |
| 67 | * calling drm_modeset_lock_single_interruptible(). To unlock afterwards |
| 68 | * call drm_modeset_unlock(). |
Liviu Dudau | fc2157b | 2017-07-20 17:07:48 +0100 | [diff] [blame] | 69 | * |
| 70 | * On top of these per-object locks using &ww_mutex there's also an overall |
Daniel Vetter | d574528 | 2017-01-25 07:26:45 +0100 | [diff] [blame] | 71 | * &drm_mode_config.mutex, for protecting everything else. Mostly this means |
Daniel Vetter | b07c425 | 2016-11-29 10:24:40 +0100 | [diff] [blame] | 72 | * probe state of connectors, and preventing hotplug add/removal of connectors. |
Daniel Vetter | 0645de5 | 2016-05-30 11:10:49 +0200 | [diff] [blame] | 73 | * |
Daniel Vetter | b07c425 | 2016-11-29 10:24:40 +0100 | [diff] [blame] | 74 | * Finally there's a bunch of dedicated locks to protect drm core internal |
| 75 | * lists and lookup data structures. |
Rob Clark | 51fd371 | 2013-11-19 12:10:12 -0500 | [diff] [blame] | 76 | */ |
| 77 | |
Rob Clark | 35cf035 | 2016-11-14 17:40:57 -0500 | [diff] [blame] | 78 | static DEFINE_WW_CLASS(crtc_ww_class); |
| 79 | |
Rob Clark | 51fd371 | 2013-11-19 12:10:12 -0500 | [diff] [blame] | 80 | /** |
Daniel Vetter | bf9e37b | 2015-07-28 13:18:42 +0200 | [diff] [blame] | 81 | * drm_modeset_lock_all - take all modeset locks |
Thierry Reding | 06eaae4 | 2015-12-02 17:50:03 +0100 | [diff] [blame] | 82 | * @dev: DRM device |
Daniel Vetter | a6a8bb8 | 2014-07-25 17:47:18 +0200 | [diff] [blame] | 83 | * |
Daniel Vetter | bf9e37b | 2015-07-28 13:18:42 +0200 | [diff] [blame] | 84 | * This function takes all modeset locks, suitable where a more fine-grained |
Thierry Reding | 06eaae4 | 2015-12-02 17:50:03 +0100 | [diff] [blame] | 85 | * scheme isn't (yet) implemented. Locks must be dropped by calling the |
| 86 | * drm_modeset_unlock_all() function. |
| 87 | * |
| 88 | * This function is deprecated. It allocates a lock acquisition context and |
Daniel Vetter | d574528 | 2017-01-25 07:26:45 +0100 | [diff] [blame] | 89 | * stores it in &drm_device.mode_config. This facilitate conversion of |
Thierry Reding | 06eaae4 | 2015-12-02 17:50:03 +0100 | [diff] [blame] | 90 | * existing code because it removes the need to manually deal with the |
| 91 | * acquisition context, but it is also brittle because the context is global |
| 92 | * and care must be taken not to nest calls. New code should use the |
| 93 | * drm_modeset_lock_all_ctx() function and pass in the context explicitly. |
Daniel Vetter | a6a8bb8 | 2014-07-25 17:47:18 +0200 | [diff] [blame] | 94 | */ |
Daniel Vetter | bf9e37b | 2015-07-28 13:18:42 +0200 | [diff] [blame] | 95 | void drm_modeset_lock_all(struct drm_device *dev) |
Daniel Vetter | a6a8bb8 | 2014-07-25 17:47:18 +0200 | [diff] [blame] | 96 | { |
| 97 | struct drm_mode_config *config = &dev->mode_config; |
| 98 | struct drm_modeset_acquire_ctx *ctx; |
| 99 | int ret; |
| 100 | |
Chris Wilson | d18d1a5 | 2017-10-31 11:55:35 +0000 | [diff] [blame] | 101 | ctx = kzalloc(sizeof(*ctx), GFP_KERNEL | __GFP_NOFAIL); |
Daniel Vetter | bf9e37b | 2015-07-28 13:18:42 +0200 | [diff] [blame] | 102 | if (WARN_ON(!ctx)) |
| 103 | return; |
Daniel Vetter | a6a8bb8 | 2014-07-25 17:47:18 +0200 | [diff] [blame] | 104 | |
Daniel Vetter | bf9e37b | 2015-07-28 13:18:42 +0200 | [diff] [blame] | 105 | mutex_lock(&config->mutex); |
Daniel Vetter | a6a8bb8 | 2014-07-25 17:47:18 +0200 | [diff] [blame] | 106 | |
| 107 | drm_modeset_acquire_init(ctx, 0); |
| 108 | |
| 109 | retry: |
Thierry Reding | 06eaae4 | 2015-12-02 17:50:03 +0100 | [diff] [blame] | 110 | ret = drm_modeset_lock_all_ctx(dev, ctx); |
| 111 | if (ret < 0) { |
| 112 | if (ret == -EDEADLK) { |
| 113 | drm_modeset_backoff(ctx); |
| 114 | goto retry; |
| 115 | } |
| 116 | |
| 117 | drm_modeset_acquire_fini(ctx); |
| 118 | kfree(ctx); |
| 119 | return; |
| 120 | } |
Maarten Lankhorst | 5fcdc9d | 2018-02-21 16:23:31 +0100 | [diff] [blame] | 121 | ww_acquire_done(&ctx->ww_ctx); |
Daniel Vetter | a6a8bb8 | 2014-07-25 17:47:18 +0200 | [diff] [blame] | 122 | |
| 123 | WARN_ON(config->acquire_ctx); |
| 124 | |
Thierry Reding | 06eaae4 | 2015-12-02 17:50:03 +0100 | [diff] [blame] | 125 | /* |
| 126 | * We hold the locks now, so it is safe to stash the acquisition |
| 127 | * context for drm_modeset_unlock_all(). |
Daniel Vetter | a6a8bb8 | 2014-07-25 17:47:18 +0200 | [diff] [blame] | 128 | */ |
| 129 | config->acquire_ctx = ctx; |
| 130 | |
| 131 | drm_warn_on_modeset_not_all_locked(dev); |
Daniel Vetter | a6a8bb8 | 2014-07-25 17:47:18 +0200 | [diff] [blame] | 132 | } |
| 133 | EXPORT_SYMBOL(drm_modeset_lock_all); |
| 134 | |
| 135 | /** |
| 136 | * drm_modeset_unlock_all - drop all modeset locks |
Thierry Reding | 06eaae4 | 2015-12-02 17:50:03 +0100 | [diff] [blame] | 137 | * @dev: DRM device |
Daniel Vetter | a6a8bb8 | 2014-07-25 17:47:18 +0200 | [diff] [blame] | 138 | * |
Thierry Reding | 06eaae4 | 2015-12-02 17:50:03 +0100 | [diff] [blame] | 139 | * This function drops all modeset locks taken by a previous call to the |
| 140 | * drm_modeset_lock_all() function. |
| 141 | * |
| 142 | * This function is deprecated. It uses the lock acquisition context stored |
Daniel Vetter | d574528 | 2017-01-25 07:26:45 +0100 | [diff] [blame] | 143 | * in &drm_device.mode_config. This facilitates conversion of existing |
Thierry Reding | 06eaae4 | 2015-12-02 17:50:03 +0100 | [diff] [blame] | 144 | * code because it removes the need to manually deal with the acquisition |
| 145 | * context, but it is also brittle because the context is global and care must |
| 146 | * be taken not to nest calls. New code should pass the acquisition context |
| 147 | * directly to the drm_modeset_drop_locks() function. |
Daniel Vetter | a6a8bb8 | 2014-07-25 17:47:18 +0200 | [diff] [blame] | 148 | */ |
| 149 | void drm_modeset_unlock_all(struct drm_device *dev) |
| 150 | { |
| 151 | struct drm_mode_config *config = &dev->mode_config; |
| 152 | struct drm_modeset_acquire_ctx *ctx = config->acquire_ctx; |
| 153 | |
| 154 | if (WARN_ON(!ctx)) |
| 155 | return; |
| 156 | |
| 157 | config->acquire_ctx = NULL; |
| 158 | drm_modeset_drop_locks(ctx); |
| 159 | drm_modeset_acquire_fini(ctx); |
| 160 | |
| 161 | kfree(ctx); |
| 162 | |
| 163 | mutex_unlock(&dev->mode_config.mutex); |
| 164 | } |
| 165 | EXPORT_SYMBOL(drm_modeset_unlock_all); |
| 166 | |
Daniel Vetter | d059f65 | 2014-07-25 18:07:40 +0200 | [diff] [blame] | 167 | /** |
Daniel Vetter | a6a8bb8 | 2014-07-25 17:47:18 +0200 | [diff] [blame] | 168 | * drm_warn_on_modeset_not_all_locked - check that all modeset locks are locked |
| 169 | * @dev: device |
| 170 | * |
| 171 | * Useful as a debug assert. |
| 172 | */ |
| 173 | void drm_warn_on_modeset_not_all_locked(struct drm_device *dev) |
| 174 | { |
| 175 | struct drm_crtc *crtc; |
| 176 | |
| 177 | /* Locking is currently fubar in the panic handler. */ |
| 178 | if (oops_in_progress) |
| 179 | return; |
| 180 | |
Daniel Vetter | e4f6254 | 2015-07-09 23:44:35 +0200 | [diff] [blame] | 181 | drm_for_each_crtc(crtc, dev) |
Daniel Vetter | a6a8bb8 | 2014-07-25 17:47:18 +0200 | [diff] [blame] | 182 | WARN_ON(!drm_modeset_is_locked(&crtc->mutex)); |
| 183 | |
| 184 | WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex)); |
| 185 | WARN_ON(!mutex_is_locked(&dev->mode_config.mutex)); |
| 186 | } |
| 187 | EXPORT_SYMBOL(drm_warn_on_modeset_not_all_locked); |
| 188 | |
| 189 | /** |
Rob Clark | 51fd371 | 2013-11-19 12:10:12 -0500 | [diff] [blame] | 190 | * drm_modeset_acquire_init - initialize acquire context |
| 191 | * @ctx: the acquire context |
Maarten Lankhorst | 6f8bcc7 | 2017-09-12 15:37:44 +0200 | [diff] [blame] | 192 | * @flags: 0 or %DRM_MODESET_ACQUIRE_INTERRUPTIBLE |
| 193 | * |
| 194 | * When passing %DRM_MODESET_ACQUIRE_INTERRUPTIBLE to @flags, |
| 195 | * all calls to drm_modeset_lock() will perform an interruptible |
| 196 | * wait. |
Rob Clark | 51fd371 | 2013-11-19 12:10:12 -0500 | [diff] [blame] | 197 | */ |
| 198 | void drm_modeset_acquire_init(struct drm_modeset_acquire_ctx *ctx, |
| 199 | uint32_t flags) |
| 200 | { |
Rob Clark | fb54918 | 2014-06-07 10:55:39 -0400 | [diff] [blame] | 201 | memset(ctx, 0, sizeof(*ctx)); |
Rob Clark | 51fd371 | 2013-11-19 12:10:12 -0500 | [diff] [blame] | 202 | ww_acquire_init(&ctx->ww_ctx, &crtc_ww_class); |
| 203 | INIT_LIST_HEAD(&ctx->locked); |
Maarten Lankhorst | 6f8bcc7 | 2017-09-12 15:37:44 +0200 | [diff] [blame] | 204 | |
| 205 | if (flags & DRM_MODESET_ACQUIRE_INTERRUPTIBLE) |
| 206 | ctx->interruptible = true; |
Rob Clark | 51fd371 | 2013-11-19 12:10:12 -0500 | [diff] [blame] | 207 | } |
| 208 | EXPORT_SYMBOL(drm_modeset_acquire_init); |
| 209 | |
| 210 | /** |
| 211 | * drm_modeset_acquire_fini - cleanup acquire context |
| 212 | * @ctx: the acquire context |
| 213 | */ |
| 214 | void drm_modeset_acquire_fini(struct drm_modeset_acquire_ctx *ctx) |
| 215 | { |
| 216 | ww_acquire_fini(&ctx->ww_ctx); |
| 217 | } |
| 218 | EXPORT_SYMBOL(drm_modeset_acquire_fini); |
| 219 | |
| 220 | /** |
| 221 | * drm_modeset_drop_locks - drop all locks |
| 222 | * @ctx: the acquire context |
| 223 | * |
| 224 | * Drop all locks currently held against this acquire context. |
| 225 | */ |
| 226 | void drm_modeset_drop_locks(struct drm_modeset_acquire_ctx *ctx) |
| 227 | { |
| 228 | WARN_ON(ctx->contended); |
| 229 | while (!list_empty(&ctx->locked)) { |
| 230 | struct drm_modeset_lock *lock; |
| 231 | |
| 232 | lock = list_first_entry(&ctx->locked, |
| 233 | struct drm_modeset_lock, head); |
| 234 | |
| 235 | drm_modeset_unlock(lock); |
| 236 | } |
| 237 | } |
| 238 | EXPORT_SYMBOL(drm_modeset_drop_locks); |
| 239 | |
| 240 | static inline int modeset_lock(struct drm_modeset_lock *lock, |
| 241 | struct drm_modeset_acquire_ctx *ctx, |
| 242 | bool interruptible, bool slow) |
| 243 | { |
| 244 | int ret; |
| 245 | |
| 246 | WARN_ON(ctx->contended); |
| 247 | |
Daniel Vetter | cb597bb | 2014-07-27 19:09:33 +0200 | [diff] [blame] | 248 | if (ctx->trylock_only) { |
Maarten Lankhorst | 825926d | 2015-08-27 13:58:09 +0200 | [diff] [blame] | 249 | lockdep_assert_held(&ctx->ww_ctx); |
| 250 | |
Daniel Vetter | cb597bb | 2014-07-27 19:09:33 +0200 | [diff] [blame] | 251 | if (!ww_mutex_trylock(&lock->mutex)) |
| 252 | return -EBUSY; |
| 253 | else |
| 254 | return 0; |
| 255 | } else if (interruptible && slow) { |
Rob Clark | 51fd371 | 2013-11-19 12:10:12 -0500 | [diff] [blame] | 256 | ret = ww_mutex_lock_slow_interruptible(&lock->mutex, &ctx->ww_ctx); |
| 257 | } else if (interruptible) { |
| 258 | ret = ww_mutex_lock_interruptible(&lock->mutex, &ctx->ww_ctx); |
| 259 | } else if (slow) { |
| 260 | ww_mutex_lock_slow(&lock->mutex, &ctx->ww_ctx); |
| 261 | ret = 0; |
| 262 | } else { |
| 263 | ret = ww_mutex_lock(&lock->mutex, &ctx->ww_ctx); |
| 264 | } |
| 265 | if (!ret) { |
| 266 | WARN_ON(!list_empty(&lock->head)); |
| 267 | list_add(&lock->head, &ctx->locked); |
| 268 | } else if (ret == -EALREADY) { |
| 269 | /* we already hold the lock.. this is fine. For atomic |
| 270 | * we will need to be able to drm_modeset_lock() things |
| 271 | * without having to keep track of what is already locked |
| 272 | * or not. |
| 273 | */ |
| 274 | ret = 0; |
| 275 | } else if (ret == -EDEADLK) { |
| 276 | ctx->contended = lock; |
| 277 | } |
| 278 | |
| 279 | return ret; |
| 280 | } |
| 281 | |
Maarten Lankhorst | 6f8bcc7 | 2017-09-12 15:37:44 +0200 | [diff] [blame] | 282 | /** |
| 283 | * drm_modeset_backoff - deadlock avoidance backoff |
| 284 | * @ctx: the acquire context |
| 285 | * |
| 286 | * If deadlock is detected (ie. drm_modeset_lock() returns -EDEADLK), |
| 287 | * you must call this function to drop all currently held locks and |
| 288 | * block until the contended lock becomes available. |
| 289 | * |
| 290 | * This function returns 0 on success, or -ERESTARTSYS if this context |
| 291 | * is initialized with %DRM_MODESET_ACQUIRE_INTERRUPTIBLE and the |
| 292 | * wait has been interrupted. |
| 293 | */ |
| 294 | int drm_modeset_backoff(struct drm_modeset_acquire_ctx *ctx) |
Rob Clark | 51fd371 | 2013-11-19 12:10:12 -0500 | [diff] [blame] | 295 | { |
| 296 | struct drm_modeset_lock *contended = ctx->contended; |
| 297 | |
| 298 | ctx->contended = NULL; |
| 299 | |
| 300 | if (WARN_ON(!contended)) |
| 301 | return 0; |
| 302 | |
| 303 | drm_modeset_drop_locks(ctx); |
| 304 | |
Maarten Lankhorst | 6f8bcc7 | 2017-09-12 15:37:44 +0200 | [diff] [blame] | 305 | return modeset_lock(contended, ctx, ctx->interruptible, true); |
Rob Clark | 51fd371 | 2013-11-19 12:10:12 -0500 | [diff] [blame] | 306 | } |
| 307 | EXPORT_SYMBOL(drm_modeset_backoff); |
| 308 | |
| 309 | /** |
Rob Clark | 35cf035 | 2016-11-14 17:40:57 -0500 | [diff] [blame] | 310 | * drm_modeset_lock_init - initialize lock |
| 311 | * @lock: lock to init |
| 312 | */ |
| 313 | void drm_modeset_lock_init(struct drm_modeset_lock *lock) |
| 314 | { |
| 315 | ww_mutex_init(&lock->mutex, &crtc_ww_class); |
| 316 | INIT_LIST_HEAD(&lock->head); |
| 317 | } |
| 318 | EXPORT_SYMBOL(drm_modeset_lock_init); |
| 319 | |
| 320 | /** |
Rob Clark | 51fd371 | 2013-11-19 12:10:12 -0500 | [diff] [blame] | 321 | * drm_modeset_lock - take modeset lock |
| 322 | * @lock: lock to take |
| 323 | * @ctx: acquire ctx |
| 324 | * |
Liviu Dudau | fc2157b | 2017-07-20 17:07:48 +0100 | [diff] [blame] | 325 | * If @ctx is not NULL, then its ww acquire context is used and the |
Rob Clark | 51fd371 | 2013-11-19 12:10:12 -0500 | [diff] [blame] | 326 | * lock will be tracked by the context and can be released by calling |
| 327 | * drm_modeset_drop_locks(). If -EDEADLK is returned, this means a |
| 328 | * deadlock scenario has been detected and it is an error to attempt |
| 329 | * to take any more locks without first calling drm_modeset_backoff(). |
Liviu Dudau | fc2157b | 2017-07-20 17:07:48 +0100 | [diff] [blame] | 330 | * |
Maarten Lankhorst | 6f8bcc7 | 2017-09-12 15:37:44 +0200 | [diff] [blame] | 331 | * If the @ctx is not NULL and initialized with |
| 332 | * %DRM_MODESET_ACQUIRE_INTERRUPTIBLE, this function will fail with |
| 333 | * -ERESTARTSYS when interrupted. |
| 334 | * |
Liviu Dudau | fc2157b | 2017-07-20 17:07:48 +0100 | [diff] [blame] | 335 | * If @ctx is NULL then the function call behaves like a normal, |
Maarten Lankhorst | 6f8bcc7 | 2017-09-12 15:37:44 +0200 | [diff] [blame] | 336 | * uninterruptible non-nesting mutex_lock() call. |
Rob Clark | 51fd371 | 2013-11-19 12:10:12 -0500 | [diff] [blame] | 337 | */ |
| 338 | int drm_modeset_lock(struct drm_modeset_lock *lock, |
| 339 | struct drm_modeset_acquire_ctx *ctx) |
| 340 | { |
| 341 | if (ctx) |
Maarten Lankhorst | 6f8bcc7 | 2017-09-12 15:37:44 +0200 | [diff] [blame] | 342 | return modeset_lock(lock, ctx, ctx->interruptible, false); |
Rob Clark | 51fd371 | 2013-11-19 12:10:12 -0500 | [diff] [blame] | 343 | |
| 344 | ww_mutex_lock(&lock->mutex, NULL); |
| 345 | return 0; |
| 346 | } |
| 347 | EXPORT_SYMBOL(drm_modeset_lock); |
| 348 | |
| 349 | /** |
Maarten Lankhorst | 6f8bcc7 | 2017-09-12 15:37:44 +0200 | [diff] [blame] | 350 | * drm_modeset_lock_single_interruptible - take a single modeset lock |
Rob Clark | 51fd371 | 2013-11-19 12:10:12 -0500 | [diff] [blame] | 351 | * @lock: lock to take |
Rob Clark | 51fd371 | 2013-11-19 12:10:12 -0500 | [diff] [blame] | 352 | * |
Maarten Lankhorst | 6f8bcc7 | 2017-09-12 15:37:44 +0200 | [diff] [blame] | 353 | * This function behaves as drm_modeset_lock() with a NULL context, |
| 354 | * but performs interruptible waits. |
| 355 | * |
| 356 | * This function returns 0 on success, or -ERESTARTSYS when interrupted. |
Rob Clark | 51fd371 | 2013-11-19 12:10:12 -0500 | [diff] [blame] | 357 | */ |
Maarten Lankhorst | 6f8bcc7 | 2017-09-12 15:37:44 +0200 | [diff] [blame] | 358 | int drm_modeset_lock_single_interruptible(struct drm_modeset_lock *lock) |
Rob Clark | 51fd371 | 2013-11-19 12:10:12 -0500 | [diff] [blame] | 359 | { |
Rob Clark | 51fd371 | 2013-11-19 12:10:12 -0500 | [diff] [blame] | 360 | return ww_mutex_lock_interruptible(&lock->mutex, NULL); |
| 361 | } |
Maarten Lankhorst | 6f8bcc7 | 2017-09-12 15:37:44 +0200 | [diff] [blame] | 362 | EXPORT_SYMBOL(drm_modeset_lock_single_interruptible); |
Rob Clark | 51fd371 | 2013-11-19 12:10:12 -0500 | [diff] [blame] | 363 | |
| 364 | /** |
| 365 | * drm_modeset_unlock - drop modeset lock |
| 366 | * @lock: lock to release |
| 367 | */ |
| 368 | void drm_modeset_unlock(struct drm_modeset_lock *lock) |
| 369 | { |
| 370 | list_del_init(&lock->head); |
| 371 | ww_mutex_unlock(&lock->mutex); |
| 372 | } |
| 373 | EXPORT_SYMBOL(drm_modeset_unlock); |
| 374 | |
Thierry Reding | 06eaae4 | 2015-12-02 17:50:03 +0100 | [diff] [blame] | 375 | /** |
| 376 | * drm_modeset_lock_all_ctx - take all modeset locks |
| 377 | * @dev: DRM device |
| 378 | * @ctx: lock acquisition context |
| 379 | * |
| 380 | * This function takes all modeset locks, suitable where a more fine-grained |
| 381 | * scheme isn't (yet) implemented. |
| 382 | * |
Daniel Vetter | d574528 | 2017-01-25 07:26:45 +0100 | [diff] [blame] | 383 | * Unlike drm_modeset_lock_all(), it doesn't take the &drm_mode_config.mutex |
Thierry Reding | 06eaae4 | 2015-12-02 17:50:03 +0100 | [diff] [blame] | 384 | * since that lock isn't required for modeset state changes. Callers which |
| 385 | * need to grab that lock too need to do so outside of the acquire context |
| 386 | * @ctx. |
| 387 | * |
| 388 | * Locks acquired with this function should be released by calling the |
| 389 | * drm_modeset_drop_locks() function on @ctx. |
| 390 | * |
Sean Paul | b7ea04d | 2018-11-29 10:04:17 -0500 | [diff] [blame] | 391 | * See also: DRM_MODESET_LOCK_ALL_BEGIN() and DRM_MODESET_LOCK_ALL_END() |
| 392 | * |
Thierry Reding | 06eaae4 | 2015-12-02 17:50:03 +0100 | [diff] [blame] | 393 | * Returns: 0 on success or a negative error-code on failure. |
| 394 | */ |
| 395 | int drm_modeset_lock_all_ctx(struct drm_device *dev, |
| 396 | struct drm_modeset_acquire_ctx *ctx) |
Rob Clark | 51fd371 | 2013-11-19 12:10:12 -0500 | [diff] [blame] | 397 | { |
Rob Clark | b962a12 | 2018-10-22 14:31:22 +0200 | [diff] [blame] | 398 | struct drm_private_obj *privobj; |
Rob Clark | 51fd371 | 2013-11-19 12:10:12 -0500 | [diff] [blame] | 399 | struct drm_crtc *crtc; |
Daniel Vetter | 4d02e2d | 2014-11-11 10:12:00 +0100 | [diff] [blame] | 400 | struct drm_plane *plane; |
Thierry Reding | 06eaae4 | 2015-12-02 17:50:03 +0100 | [diff] [blame] | 401 | int ret; |
| 402 | |
| 403 | ret = drm_modeset_lock(&dev->mode_config.connection_mutex, ctx); |
| 404 | if (ret) |
| 405 | return ret; |
Rob Clark | 51fd371 | 2013-11-19 12:10:12 -0500 | [diff] [blame] | 406 | |
Daniel Vetter | e4f6254 | 2015-07-09 23:44:35 +0200 | [diff] [blame] | 407 | drm_for_each_crtc(crtc, dev) { |
Rob Clark | 51fd371 | 2013-11-19 12:10:12 -0500 | [diff] [blame] | 408 | ret = drm_modeset_lock(&crtc->mutex, ctx); |
| 409 | if (ret) |
| 410 | return ret; |
| 411 | } |
| 412 | |
Daniel Vetter | e4f6254 | 2015-07-09 23:44:35 +0200 | [diff] [blame] | 413 | drm_for_each_plane(plane, dev) { |
Daniel Vetter | 4d02e2d | 2014-11-11 10:12:00 +0100 | [diff] [blame] | 414 | ret = drm_modeset_lock(&plane->mutex, ctx); |
| 415 | if (ret) |
| 416 | return ret; |
| 417 | } |
| 418 | |
Rob Clark | b962a12 | 2018-10-22 14:31:22 +0200 | [diff] [blame] | 419 | drm_for_each_privobj(privobj, dev) { |
| 420 | ret = drm_modeset_lock(&privobj->lock, ctx); |
| 421 | if (ret) |
| 422 | return ret; |
| 423 | } |
| 424 | |
Rob Clark | 51fd371 | 2013-11-19 12:10:12 -0500 | [diff] [blame] | 425 | return 0; |
| 426 | } |
Thierry Reding | 06eaae4 | 2015-12-02 17:50:03 +0100 | [diff] [blame] | 427 | EXPORT_SYMBOL(drm_modeset_lock_all_ctx); |