Linux 4.2.1
[linux/fpc-iii.git] / drivers / gpu / drm / drm_modeset_lock.c
blobc0a5cd8c52621301d0cb848e485bbe26cb1190bc
1 /*
2 * Copyright (C) 2014 Red Hat
3 * Author: Rob Clark <robdclark@gmail.com>
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:
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
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.
24 #include <drm/drmP.h>
25 #include <drm/drm_crtc.h>
26 #include <drm/drm_modeset_lock.h>
28 /**
29 * DOC: kms locking
31 * As KMS moves toward more fine grained locking, and atomic ioctl where
32 * userspace can indirectly control locking order, it becomes necessary
33 * to use ww_mutex and acquire-contexts to avoid deadlocks. But because
34 * the locking is more distributed around the driver code, we want a bit
35 * of extra utility/tracking out of our acquire-ctx. This is provided
36 * by drm_modeset_lock / drm_modeset_acquire_ctx.
38 * For basic principles of ww_mutex, see: Documentation/locking/ww-mutex-design.txt
40 * The basic usage pattern is to:
42 * drm_modeset_acquire_init(&ctx)
43 * retry:
44 * foreach (lock in random_ordered_set_of_locks) {
45 * ret = drm_modeset_lock(lock, &ctx)
46 * if (ret == -EDEADLK) {
47 * drm_modeset_backoff(&ctx);
48 * goto retry;
49 * }
50 * }
52 * ... do stuff ...
54 * drm_modeset_drop_locks(&ctx);
55 * drm_modeset_acquire_fini(&ctx);
59 /**
60 * __drm_modeset_lock_all - internal helper to grab all modeset locks
61 * @dev: DRM device
62 * @trylock: trylock mode for atomic contexts
64 * This is a special version of drm_modeset_lock_all() which can also be used in
65 * atomic contexts. Then @trylock must be set to true.
67 * Returns:
68 * 0 on success or negative error code on failure.
70 int __drm_modeset_lock_all(struct drm_device *dev,
71 bool trylock)
73 struct drm_mode_config *config = &dev->mode_config;
74 struct drm_modeset_acquire_ctx *ctx;
75 int ret;
77 ctx = kzalloc(sizeof(*ctx),
78 trylock ? GFP_ATOMIC : GFP_KERNEL);
79 if (!ctx)
80 return -ENOMEM;
82 if (trylock) {
83 if (!mutex_trylock(&config->mutex)) {
84 ret = -EBUSY;
85 goto out;
87 } else {
88 mutex_lock(&config->mutex);
91 drm_modeset_acquire_init(ctx, 0);
92 ctx->trylock_only = trylock;
94 retry:
95 ret = drm_modeset_lock(&config->connection_mutex, ctx);
96 if (ret)
97 goto fail;
98 ret = drm_modeset_lock_all_crtcs(dev, ctx);
99 if (ret)
100 goto fail;
102 WARN_ON(config->acquire_ctx);
104 /* now we hold the locks, so now that it is safe, stash the
105 * ctx for drm_modeset_unlock_all():
107 config->acquire_ctx = ctx;
109 drm_warn_on_modeset_not_all_locked(dev);
111 return 0;
113 fail:
114 if (ret == -EDEADLK) {
115 drm_modeset_backoff(ctx);
116 goto retry;
119 out:
120 kfree(ctx);
121 return ret;
123 EXPORT_SYMBOL(__drm_modeset_lock_all);
126 * drm_modeset_lock_all - take all modeset locks
127 * @dev: drm device
129 * This function takes all modeset locks, suitable where a more fine-grained
130 * scheme isn't (yet) implemented. Locks must be dropped with
131 * drm_modeset_unlock_all.
133 void drm_modeset_lock_all(struct drm_device *dev)
135 WARN_ON(__drm_modeset_lock_all(dev, false) != 0);
137 EXPORT_SYMBOL(drm_modeset_lock_all);
140 * drm_modeset_unlock_all - drop all modeset locks
141 * @dev: device
143 * This function drop all modeset locks taken by drm_modeset_lock_all.
145 void drm_modeset_unlock_all(struct drm_device *dev)
147 struct drm_mode_config *config = &dev->mode_config;
148 struct drm_modeset_acquire_ctx *ctx = config->acquire_ctx;
150 if (WARN_ON(!ctx))
151 return;
153 config->acquire_ctx = NULL;
154 drm_modeset_drop_locks(ctx);
155 drm_modeset_acquire_fini(ctx);
157 kfree(ctx);
159 mutex_unlock(&dev->mode_config.mutex);
161 EXPORT_SYMBOL(drm_modeset_unlock_all);
164 * drm_modeset_lock_crtc - lock crtc with hidden acquire ctx for a plane update
165 * @crtc: DRM CRTC
166 * @plane: DRM plane to be updated on @crtc
168 * This function locks the given crtc and plane (which should be either the
169 * primary or cursor plane) using a hidden acquire context. This is necessary so
170 * that drivers internally using the atomic interfaces can grab further locks
171 * with the lock acquire context.
173 * Note that @plane can be NULL, e.g. when the cursor support hasn't yet been
174 * converted to universal planes yet.
176 void drm_modeset_lock_crtc(struct drm_crtc *crtc,
177 struct drm_plane *plane)
179 struct drm_modeset_acquire_ctx *ctx;
180 int ret;
182 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
183 if (WARN_ON(!ctx))
184 return;
186 drm_modeset_acquire_init(ctx, 0);
188 retry:
189 ret = drm_modeset_lock(&crtc->mutex, ctx);
190 if (ret)
191 goto fail;
193 if (plane) {
194 ret = drm_modeset_lock(&plane->mutex, ctx);
195 if (ret)
196 goto fail;
198 if (plane->crtc) {
199 ret = drm_modeset_lock(&plane->crtc->mutex, ctx);
200 if (ret)
201 goto fail;
205 WARN_ON(crtc->acquire_ctx);
207 /* now we hold the locks, so now that it is safe, stash the
208 * ctx for drm_modeset_unlock_crtc():
210 crtc->acquire_ctx = ctx;
212 return;
214 fail:
215 if (ret == -EDEADLK) {
216 drm_modeset_backoff(ctx);
217 goto retry;
220 EXPORT_SYMBOL(drm_modeset_lock_crtc);
223 * drm_modeset_legacy_acquire_ctx - find acquire ctx for legacy ioctls
224 * @crtc: drm crtc
226 * Legacy ioctl operations like cursor updates or page flips only have per-crtc
227 * locking, and store the acquire ctx in the corresponding crtc. All other
228 * legacy operations take all locks and use a global acquire context. This
229 * function grabs the right one.
231 struct drm_modeset_acquire_ctx *
232 drm_modeset_legacy_acquire_ctx(struct drm_crtc *crtc)
234 if (crtc->acquire_ctx)
235 return crtc->acquire_ctx;
237 WARN_ON(!crtc->dev->mode_config.acquire_ctx);
239 return crtc->dev->mode_config.acquire_ctx;
241 EXPORT_SYMBOL(drm_modeset_legacy_acquire_ctx);
244 * drm_modeset_unlock_crtc - drop crtc lock
245 * @crtc: drm crtc
247 * This drops the crtc lock acquire with drm_modeset_lock_crtc() and all other
248 * locks acquired through the hidden context.
250 void drm_modeset_unlock_crtc(struct drm_crtc *crtc)
252 struct drm_modeset_acquire_ctx *ctx = crtc->acquire_ctx;
254 if (WARN_ON(!ctx))
255 return;
257 crtc->acquire_ctx = NULL;
258 drm_modeset_drop_locks(ctx);
259 drm_modeset_acquire_fini(ctx);
261 kfree(ctx);
263 EXPORT_SYMBOL(drm_modeset_unlock_crtc);
266 * drm_warn_on_modeset_not_all_locked - check that all modeset locks are locked
267 * @dev: device
269 * Useful as a debug assert.
271 void drm_warn_on_modeset_not_all_locked(struct drm_device *dev)
273 struct drm_crtc *crtc;
275 /* Locking is currently fubar in the panic handler. */
276 if (oops_in_progress)
277 return;
279 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
280 WARN_ON(!drm_modeset_is_locked(&crtc->mutex));
282 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
283 WARN_ON(!mutex_is_locked(&dev->mode_config.mutex));
285 EXPORT_SYMBOL(drm_warn_on_modeset_not_all_locked);
288 * drm_modeset_acquire_init - initialize acquire context
289 * @ctx: the acquire context
290 * @flags: for future
292 void drm_modeset_acquire_init(struct drm_modeset_acquire_ctx *ctx,
293 uint32_t flags)
295 memset(ctx, 0, sizeof(*ctx));
296 ww_acquire_init(&ctx->ww_ctx, &crtc_ww_class);
297 INIT_LIST_HEAD(&ctx->locked);
299 EXPORT_SYMBOL(drm_modeset_acquire_init);
302 * drm_modeset_acquire_fini - cleanup acquire context
303 * @ctx: the acquire context
305 void drm_modeset_acquire_fini(struct drm_modeset_acquire_ctx *ctx)
307 ww_acquire_fini(&ctx->ww_ctx);
309 EXPORT_SYMBOL(drm_modeset_acquire_fini);
312 * drm_modeset_drop_locks - drop all locks
313 * @ctx: the acquire context
315 * Drop all locks currently held against this acquire context.
317 void drm_modeset_drop_locks(struct drm_modeset_acquire_ctx *ctx)
319 WARN_ON(ctx->contended);
320 while (!list_empty(&ctx->locked)) {
321 struct drm_modeset_lock *lock;
323 lock = list_first_entry(&ctx->locked,
324 struct drm_modeset_lock, head);
326 drm_modeset_unlock(lock);
329 EXPORT_SYMBOL(drm_modeset_drop_locks);
331 static inline int modeset_lock(struct drm_modeset_lock *lock,
332 struct drm_modeset_acquire_ctx *ctx,
333 bool interruptible, bool slow)
335 int ret;
337 WARN_ON(ctx->contended);
339 if (ctx->trylock_only) {
340 if (!ww_mutex_trylock(&lock->mutex))
341 return -EBUSY;
342 else
343 return 0;
344 } else if (interruptible && slow) {
345 ret = ww_mutex_lock_slow_interruptible(&lock->mutex, &ctx->ww_ctx);
346 } else if (interruptible) {
347 ret = ww_mutex_lock_interruptible(&lock->mutex, &ctx->ww_ctx);
348 } else if (slow) {
349 ww_mutex_lock_slow(&lock->mutex, &ctx->ww_ctx);
350 ret = 0;
351 } else {
352 ret = ww_mutex_lock(&lock->mutex, &ctx->ww_ctx);
354 if (!ret) {
355 WARN_ON(!list_empty(&lock->head));
356 list_add(&lock->head, &ctx->locked);
357 } else if (ret == -EALREADY) {
358 /* we already hold the lock.. this is fine. For atomic
359 * we will need to be able to drm_modeset_lock() things
360 * without having to keep track of what is already locked
361 * or not.
363 ret = 0;
364 } else if (ret == -EDEADLK) {
365 ctx->contended = lock;
368 return ret;
371 static int modeset_backoff(struct drm_modeset_acquire_ctx *ctx,
372 bool interruptible)
374 struct drm_modeset_lock *contended = ctx->contended;
376 ctx->contended = NULL;
378 if (WARN_ON(!contended))
379 return 0;
381 drm_modeset_drop_locks(ctx);
383 return modeset_lock(contended, ctx, interruptible, true);
387 * drm_modeset_backoff - deadlock avoidance backoff
388 * @ctx: the acquire context
390 * If deadlock is detected (ie. drm_modeset_lock() returns -EDEADLK),
391 * you must call this function to drop all currently held locks and
392 * block until the contended lock becomes available.
394 void drm_modeset_backoff(struct drm_modeset_acquire_ctx *ctx)
396 modeset_backoff(ctx, false);
398 EXPORT_SYMBOL(drm_modeset_backoff);
401 * drm_modeset_backoff_interruptible - deadlock avoidance backoff
402 * @ctx: the acquire context
404 * Interruptible version of drm_modeset_backoff()
406 int drm_modeset_backoff_interruptible(struct drm_modeset_acquire_ctx *ctx)
408 return modeset_backoff(ctx, true);
410 EXPORT_SYMBOL(drm_modeset_backoff_interruptible);
413 * drm_modeset_lock - take modeset lock
414 * @lock: lock to take
415 * @ctx: acquire ctx
417 * If ctx is not NULL, then its ww acquire context is used and the
418 * lock will be tracked by the context and can be released by calling
419 * drm_modeset_drop_locks(). If -EDEADLK is returned, this means a
420 * deadlock scenario has been detected and it is an error to attempt
421 * to take any more locks without first calling drm_modeset_backoff().
423 int drm_modeset_lock(struct drm_modeset_lock *lock,
424 struct drm_modeset_acquire_ctx *ctx)
426 if (ctx)
427 return modeset_lock(lock, ctx, false, false);
429 ww_mutex_lock(&lock->mutex, NULL);
430 return 0;
432 EXPORT_SYMBOL(drm_modeset_lock);
435 * drm_modeset_lock_interruptible - take modeset lock
436 * @lock: lock to take
437 * @ctx: acquire ctx
439 * Interruptible version of drm_modeset_lock()
441 int drm_modeset_lock_interruptible(struct drm_modeset_lock *lock,
442 struct drm_modeset_acquire_ctx *ctx)
444 if (ctx)
445 return modeset_lock(lock, ctx, true, false);
447 return ww_mutex_lock_interruptible(&lock->mutex, NULL);
449 EXPORT_SYMBOL(drm_modeset_lock_interruptible);
452 * drm_modeset_unlock - drop modeset lock
453 * @lock: lock to release
455 void drm_modeset_unlock(struct drm_modeset_lock *lock)
457 list_del_init(&lock->head);
458 ww_mutex_unlock(&lock->mutex);
460 EXPORT_SYMBOL(drm_modeset_unlock);
462 /* In some legacy codepaths it's convenient to just grab all the crtc and plane
463 * related locks. */
464 int drm_modeset_lock_all_crtcs(struct drm_device *dev,
465 struct drm_modeset_acquire_ctx *ctx)
467 struct drm_mode_config *config = &dev->mode_config;
468 struct drm_crtc *crtc;
469 struct drm_plane *plane;
470 int ret = 0;
472 list_for_each_entry(crtc, &config->crtc_list, head) {
473 ret = drm_modeset_lock(&crtc->mutex, ctx);
474 if (ret)
475 return ret;
478 list_for_each_entry(plane, &config->plane_list, head) {
479 ret = drm_modeset_lock(&plane->mutex, ctx);
480 if (ret)
481 return ret;
484 return 0;
486 EXPORT_SYMBOL(drm_modeset_lock_all_crtcs);