2 * Copyright © 2008-2015 Intel Corporation
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
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 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
25 #include <linux/dma-fence-array.h>
26 #include <linux/irq_work.h>
27 #include <linux/prefetch.h>
28 #include <linux/sched.h>
29 #include <linux/sched/clock.h>
30 #include <linux/sched/signal.h>
32 #include "gem/i915_gem_context.h"
33 #include "gt/intel_context.h"
34 #include "gt/intel_ring.h"
35 #include "gt/intel_rps.h"
37 #include "i915_active.h"
39 #include "i915_globals.h"
40 #include "i915_trace.h"
44 struct list_head link;
46 struct i915_sw_fence *fence;
47 void (*hook)(struct i915_request *rq, struct dma_fence *signal);
48 struct i915_request *signal;
51 static struct i915_global_request {
52 struct i915_global base;
53 struct kmem_cache *slab_requests;
54 struct kmem_cache *slab_dependencies;
55 struct kmem_cache *slab_execute_cbs;
58 static const char *i915_fence_get_driver_name(struct dma_fence *fence)
63 static const char *i915_fence_get_timeline_name(struct dma_fence *fence)
66 * The timeline struct (as part of the ppgtt underneath a context)
67 * may be freed when the request is no longer in use by the GPU.
68 * We could extend the life of a context to beyond that of all
69 * fences, possibly keeping the hw resource around indefinitely,
70 * or we just give them a false name. Since
71 * dma_fence_ops.get_timeline_name is a debug feature, the occasional
72 * lie seems justifiable.
74 if (test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &fence->flags))
77 return to_request(fence)->gem_context->name ?: "[i915]";
80 static bool i915_fence_signaled(struct dma_fence *fence)
82 return i915_request_completed(to_request(fence));
85 static bool i915_fence_enable_signaling(struct dma_fence *fence)
87 return i915_request_enable_breadcrumb(to_request(fence));
90 static signed long i915_fence_wait(struct dma_fence *fence,
94 return i915_request_wait(to_request(fence),
95 interruptible | I915_WAIT_PRIORITY,
99 static void i915_fence_release(struct dma_fence *fence)
101 struct i915_request *rq = to_request(fence);
104 * The request is put onto a RCU freelist (i.e. the address
105 * is immediately reused), mark the fences as being freed now.
106 * Otherwise the debugobjects for the fences are only marked as
107 * freed when the slab cache itself is freed, and so we would get
108 * caught trying to reuse dead objects.
110 i915_sw_fence_fini(&rq->submit);
111 i915_sw_fence_fini(&rq->semaphore);
113 kmem_cache_free(global.slab_requests, rq);
116 const struct dma_fence_ops i915_fence_ops = {
117 .get_driver_name = i915_fence_get_driver_name,
118 .get_timeline_name = i915_fence_get_timeline_name,
119 .enable_signaling = i915_fence_enable_signaling,
120 .signaled = i915_fence_signaled,
121 .wait = i915_fence_wait,
122 .release = i915_fence_release,
125 static void irq_execute_cb(struct irq_work *wrk)
127 struct execute_cb *cb = container_of(wrk, typeof(*cb), work);
129 i915_sw_fence_complete(cb->fence);
130 kmem_cache_free(global.slab_execute_cbs, cb);
133 static void irq_execute_cb_hook(struct irq_work *wrk)
135 struct execute_cb *cb = container_of(wrk, typeof(*cb), work);
137 cb->hook(container_of(cb->fence, struct i915_request, submit),
139 i915_request_put(cb->signal);
144 static void __notify_execute_cb(struct i915_request *rq)
146 struct execute_cb *cb;
148 lockdep_assert_held(&rq->lock);
150 if (list_empty(&rq->execute_cb))
153 list_for_each_entry(cb, &rq->execute_cb, link)
154 irq_work_queue(&cb->work);
157 * XXX Rollback on __i915_request_unsubmit()
159 * In the future, perhaps when we have an active time-slicing scheduler,
160 * it will be interesting to unsubmit parallel execution and remove
161 * busywaits from the GPU until their master is restarted. This is
162 * quite hairy, we have to carefully rollback the fence and do a
163 * preempt-to-idle cycle on the target engine, all the while the
164 * master execute_cb may refire.
166 INIT_LIST_HEAD(&rq->execute_cb);
170 remove_from_client(struct i915_request *request)
172 struct drm_i915_file_private *file_priv;
174 if (!READ_ONCE(request->file_priv))
178 file_priv = xchg(&request->file_priv, NULL);
180 spin_lock(&file_priv->mm.lock);
181 list_del(&request->client_link);
182 spin_unlock(&file_priv->mm.lock);
187 static void free_capture_list(struct i915_request *request)
189 struct i915_capture_list *capture;
191 capture = request->capture_list;
193 struct i915_capture_list *next = capture->next;
200 static void remove_from_engine(struct i915_request *rq)
202 struct intel_engine_cs *engine, *locked;
205 * Virtual engines complicate acquiring the engine timeline lock,
206 * as their rq->engine pointer is not stable until under that
207 * engine lock. The simple ploy we use is to take the lock then
208 * check that the rq still belongs to the newly locked engine.
210 locked = READ_ONCE(rq->engine);
211 spin_lock_irq(&locked->active.lock);
212 while (unlikely(locked != (engine = READ_ONCE(rq->engine)))) {
213 spin_unlock(&locked->active.lock);
214 spin_lock(&engine->active.lock);
217 list_del(&rq->sched.link);
218 spin_unlock_irq(&locked->active.lock);
221 bool i915_request_retire(struct i915_request *rq)
223 if (!i915_request_completed(rq))
226 GEM_TRACE("%s fence %llx:%lld, current %d\n",
228 rq->fence.context, rq->fence.seqno,
231 GEM_BUG_ON(!i915_sw_fence_signaled(&rq->submit));
232 trace_i915_request_retire(rq);
235 * We know the GPU must have read the request to have
236 * sent us the seqno + interrupt, so use the position
237 * of tail of the request to update the last known position
240 * Note this requires that we are always called in request
243 GEM_BUG_ON(!list_is_first(&rq->link,
244 &i915_request_timeline(rq)->requests));
245 rq->ring->head = rq->postfix;
248 * We only loosely track inflight requests across preemption,
249 * and so we may find ourselves attempting to retire a _completed_
250 * request that we have removed from the HW and put back on a run
253 remove_from_engine(rq);
255 spin_lock_irq(&rq->lock);
256 i915_request_mark_complete(rq);
257 if (!i915_request_signaled(rq))
258 dma_fence_signal_locked(&rq->fence);
259 if (test_bit(DMA_FENCE_FLAG_ENABLE_SIGNAL_BIT, &rq->fence.flags))
260 i915_request_cancel_breadcrumb(rq);
261 if (i915_request_has_waitboost(rq)) {
262 GEM_BUG_ON(!atomic_read(&rq->engine->gt->rps.num_waiters));
263 atomic_dec(&rq->engine->gt->rps.num_waiters);
265 if (!test_bit(I915_FENCE_FLAG_ACTIVE, &rq->fence.flags)) {
266 set_bit(I915_FENCE_FLAG_ACTIVE, &rq->fence.flags);
267 __notify_execute_cb(rq);
269 GEM_BUG_ON(!list_empty(&rq->execute_cb));
270 spin_unlock_irq(&rq->lock);
272 remove_from_client(rq);
275 intel_context_exit(rq->hw_context);
276 intel_context_unpin(rq->hw_context);
278 free_capture_list(rq);
279 i915_sched_node_fini(&rq->sched);
280 i915_request_put(rq);
285 void i915_request_retire_upto(struct i915_request *rq)
287 struct intel_timeline * const tl = i915_request_timeline(rq);
288 struct i915_request *tmp;
290 GEM_TRACE("%s fence %llx:%lld, current %d\n",
292 rq->fence.context, rq->fence.seqno,
295 GEM_BUG_ON(!i915_request_completed(rq));
298 tmp = list_first_entry(&tl->requests, typeof(*tmp), link);
299 } while (i915_request_retire(tmp) && tmp != rq);
303 __await_execution(struct i915_request *rq,
304 struct i915_request *signal,
305 void (*hook)(struct i915_request *rq,
306 struct dma_fence *signal),
309 struct execute_cb *cb;
311 if (i915_request_is_active(signal)) {
313 hook(rq, &signal->fence);
317 cb = kmem_cache_alloc(global.slab_execute_cbs, gfp);
321 cb->fence = &rq->submit;
322 i915_sw_fence_await(cb->fence);
323 init_irq_work(&cb->work, irq_execute_cb);
327 cb->signal = i915_request_get(signal);
328 cb->work.func = irq_execute_cb_hook;
331 spin_lock_irq(&signal->lock);
332 if (i915_request_is_active(signal)) {
334 hook(rq, &signal->fence);
335 i915_request_put(signal);
337 i915_sw_fence_complete(cb->fence);
338 kmem_cache_free(global.slab_execute_cbs, cb);
340 list_add_tail(&cb->link, &signal->execute_cb);
342 spin_unlock_irq(&signal->lock);
344 /* Copy across semaphore status as we need the same behaviour */
345 rq->sched.flags |= signal->sched.flags;
349 bool __i915_request_submit(struct i915_request *request)
351 struct intel_engine_cs *engine = request->engine;
354 GEM_TRACE("%s fence %llx:%lld, current %d\n",
356 request->fence.context, request->fence.seqno,
357 hwsp_seqno(request));
359 GEM_BUG_ON(!irqs_disabled());
360 lockdep_assert_held(&engine->active.lock);
363 * With the advent of preempt-to-busy, we frequently encounter
364 * requests that we have unsubmitted from HW, but left running
365 * until the next ack and so have completed in the meantime. On
366 * resubmission of that completed request, we can skip
367 * updating the payload, and execlists can even skip submitting
370 * We must remove the request from the caller's priority queue,
371 * and the caller must only call us when the request is in their
372 * priority queue, under the active.lock. This ensures that the
373 * request has *not* yet been retired and we can safely move
374 * the request into the engine->active.list where it will be
375 * dropped upon retiring. (Otherwise if resubmit a *retired*
376 * request, this would be a horrible use-after-free.)
378 if (i915_request_completed(request))
381 if (i915_gem_context_is_banned(request->gem_context))
382 i915_request_skip(request, -EIO);
385 * Are we using semaphores when the gpu is already saturated?
387 * Using semaphores incurs a cost in having the GPU poll a
388 * memory location, busywaiting for it to change. The continual
389 * memory reads can have a noticeable impact on the rest of the
390 * system with the extra bus traffic, stalling the cpu as it too
391 * tries to access memory across the bus (perf stat -e bus-cycles).
393 * If we installed a semaphore on this request and we only submit
394 * the request after the signaler completed, that indicates the
395 * system is overloaded and using semaphores at this time only
396 * increases the amount of work we are doing. If so, we disable
397 * further use of semaphores until we are idle again, whence we
398 * optimistically try again.
400 if (request->sched.semaphores &&
401 i915_sw_fence_signaled(&request->semaphore))
402 engine->saturated |= request->sched.semaphores;
404 engine->emit_fini_breadcrumb(request,
405 request->ring->vaddr + request->postfix);
407 trace_i915_request_execute(request);
411 xfer: /* We may be recursing from the signal callback of another i915 fence */
412 spin_lock_nested(&request->lock, SINGLE_DEPTH_NESTING);
414 if (!test_and_set_bit(I915_FENCE_FLAG_ACTIVE, &request->fence.flags))
415 list_move_tail(&request->sched.link, &engine->active.requests);
417 if (test_bit(DMA_FENCE_FLAG_ENABLE_SIGNAL_BIT, &request->fence.flags) &&
418 !test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &request->fence.flags) &&
419 !i915_request_enable_breadcrumb(request))
420 intel_engine_queue_breadcrumbs(engine);
422 __notify_execute_cb(request);
424 spin_unlock(&request->lock);
429 void i915_request_submit(struct i915_request *request)
431 struct intel_engine_cs *engine = request->engine;
434 /* Will be called from irq-context when using foreign fences. */
435 spin_lock_irqsave(&engine->active.lock, flags);
437 __i915_request_submit(request);
439 spin_unlock_irqrestore(&engine->active.lock, flags);
442 void __i915_request_unsubmit(struct i915_request *request)
444 struct intel_engine_cs *engine = request->engine;
446 GEM_TRACE("%s fence %llx:%lld, current %d\n",
448 request->fence.context, request->fence.seqno,
449 hwsp_seqno(request));
451 GEM_BUG_ON(!irqs_disabled());
452 lockdep_assert_held(&engine->active.lock);
455 * Only unwind in reverse order, required so that the per-context list
456 * is kept in seqno/ring order.
459 /* We may be recursing from the signal callback of another i915 fence */
460 spin_lock_nested(&request->lock, SINGLE_DEPTH_NESTING);
462 if (test_bit(DMA_FENCE_FLAG_ENABLE_SIGNAL_BIT, &request->fence.flags))
463 i915_request_cancel_breadcrumb(request);
465 GEM_BUG_ON(!test_bit(I915_FENCE_FLAG_ACTIVE, &request->fence.flags));
466 clear_bit(I915_FENCE_FLAG_ACTIVE, &request->fence.flags);
468 spin_unlock(&request->lock);
470 /* We've already spun, don't charge on resubmitting. */
471 if (request->sched.semaphores && i915_request_started(request)) {
472 request->sched.attr.priority |= I915_PRIORITY_NOSEMAPHORE;
473 request->sched.semaphores = 0;
477 * We don't need to wake_up any waiters on request->execute, they
478 * will get woken by any other event or us re-adding this request
479 * to the engine timeline (__i915_request_submit()). The waiters
480 * should be quite adapt at finding that the request now has a new
481 * global_seqno to the one they went to sleep on.
485 void i915_request_unsubmit(struct i915_request *request)
487 struct intel_engine_cs *engine = request->engine;
490 /* Will be called from irq-context when using foreign fences. */
491 spin_lock_irqsave(&engine->active.lock, flags);
493 __i915_request_unsubmit(request);
495 spin_unlock_irqrestore(&engine->active.lock, flags);
498 static int __i915_sw_fence_call
499 submit_notify(struct i915_sw_fence *fence, enum i915_sw_fence_notify state)
501 struct i915_request *request =
502 container_of(fence, typeof(*request), submit);
506 trace_i915_request_submit(request);
508 if (unlikely(fence->error))
509 i915_request_skip(request, fence->error);
512 * We need to serialize use of the submit_request() callback
513 * with its hotplugging performed during an emergency
514 * i915_gem_set_wedged(). We use the RCU mechanism to mark the
515 * critical section in order to force i915_gem_set_wedged() to
516 * wait until the submit_request() is completed before
520 request->engine->submit_request(request);
525 i915_request_put(request);
532 static int __i915_sw_fence_call
533 semaphore_notify(struct i915_sw_fence *fence, enum i915_sw_fence_notify state)
535 struct i915_request *request =
536 container_of(fence, typeof(*request), semaphore);
540 i915_schedule_bump_priority(request, I915_PRIORITY_NOSEMAPHORE);
544 i915_request_put(request);
551 static void retire_requests(struct intel_timeline *tl)
553 struct i915_request *rq, *rn;
555 list_for_each_entry_safe(rq, rn, &tl->requests, link)
556 if (!i915_request_retire(rq))
560 static noinline struct i915_request *
561 request_alloc_slow(struct intel_timeline *tl, gfp_t gfp)
563 struct i915_request *rq;
565 if (list_empty(&tl->requests))
568 if (!gfpflags_allow_blocking(gfp))
571 /* Move our oldest request to the slab-cache (if not in use!) */
572 rq = list_first_entry(&tl->requests, typeof(*rq), link);
573 i915_request_retire(rq);
575 rq = kmem_cache_alloc(global.slab_requests,
576 gfp | __GFP_RETRY_MAYFAIL | __GFP_NOWARN);
580 /* Ratelimit ourselves to prevent oom from malicious clients */
581 rq = list_last_entry(&tl->requests, typeof(*rq), link);
582 cond_synchronize_rcu(rq->rcustate);
584 /* Retire our old requests in the hope that we free some */
588 return kmem_cache_alloc(global.slab_requests, gfp);
591 struct i915_request *
592 __i915_request_create(struct intel_context *ce, gfp_t gfp)
594 struct intel_timeline *tl = ce->timeline;
595 struct i915_request *rq;
599 might_sleep_if(gfpflags_allow_blocking(gfp));
601 /* Check that the caller provided an already pinned context */
602 __intel_context_pin(ce);
605 * Beware: Dragons be flying overhead.
607 * We use RCU to look up requests in flight. The lookups may
608 * race with the request being allocated from the slab freelist.
609 * That is the request we are writing to here, may be in the process
610 * of being read by __i915_active_request_get_rcu(). As such,
611 * we have to be very careful when overwriting the contents. During
612 * the RCU lookup, we change chase the request->engine pointer,
613 * read the request->global_seqno and increment the reference count.
615 * The reference count is incremented atomically. If it is zero,
616 * the lookup knows the request is unallocated and complete. Otherwise,
617 * it is either still in use, or has been reallocated and reset
618 * with dma_fence_init(). This increment is safe for release as we
619 * check that the request we have a reference to and matches the active
622 * Before we increment the refcount, we chase the request->engine
623 * pointer. We must not call kmem_cache_zalloc() or else we set
624 * that pointer to NULL and cause a crash during the lookup. If
625 * we see the request is completed (based on the value of the
626 * old engine and seqno), the lookup is complete and reports NULL.
627 * If we decide the request is not completed (new engine or seqno),
628 * then we grab a reference and double check that it is still the
629 * active request - which it won't be and restart the lookup.
631 * Do not use kmem_cache_zalloc() here!
633 rq = kmem_cache_alloc(global.slab_requests,
634 gfp | __GFP_RETRY_MAYFAIL | __GFP_NOWARN);
636 rq = request_alloc_slow(tl, gfp);
643 ret = intel_timeline_get_seqno(tl, rq, &seqno);
647 rq->i915 = ce->engine->i915;
649 rq->gem_context = ce->gem_context;
650 rq->engine = ce->engine;
652 rq->execution_mask = ce->engine->mask;
654 rcu_assign_pointer(rq->timeline, tl);
655 rq->hwsp_seqno = tl->hwsp_seqno;
656 rq->hwsp_cacheline = tl->hwsp_cacheline;
658 rq->rcustate = get_state_synchronize_rcu(); /* acts as smp_mb() */
660 spin_lock_init(&rq->lock);
661 dma_fence_init(&rq->fence, &i915_fence_ops, &rq->lock,
662 tl->fence_context, seqno);
664 /* We bump the ref for the fence chain */
665 i915_sw_fence_init(&i915_request_get(rq)->submit, submit_notify);
666 i915_sw_fence_init(&i915_request_get(rq)->semaphore, semaphore_notify);
668 i915_sched_node_init(&rq->sched);
670 /* No zalloc, must clear what we need by hand */
671 rq->file_priv = NULL;
673 rq->capture_list = NULL;
676 INIT_LIST_HEAD(&rq->execute_cb);
679 * Reserve space in the ring buffer for all the commands required to
680 * eventually emit this request. This is to guarantee that the
681 * i915_request_add() call can't fail. Note that the reserve may need
682 * to be redone if the request is not actually submitted straight
683 * away, e.g. because a GPU scheduler has deferred it.
685 * Note that due to how we add reserved_space to intel_ring_begin()
686 * we need to double our request to ensure that if we need to wrap
687 * around inside i915_request_add() there is sufficient space at
688 * the beginning of the ring as well.
691 2 * rq->engine->emit_fini_breadcrumb_dw * sizeof(u32);
694 * Record the position of the start of the request so that
695 * should we detect the updated seqno part-way through the
696 * GPU processing the request, we never over-estimate the
697 * position of the head.
699 rq->head = rq->ring->emit;
701 ret = rq->engine->request_alloc(rq);
705 rq->infix = rq->ring->emit; /* end of header; start of user payload */
707 intel_context_mark_active(ce);
711 ce->ring->emit = rq->head;
713 /* Make sure we didn't add ourselves to external state before freeing */
714 GEM_BUG_ON(!list_empty(&rq->sched.signalers_list));
715 GEM_BUG_ON(!list_empty(&rq->sched.waiters_list));
718 kmem_cache_free(global.slab_requests, rq);
720 intel_context_unpin(ce);
724 struct i915_request *
725 i915_request_create(struct intel_context *ce)
727 struct i915_request *rq;
728 struct intel_timeline *tl;
730 tl = intel_context_timeline_lock(ce);
734 /* Move our oldest request to the slab-cache (if not in use!) */
735 rq = list_first_entry(&tl->requests, typeof(*rq), link);
736 if (!list_is_last(&rq->link, &tl->requests))
737 i915_request_retire(rq);
739 intel_context_enter(ce);
740 rq = __i915_request_create(ce, GFP_KERNEL);
741 intel_context_exit(ce); /* active reference transferred to request */
745 /* Check that we do not interrupt ourselves with a new request */
746 rq->cookie = lockdep_pin_lock(&tl->mutex);
751 intel_context_timeline_unlock(tl);
756 i915_request_await_start(struct i915_request *rq, struct i915_request *signal)
758 struct intel_timeline *tl;
759 struct dma_fence *fence;
762 GEM_BUG_ON(i915_request_timeline(rq) ==
763 rcu_access_pointer(signal->timeline));
766 tl = rcu_dereference(signal->timeline);
767 if (i915_request_started(signal) || !kref_get_unless_zero(&tl->kref))
770 if (!tl) /* already started or maybe even completed */
773 fence = ERR_PTR(-EBUSY);
774 if (mutex_trylock(&tl->mutex)) {
776 if (!i915_request_started(signal) &&
777 !list_is_first(&signal->link, &tl->requests)) {
778 signal = list_prev_entry(signal, link);
779 fence = dma_fence_get(&signal->fence);
781 mutex_unlock(&tl->mutex);
783 intel_timeline_put(tl);
784 if (IS_ERR_OR_NULL(fence))
785 return PTR_ERR_OR_ZERO(fence);
788 if (intel_timeline_sync_is_later(i915_request_timeline(rq), fence))
789 err = i915_sw_fence_await_dma_fence(&rq->submit,
792 dma_fence_put(fence);
797 static intel_engine_mask_t
798 already_busywaiting(struct i915_request *rq)
801 * Polling a semaphore causes bus traffic, delaying other users of
802 * both the GPU and CPU. We want to limit the impact on others,
803 * while taking advantage of early submission to reduce GPU
804 * latency. Therefore we restrict ourselves to not using more
805 * than one semaphore from each source, and not using a semaphore
806 * if we have detected the engine is saturated (i.e. would not be
807 * submitted early and cause bus traffic reading an already passed
810 * See the are-we-too-late? check in __i915_request_submit().
812 return rq->sched.semaphores | rq->engine->saturated;
816 __emit_semaphore_wait(struct i915_request *to,
817 struct i915_request *from,
820 const int has_token = INTEL_GEN(to->i915) >= 12;
825 GEM_BUG_ON(INTEL_GEN(to->i915) < 8);
827 /* We need to pin the signaler's HWSP until we are finished reading. */
828 err = intel_timeline_read_hwsp(from, to, &hwsp_offset);
836 cs = intel_ring_begin(to, len);
841 * Using greater-than-or-equal here means we have to worry
842 * about seqno wraparound. To side step that issue, we swap
843 * the timeline HWSP upon wrapping, so that everyone listening
844 * for the old (pre-wrap) values do not see the much smaller
845 * (post-wrap) values than they were expecting (and so wait
848 *cs++ = (MI_SEMAPHORE_WAIT |
849 MI_SEMAPHORE_GLOBAL_GTT |
851 MI_SEMAPHORE_SAD_GTE_SDD) +
861 intel_ring_advance(to, cs);
866 emit_semaphore_wait(struct i915_request *to,
867 struct i915_request *from,
870 /* Just emit the first semaphore we see as request space is limited. */
871 if (already_busywaiting(to) & from->engine->mask)
874 if (i915_request_await_start(to, from) < 0)
877 /* Only submit our spinner after the signaler is running! */
878 if (__await_execution(to, from, NULL, gfp))
881 if (__emit_semaphore_wait(to, from, from->fence.seqno))
884 to->sched.semaphores |= from->engine->mask;
885 to->sched.flags |= I915_SCHED_HAS_SEMAPHORE_CHAIN;
889 return i915_sw_fence_await_dma_fence(&to->submit,
895 i915_request_await_request(struct i915_request *to, struct i915_request *from)
899 GEM_BUG_ON(to == from);
900 GEM_BUG_ON(to->timeline == from->timeline);
902 if (i915_request_completed(from))
905 if (to->engine->schedule) {
906 ret = i915_sched_node_add_dependency(&to->sched, &from->sched);
911 if (to->engine == from->engine) {
912 ret = i915_sw_fence_await_sw_fence_gfp(&to->submit,
915 } else if (intel_engine_has_semaphores(to->engine) &&
916 to->gem_context->sched.priority >= I915_PRIORITY_NORMAL) {
917 ret = emit_semaphore_wait(to, from, I915_FENCE_GFP);
919 ret = i915_sw_fence_await_dma_fence(&to->submit,
926 if (to->sched.flags & I915_SCHED_HAS_SEMAPHORE_CHAIN) {
927 ret = i915_sw_fence_await_dma_fence(&to->semaphore,
938 i915_request_await_dma_fence(struct i915_request *rq, struct dma_fence *fence)
940 struct dma_fence **child = &fence;
941 unsigned int nchild = 1;
945 * Note that if the fence-array was created in signal-on-any mode,
946 * we should *not* decompose it into its individual fences. However,
947 * we don't currently store which mode the fence-array is operating
948 * in. Fortunately, the only user of signal-on-any is private to
949 * amdgpu and we should not see any incoming fence-array from
950 * sync-file being in signal-on-any mode.
952 if (dma_fence_is_array(fence)) {
953 struct dma_fence_array *array = to_dma_fence_array(fence);
955 child = array->fences;
956 nchild = array->num_fences;
962 if (test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &fence->flags))
966 * Requests on the same timeline are explicitly ordered, along
967 * with their dependencies, by i915_request_add() which ensures
968 * that requests are submitted in-order through each ring.
970 if (fence->context == rq->fence.context)
973 /* Squash repeated waits to the same timelines */
974 if (fence->context &&
975 intel_timeline_sync_is_later(i915_request_timeline(rq),
979 if (dma_fence_is_i915(fence))
980 ret = i915_request_await_request(rq, to_request(fence));
982 ret = i915_sw_fence_await_dma_fence(&rq->submit, fence,
983 fence->context ? I915_FENCE_TIMEOUT : 0,
988 /* Record the latest fence used against each timeline */
990 intel_timeline_sync_set(i915_request_timeline(rq),
997 static bool intel_timeline_sync_has_start(struct intel_timeline *tl,
998 struct dma_fence *fence)
1000 return __intel_timeline_sync_is_later(tl,
1005 static int intel_timeline_sync_set_start(struct intel_timeline *tl,
1006 const struct dma_fence *fence)
1008 return __intel_timeline_sync_set(tl, fence->context, fence->seqno - 1);
1012 __i915_request_await_execution(struct i915_request *to,
1013 struct i915_request *from,
1014 void (*hook)(struct i915_request *rq,
1015 struct dma_fence *signal))
1019 /* Submit both requests at the same time */
1020 err = __await_execution(to, from, hook, I915_FENCE_GFP);
1024 /* Squash repeated depenendices to the same timelines */
1025 if (intel_timeline_sync_has_start(i915_request_timeline(to),
1029 /* Ensure both start together [after all semaphores in signal] */
1030 if (intel_engine_has_semaphores(to->engine))
1031 err = __emit_semaphore_wait(to, from, from->fence.seqno - 1);
1033 err = i915_request_await_start(to, from);
1037 /* Couple the dependency tree for PI on this exposed to->fence */
1038 if (to->engine->schedule) {
1039 err = i915_sched_node_add_dependency(&to->sched, &from->sched);
1044 return intel_timeline_sync_set_start(i915_request_timeline(to),
1049 i915_request_await_execution(struct i915_request *rq,
1050 struct dma_fence *fence,
1051 void (*hook)(struct i915_request *rq,
1052 struct dma_fence *signal))
1054 struct dma_fence **child = &fence;
1055 unsigned int nchild = 1;
1058 if (dma_fence_is_array(fence)) {
1059 struct dma_fence_array *array = to_dma_fence_array(fence);
1061 /* XXX Error for signal-on-any fence arrays */
1063 child = array->fences;
1064 nchild = array->num_fences;
1065 GEM_BUG_ON(!nchild);
1070 if (test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &fence->flags))
1074 * We don't squash repeated fence dependencies here as we
1075 * want to run our callback in all cases.
1078 if (dma_fence_is_i915(fence))
1079 ret = __i915_request_await_execution(rq,
1083 ret = i915_sw_fence_await_dma_fence(&rq->submit, fence,
1094 * i915_request_await_object - set this request to (async) wait upon a bo
1095 * @to: request we are wishing to use
1096 * @obj: object which may be in use on another ring.
1097 * @write: whether the wait is on behalf of a writer
1099 * This code is meant to abstract object synchronization with the GPU.
1100 * Conceptually we serialise writes between engines inside the GPU.
1101 * We only allow one engine to write into a buffer at any time, but
1102 * multiple readers. To ensure each has a coherent view of memory, we must:
1104 * - If there is an outstanding write request to the object, the new
1105 * request must wait for it to complete (either CPU or in hw, requests
1106 * on the same ring will be naturally ordered).
1108 * - If we are a write request (pending_write_domain is set), the new
1109 * request must wait for outstanding read requests to complete.
1111 * Returns 0 if successful, else propagates up the lower layer error.
1114 i915_request_await_object(struct i915_request *to,
1115 struct drm_i915_gem_object *obj,
1118 struct dma_fence *excl;
1122 struct dma_fence **shared;
1123 unsigned int count, i;
1125 ret = dma_resv_get_fences_rcu(obj->base.resv,
1126 &excl, &count, &shared);
1130 for (i = 0; i < count; i++) {
1131 ret = i915_request_await_dma_fence(to, shared[i]);
1135 dma_fence_put(shared[i]);
1138 for (; i < count; i++)
1139 dma_fence_put(shared[i]);
1142 excl = dma_resv_get_excl_rcu(obj->base.resv);
1147 ret = i915_request_await_dma_fence(to, excl);
1149 dma_fence_put(excl);
1155 void i915_request_skip(struct i915_request *rq, int error)
1157 void *vaddr = rq->ring->vaddr;
1160 GEM_BUG_ON(!IS_ERR_VALUE((long)error));
1161 dma_fence_set_error(&rq->fence, error);
1163 if (rq->infix == rq->postfix)
1167 * As this request likely depends on state from the lost
1168 * context, clear out all the user operations leaving the
1169 * breadcrumb at the end (so we get the fence notifications).
1172 if (rq->postfix < head) {
1173 memset(vaddr + head, 0, rq->ring->size - head);
1176 memset(vaddr + head, 0, rq->postfix - head);
1177 rq->infix = rq->postfix;
1180 static struct i915_request *
1181 __i915_request_add_to_timeline(struct i915_request *rq)
1183 struct intel_timeline *timeline = i915_request_timeline(rq);
1184 struct i915_request *prev;
1187 * Dependency tracking and request ordering along the timeline
1188 * is special cased so that we can eliminate redundant ordering
1189 * operations while building the request (we know that the timeline
1190 * itself is ordered, and here we guarantee it).
1192 * As we know we will need to emit tracking along the timeline,
1193 * we embed the hooks into our request struct -- at the cost of
1194 * having to have specialised no-allocation interfaces (which will
1195 * be beneficial elsewhere).
1197 * A second benefit to open-coding i915_request_await_request is
1198 * that we can apply a slight variant of the rules specialised
1199 * for timelines that jump between engines (such as virtual engines).
1200 * If we consider the case of virtual engine, we must emit a dma-fence
1201 * to prevent scheduling of the second request until the first is
1202 * complete (to maximise our greedy late load balancing) and this
1203 * precludes optimising to use semaphores serialisation of a single
1204 * timeline across engines.
1206 prev = to_request(__i915_active_fence_set(&timeline->last_request,
1208 if (prev && !i915_request_completed(prev)) {
1209 if (is_power_of_2(prev->engine->mask | rq->engine->mask))
1210 i915_sw_fence_await_sw_fence(&rq->submit,
1214 __i915_sw_fence_await_dma_fence(&rq->submit,
1217 if (rq->engine->schedule)
1218 __i915_sched_node_add_dependency(&rq->sched,
1224 list_add_tail(&rq->link, &timeline->requests);
1227 * Make sure that no request gazumped us - if it was allocated after
1228 * our i915_request_alloc() and called __i915_request_add() before
1229 * us, the timeline will hold its seqno which is later than ours.
1231 GEM_BUG_ON(timeline->seqno != rq->fence.seqno);
1237 * NB: This function is not allowed to fail. Doing so would mean the the
1238 * request is not being tracked for completion but the work itself is
1239 * going to happen on the hardware. This would be a Bad Thing(tm).
1241 struct i915_request *__i915_request_commit(struct i915_request *rq)
1243 struct intel_engine_cs *engine = rq->engine;
1244 struct intel_ring *ring = rq->ring;
1247 GEM_TRACE("%s fence %llx:%lld\n",
1248 engine->name, rq->fence.context, rq->fence.seqno);
1251 * To ensure that this call will not fail, space for its emissions
1252 * should already have been reserved in the ring buffer. Let the ring
1253 * know that it is time to use that space up.
1255 GEM_BUG_ON(rq->reserved_space > ring->space);
1256 rq->reserved_space = 0;
1257 rq->emitted_jiffies = jiffies;
1260 * Record the position of the start of the breadcrumb so that
1261 * should we detect the updated seqno part-way through the
1262 * GPU processing the request, we never over-estimate the
1263 * position of the ring's HEAD.
1265 cs = intel_ring_begin(rq, engine->emit_fini_breadcrumb_dw);
1266 GEM_BUG_ON(IS_ERR(cs));
1267 rq->postfix = intel_ring_offset(rq, cs);
1269 return __i915_request_add_to_timeline(rq);
1272 void __i915_request_queue(struct i915_request *rq,
1273 const struct i915_sched_attr *attr)
1276 * Let the backend know a new request has arrived that may need
1277 * to adjust the existing execution schedule due to a high priority
1278 * request - i.e. we may want to preempt the current request in order
1279 * to run a high priority dependency chain *before* we can execute this
1282 * This is called before the request is ready to run so that we can
1283 * decide whether to preempt the entire chain so that it is ready to
1284 * run at the earliest possible convenience.
1286 i915_sw_fence_commit(&rq->semaphore);
1287 if (attr && rq->engine->schedule)
1288 rq->engine->schedule(rq, attr);
1289 i915_sw_fence_commit(&rq->submit);
1292 void i915_request_add(struct i915_request *rq)
1294 struct i915_sched_attr attr = rq->gem_context->sched;
1295 struct intel_timeline * const tl = i915_request_timeline(rq);
1296 struct i915_request *prev;
1298 lockdep_assert_held(&tl->mutex);
1299 lockdep_unpin_lock(&tl->mutex, rq->cookie);
1301 trace_i915_request_add(rq);
1303 prev = __i915_request_commit(rq);
1306 * Boost actual workloads past semaphores!
1308 * With semaphores we spin on one engine waiting for another,
1309 * simply to reduce the latency of starting our work when
1310 * the signaler completes. However, if there is any other
1311 * work that we could be doing on this engine instead, that
1312 * is better utilisation and will reduce the overall duration
1313 * of the current work. To avoid PI boosting a semaphore
1314 * far in the distance past over useful work, we keep a history
1315 * of any semaphore use along our dependency chain.
1317 if (!(rq->sched.flags & I915_SCHED_HAS_SEMAPHORE_CHAIN))
1318 attr.priority |= I915_PRIORITY_NOSEMAPHORE;
1321 * Boost priorities to new clients (new request flows).
1323 * Allow interactive/synchronous clients to jump ahead of
1324 * the bulk clients. (FQ_CODEL)
1326 if (list_empty(&rq->sched.signalers_list))
1327 attr.priority |= I915_PRIORITY_WAIT;
1330 __i915_request_queue(rq, &attr);
1331 local_bh_enable(); /* Kick the execlists tasklet if just scheduled */
1334 * In typical scenarios, we do not expect the previous request on
1335 * the timeline to be still tracked by timeline->last_request if it
1336 * has been completed. If the completed request is still here, that
1337 * implies that request retirement is a long way behind submission,
1338 * suggesting that we haven't been retiring frequently enough from
1339 * the combination of retire-before-alloc, waiters and the background
1340 * retirement worker. So if the last request on this timeline was
1341 * already completed, do a catch up pass, flushing the retirement queue
1342 * up to this client. Since we have now moved the heaviest operations
1343 * during retirement onto secondary workers, such as freeing objects
1344 * or contexts, retiring a bunch of requests is mostly list management
1345 * (and cache misses), and so we should not be overly penalizing this
1346 * client by performing excess work, though we may still performing
1347 * work on behalf of others -- but instead we should benefit from
1348 * improved resource management. (Well, that's the theory at least.)
1351 i915_request_completed(prev) &&
1352 rcu_access_pointer(prev->timeline) == tl)
1353 i915_request_retire_upto(prev);
1355 mutex_unlock(&tl->mutex);
1358 static unsigned long local_clock_us(unsigned int *cpu)
1363 * Cheaply and approximately convert from nanoseconds to microseconds.
1364 * The result and subsequent calculations are also defined in the same
1365 * approximate microseconds units. The principal source of timing
1366 * error here is from the simple truncation.
1368 * Note that local_clock() is only defined wrt to the current CPU;
1369 * the comparisons are no longer valid if we switch CPUs. Instead of
1370 * blocking preemption for the entire busywait, we can detect the CPU
1371 * switch and use that as indicator of system load and a reason to
1372 * stop busywaiting, see busywait_stop().
1375 t = local_clock() >> 10;
1381 static bool busywait_stop(unsigned long timeout, unsigned int cpu)
1383 unsigned int this_cpu;
1385 if (time_after(local_clock_us(&this_cpu), timeout))
1388 return this_cpu != cpu;
1391 static bool __i915_spin_request(const struct i915_request * const rq,
1392 int state, unsigned long timeout_us)
1397 * Only wait for the request if we know it is likely to complete.
1399 * We don't track the timestamps around requests, nor the average
1400 * request length, so we do not have a good indicator that this
1401 * request will complete within the timeout. What we do know is the
1402 * order in which requests are executed by the context and so we can
1403 * tell if the request has been started. If the request is not even
1404 * running yet, it is a fair assumption that it will not complete
1405 * within our relatively short timeout.
1407 if (!i915_request_is_running(rq))
1411 * When waiting for high frequency requests, e.g. during synchronous
1412 * rendering split between the CPU and GPU, the finite amount of time
1413 * required to set up the irq and wait upon it limits the response
1414 * rate. By busywaiting on the request completion for a short while we
1415 * can service the high frequency waits as quick as possible. However,
1416 * if it is a slow request, we want to sleep as quickly as possible.
1417 * The tradeoff between waiting and sleeping is roughly the time it
1418 * takes to sleep on a request, on the order of a microsecond.
1421 timeout_us += local_clock_us(&cpu);
1423 if (i915_request_completed(rq))
1426 if (signal_pending_state(state, current))
1429 if (busywait_stop(timeout_us, cpu))
1433 } while (!need_resched());
1438 struct request_wait {
1439 struct dma_fence_cb cb;
1440 struct task_struct *tsk;
1443 static void request_wait_wake(struct dma_fence *fence, struct dma_fence_cb *cb)
1445 struct request_wait *wait = container_of(cb, typeof(*wait), cb);
1447 wake_up_process(wait->tsk);
1451 * i915_request_wait - wait until execution of request has finished
1452 * @rq: the request to wait upon
1453 * @flags: how to wait
1454 * @timeout: how long to wait in jiffies
1456 * i915_request_wait() waits for the request to be completed, for a
1457 * maximum of @timeout jiffies (with MAX_SCHEDULE_TIMEOUT implying an
1460 * Returns the remaining time (in jiffies) if the request completed, which may
1461 * be zero or -ETIME if the request is unfinished after the timeout expires.
1462 * May return -EINTR is called with I915_WAIT_INTERRUPTIBLE and a signal is
1463 * pending before the request completes.
1465 long i915_request_wait(struct i915_request *rq,
1469 const int state = flags & I915_WAIT_INTERRUPTIBLE ?
1470 TASK_INTERRUPTIBLE : TASK_UNINTERRUPTIBLE;
1471 struct request_wait wait;
1474 GEM_BUG_ON(timeout < 0);
1476 if (dma_fence_is_signaled(&rq->fence))
1482 trace_i915_request_wait_begin(rq, flags);
1485 * We must never wait on the GPU while holding a lock as we
1486 * may need to perform a GPU reset. So while we don't need to
1487 * serialise wait/reset with an explicit lock, we do want
1488 * lockdep to detect potential dependency cycles.
1490 mutex_acquire(&rq->engine->gt->reset.mutex.dep_map, 0, 0, _THIS_IP_);
1493 * Optimistic spin before touching IRQs.
1495 * We may use a rather large value here to offset the penalty of
1496 * switching away from the active task. Frequently, the client will
1497 * wait upon an old swapbuffer to throttle itself to remain within a
1498 * frame of the gpu. If the client is running in lockstep with the gpu,
1499 * then it should not be waiting long at all, and a sleep now will incur
1500 * extra scheduler latency in producing the next frame. To try to
1501 * avoid adding the cost of enabling/disabling the interrupt to the
1502 * short wait, we first spin to see if the request would have completed
1503 * in the time taken to setup the interrupt.
1505 * We need upto 5us to enable the irq, and upto 20us to hide the
1506 * scheduler latency of a context switch, ignoring the secondary
1507 * impacts from a context switch such as cache eviction.
1509 * The scheme used for low-latency IO is called "hybrid interrupt
1510 * polling". The suggestion there is to sleep until just before you
1511 * expect to be woken by the device interrupt and then poll for its
1512 * completion. That requires having a good predictor for the request
1513 * duration, which we currently lack.
1515 if (IS_ACTIVE(CONFIG_DRM_I915_SPIN_REQUEST) &&
1516 __i915_spin_request(rq, state, CONFIG_DRM_I915_SPIN_REQUEST)) {
1517 dma_fence_signal(&rq->fence);
1522 * This client is about to stall waiting for the GPU. In many cases
1523 * this is undesirable and limits the throughput of the system, as
1524 * many clients cannot continue processing user input/output whilst
1525 * blocked. RPS autotuning may take tens of milliseconds to respond
1526 * to the GPU load and thus incurs additional latency for the client.
1527 * We can circumvent that by promoting the GPU frequency to maximum
1528 * before we sleep. This makes the GPU throttle up much more quickly
1529 * (good for benchmarks and user experience, e.g. window animations),
1530 * but at a cost of spending more power processing the workload
1531 * (bad for battery).
1533 if (flags & I915_WAIT_PRIORITY) {
1534 if (!i915_request_started(rq) && INTEL_GEN(rq->i915) >= 6)
1535 intel_rps_boost(rq);
1536 i915_schedule_bump_priority(rq, I915_PRIORITY_WAIT);
1540 if (dma_fence_add_callback(&rq->fence, &wait.cb, request_wait_wake))
1544 set_current_state(state);
1546 if (i915_request_completed(rq)) {
1547 dma_fence_signal(&rq->fence);
1551 if (signal_pending_state(state, current)) {
1552 timeout = -ERESTARTSYS;
1561 intel_engine_flush_submission(rq->engine);
1562 timeout = io_schedule_timeout(timeout);
1564 __set_current_state(TASK_RUNNING);
1566 dma_fence_remove_callback(&rq->fence, &wait.cb);
1569 mutex_release(&rq->engine->gt->reset.mutex.dep_map, _THIS_IP_);
1570 trace_i915_request_wait_end(rq);
1574 #if IS_ENABLED(CONFIG_DRM_I915_SELFTEST)
1575 #include "selftests/mock_request.c"
1576 #include "selftests/i915_request.c"
1579 static void i915_global_request_shrink(void)
1581 kmem_cache_shrink(global.slab_dependencies);
1582 kmem_cache_shrink(global.slab_execute_cbs);
1583 kmem_cache_shrink(global.slab_requests);
1586 static void i915_global_request_exit(void)
1588 kmem_cache_destroy(global.slab_dependencies);
1589 kmem_cache_destroy(global.slab_execute_cbs);
1590 kmem_cache_destroy(global.slab_requests);
1593 static struct i915_global_request global = { {
1594 .shrink = i915_global_request_shrink,
1595 .exit = i915_global_request_exit,
1598 int __init i915_global_request_init(void)
1600 global.slab_requests = KMEM_CACHE(i915_request,
1601 SLAB_HWCACHE_ALIGN |
1602 SLAB_RECLAIM_ACCOUNT |
1603 SLAB_TYPESAFE_BY_RCU);
1604 if (!global.slab_requests)
1607 global.slab_execute_cbs = KMEM_CACHE(execute_cb,
1608 SLAB_HWCACHE_ALIGN |
1609 SLAB_RECLAIM_ACCOUNT |
1610 SLAB_TYPESAFE_BY_RCU);
1611 if (!global.slab_execute_cbs)
1614 global.slab_dependencies = KMEM_CACHE(i915_dependency,
1615 SLAB_HWCACHE_ALIGN |
1616 SLAB_RECLAIM_ACCOUNT);
1617 if (!global.slab_dependencies)
1618 goto err_execute_cbs;
1620 i915_global_register(&global.base);
1624 kmem_cache_destroy(global.slab_execute_cbs);
1626 kmem_cache_destroy(global.slab_requests);