2 * Copyright (C) 2007 Ben Skeggs.
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:
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.
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.
27 #include <linux/ktime.h>
28 #include <linux/hrtimer.h>
29 #include <linux/sched/signal.h>
30 #include <trace/events/dma_fence.h>
32 #include <nvif/if0020.h>
34 #include "nouveau_drv.h"
35 #include "nouveau_dma.h"
36 #include "nouveau_fence.h"
38 static const struct dma_fence_ops nouveau_fence_ops_uevent;
39 static const struct dma_fence_ops nouveau_fence_ops_legacy;
41 static inline struct nouveau_fence *
42 from_fence(struct dma_fence *fence)
44 return container_of(fence, struct nouveau_fence, base);
47 static inline struct nouveau_fence_chan *
48 nouveau_fctx(struct nouveau_fence *fence)
50 return container_of(fence->base.lock, struct nouveau_fence_chan, lock);
54 nouveau_fence_signal(struct nouveau_fence *fence)
58 dma_fence_signal_locked(&fence->base);
59 list_del(&fence->head);
60 rcu_assign_pointer(fence->channel, NULL);
62 if (test_bit(DMA_FENCE_FLAG_USER_BITS, &fence->base.flags)) {
63 struct nouveau_fence_chan *fctx = nouveau_fctx(fence);
65 if (!--fctx->notify_ref)
69 dma_fence_put(&fence->base);
73 static struct nouveau_fence *
74 nouveau_local_fence(struct dma_fence *fence, struct nouveau_drm *drm)
76 if (fence->ops != &nouveau_fence_ops_legacy &&
77 fence->ops != &nouveau_fence_ops_uevent)
80 return from_fence(fence);
84 nouveau_fence_context_kill(struct nouveau_fence_chan *fctx, int error)
86 struct nouveau_fence *fence;
89 spin_lock_irqsave(&fctx->lock, flags);
90 while (!list_empty(&fctx->pending)) {
91 fence = list_entry(fctx->pending.next, typeof(*fence), head);
94 dma_fence_set_error(&fence->base, error);
96 if (nouveau_fence_signal(fence))
97 nvif_event_block(&fctx->event);
100 spin_unlock_irqrestore(&fctx->lock, flags);
104 nouveau_fence_context_del(struct nouveau_fence_chan *fctx)
106 nouveau_fence_context_kill(fctx, 0);
107 nvif_event_dtor(&fctx->event);
111 * Ensure that all accesses to fence->channel complete before freeing
118 nouveau_fence_context_put(struct kref *fence_ref)
120 kfree(container_of(fence_ref, struct nouveau_fence_chan, fence_ref));
124 nouveau_fence_context_free(struct nouveau_fence_chan *fctx)
126 kref_put(&fctx->fence_ref, nouveau_fence_context_put);
130 nouveau_fence_update(struct nouveau_channel *chan, struct nouveau_fence_chan *fctx)
132 struct nouveau_fence *fence;
134 u32 seq = fctx->read(chan);
136 while (!list_empty(&fctx->pending)) {
137 fence = list_entry(fctx->pending.next, typeof(*fence), head);
139 if ((int)(seq - fence->base.seqno) < 0)
142 drop |= nouveau_fence_signal(fence);
149 nouveau_fence_wait_uevent_handler(struct nvif_event *event, void *repv, u32 repc)
151 struct nouveau_fence_chan *fctx = container_of(event, typeof(*fctx), event);
153 int ret = NVIF_EVENT_KEEP;
155 spin_lock_irqsave(&fctx->lock, flags);
156 if (!list_empty(&fctx->pending)) {
157 struct nouveau_fence *fence;
158 struct nouveau_channel *chan;
160 fence = list_entry(fctx->pending.next, typeof(*fence), head);
161 chan = rcu_dereference_protected(fence->channel, lockdep_is_held(&fctx->lock));
162 if (nouveau_fence_update(chan, fctx))
163 ret = NVIF_EVENT_DROP;
165 spin_unlock_irqrestore(&fctx->lock, flags);
171 nouveau_fence_context_new(struct nouveau_channel *chan, struct nouveau_fence_chan *fctx)
173 struct nouveau_fence_priv *priv = (void*)chan->drm->fence;
174 struct nouveau_cli *cli = (void *)chan->user.client;
176 struct nvif_event_v0 base;
177 struct nvif_chan_event_v0 host;
181 INIT_LIST_HEAD(&fctx->flip);
182 INIT_LIST_HEAD(&fctx->pending);
183 spin_lock_init(&fctx->lock);
184 fctx->context = chan->drm->runl[chan->runlist].context_base + chan->chid;
186 if (chan == chan->drm->cechan)
187 strcpy(fctx->name, "copy engine channel");
188 else if (chan == chan->drm->channel)
189 strcpy(fctx->name, "generic kernel channel");
191 strcpy(fctx->name, nvxx_client(&cli->base)->name);
193 kref_init(&fctx->fence_ref);
197 args.host.version = 0;
198 args.host.type = NVIF_CHAN_EVENT_V0_NON_STALL_INTR;
200 ret = nvif_event_ctor(&chan->user, "fenceNonStallIntr", (chan->runlist << 16) | chan->chid,
201 nouveau_fence_wait_uevent_handler, false,
202 &args.base, sizeof(args), &fctx->event);
208 nouveau_fence_emit(struct nouveau_fence *fence)
210 struct nouveau_channel *chan = unrcu_pointer(fence->channel);
211 struct nouveau_fence_chan *fctx = chan->fence;
212 struct nouveau_fence_priv *priv = (void*)chan->drm->fence;
215 fence->timeout = jiffies + (15 * HZ);
218 dma_fence_init(&fence->base, &nouveau_fence_ops_uevent,
219 &fctx->lock, fctx->context, ++fctx->sequence);
221 dma_fence_init(&fence->base, &nouveau_fence_ops_legacy,
222 &fctx->lock, fctx->context, ++fctx->sequence);
223 kref_get(&fctx->fence_ref);
225 ret = fctx->emit(fence);
227 dma_fence_get(&fence->base);
228 spin_lock_irq(&fctx->lock);
230 if (unlikely(fctx->killed)) {
231 spin_unlock_irq(&fctx->lock);
232 dma_fence_put(&fence->base);
236 if (nouveau_fence_update(chan, fctx))
237 nvif_event_block(&fctx->event);
239 list_add_tail(&fence->head, &fctx->pending);
240 spin_unlock_irq(&fctx->lock);
247 nouveau_fence_done(struct nouveau_fence *fence)
249 if (fence->base.ops == &nouveau_fence_ops_legacy ||
250 fence->base.ops == &nouveau_fence_ops_uevent) {
251 struct nouveau_fence_chan *fctx = nouveau_fctx(fence);
252 struct nouveau_channel *chan;
255 if (test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &fence->base.flags))
258 spin_lock_irqsave(&fctx->lock, flags);
259 chan = rcu_dereference_protected(fence->channel, lockdep_is_held(&fctx->lock));
260 if (chan && nouveau_fence_update(chan, fctx))
261 nvif_event_block(&fctx->event);
262 spin_unlock_irqrestore(&fctx->lock, flags);
264 return dma_fence_is_signaled(&fence->base);
268 nouveau_fence_wait_legacy(struct dma_fence *f, bool intr, long wait)
270 struct nouveau_fence *fence = from_fence(f);
271 unsigned long sleep_time = NSEC_PER_MSEC / 1000;
272 unsigned long t = jiffies, timeout = t + wait;
274 while (!nouveau_fence_done(fence)) {
279 if (wait != MAX_SCHEDULE_TIMEOUT && time_after_eq(t, timeout)) {
280 __set_current_state(TASK_RUNNING);
284 __set_current_state(intr ? TASK_INTERRUPTIBLE :
285 TASK_UNINTERRUPTIBLE);
288 schedule_hrtimeout(&kt, HRTIMER_MODE_REL);
290 if (sleep_time > NSEC_PER_MSEC)
291 sleep_time = NSEC_PER_MSEC;
293 if (intr && signal_pending(current))
297 __set_current_state(TASK_RUNNING);
303 nouveau_fence_wait_busy(struct nouveau_fence *fence, bool intr)
307 while (!nouveau_fence_done(fence)) {
308 if (time_after_eq(jiffies, fence->timeout)) {
313 __set_current_state(intr ?
315 TASK_UNINTERRUPTIBLE);
317 if (intr && signal_pending(current)) {
323 __set_current_state(TASK_RUNNING);
328 nouveau_fence_wait(struct nouveau_fence *fence, bool lazy, bool intr)
333 return nouveau_fence_wait_busy(fence, intr);
335 ret = dma_fence_wait_timeout(&fence->base, intr, 15 * HZ);
345 nouveau_fence_sync(struct nouveau_bo *nvbo, struct nouveau_channel *chan,
346 bool exclusive, bool intr)
348 struct nouveau_fence_chan *fctx = chan->fence;
349 struct dma_resv *resv = nvbo->bo.base.resv;
352 ret = dma_resv_reserve_fences(resv, 1);
356 /* Waiting for the writes first causes performance regressions
357 * under some circumstances. So manually wait for the reads first.
359 for (i = 0; i < 2; ++i) {
360 struct dma_resv_iter cursor;
361 struct dma_fence *fence;
363 dma_resv_for_each_fence(&cursor, resv,
364 dma_resv_usage_rw(exclusive),
366 enum dma_resv_usage usage;
367 struct nouveau_fence *f;
369 usage = dma_resv_iter_usage(&cursor);
370 if (i == 0 && usage == DMA_RESV_USAGE_WRITE)
373 f = nouveau_local_fence(fence, chan->drm);
375 struct nouveau_channel *prev;
376 bool must_wait = true;
379 prev = rcu_dereference(f->channel);
380 if (prev && (prev == chan ||
381 fctx->sync(f, prev, chan) == 0))
388 ret = dma_fence_wait(fence, intr);
398 nouveau_fence_unref(struct nouveau_fence **pfence)
401 dma_fence_put(&(*pfence)->base);
406 nouveau_fence_create(struct nouveau_fence **pfence,
407 struct nouveau_channel *chan)
409 struct nouveau_fence *fence;
411 if (unlikely(!chan->fence))
414 fence = kzalloc(sizeof(*fence), GFP_KERNEL);
418 fence->channel = chan;
425 nouveau_fence_new(struct nouveau_fence **pfence,
426 struct nouveau_channel *chan)
430 ret = nouveau_fence_create(pfence, chan);
434 ret = nouveau_fence_emit(*pfence);
436 nouveau_fence_unref(pfence);
441 static const char *nouveau_fence_get_get_driver_name(struct dma_fence *fence)
446 static const char *nouveau_fence_get_timeline_name(struct dma_fence *f)
448 struct nouveau_fence *fence = from_fence(f);
449 struct nouveau_fence_chan *fctx = nouveau_fctx(fence);
451 return !fctx->dead ? fctx->name : "dead channel";
455 * In an ideal world, read would not assume the channel context is still alive.
456 * This function may be called from another device, running into free memory as a
457 * result. The drm node should still be there, so we can derive the index from
460 static bool nouveau_fence_is_signaled(struct dma_fence *f)
462 struct nouveau_fence *fence = from_fence(f);
463 struct nouveau_fence_chan *fctx = nouveau_fctx(fence);
464 struct nouveau_channel *chan;
468 chan = rcu_dereference(fence->channel);
470 ret = (int)(fctx->read(chan) - fence->base.seqno) >= 0;
476 static bool nouveau_fence_no_signaling(struct dma_fence *f)
478 struct nouveau_fence *fence = from_fence(f);
481 * caller should have a reference on the fence,
482 * else fence could get freed here
484 WARN_ON(kref_read(&fence->base.refcount) <= 1);
487 * This needs uevents to work correctly, but dma_fence_add_callback relies on
488 * being able to enable signaling. It will still get signaled eventually,
489 * just not right away.
491 if (nouveau_fence_is_signaled(f)) {
492 list_del(&fence->head);
494 dma_fence_put(&fence->base);
501 static void nouveau_fence_release(struct dma_fence *f)
503 struct nouveau_fence *fence = from_fence(f);
504 struct nouveau_fence_chan *fctx = nouveau_fctx(fence);
506 kref_put(&fctx->fence_ref, nouveau_fence_context_put);
507 dma_fence_free(&fence->base);
510 static const struct dma_fence_ops nouveau_fence_ops_legacy = {
511 .get_driver_name = nouveau_fence_get_get_driver_name,
512 .get_timeline_name = nouveau_fence_get_timeline_name,
513 .enable_signaling = nouveau_fence_no_signaling,
514 .signaled = nouveau_fence_is_signaled,
515 .wait = nouveau_fence_wait_legacy,
516 .release = nouveau_fence_release
519 static bool nouveau_fence_enable_signaling(struct dma_fence *f)
521 struct nouveau_fence *fence = from_fence(f);
522 struct nouveau_fence_chan *fctx = nouveau_fctx(fence);
525 if (!fctx->notify_ref++)
526 nvif_event_allow(&fctx->event);
528 ret = nouveau_fence_no_signaling(f);
530 set_bit(DMA_FENCE_FLAG_USER_BITS, &fence->base.flags);
531 else if (!--fctx->notify_ref)
532 nvif_event_block(&fctx->event);
537 static const struct dma_fence_ops nouveau_fence_ops_uevent = {
538 .get_driver_name = nouveau_fence_get_get_driver_name,
539 .get_timeline_name = nouveau_fence_get_timeline_name,
540 .enable_signaling = nouveau_fence_enable_signaling,
541 .signaled = nouveau_fence_is_signaled,
542 .release = nouveau_fence_release