blob: af4e906c630d5bc20f08eb62107946fe70c0a107 [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 *
42 * drm_modeset_acquire_init(&ctx)
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) {
Danilo Cesar Lemes de Paulaf03d8ed2015-11-25 18:07:55 +010045 * ret = drm_modeset_lock(lock, &ctx)
46 * if (ret == -EDEADLK) {
47 * drm_modeset_backoff(&ctx);
48 * goto retry;
49 * }
Rob Clark51fd3712013-11-19 12:10:12 -050050 * }
Rob Clark51fd3712013-11-19 12:10:12 -050051 * ... do stuff ...
Rob Clark51fd3712013-11-19 12:10:12 -050052 * drm_modeset_drop_locks(&ctx);
53 * drm_modeset_acquire_fini(&ctx);
Daniel Vetter0645de52016-05-30 11:10:49 +020054 *
Liviu Dudaufc2157b2017-07-20 17:07:48 +010055 * If all that is needed is a single modeset lock, then the &struct
56 * drm_modeset_acquire_ctx is not needed and the locking can be simplified
57 * by passing a NULL instead of ctx in the drm_modeset_lock()
58 * call and, when done, by calling drm_modeset_unlock().
59 *
60 * On top of these per-object locks using &ww_mutex there's also an overall
Daniel Vetterd5745282017-01-25 07:26:45 +010061 * &drm_mode_config.mutex, for protecting everything else. Mostly this means
Daniel Vetterb07c4252016-11-29 10:24:40 +010062 * probe state of connectors, and preventing hotplug add/removal of connectors.
Daniel Vetter0645de52016-05-30 11:10:49 +020063 *
Daniel Vetterb07c4252016-11-29 10:24:40 +010064 * Finally there's a bunch of dedicated locks to protect drm core internal
65 * lists and lookup data structures.
Rob Clark51fd3712013-11-19 12:10:12 -050066 */
67
Rob Clark35cf0352016-11-14 17:40:57 -050068static DEFINE_WW_CLASS(crtc_ww_class);
69
Rob Clark51fd3712013-11-19 12:10:12 -050070/**
Daniel Vetterbf9e37b2015-07-28 13:18:42 +020071 * drm_modeset_lock_all - take all modeset locks
Thierry Reding06eaae42015-12-02 17:50:03 +010072 * @dev: DRM device
Daniel Vettera6a8bb82014-07-25 17:47:18 +020073 *
Daniel Vetterbf9e37b2015-07-28 13:18:42 +020074 * This function takes all modeset locks, suitable where a more fine-grained
Thierry Reding06eaae42015-12-02 17:50:03 +010075 * scheme isn't (yet) implemented. Locks must be dropped by calling the
76 * drm_modeset_unlock_all() function.
77 *
78 * This function is deprecated. It allocates a lock acquisition context and
Daniel Vetterd5745282017-01-25 07:26:45 +010079 * stores it in &drm_device.mode_config. This facilitate conversion of
Thierry Reding06eaae42015-12-02 17:50:03 +010080 * existing code because it removes the need to manually deal with the
81 * acquisition context, but it is also brittle because the context is global
82 * and care must be taken not to nest calls. New code should use the
83 * drm_modeset_lock_all_ctx() function and pass in the context explicitly.
Daniel Vettera6a8bb82014-07-25 17:47:18 +020084 */
Daniel Vetterbf9e37b2015-07-28 13:18:42 +020085void drm_modeset_lock_all(struct drm_device *dev)
Daniel Vettera6a8bb82014-07-25 17:47:18 +020086{
87 struct drm_mode_config *config = &dev->mode_config;
88 struct drm_modeset_acquire_ctx *ctx;
89 int ret;
90
Daniel Vetterbf9e37b2015-07-28 13:18:42 +020091 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
92 if (WARN_ON(!ctx))
93 return;
Daniel Vettera6a8bb82014-07-25 17:47:18 +020094
Daniel Vetterbf9e37b2015-07-28 13:18:42 +020095 mutex_lock(&config->mutex);
Daniel Vettera6a8bb82014-07-25 17:47:18 +020096
97 drm_modeset_acquire_init(ctx, 0);
98
99retry:
Thierry Reding06eaae42015-12-02 17:50:03 +0100100 ret = drm_modeset_lock_all_ctx(dev, ctx);
101 if (ret < 0) {
102 if (ret == -EDEADLK) {
103 drm_modeset_backoff(ctx);
104 goto retry;
105 }
106
107 drm_modeset_acquire_fini(ctx);
108 kfree(ctx);
109 return;
110 }
Daniel Vettera6a8bb82014-07-25 17:47:18 +0200111
112 WARN_ON(config->acquire_ctx);
113
Thierry Reding06eaae42015-12-02 17:50:03 +0100114 /*
115 * We hold the locks now, so it is safe to stash the acquisition
116 * context for drm_modeset_unlock_all().
Daniel Vettera6a8bb82014-07-25 17:47:18 +0200117 */
118 config->acquire_ctx = ctx;
119
120 drm_warn_on_modeset_not_all_locked(dev);
Daniel Vettera6a8bb82014-07-25 17:47:18 +0200121}
122EXPORT_SYMBOL(drm_modeset_lock_all);
123
124/**
125 * drm_modeset_unlock_all - drop all modeset locks
Thierry Reding06eaae42015-12-02 17:50:03 +0100126 * @dev: DRM device
Daniel Vettera6a8bb82014-07-25 17:47:18 +0200127 *
Thierry Reding06eaae42015-12-02 17:50:03 +0100128 * This function drops all modeset locks taken by a previous call to the
129 * drm_modeset_lock_all() function.
130 *
131 * This function is deprecated. It uses the lock acquisition context stored
Daniel Vetterd5745282017-01-25 07:26:45 +0100132 * in &drm_device.mode_config. This facilitates conversion of existing
Thierry Reding06eaae42015-12-02 17:50:03 +0100133 * code because it removes the need to manually deal with the acquisition
134 * context, but it is also brittle because the context is global and care must
135 * be taken not to nest calls. New code should pass the acquisition context
136 * directly to the drm_modeset_drop_locks() function.
Daniel Vettera6a8bb82014-07-25 17:47:18 +0200137 */
138void drm_modeset_unlock_all(struct drm_device *dev)
139{
140 struct drm_mode_config *config = &dev->mode_config;
141 struct drm_modeset_acquire_ctx *ctx = config->acquire_ctx;
142
143 if (WARN_ON(!ctx))
144 return;
145
146 config->acquire_ctx = NULL;
147 drm_modeset_drop_locks(ctx);
148 drm_modeset_acquire_fini(ctx);
149
150 kfree(ctx);
151
152 mutex_unlock(&dev->mode_config.mutex);
153}
154EXPORT_SYMBOL(drm_modeset_unlock_all);
155
Daniel Vetterd059f652014-07-25 18:07:40 +0200156/**
Daniel Vettera6a8bb82014-07-25 17:47:18 +0200157 * drm_warn_on_modeset_not_all_locked - check that all modeset locks are locked
158 * @dev: device
159 *
160 * Useful as a debug assert.
161 */
162void drm_warn_on_modeset_not_all_locked(struct drm_device *dev)
163{
164 struct drm_crtc *crtc;
165
166 /* Locking is currently fubar in the panic handler. */
167 if (oops_in_progress)
168 return;
169
Daniel Vettere4f62542015-07-09 23:44:35 +0200170 drm_for_each_crtc(crtc, dev)
Daniel Vettera6a8bb82014-07-25 17:47:18 +0200171 WARN_ON(!drm_modeset_is_locked(&crtc->mutex));
172
173 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
174 WARN_ON(!mutex_is_locked(&dev->mode_config.mutex));
175}
176EXPORT_SYMBOL(drm_warn_on_modeset_not_all_locked);
177
178/**
Rob Clark51fd3712013-11-19 12:10:12 -0500179 * drm_modeset_acquire_init - initialize acquire context
180 * @ctx: the acquire context
181 * @flags: for future
182 */
183void drm_modeset_acquire_init(struct drm_modeset_acquire_ctx *ctx,
184 uint32_t flags)
185{
Rob Clarkfb549182014-06-07 10:55:39 -0400186 memset(ctx, 0, sizeof(*ctx));
Rob Clark51fd3712013-11-19 12:10:12 -0500187 ww_acquire_init(&ctx->ww_ctx, &crtc_ww_class);
188 INIT_LIST_HEAD(&ctx->locked);
189}
190EXPORT_SYMBOL(drm_modeset_acquire_init);
191
192/**
193 * drm_modeset_acquire_fini - cleanup acquire context
194 * @ctx: the acquire context
195 */
196void drm_modeset_acquire_fini(struct drm_modeset_acquire_ctx *ctx)
197{
198 ww_acquire_fini(&ctx->ww_ctx);
199}
200EXPORT_SYMBOL(drm_modeset_acquire_fini);
201
202/**
203 * drm_modeset_drop_locks - drop all locks
204 * @ctx: the acquire context
205 *
206 * Drop all locks currently held against this acquire context.
207 */
208void drm_modeset_drop_locks(struct drm_modeset_acquire_ctx *ctx)
209{
210 WARN_ON(ctx->contended);
211 while (!list_empty(&ctx->locked)) {
212 struct drm_modeset_lock *lock;
213
214 lock = list_first_entry(&ctx->locked,
215 struct drm_modeset_lock, head);
216
217 drm_modeset_unlock(lock);
218 }
219}
220EXPORT_SYMBOL(drm_modeset_drop_locks);
221
222static inline int modeset_lock(struct drm_modeset_lock *lock,
223 struct drm_modeset_acquire_ctx *ctx,
224 bool interruptible, bool slow)
225{
226 int ret;
227
228 WARN_ON(ctx->contended);
229
Daniel Vettercb597bb2014-07-27 19:09:33 +0200230 if (ctx->trylock_only) {
Maarten Lankhorst825926d2015-08-27 13:58:09 +0200231 lockdep_assert_held(&ctx->ww_ctx);
232
Daniel Vettercb597bb2014-07-27 19:09:33 +0200233 if (!ww_mutex_trylock(&lock->mutex))
234 return -EBUSY;
235 else
236 return 0;
237 } else if (interruptible && slow) {
Rob Clark51fd3712013-11-19 12:10:12 -0500238 ret = ww_mutex_lock_slow_interruptible(&lock->mutex, &ctx->ww_ctx);
239 } else if (interruptible) {
240 ret = ww_mutex_lock_interruptible(&lock->mutex, &ctx->ww_ctx);
241 } else if (slow) {
242 ww_mutex_lock_slow(&lock->mutex, &ctx->ww_ctx);
243 ret = 0;
244 } else {
245 ret = ww_mutex_lock(&lock->mutex, &ctx->ww_ctx);
246 }
247 if (!ret) {
248 WARN_ON(!list_empty(&lock->head));
249 list_add(&lock->head, &ctx->locked);
250 } else if (ret == -EALREADY) {
251 /* we already hold the lock.. this is fine. For atomic
252 * we will need to be able to drm_modeset_lock() things
253 * without having to keep track of what is already locked
254 * or not.
255 */
256 ret = 0;
257 } else if (ret == -EDEADLK) {
258 ctx->contended = lock;
259 }
260
261 return ret;
262}
263
264static int modeset_backoff(struct drm_modeset_acquire_ctx *ctx,
265 bool interruptible)
266{
267 struct drm_modeset_lock *contended = ctx->contended;
268
269 ctx->contended = NULL;
270
271 if (WARN_ON(!contended))
272 return 0;
273
274 drm_modeset_drop_locks(ctx);
275
276 return modeset_lock(contended, ctx, interruptible, true);
277}
278
279/**
280 * drm_modeset_backoff - deadlock avoidance backoff
281 * @ctx: the acquire context
282 *
283 * If deadlock is detected (ie. drm_modeset_lock() returns -EDEADLK),
284 * you must call this function to drop all currently held locks and
285 * block until the contended lock becomes available.
286 */
287void drm_modeset_backoff(struct drm_modeset_acquire_ctx *ctx)
288{
289 modeset_backoff(ctx, false);
290}
291EXPORT_SYMBOL(drm_modeset_backoff);
292
293/**
294 * drm_modeset_backoff_interruptible - deadlock avoidance backoff
295 * @ctx: the acquire context
296 *
297 * Interruptible version of drm_modeset_backoff()
298 */
299int drm_modeset_backoff_interruptible(struct drm_modeset_acquire_ctx *ctx)
300{
301 return modeset_backoff(ctx, true);
302}
303EXPORT_SYMBOL(drm_modeset_backoff_interruptible);
304
305/**
Rob Clark35cf0352016-11-14 17:40:57 -0500306 * drm_modeset_lock_init - initialize lock
307 * @lock: lock to init
308 */
309void drm_modeset_lock_init(struct drm_modeset_lock *lock)
310{
311 ww_mutex_init(&lock->mutex, &crtc_ww_class);
312 INIT_LIST_HEAD(&lock->head);
313}
314EXPORT_SYMBOL(drm_modeset_lock_init);
315
316/**
Rob Clark51fd3712013-11-19 12:10:12 -0500317 * drm_modeset_lock - take modeset lock
318 * @lock: lock to take
319 * @ctx: acquire ctx
320 *
Liviu Dudaufc2157b2017-07-20 17:07:48 +0100321 * If @ctx is not NULL, then its ww acquire context is used and the
Rob Clark51fd3712013-11-19 12:10:12 -0500322 * lock will be tracked by the context and can be released by calling
323 * drm_modeset_drop_locks(). If -EDEADLK is returned, this means a
324 * deadlock scenario has been detected and it is an error to attempt
325 * to take any more locks without first calling drm_modeset_backoff().
Liviu Dudaufc2157b2017-07-20 17:07:48 +0100326 *
327 * If @ctx is NULL then the function call behaves like a normal,
328 * non-nesting mutex_lock() call.
Rob Clark51fd3712013-11-19 12:10:12 -0500329 */
330int drm_modeset_lock(struct drm_modeset_lock *lock,
331 struct drm_modeset_acquire_ctx *ctx)
332{
333 if (ctx)
334 return modeset_lock(lock, ctx, false, false);
335
336 ww_mutex_lock(&lock->mutex, NULL);
337 return 0;
338}
339EXPORT_SYMBOL(drm_modeset_lock);
340
341/**
342 * drm_modeset_lock_interruptible - take modeset lock
343 * @lock: lock to take
344 * @ctx: acquire ctx
345 *
346 * Interruptible version of drm_modeset_lock()
347 */
348int drm_modeset_lock_interruptible(struct drm_modeset_lock *lock,
349 struct drm_modeset_acquire_ctx *ctx)
350{
351 if (ctx)
352 return modeset_lock(lock, ctx, true, false);
353
354 return ww_mutex_lock_interruptible(&lock->mutex, NULL);
355}
356EXPORT_SYMBOL(drm_modeset_lock_interruptible);
357
358/**
359 * drm_modeset_unlock - drop modeset lock
360 * @lock: lock to release
361 */
362void drm_modeset_unlock(struct drm_modeset_lock *lock)
363{
364 list_del_init(&lock->head);
365 ww_mutex_unlock(&lock->mutex);
366}
367EXPORT_SYMBOL(drm_modeset_unlock);
368
Thierry Reding06eaae42015-12-02 17:50:03 +0100369/**
370 * drm_modeset_lock_all_ctx - take all modeset locks
371 * @dev: DRM device
372 * @ctx: lock acquisition context
373 *
374 * This function takes all modeset locks, suitable where a more fine-grained
375 * scheme isn't (yet) implemented.
376 *
Daniel Vetterd5745282017-01-25 07:26:45 +0100377 * Unlike drm_modeset_lock_all(), it doesn't take the &drm_mode_config.mutex
Thierry Reding06eaae42015-12-02 17:50:03 +0100378 * since that lock isn't required for modeset state changes. Callers which
379 * need to grab that lock too need to do so outside of the acquire context
380 * @ctx.
381 *
382 * Locks acquired with this function should be released by calling the
383 * drm_modeset_drop_locks() function on @ctx.
384 *
385 * Returns: 0 on success or a negative error-code on failure.
386 */
387int drm_modeset_lock_all_ctx(struct drm_device *dev,
388 struct drm_modeset_acquire_ctx *ctx)
Rob Clark51fd3712013-11-19 12:10:12 -0500389{
Rob Clark51fd3712013-11-19 12:10:12 -0500390 struct drm_crtc *crtc;
Daniel Vetter4d02e2d2014-11-11 10:12:00 +0100391 struct drm_plane *plane;
Thierry Reding06eaae42015-12-02 17:50:03 +0100392 int ret;
393
394 ret = drm_modeset_lock(&dev->mode_config.connection_mutex, ctx);
395 if (ret)
396 return ret;
Rob Clark51fd3712013-11-19 12:10:12 -0500397
Daniel Vettere4f62542015-07-09 23:44:35 +0200398 drm_for_each_crtc(crtc, dev) {
Rob Clark51fd3712013-11-19 12:10:12 -0500399 ret = drm_modeset_lock(&crtc->mutex, ctx);
400 if (ret)
401 return ret;
402 }
403
Daniel Vettere4f62542015-07-09 23:44:35 +0200404 drm_for_each_plane(plane, dev) {
Daniel Vetter4d02e2d2014-11-11 10:12:00 +0100405 ret = drm_modeset_lock(&plane->mutex, ctx);
406 if (ret)
407 return ret;
408 }
409
Rob Clark51fd3712013-11-19 12:10:12 -0500410 return 0;
411}
Thierry Reding06eaae42015-12-02 17:50:03 +0100412EXPORT_SYMBOL(drm_modeset_lock_all_ctx);