1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24#include <drm/drm_atomic.h>
25#include <drm/drm_crtc.h>
26#include <drm/drm_device.h>
27#include <drm/drm_modeset_lock.h>
28#include <drm/drm_print.h>
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79static DEFINE_WW_CLASS(crtc_ww_class);
80
81#if IS_ENABLED(CONFIG_DRM_DEBUG_MODESET_LOCK)
82static noinline depot_stack_handle_t __drm_stack_depot_save(void)
83{
84 unsigned long entries[8];
85 unsigned int n;
86
87 n = stack_trace_save(entries, ARRAY_SIZE(entries), 1);
88
89 return stack_depot_save(entries, n, GFP_NOWAIT | __GFP_NOWARN);
90}
91
92static void __drm_stack_depot_print(depot_stack_handle_t stack_depot)
93{
94 struct drm_printer p = drm_debug_printer("drm_modeset_lock");
95 unsigned long *entries;
96 unsigned int nr_entries;
97 char *buf;
98
99 buf = kmalloc(PAGE_SIZE, GFP_NOWAIT | __GFP_NOWARN);
100 if (!buf)
101 return;
102
103 nr_entries = stack_depot_fetch(stack_depot, &entries);
104 stack_trace_snprint(buf, PAGE_SIZE, entries, nr_entries, 2);
105
106 drm_printf(&p, "attempting to lock a contended lock without backoff:\n%s", buf);
107
108 kfree(buf);
109}
110
111static void __drm_stack_depot_init(void)
112{
113 stack_depot_init();
114}
115#else
116static depot_stack_handle_t __drm_stack_depot_save(void)
117{
118 return 0;
119}
120static void __drm_stack_depot_print(depot_stack_handle_t stack_depot)
121{
122}
123static void __drm_stack_depot_init(void)
124{
125}
126#endif
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143void drm_modeset_lock_all(struct drm_device *dev)
144{
145 struct drm_mode_config *config = &dev->mode_config;
146 struct drm_modeset_acquire_ctx *ctx;
147 int ret;
148
149 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL | __GFP_NOFAIL);
150 if (WARN_ON(!ctx))
151 return;
152
153 mutex_lock(&config->mutex);
154
155 drm_modeset_acquire_init(ctx, 0);
156
157retry:
158 ret = drm_modeset_lock_all_ctx(dev, ctx);
159 if (ret < 0) {
160 if (ret == -EDEADLK) {
161 drm_modeset_backoff(ctx);
162 goto retry;
163 }
164
165 drm_modeset_acquire_fini(ctx);
166 kfree(ctx);
167 return;
168 }
169 ww_acquire_done(&ctx->ww_ctx);
170
171 WARN_ON(config->acquire_ctx);
172
173
174
175
176
177 config->acquire_ctx = ctx;
178
179 drm_warn_on_modeset_not_all_locked(dev);
180}
181EXPORT_SYMBOL(drm_modeset_lock_all);
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197void drm_modeset_unlock_all(struct drm_device *dev)
198{
199 struct drm_mode_config *config = &dev->mode_config;
200 struct drm_modeset_acquire_ctx *ctx = config->acquire_ctx;
201
202 if (WARN_ON(!ctx))
203 return;
204
205 config->acquire_ctx = NULL;
206 drm_modeset_drop_locks(ctx);
207 drm_modeset_acquire_fini(ctx);
208
209 kfree(ctx);
210
211 mutex_unlock(&dev->mode_config.mutex);
212}
213EXPORT_SYMBOL(drm_modeset_unlock_all);
214
215
216
217
218
219
220
221void drm_warn_on_modeset_not_all_locked(struct drm_device *dev)
222{
223 struct drm_crtc *crtc;
224
225
226 if (oops_in_progress)
227 return;
228
229 drm_for_each_crtc(crtc, dev)
230 WARN_ON(!drm_modeset_is_locked(&crtc->mutex));
231
232 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
233 WARN_ON(!mutex_is_locked(&dev->mode_config.mutex));
234}
235EXPORT_SYMBOL(drm_warn_on_modeset_not_all_locked);
236
237
238
239
240
241
242
243
244
245
246void drm_modeset_acquire_init(struct drm_modeset_acquire_ctx *ctx,
247 uint32_t flags)
248{
249 memset(ctx, 0, sizeof(*ctx));
250 ww_acquire_init(&ctx->ww_ctx, &crtc_ww_class);
251 INIT_LIST_HEAD(&ctx->locked);
252
253 if (flags & DRM_MODESET_ACQUIRE_INTERRUPTIBLE)
254 ctx->interruptible = true;
255}
256EXPORT_SYMBOL(drm_modeset_acquire_init);
257
258
259
260
261
262void drm_modeset_acquire_fini(struct drm_modeset_acquire_ctx *ctx)
263{
264 ww_acquire_fini(&ctx->ww_ctx);
265}
266EXPORT_SYMBOL(drm_modeset_acquire_fini);
267
268
269
270
271
272
273
274void drm_modeset_drop_locks(struct drm_modeset_acquire_ctx *ctx)
275{
276 if (WARN_ON(ctx->contended))
277 __drm_stack_depot_print(ctx->stack_depot);
278
279 while (!list_empty(&ctx->locked)) {
280 struct drm_modeset_lock *lock;
281
282 lock = list_first_entry(&ctx->locked,
283 struct drm_modeset_lock, head);
284
285 drm_modeset_unlock(lock);
286 }
287}
288EXPORT_SYMBOL(drm_modeset_drop_locks);
289
290static inline int modeset_lock(struct drm_modeset_lock *lock,
291 struct drm_modeset_acquire_ctx *ctx,
292 bool interruptible, bool slow)
293{
294 int ret;
295
296 if (WARN_ON(ctx->contended))
297 __drm_stack_depot_print(ctx->stack_depot);
298
299 if (ctx->trylock_only) {
300 lockdep_assert_held(&ctx->ww_ctx);
301
302 if (!ww_mutex_trylock(&lock->mutex, NULL))
303 return -EBUSY;
304 else
305 return 0;
306 } else if (interruptible && slow) {
307 ret = ww_mutex_lock_slow_interruptible(&lock->mutex, &ctx->ww_ctx);
308 } else if (interruptible) {
309 ret = ww_mutex_lock_interruptible(&lock->mutex, &ctx->ww_ctx);
310 } else if (slow) {
311 ww_mutex_lock_slow(&lock->mutex, &ctx->ww_ctx);
312 ret = 0;
313 } else {
314 ret = ww_mutex_lock(&lock->mutex, &ctx->ww_ctx);
315 }
316 if (!ret) {
317 WARN_ON(!list_empty(&lock->head));
318 list_add(&lock->head, &ctx->locked);
319 } else if (ret == -EALREADY) {
320
321
322
323
324
325 ret = 0;
326 } else if (ret == -EDEADLK) {
327 ctx->contended = lock;
328 ctx->stack_depot = __drm_stack_depot_save();
329 }
330
331 return ret;
332}
333
334
335
336
337
338
339
340
341
342
343
344
345
346int drm_modeset_backoff(struct drm_modeset_acquire_ctx *ctx)
347{
348 struct drm_modeset_lock *contended = ctx->contended;
349
350 ctx->contended = NULL;
351 ctx->stack_depot = 0;
352
353 if (WARN_ON(!contended))
354 return 0;
355
356 drm_modeset_drop_locks(ctx);
357
358 return modeset_lock(contended, ctx, ctx->interruptible, true);
359}
360EXPORT_SYMBOL(drm_modeset_backoff);
361
362
363
364
365
366void drm_modeset_lock_init(struct drm_modeset_lock *lock)
367{
368 ww_mutex_init(&lock->mutex, &crtc_ww_class);
369 INIT_LIST_HEAD(&lock->head);
370 __drm_stack_depot_init();
371}
372EXPORT_SYMBOL(drm_modeset_lock_init);
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392int drm_modeset_lock(struct drm_modeset_lock *lock,
393 struct drm_modeset_acquire_ctx *ctx)
394{
395 if (ctx)
396 return modeset_lock(lock, ctx, ctx->interruptible, false);
397
398 ww_mutex_lock(&lock->mutex, NULL);
399 return 0;
400}
401EXPORT_SYMBOL(drm_modeset_lock);
402
403
404
405
406
407
408
409
410
411
412int drm_modeset_lock_single_interruptible(struct drm_modeset_lock *lock)
413{
414 return ww_mutex_lock_interruptible(&lock->mutex, NULL);
415}
416EXPORT_SYMBOL(drm_modeset_lock_single_interruptible);
417
418
419
420
421
422void drm_modeset_unlock(struct drm_modeset_lock *lock)
423{
424 list_del_init(&lock->head);
425 ww_mutex_unlock(&lock->mutex);
426}
427EXPORT_SYMBOL(drm_modeset_unlock);
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449int drm_modeset_lock_all_ctx(struct drm_device *dev,
450 struct drm_modeset_acquire_ctx *ctx)
451{
452 struct drm_private_obj *privobj;
453 struct drm_crtc *crtc;
454 struct drm_plane *plane;
455 int ret;
456
457 ret = drm_modeset_lock(&dev->mode_config.connection_mutex, ctx);
458 if (ret)
459 return ret;
460
461 drm_for_each_crtc(crtc, dev) {
462 ret = drm_modeset_lock(&crtc->mutex, ctx);
463 if (ret)
464 return ret;
465 }
466
467 drm_for_each_plane(plane, dev) {
468 ret = drm_modeset_lock(&plane->mutex, ctx);
469 if (ret)
470 return ret;
471 }
472
473 drm_for_each_privobj(privobj, dev) {
474 ret = drm_modeset_lock(&privobj->lock, ctx);
475 if (ret)
476 return ret;
477 }
478
479 return 0;
480}
481EXPORT_SYMBOL(drm_modeset_lock_all_ctx);
482