xref: /openbmc/linux/drivers/gpu/drm/nouveau/nouveau_fence.c (revision 7f2a0b50b2b20308a19602b51c647566c62e144c)
1 /*
2  * Copyright (C) 2007 Ben Skeggs.
3  * All Rights Reserved.
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining
6  * a copy of this software and associated documentation files (the
7  * "Software"), to deal in the Software without restriction, including
8  * without limitation the rights to use, copy, modify, merge, publish,
9  * distribute, sublicense, and/or sell copies of the Software, and to
10  * permit persons to whom the Software is furnished to do so, subject to
11  * the following conditions:
12  *
13  * The above copyright notice and this permission notice (including the
14  * next paragraph) shall be included in all copies or substantial
15  * portions of the Software.
16  *
17  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
20  * IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
21  * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
22  * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
23  * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24  *
25  */
26 
27 #include <linux/ktime.h>
28 #include <linux/hrtimer.h>
29 #include <linux/sched/signal.h>
30 #include <trace/events/dma_fence.h>
31 
32 #include <nvif/if0020.h>
33 
34 #include "nouveau_drv.h"
35 #include "nouveau_dma.h"
36 #include "nouveau_fence.h"
37 
38 static const struct dma_fence_ops nouveau_fence_ops_uevent;
39 static const struct dma_fence_ops nouveau_fence_ops_legacy;
40 
41 static inline struct nouveau_fence *
42 from_fence(struct dma_fence *fence)
43 {
44 	return container_of(fence, struct nouveau_fence, base);
45 }
46 
47 static inline struct nouveau_fence_chan *
48 nouveau_fctx(struct nouveau_fence *fence)
49 {
50 	return container_of(fence->base.lock, struct nouveau_fence_chan, lock);
51 }
52 
53 static int
54 nouveau_fence_signal(struct nouveau_fence *fence)
55 {
56 	int drop = 0;
57 
58 	dma_fence_signal_locked(&fence->base);
59 	list_del(&fence->head);
60 	rcu_assign_pointer(fence->channel, NULL);
61 
62 	if (test_bit(DMA_FENCE_FLAG_USER_BITS, &fence->base.flags)) {
63 		struct nouveau_fence_chan *fctx = nouveau_fctx(fence);
64 
65 		if (!--fctx->notify_ref)
66 			drop = 1;
67 	}
68 
69 	dma_fence_put(&fence->base);
70 	return drop;
71 }
72 
73 static struct nouveau_fence *
74 nouveau_local_fence(struct dma_fence *fence, struct nouveau_drm *drm)
75 {
76 	if (fence->ops != &nouveau_fence_ops_legacy &&
77 	    fence->ops != &nouveau_fence_ops_uevent)
78 		return NULL;
79 
80 	return from_fence(fence);
81 }
82 
83 void
84 nouveau_fence_context_kill(struct nouveau_fence_chan *fctx, int error)
85 {
86 	struct nouveau_fence *fence;
87 	unsigned long flags;
88 
89 	spin_lock_irqsave(&fctx->lock, flags);
90 	while (!list_empty(&fctx->pending)) {
91 		fence = list_entry(fctx->pending.next, typeof(*fence), head);
92 
93 		if (error)
94 			dma_fence_set_error(&fence->base, error);
95 
96 		if (nouveau_fence_signal(fence))
97 			nvif_event_block(&fctx->event);
98 	}
99 	spin_unlock_irqrestore(&fctx->lock, flags);
100 }
101 
102 void
103 nouveau_fence_context_del(struct nouveau_fence_chan *fctx)
104 {
105 	nouveau_fence_context_kill(fctx, 0);
106 	nvif_event_dtor(&fctx->event);
107 	fctx->dead = 1;
108 
109 	/*
110 	 * Ensure that all accesses to fence->channel complete before freeing
111 	 * the channel.
112 	 */
113 	synchronize_rcu();
114 }
115 
116 static void
117 nouveau_fence_context_put(struct kref *fence_ref)
118 {
119 	kfree(container_of(fence_ref, struct nouveau_fence_chan, fence_ref));
120 }
121 
122 void
123 nouveau_fence_context_free(struct nouveau_fence_chan *fctx)
124 {
125 	kref_put(&fctx->fence_ref, nouveau_fence_context_put);
126 }
127 
128 static int
129 nouveau_fence_update(struct nouveau_channel *chan, struct nouveau_fence_chan *fctx)
130 {
131 	struct nouveau_fence *fence;
132 	int drop = 0;
133 	u32 seq = fctx->read(chan);
134 
135 	while (!list_empty(&fctx->pending)) {
136 		fence = list_entry(fctx->pending.next, typeof(*fence), head);
137 
138 		if ((int)(seq - fence->base.seqno) < 0)
139 			break;
140 
141 		drop |= nouveau_fence_signal(fence);
142 	}
143 
144 	return drop;
145 }
146 
147 static int
148 nouveau_fence_wait_uevent_handler(struct nvif_event *event, void *repv, u32 repc)
149 {
150 	struct nouveau_fence_chan *fctx = container_of(event, typeof(*fctx), event);
151 	unsigned long flags;
152 	int ret = NVIF_EVENT_KEEP;
153 
154 	spin_lock_irqsave(&fctx->lock, flags);
155 	if (!list_empty(&fctx->pending)) {
156 		struct nouveau_fence *fence;
157 		struct nouveau_channel *chan;
158 
159 		fence = list_entry(fctx->pending.next, typeof(*fence), head);
160 		chan = rcu_dereference_protected(fence->channel, lockdep_is_held(&fctx->lock));
161 		if (nouveau_fence_update(chan, fctx))
162 			ret = NVIF_EVENT_DROP;
163 	}
164 	spin_unlock_irqrestore(&fctx->lock, flags);
165 
166 	return ret;
167 }
168 
169 void
170 nouveau_fence_context_new(struct nouveau_channel *chan, struct nouveau_fence_chan *fctx)
171 {
172 	struct nouveau_fence_priv *priv = (void*)chan->drm->fence;
173 	struct nouveau_cli *cli = (void *)chan->user.client;
174 	struct {
175 		struct nvif_event_v0 base;
176 		struct nvif_chan_event_v0 host;
177 	} args;
178 	int ret;
179 
180 	INIT_LIST_HEAD(&fctx->flip);
181 	INIT_LIST_HEAD(&fctx->pending);
182 	spin_lock_init(&fctx->lock);
183 	fctx->context = chan->drm->runl[chan->runlist].context_base + chan->chid;
184 
185 	if (chan == chan->drm->cechan)
186 		strcpy(fctx->name, "copy engine channel");
187 	else if (chan == chan->drm->channel)
188 		strcpy(fctx->name, "generic kernel channel");
189 	else
190 		strcpy(fctx->name, nvxx_client(&cli->base)->name);
191 
192 	kref_init(&fctx->fence_ref);
193 	if (!priv->uevent)
194 		return;
195 
196 	args.host.version = 0;
197 	args.host.type = NVIF_CHAN_EVENT_V0_NON_STALL_INTR;
198 
199 	ret = nvif_event_ctor(&chan->user, "fenceNonStallIntr", (chan->runlist << 16) | chan->chid,
200 			      nouveau_fence_wait_uevent_handler, false,
201 			      &args.base, sizeof(args), &fctx->event);
202 
203 	WARN_ON(ret);
204 }
205 
206 int
207 nouveau_fence_emit(struct nouveau_fence *fence, struct nouveau_channel *chan)
208 {
209 	struct nouveau_fence_chan *fctx = chan->fence;
210 	struct nouveau_fence_priv *priv = (void*)chan->drm->fence;
211 	int ret;
212 
213 	if (unlikely(!chan->fence))
214 		return -ENODEV;
215 
216 	fence->channel  = chan;
217 	fence->timeout  = jiffies + (15 * HZ);
218 
219 	if (priv->uevent)
220 		dma_fence_init(&fence->base, &nouveau_fence_ops_uevent,
221 			       &fctx->lock, fctx->context, ++fctx->sequence);
222 	else
223 		dma_fence_init(&fence->base, &nouveau_fence_ops_legacy,
224 			       &fctx->lock, fctx->context, ++fctx->sequence);
225 	kref_get(&fctx->fence_ref);
226 
227 	ret = fctx->emit(fence);
228 	if (!ret) {
229 		dma_fence_get(&fence->base);
230 		spin_lock_irq(&fctx->lock);
231 
232 		if (nouveau_fence_update(chan, fctx))
233 			nvif_event_block(&fctx->event);
234 
235 		list_add_tail(&fence->head, &fctx->pending);
236 		spin_unlock_irq(&fctx->lock);
237 	}
238 
239 	return ret;
240 }
241 
242 bool
243 nouveau_fence_done(struct nouveau_fence *fence)
244 {
245 	if (fence->base.ops == &nouveau_fence_ops_legacy ||
246 	    fence->base.ops == &nouveau_fence_ops_uevent) {
247 		struct nouveau_fence_chan *fctx = nouveau_fctx(fence);
248 		struct nouveau_channel *chan;
249 		unsigned long flags;
250 
251 		if (test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &fence->base.flags))
252 			return true;
253 
254 		spin_lock_irqsave(&fctx->lock, flags);
255 		chan = rcu_dereference_protected(fence->channel, lockdep_is_held(&fctx->lock));
256 		if (chan && nouveau_fence_update(chan, fctx))
257 			nvif_event_block(&fctx->event);
258 		spin_unlock_irqrestore(&fctx->lock, flags);
259 	}
260 	return dma_fence_is_signaled(&fence->base);
261 }
262 
263 static long
264 nouveau_fence_wait_legacy(struct dma_fence *f, bool intr, long wait)
265 {
266 	struct nouveau_fence *fence = from_fence(f);
267 	unsigned long sleep_time = NSEC_PER_MSEC / 1000;
268 	unsigned long t = jiffies, timeout = t + wait;
269 
270 	while (!nouveau_fence_done(fence)) {
271 		ktime_t kt;
272 
273 		t = jiffies;
274 
275 		if (wait != MAX_SCHEDULE_TIMEOUT && time_after_eq(t, timeout)) {
276 			__set_current_state(TASK_RUNNING);
277 			return 0;
278 		}
279 
280 		__set_current_state(intr ? TASK_INTERRUPTIBLE :
281 					   TASK_UNINTERRUPTIBLE);
282 
283 		kt = sleep_time;
284 		schedule_hrtimeout(&kt, HRTIMER_MODE_REL);
285 		sleep_time *= 2;
286 		if (sleep_time > NSEC_PER_MSEC)
287 			sleep_time = NSEC_PER_MSEC;
288 
289 		if (intr && signal_pending(current))
290 			return -ERESTARTSYS;
291 	}
292 
293 	__set_current_state(TASK_RUNNING);
294 
295 	return timeout - t;
296 }
297 
298 static int
299 nouveau_fence_wait_busy(struct nouveau_fence *fence, bool intr)
300 {
301 	int ret = 0;
302 
303 	while (!nouveau_fence_done(fence)) {
304 		if (time_after_eq(jiffies, fence->timeout)) {
305 			ret = -EBUSY;
306 			break;
307 		}
308 
309 		__set_current_state(intr ?
310 				    TASK_INTERRUPTIBLE :
311 				    TASK_UNINTERRUPTIBLE);
312 
313 		if (intr && signal_pending(current)) {
314 			ret = -ERESTARTSYS;
315 			break;
316 		}
317 	}
318 
319 	__set_current_state(TASK_RUNNING);
320 	return ret;
321 }
322 
323 int
324 nouveau_fence_wait(struct nouveau_fence *fence, bool lazy, bool intr)
325 {
326 	long ret;
327 
328 	if (!lazy)
329 		return nouveau_fence_wait_busy(fence, intr);
330 
331 	ret = dma_fence_wait_timeout(&fence->base, intr, 15 * HZ);
332 	if (ret < 0)
333 		return ret;
334 	else if (!ret)
335 		return -EBUSY;
336 	else
337 		return 0;
338 }
339 
340 int
341 nouveau_fence_sync(struct nouveau_bo *nvbo, struct nouveau_channel *chan,
342 		   bool exclusive, bool intr)
343 {
344 	struct nouveau_fence_chan *fctx = chan->fence;
345 	struct dma_resv *resv = nvbo->bo.base.resv;
346 	int i, ret;
347 
348 	ret = dma_resv_reserve_fences(resv, 1);
349 	if (ret)
350 		return ret;
351 
352 	/* Waiting for the writes first causes performance regressions
353 	 * under some circumstances. So manually wait for the reads first.
354 	 */
355 	for (i = 0; i < 2; ++i) {
356 		struct dma_resv_iter cursor;
357 		struct dma_fence *fence;
358 
359 		dma_resv_for_each_fence(&cursor, resv,
360 					dma_resv_usage_rw(exclusive),
361 					fence) {
362 			enum dma_resv_usage usage;
363 			struct nouveau_fence *f;
364 
365 			usage = dma_resv_iter_usage(&cursor);
366 			if (i == 0 && usage == DMA_RESV_USAGE_WRITE)
367 				continue;
368 
369 			f = nouveau_local_fence(fence, chan->drm);
370 			if (f) {
371 				struct nouveau_channel *prev;
372 				bool must_wait = true;
373 
374 				rcu_read_lock();
375 				prev = rcu_dereference(f->channel);
376 				if (prev && (prev == chan ||
377 					     fctx->sync(f, prev, chan) == 0))
378 					must_wait = false;
379 				rcu_read_unlock();
380 				if (!must_wait)
381 					continue;
382 			}
383 
384 			ret = dma_fence_wait(fence, intr);
385 			if (ret)
386 				return ret;
387 		}
388 	}
389 
390 	return 0;
391 }
392 
393 void
394 nouveau_fence_unref(struct nouveau_fence **pfence)
395 {
396 	if (*pfence)
397 		dma_fence_put(&(*pfence)->base);
398 	*pfence = NULL;
399 }
400 
401 int
402 nouveau_fence_new(struct nouveau_fence **pfence)
403 {
404 	struct nouveau_fence *fence;
405 
406 	fence = kzalloc(sizeof(*fence), GFP_KERNEL);
407 	if (!fence)
408 		return -ENOMEM;
409 
410 	*pfence = fence;
411 	return 0;
412 }
413 
414 static const char *nouveau_fence_get_get_driver_name(struct dma_fence *fence)
415 {
416 	return "nouveau";
417 }
418 
419 static const char *nouveau_fence_get_timeline_name(struct dma_fence *f)
420 {
421 	struct nouveau_fence *fence = from_fence(f);
422 	struct nouveau_fence_chan *fctx = nouveau_fctx(fence);
423 
424 	return !fctx->dead ? fctx->name : "dead channel";
425 }
426 
427 /*
428  * In an ideal world, read would not assume the channel context is still alive.
429  * This function may be called from another device, running into free memory as a
430  * result. The drm node should still be there, so we can derive the index from
431  * the fence context.
432  */
433 static bool nouveau_fence_is_signaled(struct dma_fence *f)
434 {
435 	struct nouveau_fence *fence = from_fence(f);
436 	struct nouveau_fence_chan *fctx = nouveau_fctx(fence);
437 	struct nouveau_channel *chan;
438 	bool ret = false;
439 
440 	rcu_read_lock();
441 	chan = rcu_dereference(fence->channel);
442 	if (chan)
443 		ret = (int)(fctx->read(chan) - fence->base.seqno) >= 0;
444 	rcu_read_unlock();
445 
446 	return ret;
447 }
448 
449 static bool nouveau_fence_no_signaling(struct dma_fence *f)
450 {
451 	struct nouveau_fence *fence = from_fence(f);
452 
453 	/*
454 	 * caller should have a reference on the fence,
455 	 * else fence could get freed here
456 	 */
457 	WARN_ON(kref_read(&fence->base.refcount) <= 1);
458 
459 	/*
460 	 * This needs uevents to work correctly, but dma_fence_add_callback relies on
461 	 * being able to enable signaling. It will still get signaled eventually,
462 	 * just not right away.
463 	 */
464 	if (nouveau_fence_is_signaled(f)) {
465 		list_del(&fence->head);
466 
467 		dma_fence_put(&fence->base);
468 		return false;
469 	}
470 
471 	return true;
472 }
473 
474 static void nouveau_fence_release(struct dma_fence *f)
475 {
476 	struct nouveau_fence *fence = from_fence(f);
477 	struct nouveau_fence_chan *fctx = nouveau_fctx(fence);
478 
479 	kref_put(&fctx->fence_ref, nouveau_fence_context_put);
480 	dma_fence_free(&fence->base);
481 }
482 
483 static const struct dma_fence_ops nouveau_fence_ops_legacy = {
484 	.get_driver_name = nouveau_fence_get_get_driver_name,
485 	.get_timeline_name = nouveau_fence_get_timeline_name,
486 	.enable_signaling = nouveau_fence_no_signaling,
487 	.signaled = nouveau_fence_is_signaled,
488 	.wait = nouveau_fence_wait_legacy,
489 	.release = nouveau_fence_release
490 };
491 
492 static bool nouveau_fence_enable_signaling(struct dma_fence *f)
493 {
494 	struct nouveau_fence *fence = from_fence(f);
495 	struct nouveau_fence_chan *fctx = nouveau_fctx(fence);
496 	bool ret;
497 
498 	if (!fctx->notify_ref++)
499 		nvif_event_allow(&fctx->event);
500 
501 	ret = nouveau_fence_no_signaling(f);
502 	if (ret)
503 		set_bit(DMA_FENCE_FLAG_USER_BITS, &fence->base.flags);
504 	else if (!--fctx->notify_ref)
505 		nvif_event_block(&fctx->event);
506 
507 	return ret;
508 }
509 
510 static const struct dma_fence_ops nouveau_fence_ops_uevent = {
511 	.get_driver_name = nouveau_fence_get_get_driver_name,
512 	.get_timeline_name = nouveau_fence_get_timeline_name,
513 	.enable_signaling = nouveau_fence_enable_signaling,
514 	.signaled = nouveau_fence_is_signaled,
515 	.release = nouveau_fence_release
516 };
517