blob: 8a5100685875a38cc0f844c3c57d1273045d585f [file] [log] [blame]
Rob Clark51fd3712013-11-19 12:10:12 -05001/*
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
24#include <drm/drmP.h>
25#include <drm/drm_crtc.h>
26#include <drm/drm_modeset_lock.h>
27
28/**
29 * DOC: kms locking
30 *
31 * As KMS moves toward more fine grained locking, and atomic ioctl where
32 * userspace can indirectly control locking order, it becomes necessary
Daniel Vetter0645de52016-05-30 11:10:49 +020033 * to use &ww_mutex and acquire-contexts to avoid deadlocks. But because
Rob Clark51fd3712013-11-19 12:10:12 -050034 * 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
Daniel Vetterd5745282017-01-25 07:26:45 +010036 * by &struct drm_modeset_lock and &struct drm_modeset_acquire_ctx.
Rob Clark51fd3712013-11-19 12:10:12 -050037 *
Daniel Vetter0645de52016-05-30 11:10:49 +020038 * For basic principles of &ww_mutex, see: Documentation/locking/ww-mutex-design.txt
Rob Clark51fd3712013-11-19 12:10:12 -050039 *
Daniel Vetterda5335b2016-05-31 22:55:13 +020040 * The basic usage pattern is to::
Rob Clark51fd3712013-11-19 12:10:12 -050041 *
Maarten Lankhorst6f8bcc72017-09-12 15:37:44 +020042 * drm_modeset_acquire_init(ctx, DRM_MODESET_ACQUIRE_INTERRUPTIBLE)
Danilo Cesar Lemes de Paulaf03d8ed2015-11-25 18:07:55 +010043 * retry:
Rob Clark51fd3712013-11-19 12:10:12 -050044 * foreach (lock in random_ordered_set_of_locks) {
Maarten Lankhorst6f8bcc72017-09-12 15:37:44 +020045 * ret = drm_modeset_lock(lock, ctx)
Danilo Cesar Lemes de Paulaf03d8ed2015-11-25 18:07:55 +010046 * if (ret == -EDEADLK) {
Maarten Lankhorst6f8bcc72017-09-12 15:37:44 +020047 * ret = drm_modeset_backoff(ctx);
48 * if (!ret)
49 * goto retry;
Danilo Cesar Lemes de Paulaf03d8ed2015-11-25 18:07:55 +010050 * }
Maarten Lankhorst6f8bcc72017-09-12 15:37:44 +020051 * if (ret)
52 * goto out;
Rob Clark51fd3712013-11-19 12:10:12 -050053 * }
Rob Clark51fd3712013-11-19 12:10:12 -050054 * ... do stuff ...
Maarten Lankhorst6f8bcc72017-09-12 15:37:44 +020055 * out:
56 * drm_modeset_drop_locks(ctx);
57 * drm_modeset_acquire_fini(ctx);
Daniel Vetter0645de52016-05-30 11:10:49 +020058 *
Liviu Dudaufc2157b2017-07-20 17:07:48 +010059 * If all that is needed is a single modeset lock, then the &struct
60 * drm_modeset_acquire_ctx is not needed and the locking can be simplified
Maarten Lankhorst6f8bcc72017-09-12 15:37:44 +020061 * by passing a NULL instead of ctx in the drm_modeset_lock() call or
62 * calling drm_modeset_lock_single_interruptible(). To unlock afterwards
63 * call drm_modeset_unlock().
Liviu Dudaufc2157b2017-07-20 17:07:48 +010064 *
65 * On top of these per-object locks using &ww_mutex there's also an overall
Daniel Vetterd5745282017-01-25 07:26:45 +010066 * &drm_mode_config.mutex, for protecting everything else. Mostly this means
Daniel Vetterb07c4252016-11-29 10:24:40 +010067 * probe state of connectors, and preventing hotplug add/removal of connectors.
Daniel Vetter0645de52016-05-30 11:10:49 +020068 *
Daniel Vetterb07c4252016-11-29 10:24:40 +010069 * Finally there's a bunch of dedicated locks to protect drm core internal
70 * lists and lookup data structures.
Rob Clark51fd3712013-11-19 12:10:12 -050071 */
72
Rob Clark35cf0352016-11-14 17:40:57 -050073static DEFINE_WW_CLASS(crtc_ww_class);
74
Rob Clark51fd3712013-11-19 12:10:12 -050075/**
Daniel Vetterbf9e37b2015-07-28 13:18:42 +020076 * drm_modeset_lock_all - take all modeset locks
Thierry Reding06eaae42015-12-02 17:50:03 +010077 * @dev: DRM device
Daniel Vettera6a8bb82014-07-25 17:47:18 +020078 *
Daniel Vetterbf9e37b2015-07-28 13:18:42 +020079 * This function takes all modeset locks, suitable where a more fine-grained
Thierry Reding06eaae42015-12-02 17:50:03 +010080 * scheme isn't (yet) implemented. Locks must be dropped by calling the
81 * drm_modeset_unlock_all() function.
82 *
83 * This function is deprecated. It allocates a lock acquisition context and
Daniel Vetterd5745282017-01-25 07:26:45 +010084 * stores it in &drm_device.mode_config. This facilitate conversion of
Thierry Reding06eaae42015-12-02 17:50:03 +010085 * existing code because it removes the need to manually deal with the
86 * acquisition context, but it is also brittle because the context is global
87 * and care must be taken not to nest calls. New code should use the
88 * drm_modeset_lock_all_ctx() function and pass in the context explicitly.
Daniel Vettera6a8bb82014-07-25 17:47:18 +020089 */
Daniel Vetterbf9e37b2015-07-28 13:18:42 +020090void drm_modeset_lock_all(struct drm_device *dev)
Daniel Vettera6a8bb82014-07-25 17:47:18 +020091{
92 struct drm_mode_config *config = &dev->mode_config;
93 struct drm_modeset_acquire_ctx *ctx;
94 int ret;
95
Chris Wilsond18d1a52017-10-31 11:55:35 +000096 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL | __GFP_NOFAIL);
Daniel Vetterbf9e37b2015-07-28 13:18:42 +020097 if (WARN_ON(!ctx))
98 return;
Daniel Vettera6a8bb82014-07-25 17:47:18 +020099
Daniel Vetterbf9e37b2015-07-28 13:18:42 +0200100 mutex_lock(&config->mutex);
Daniel Vettera6a8bb82014-07-25 17:47:18 +0200101
102 drm_modeset_acquire_init(ctx, 0);
103
104retry:
Thierry Reding06eaae42015-12-02 17:50:03 +0100105 ret = drm_modeset_lock_all_ctx(dev, ctx);
106 if (ret < 0) {
107 if (ret == -EDEADLK) {
108 drm_modeset_backoff(ctx);
109 goto retry;
110 }
111
112 drm_modeset_acquire_fini(ctx);
113 kfree(ctx);
114 return;
115 }
Maarten Lankhorst5fcdc9d2018-02-21 16:23:31 +0100116 ww_acquire_done(&ctx->ww_ctx);
Daniel Vettera6a8bb82014-07-25 17:47:18 +0200117
118 WARN_ON(config->acquire_ctx);
119
Thierry Reding06eaae42015-12-02 17:50:03 +0100120 /*
121 * We hold the locks now, so it is safe to stash the acquisition
122 * context for drm_modeset_unlock_all().
Daniel Vettera6a8bb82014-07-25 17:47:18 +0200123 */
124 config->acquire_ctx = ctx;
125
126 drm_warn_on_modeset_not_all_locked(dev);
Daniel Vettera6a8bb82014-07-25 17:47:18 +0200127}
128EXPORT_SYMBOL(drm_modeset_lock_all);
129
130/**
131 * drm_modeset_unlock_all - drop all modeset locks
Thierry Reding06eaae42015-12-02 17:50:03 +0100132 * @dev: DRM device
Daniel Vettera6a8bb82014-07-25 17:47:18 +0200133 *
Thierry Reding06eaae42015-12-02 17:50:03 +0100134 * This function drops all modeset locks taken by a previous call to the
135 * drm_modeset_lock_all() function.
136 *
137 * This function is deprecated. It uses the lock acquisition context stored
Daniel Vetterd5745282017-01-25 07:26:45 +0100138 * in &drm_device.mode_config. This facilitates conversion of existing
Thierry Reding06eaae42015-12-02 17:50:03 +0100139 * code because it removes the need to manually deal with the acquisition
140 * context, but it is also brittle because the context is global and care must
141 * be taken not to nest calls. New code should pass the acquisition context
142 * directly to the drm_modeset_drop_locks() function.
Daniel Vettera6a8bb82014-07-25 17:47:18 +0200143 */
144void drm_modeset_unlock_all(struct drm_device *dev)
145{
146 struct drm_mode_config *config = &dev->mode_config;
147 struct drm_modeset_acquire_ctx *ctx = config->acquire_ctx;
148
149 if (WARN_ON(!ctx))
150 return;
151
152 config->acquire_ctx = NULL;
153 drm_modeset_drop_locks(ctx);
154 drm_modeset_acquire_fini(ctx);
155
156 kfree(ctx);
157
158 mutex_unlock(&dev->mode_config.mutex);
159}
160EXPORT_SYMBOL(drm_modeset_unlock_all);
161
Daniel Vetterd059f652014-07-25 18:07:40 +0200162/**
Daniel Vettera6a8bb82014-07-25 17:47:18 +0200163 * drm_warn_on_modeset_not_all_locked - check that all modeset locks are locked
164 * @dev: device
165 *
166 * Useful as a debug assert.
167 */
168void drm_warn_on_modeset_not_all_locked(struct drm_device *dev)
169{
170 struct drm_crtc *crtc;
171
172 /* Locking is currently fubar in the panic handler. */
173 if (oops_in_progress)
174 return;
175
Daniel Vettere4f62542015-07-09 23:44:35 +0200176 drm_for_each_crtc(crtc, dev)
Daniel Vettera6a8bb82014-07-25 17:47:18 +0200177 WARN_ON(!drm_modeset_is_locked(&crtc->mutex));
178
179 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
180 WARN_ON(!mutex_is_locked(&dev->mode_config.mutex));
181}
182EXPORT_SYMBOL(drm_warn_on_modeset_not_all_locked);
183
184/**
Rob Clark51fd3712013-11-19 12:10:12 -0500185 * drm_modeset_acquire_init - initialize acquire context
186 * @ctx: the acquire context
Maarten Lankhorst6f8bcc72017-09-12 15:37:44 +0200187 * @flags: 0 or %DRM_MODESET_ACQUIRE_INTERRUPTIBLE
188 *
189 * When passing %DRM_MODESET_ACQUIRE_INTERRUPTIBLE to @flags,
190 * all calls to drm_modeset_lock() will perform an interruptible
191 * wait.
Rob Clark51fd3712013-11-19 12:10:12 -0500192 */
193void drm_modeset_acquire_init(struct drm_modeset_acquire_ctx *ctx,
194 uint32_t flags)
195{
Rob Clarkfb549182014-06-07 10:55:39 -0400196 memset(ctx, 0, sizeof(*ctx));
Rob Clark51fd3712013-11-19 12:10:12 -0500197 ww_acquire_init(&ctx->ww_ctx, &crtc_ww_class);
198 INIT_LIST_HEAD(&ctx->locked);
Maarten Lankhorst6f8bcc72017-09-12 15:37:44 +0200199
200 if (flags & DRM_MODESET_ACQUIRE_INTERRUPTIBLE)
201 ctx->interruptible = true;
Rob Clark51fd3712013-11-19 12:10:12 -0500202}
203EXPORT_SYMBOL(drm_modeset_acquire_init);
204
205/**
206 * drm_modeset_acquire_fini - cleanup acquire context
207 * @ctx: the acquire context
208 */
209void drm_modeset_acquire_fini(struct drm_modeset_acquire_ctx *ctx)
210{
211 ww_acquire_fini(&ctx->ww_ctx);
212}
213EXPORT_SYMBOL(drm_modeset_acquire_fini);
214
215/**
216 * drm_modeset_drop_locks - drop all locks
217 * @ctx: the acquire context
218 *
219 * Drop all locks currently held against this acquire context.
220 */
221void drm_modeset_drop_locks(struct drm_modeset_acquire_ctx *ctx)
222{
223 WARN_ON(ctx->contended);
224 while (!list_empty(&ctx->locked)) {
225 struct drm_modeset_lock *lock;
226
227 lock = list_first_entry(&ctx->locked,
228 struct drm_modeset_lock, head);
229
230 drm_modeset_unlock(lock);
231 }
232}
233EXPORT_SYMBOL(drm_modeset_drop_locks);
234
235static inline int modeset_lock(struct drm_modeset_lock *lock,
236 struct drm_modeset_acquire_ctx *ctx,
237 bool interruptible, bool slow)
238{
239 int ret;
240
241 WARN_ON(ctx->contended);
242
Daniel Vettercb597bb2014-07-27 19:09:33 +0200243 if (ctx->trylock_only) {
Maarten Lankhorst825926d2015-08-27 13:58:09 +0200244 lockdep_assert_held(&ctx->ww_ctx);
245
Daniel Vettercb597bb2014-07-27 19:09:33 +0200246 if (!ww_mutex_trylock(&lock->mutex))
247 return -EBUSY;
248 else
249 return 0;
250 } else if (interruptible && slow) {
Rob Clark51fd3712013-11-19 12:10:12 -0500251 ret = ww_mutex_lock_slow_interruptible(&lock->mutex, &ctx->ww_ctx);
252 } else if (interruptible) {
253 ret = ww_mutex_lock_interruptible(&lock->mutex, &ctx->ww_ctx);
254 } else if (slow) {
255 ww_mutex_lock_slow(&lock->mutex, &ctx->ww_ctx);
256 ret = 0;
257 } else {
258 ret = ww_mutex_lock(&lock->mutex, &ctx->ww_ctx);
259 }
260 if (!ret) {
261 WARN_ON(!list_empty(&lock->head));
262 list_add(&lock->head, &ctx->locked);
263 } else if (ret == -EALREADY) {
264 /* we already hold the lock.. this is fine. For atomic
265 * we will need to be able to drm_modeset_lock() things
266 * without having to keep track of what is already locked
267 * or not.
268 */
269 ret = 0;
270 } else if (ret == -EDEADLK) {
271 ctx->contended = lock;
272 }
273
274 return ret;
275}
276
Maarten Lankhorst6f8bcc72017-09-12 15:37:44 +0200277/**
278 * drm_modeset_backoff - deadlock avoidance backoff
279 * @ctx: the acquire context
280 *
281 * If deadlock is detected (ie. drm_modeset_lock() returns -EDEADLK),
282 * you must call this function to drop all currently held locks and
283 * block until the contended lock becomes available.
284 *
285 * This function returns 0 on success, or -ERESTARTSYS if this context
286 * is initialized with %DRM_MODESET_ACQUIRE_INTERRUPTIBLE and the
287 * wait has been interrupted.
288 */
289int drm_modeset_backoff(struct drm_modeset_acquire_ctx *ctx)
Rob Clark51fd3712013-11-19 12:10:12 -0500290{
291 struct drm_modeset_lock *contended = ctx->contended;
292
293 ctx->contended = NULL;
294
295 if (WARN_ON(!contended))
296 return 0;
297
298 drm_modeset_drop_locks(ctx);
299
Maarten Lankhorst6f8bcc72017-09-12 15:37:44 +0200300 return modeset_lock(contended, ctx, ctx->interruptible, true);
Rob Clark51fd3712013-11-19 12:10:12 -0500301}
302EXPORT_SYMBOL(drm_modeset_backoff);
303
304/**
Rob Clark35cf0352016-11-14 17:40:57 -0500305 * drm_modeset_lock_init - initialize lock
306 * @lock: lock to init
307 */
308void drm_modeset_lock_init(struct drm_modeset_lock *lock)
309{
310 ww_mutex_init(&lock->mutex, &crtc_ww_class);
311 INIT_LIST_HEAD(&lock->head);
312}
313EXPORT_SYMBOL(drm_modeset_lock_init);
314
315/**
Rob Clark51fd3712013-11-19 12:10:12 -0500316 * drm_modeset_lock - take modeset lock
317 * @lock: lock to take
318 * @ctx: acquire ctx
319 *
Liviu Dudaufc2157b2017-07-20 17:07:48 +0100320 * If @ctx is not NULL, then its ww acquire context is used and the
Rob Clark51fd3712013-11-19 12:10:12 -0500321 * lock will be tracked by the context and can be released by calling
322 * drm_modeset_drop_locks(). If -EDEADLK is returned, this means a
323 * deadlock scenario has been detected and it is an error to attempt
324 * to take any more locks without first calling drm_modeset_backoff().
Liviu Dudaufc2157b2017-07-20 17:07:48 +0100325 *
Maarten Lankhorst6f8bcc72017-09-12 15:37:44 +0200326 * If the @ctx is not NULL and initialized with
327 * %DRM_MODESET_ACQUIRE_INTERRUPTIBLE, this function will fail with
328 * -ERESTARTSYS when interrupted.
329 *
Liviu Dudaufc2157b2017-07-20 17:07:48 +0100330 * If @ctx is NULL then the function call behaves like a normal,
Maarten Lankhorst6f8bcc72017-09-12 15:37:44 +0200331 * uninterruptible non-nesting mutex_lock() call.
Rob Clark51fd3712013-11-19 12:10:12 -0500332 */
333int drm_modeset_lock(struct drm_modeset_lock *lock,
334 struct drm_modeset_acquire_ctx *ctx)
335{
336 if (ctx)
Maarten Lankhorst6f8bcc72017-09-12 15:37:44 +0200337 return modeset_lock(lock, ctx, ctx->interruptible, false);
Rob Clark51fd3712013-11-19 12:10:12 -0500338
339 ww_mutex_lock(&lock->mutex, NULL);
340 return 0;
341}
342EXPORT_SYMBOL(drm_modeset_lock);
343
344/**
Maarten Lankhorst6f8bcc72017-09-12 15:37:44 +0200345 * drm_modeset_lock_single_interruptible - take a single modeset lock
Rob Clark51fd3712013-11-19 12:10:12 -0500346 * @lock: lock to take
Rob Clark51fd3712013-11-19 12:10:12 -0500347 *
Maarten Lankhorst6f8bcc72017-09-12 15:37:44 +0200348 * This function behaves as drm_modeset_lock() with a NULL context,
349 * but performs interruptible waits.
350 *
351 * This function returns 0 on success, or -ERESTARTSYS when interrupted.
Rob Clark51fd3712013-11-19 12:10:12 -0500352 */
Maarten Lankhorst6f8bcc72017-09-12 15:37:44 +0200353int drm_modeset_lock_single_interruptible(struct drm_modeset_lock *lock)
Rob Clark51fd3712013-11-19 12:10:12 -0500354{
Rob Clark51fd3712013-11-19 12:10:12 -0500355 return ww_mutex_lock_interruptible(&lock->mutex, NULL);
356}
Maarten Lankhorst6f8bcc72017-09-12 15:37:44 +0200357EXPORT_SYMBOL(drm_modeset_lock_single_interruptible);
Rob Clark51fd3712013-11-19 12:10:12 -0500358
359/**
360 * drm_modeset_unlock - drop modeset lock
361 * @lock: lock to release
362 */
363void drm_modeset_unlock(struct drm_modeset_lock *lock)
364{
365 list_del_init(&lock->head);
366 ww_mutex_unlock(&lock->mutex);
367}
368EXPORT_SYMBOL(drm_modeset_unlock);
369
Thierry Reding06eaae42015-12-02 17:50:03 +0100370/**
371 * drm_modeset_lock_all_ctx - take all modeset locks
372 * @dev: DRM device
373 * @ctx: lock acquisition context
374 *
375 * This function takes all modeset locks, suitable where a more fine-grained
376 * scheme isn't (yet) implemented.
377 *
Daniel Vetterd5745282017-01-25 07:26:45 +0100378 * Unlike drm_modeset_lock_all(), it doesn't take the &drm_mode_config.mutex
Thierry Reding06eaae42015-12-02 17:50:03 +0100379 * since that lock isn't required for modeset state changes. Callers which
380 * need to grab that lock too need to do so outside of the acquire context
381 * @ctx.
382 *
383 * Locks acquired with this function should be released by calling the
384 * drm_modeset_drop_locks() function on @ctx.
385 *
386 * Returns: 0 on success or a negative error-code on failure.
387 */
388int drm_modeset_lock_all_ctx(struct drm_device *dev,
389 struct drm_modeset_acquire_ctx *ctx)
Rob Clark51fd3712013-11-19 12:10:12 -0500390{
Rob Clark51fd3712013-11-19 12:10:12 -0500391 struct drm_crtc *crtc;
Daniel Vetter4d02e2d2014-11-11 10:12:00 +0100392 struct drm_plane *plane;
Thierry Reding06eaae42015-12-02 17:50:03 +0100393 int ret;
394
395 ret = drm_modeset_lock(&dev->mode_config.connection_mutex, ctx);
396 if (ret)
397 return ret;
Rob Clark51fd3712013-11-19 12:10:12 -0500398
Daniel Vettere4f62542015-07-09 23:44:35 +0200399 drm_for_each_crtc(crtc, dev) {
Rob Clark51fd3712013-11-19 12:10:12 -0500400 ret = drm_modeset_lock(&crtc->mutex, ctx);
401 if (ret)
402 return ret;
403 }
404
Daniel Vettere4f62542015-07-09 23:44:35 +0200405 drm_for_each_plane(plane, dev) {
Daniel Vetter4d02e2d2014-11-11 10:12:00 +0100406 ret = drm_modeset_lock(&plane->mutex, ctx);
407 if (ret)
408 return ret;
409 }
410
Rob Clark51fd3712013-11-19 12:10:12 -0500411 return 0;
412}
Thierry Reding06eaae42015-12-02 17:50:03 +0100413EXPORT_SYMBOL(drm_modeset_lock_all_ctx);