blob: 7325469ce754ac044e13f860d08fd03480f08837 [file] [log] [blame]
Chris Wilson05235c52016-07-20 09:21:08 +01001/*
2 * Copyright © 2008-2015 Intel Corporation
3 *
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:
10 *
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
13 * 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 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
21 * IN THE SOFTWARE.
22 *
23 */
24
Chris Wilsonfa545cb2016-08-04 07:52:35 +010025#include <linux/prefetch.h>
Chris Wilsonb52992c2016-10-28 13:58:24 +010026#include <linux/dma-fence-array.h>
Ingo Molnare6017572017-02-01 16:36:40 +010027#include <linux/sched.h>
28#include <linux/sched/clock.h>
Ingo Molnarf361bf42017-02-03 23:47:37 +010029#include <linux/sched/signal.h>
Chris Wilsonfa545cb2016-08-04 07:52:35 +010030
Chris Wilson05235c52016-07-20 09:21:08 +010031#include "i915_drv.h"
32
Chris Wilsonf54d1862016-10-25 13:00:45 +010033static const char *i915_fence_get_driver_name(struct dma_fence *fence)
Chris Wilson04769652016-07-20 09:21:11 +010034{
35 return "i915";
36}
37
Chris Wilsonf54d1862016-10-25 13:00:45 +010038static const char *i915_fence_get_timeline_name(struct dma_fence *fence)
Chris Wilson04769652016-07-20 09:21:11 +010039{
Chris Wilson05506b52017-03-30 12:16:14 +010040 /* The timeline struct (as part of the ppgtt underneath a context)
41 * may be freed when the request is no longer in use by the GPU.
42 * We could extend the life of a context to beyond that of all
43 * fences, possibly keeping the hw resource around indefinitely,
44 * or we just give them a false name. Since
45 * dma_fence_ops.get_timeline_name is a debug feature, the occasional
46 * lie seems justifiable.
47 */
48 if (test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &fence->flags))
49 return "signaled";
50
Chris Wilson73cb9702016-10-28 13:58:46 +010051 return to_request(fence)->timeline->common->name;
Chris Wilson04769652016-07-20 09:21:11 +010052}
53
Chris Wilsonf54d1862016-10-25 13:00:45 +010054static bool i915_fence_signaled(struct dma_fence *fence)
Chris Wilson04769652016-07-20 09:21:11 +010055{
56 return i915_gem_request_completed(to_request(fence));
57}
58
Chris Wilsonf54d1862016-10-25 13:00:45 +010059static bool i915_fence_enable_signaling(struct dma_fence *fence)
Chris Wilson04769652016-07-20 09:21:11 +010060{
61 if (i915_fence_signaled(fence))
62 return false;
63
Chris Wilsonf7b02a52017-04-26 09:06:59 +010064 intel_engine_enable_signaling(to_request(fence), true);
Chris Wilson9f90ff32017-06-08 12:14:02 +010065 return !i915_fence_signaled(fence);
Chris Wilson04769652016-07-20 09:21:11 +010066}
67
Chris Wilsonf54d1862016-10-25 13:00:45 +010068static signed long i915_fence_wait(struct dma_fence *fence,
Chris Wilson04769652016-07-20 09:21:11 +010069 bool interruptible,
Chris Wilsone95433c2016-10-28 13:58:27 +010070 signed long timeout)
Chris Wilson04769652016-07-20 09:21:11 +010071{
Chris Wilsone95433c2016-10-28 13:58:27 +010072 return i915_wait_request(to_request(fence), interruptible, timeout);
Chris Wilson04769652016-07-20 09:21:11 +010073}
74
Chris Wilsonf54d1862016-10-25 13:00:45 +010075static void i915_fence_release(struct dma_fence *fence)
Chris Wilson04769652016-07-20 09:21:11 +010076{
77 struct drm_i915_gem_request *req = to_request(fence);
78
Chris Wilsonfc158402016-11-25 13:17:18 +000079 /* The request is put onto a RCU freelist (i.e. the address
80 * is immediately reused), mark the fences as being freed now.
81 * Otherwise the debugobjects for the fences are only marked as
82 * freed when the slab cache itself is freed, and so we would get
83 * caught trying to reuse dead objects.
84 */
85 i915_sw_fence_fini(&req->submit);
Chris Wilsonfc158402016-11-25 13:17:18 +000086
Chris Wilson04769652016-07-20 09:21:11 +010087 kmem_cache_free(req->i915->requests, req);
88}
89
Chris Wilsonf54d1862016-10-25 13:00:45 +010090const struct dma_fence_ops i915_fence_ops = {
Chris Wilson04769652016-07-20 09:21:11 +010091 .get_driver_name = i915_fence_get_driver_name,
92 .get_timeline_name = i915_fence_get_timeline_name,
93 .enable_signaling = i915_fence_enable_signaling,
94 .signaled = i915_fence_signaled,
95 .wait = i915_fence_wait,
96 .release = i915_fence_release,
Chris Wilson04769652016-07-20 09:21:11 +010097};
98
Chris Wilson05235c52016-07-20 09:21:08 +010099static inline void
100i915_gem_request_remove_from_client(struct drm_i915_gem_request *request)
101{
Chris Wilsonc8659ef2017-03-02 12:25:25 +0000102 struct drm_i915_file_private *file_priv;
Chris Wilson05235c52016-07-20 09:21:08 +0100103
Chris Wilsonc8659ef2017-03-02 12:25:25 +0000104 file_priv = request->file_priv;
Chris Wilson05235c52016-07-20 09:21:08 +0100105 if (!file_priv)
106 return;
107
108 spin_lock(&file_priv->mm.lock);
Chris Wilsonc8659ef2017-03-02 12:25:25 +0000109 if (request->file_priv) {
110 list_del(&request->client_link);
111 request->file_priv = NULL;
112 }
Chris Wilson05235c52016-07-20 09:21:08 +0100113 spin_unlock(&file_priv->mm.lock);
Chris Wilson05235c52016-07-20 09:21:08 +0100114}
115
Chris Wilson52e54202016-11-14 20:41:02 +0000116static struct i915_dependency *
117i915_dependency_alloc(struct drm_i915_private *i915)
118{
119 return kmem_cache_alloc(i915->dependencies, GFP_KERNEL);
120}
121
122static void
123i915_dependency_free(struct drm_i915_private *i915,
124 struct i915_dependency *dep)
125{
126 kmem_cache_free(i915->dependencies, dep);
127}
128
129static void
130__i915_priotree_add_dependency(struct i915_priotree *pt,
131 struct i915_priotree *signal,
132 struct i915_dependency *dep,
133 unsigned long flags)
134{
Chris Wilson20311bd2016-11-14 20:41:03 +0000135 INIT_LIST_HEAD(&dep->dfs_link);
Chris Wilson52e54202016-11-14 20:41:02 +0000136 list_add(&dep->wait_link, &signal->waiters_list);
137 list_add(&dep->signal_link, &pt->signalers_list);
138 dep->signaler = signal;
139 dep->flags = flags;
140}
141
142static int
143i915_priotree_add_dependency(struct drm_i915_private *i915,
144 struct i915_priotree *pt,
145 struct i915_priotree *signal)
146{
147 struct i915_dependency *dep;
148
149 dep = i915_dependency_alloc(i915);
150 if (!dep)
151 return -ENOMEM;
152
153 __i915_priotree_add_dependency(pt, signal, dep, I915_DEPENDENCY_ALLOC);
154 return 0;
155}
156
157static void
158i915_priotree_fini(struct drm_i915_private *i915, struct i915_priotree *pt)
159{
160 struct i915_dependency *dep, *next;
161
Chris Wilson6c067572017-05-17 13:10:03 +0100162 GEM_BUG_ON(!list_empty(&pt->link));
Chris Wilson20311bd2016-11-14 20:41:03 +0000163
Chris Wilson52e54202016-11-14 20:41:02 +0000164 /* Everyone we depended upon (the fences we wait to be signaled)
165 * should retire before us and remove themselves from our list.
166 * However, retirement is run independently on each timeline and
167 * so we may be called out-of-order.
168 */
169 list_for_each_entry_safe(dep, next, &pt->signalers_list, signal_link) {
170 list_del(&dep->wait_link);
171 if (dep->flags & I915_DEPENDENCY_ALLOC)
172 i915_dependency_free(i915, dep);
173 }
174
175 /* Remove ourselves from everyone who depends upon us */
176 list_for_each_entry_safe(dep, next, &pt->waiters_list, wait_link) {
177 list_del(&dep->signal_link);
178 if (dep->flags & I915_DEPENDENCY_ALLOC)
179 i915_dependency_free(i915, dep);
180 }
181}
182
183static void
184i915_priotree_init(struct i915_priotree *pt)
185{
186 INIT_LIST_HEAD(&pt->signalers_list);
187 INIT_LIST_HEAD(&pt->waiters_list);
Chris Wilson6c067572017-05-17 13:10:03 +0100188 INIT_LIST_HEAD(&pt->link);
Chris Wilson7d1ea602017-09-28 20:39:00 +0100189 pt->priority = I915_PRIORITY_INVALID;
Chris Wilson52e54202016-11-14 20:41:02 +0000190}
191
Chris Wilson12d31732017-02-23 07:44:09 +0000192static int reset_all_global_seqno(struct drm_i915_private *i915, u32 seqno)
193{
Chris Wilson12d31732017-02-23 07:44:09 +0000194 struct intel_engine_cs *engine;
195 enum intel_engine_id id;
196 int ret;
197
198 /* Carefully retire all requests without writing to the rings */
199 ret = i915_gem_wait_for_idle(i915,
200 I915_WAIT_INTERRUPTIBLE |
201 I915_WAIT_LOCKED);
202 if (ret)
203 return ret;
204
Chris Wilson12d31732017-02-23 07:44:09 +0000205 /* If the seqno wraps around, we need to clear the breadcrumb rbtree */
206 for_each_engine(engine, i915, id) {
Chris Wilsonae351be2017-03-30 15:50:41 +0100207 struct i915_gem_timeline *timeline;
208 struct intel_timeline *tl = engine->timeline;
Chris Wilson12d31732017-02-23 07:44:09 +0000209
210 if (!i915_seqno_passed(seqno, tl->seqno)) {
211 /* spin until threads are complete */
212 while (intel_breadcrumbs_busy(engine))
213 cond_resched();
214 }
215
Chris Wilson4d535682017-07-21 13:32:26 +0100216 /* Check we are idle before we fiddle with hw state! */
217 GEM_BUG_ON(!intel_engine_is_idle(engine));
218 GEM_BUG_ON(i915_gem_active_isset(&engine->timeline->last_request));
219
Chris Wilson12d31732017-02-23 07:44:09 +0000220 /* Finally reset hw state */
Chris Wilson12d31732017-02-23 07:44:09 +0000221 intel_engine_init_global_seqno(engine, seqno);
Chris Wilson2ca9faa2017-04-05 16:30:54 +0100222 tl->seqno = seqno;
Chris Wilson12d31732017-02-23 07:44:09 +0000223
Chris Wilsonae351be2017-03-30 15:50:41 +0100224 list_for_each_entry(timeline, &i915->gt.timelines, link)
Chris Wilson7e8894e2017-05-03 10:39:22 +0100225 memset(timeline->engine[id].global_sync, 0,
226 sizeof(timeline->engine[id].global_sync));
Chris Wilson12d31732017-02-23 07:44:09 +0000227 }
228
229 return 0;
230}
231
232int i915_gem_set_global_seqno(struct drm_device *dev, u32 seqno)
233{
234 struct drm_i915_private *dev_priv = to_i915(dev);
235
236 lockdep_assert_held(&dev_priv->drm.struct_mutex);
237
238 if (seqno == 0)
239 return -EINVAL;
240
241 /* HWS page needs to be set less than what we
242 * will inject to ring
243 */
244 return reset_all_global_seqno(dev_priv, seqno - 1);
245}
246
Chris Wilson636918f2017-08-17 15:47:19 +0100247static void mark_busy(struct drm_i915_private *i915)
Chris Wilson12d31732017-02-23 07:44:09 +0000248{
Chris Wilson636918f2017-08-17 15:47:19 +0100249 if (i915->gt.awake)
250 return;
251
252 GEM_BUG_ON(!i915->gt.active_requests);
253
254 intel_runtime_pm_get_noresume(i915);
255 i915->gt.awake = true;
256
257 intel_enable_gt_powersave(i915);
258 i915_update_gfx_val(i915);
259 if (INTEL_GEN(i915) >= 6)
260 gen6_rps_busy(i915);
Tvrtko Ursulinfeff0dc2017-11-21 18:18:46 +0000261 i915_pmu_gt_unparked(i915);
Chris Wilson636918f2017-08-17 15:47:19 +0100262
Chris Wilsonaba5e272017-10-25 15:39:41 +0100263 intel_engines_unpark(i915);
264
Chris Wilson636918f2017-08-17 15:47:19 +0100265 queue_delayed_work(i915->wq,
266 &i915->gt.retire_work,
267 round_jiffies_up_relative(HZ));
268}
269
270static int reserve_engine(struct intel_engine_cs *engine)
271{
272 struct drm_i915_private *i915 = engine->i915;
Chris Wilson12d31732017-02-23 07:44:09 +0000273 u32 active = ++engine->timeline->inflight_seqnos;
274 u32 seqno = engine->timeline->seqno;
275 int ret;
276
277 /* Reservation is fine until we need to wrap around */
Chris Wilson636918f2017-08-17 15:47:19 +0100278 if (unlikely(add_overflows(seqno, active))) {
279 ret = reset_all_global_seqno(i915, 0);
280 if (ret) {
281 engine->timeline->inflight_seqnos--;
282 return ret;
283 }
Chris Wilson12d31732017-02-23 07:44:09 +0000284 }
285
Chris Wilson636918f2017-08-17 15:47:19 +0100286 if (!i915->gt.active_requests++)
287 mark_busy(i915);
288
Chris Wilson12d31732017-02-23 07:44:09 +0000289 return 0;
290}
291
Chris Wilson636918f2017-08-17 15:47:19 +0100292static void unreserve_engine(struct intel_engine_cs *engine)
Chris Wilson9b6586a2017-02-23 07:44:08 +0000293{
Chris Wilson636918f2017-08-17 15:47:19 +0100294 struct drm_i915_private *i915 = engine->i915;
295
296 if (!--i915->gt.active_requests) {
297 /* Cancel the mark_busy() from our reserve_engine() */
298 GEM_BUG_ON(!i915->gt.awake);
299 mod_delayed_work(i915->wq,
300 &i915->gt.idle_work,
301 msecs_to_jiffies(100));
302 }
303
Chris Wilson9b6586a2017-02-23 07:44:08 +0000304 GEM_BUG_ON(!engine->timeline->inflight_seqnos);
305 engine->timeline->inflight_seqnos--;
306}
307
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100308void i915_gem_retire_noop(struct i915_gem_active *active,
309 struct drm_i915_gem_request *request)
310{
311 /* Space left intentionally blank */
312}
313
Chris Wilsoncbb60b42017-04-06 18:00:28 +0100314static void advance_ring(struct drm_i915_gem_request *request)
315{
316 unsigned int tail;
317
318 /* We know the GPU must have read the request to have
319 * sent us the seqno + interrupt, so use the position
320 * of tail of the request to update the last known position
321 * of the GPU head.
322 *
323 * Note this requires that we are always called in request
324 * completion order.
325 */
Chris Wilsone6ba9992017-04-25 14:00:49 +0100326 if (list_is_last(&request->ring_link, &request->ring->request_list)) {
327 /* We may race here with execlists resubmitting this request
328 * as we retire it. The resubmission will move the ring->tail
329 * forwards (to request->wa_tail). We either read the
330 * current value that was written to hw, or the value that
331 * is just about to be. Either works, if we miss the last two
332 * noops - they are safe to be replayed on a reset.
333 */
334 tail = READ_ONCE(request->ring->tail);
335 } else {
Chris Wilsoncbb60b42017-04-06 18:00:28 +0100336 tail = request->postfix;
Chris Wilsone6ba9992017-04-25 14:00:49 +0100337 }
Chris Wilsoncbb60b42017-04-06 18:00:28 +0100338 list_del(&request->ring_link);
339
340 request->ring->head = tail;
341}
342
Chris Wilsonb0fd47a2017-04-15 10:39:02 +0100343static void free_capture_list(struct drm_i915_gem_request *request)
344{
345 struct i915_gem_capture_list *capture;
346
347 capture = request->capture_list;
348 while (capture) {
349 struct i915_gem_capture_list *next = capture->next;
350
351 kfree(capture);
352 capture = next;
353 }
354}
355
Chris Wilson05235c52016-07-20 09:21:08 +0100356static void i915_gem_request_retire(struct drm_i915_gem_request *request)
357{
Chris Wilsone8a9c582016-12-18 15:37:20 +0000358 struct intel_engine_cs *engine = request->engine;
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100359 struct i915_gem_active *active, *next;
360
Chris Wilson4c7d62c2016-10-28 13:58:32 +0100361 lockdep_assert_held(&request->i915->drm.struct_mutex);
Chris Wilson48bc2a42016-11-25 13:17:17 +0000362 GEM_BUG_ON(!i915_sw_fence_signaled(&request->submit));
Chris Wilson4c7d62c2016-10-28 13:58:32 +0100363 GEM_BUG_ON(!i915_gem_request_completed(request));
Chris Wilson43020552016-11-15 16:46:20 +0000364 GEM_BUG_ON(!request->i915->gt.active_requests);
Chris Wilson4c7d62c2016-10-28 13:58:32 +0100365
Chris Wilson05235c52016-07-20 09:21:08 +0100366 trace_i915_gem_request_retire(request);
Chris Wilson80b204b2016-10-28 13:58:58 +0100367
Chris Wilsone8a9c582016-12-18 15:37:20 +0000368 spin_lock_irq(&engine->timeline->lock);
Chris Wilsone95433c2016-10-28 13:58:27 +0100369 list_del_init(&request->link);
Chris Wilsone8a9c582016-12-18 15:37:20 +0000370 spin_unlock_irq(&engine->timeline->lock);
Chris Wilson05235c52016-07-20 09:21:08 +0100371
Chris Wilson636918f2017-08-17 15:47:19 +0100372 unreserve_engine(request->engine);
Chris Wilsoncbb60b42017-04-06 18:00:28 +0100373 advance_ring(request);
Chris Wilson05235c52016-07-20 09:21:08 +0100374
Chris Wilsonb0fd47a2017-04-15 10:39:02 +0100375 free_capture_list(request);
376
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100377 /* Walk through the active list, calling retire on each. This allows
378 * objects to track their GPU activity and mark themselves as idle
379 * when their *last* active request is completed (updating state
380 * tracking lists for eviction, active references for GEM, etc).
381 *
382 * As the ->retire() may free the node, we decouple it first and
383 * pass along the auxiliary information (to avoid dereferencing
384 * the node after the callback).
385 */
386 list_for_each_entry_safe(active, next, &request->active_list, link) {
387 /* In microbenchmarks or focusing upon time inside the kernel,
388 * we may spend an inordinate amount of time simply handling
389 * the retirement of requests and processing their callbacks.
390 * Of which, this loop itself is particularly hot due to the
391 * cache misses when jumping around the list of i915_gem_active.
392 * So we try to keep this loop as streamlined as possible and
393 * also prefetch the next i915_gem_active to try and hide
394 * the likely cache miss.
395 */
396 prefetchw(next);
397
398 INIT_LIST_HEAD(&active->link);
Chris Wilson0eafec62016-08-04 16:32:41 +0100399 RCU_INIT_POINTER(active->request, NULL);
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100400
401 active->retire(active, request);
402 }
403
Chris Wilson05235c52016-07-20 09:21:08 +0100404 i915_gem_request_remove_from_client(request);
405
Mika Kuoppalae5e1fc42016-11-16 17:20:31 +0200406 /* Retirement decays the ban score as it is a sign of ctx progress */
Chris Wilson77b25a92017-07-21 13:32:30 +0100407 atomic_dec_if_positive(&request->ctx->ban_score);
Mika Kuoppalae5e1fc42016-11-16 17:20:31 +0200408
Chris Wilsone8a9c582016-12-18 15:37:20 +0000409 /* The backing object for the context is done after switching to the
410 * *next* context. Therefore we cannot retire the previous context until
411 * the next context has already started running. However, since we
412 * cannot take the required locks at i915_gem_request_submit() we
413 * defer the unpinning of the active context to now, retirement of
414 * the subsequent request.
415 */
416 if (engine->last_retired_context)
417 engine->context_unpin(engine, engine->last_retired_context);
418 engine->last_retired_context = request->ctx;
Chris Wilsond07f0e52016-10-28 13:58:44 +0100419
Chris Wilson7b92c1b2017-06-28 13:35:48 +0100420 spin_lock_irq(&request->lock);
421 if (request->waitboost)
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +0100422 atomic_dec(&request->i915->gt_pm.rps.num_waiters);
Chris Wilson7b92c1b2017-06-28 13:35:48 +0100423 dma_fence_signal_locked(&request->fence);
424 spin_unlock_irq(&request->lock);
Chris Wilson52e54202016-11-14 20:41:02 +0000425
426 i915_priotree_fini(request->i915, &request->priotree);
Chris Wilsone8a261e2016-07-20 13:31:49 +0100427 i915_gem_request_put(request);
Chris Wilson05235c52016-07-20 09:21:08 +0100428}
429
430void i915_gem_request_retire_upto(struct drm_i915_gem_request *req)
431{
432 struct intel_engine_cs *engine = req->engine;
433 struct drm_i915_gem_request *tmp;
434
435 lockdep_assert_held(&req->i915->drm.struct_mutex);
Chris Wilson4ffd6e02016-11-25 13:17:15 +0000436 GEM_BUG_ON(!i915_gem_request_completed(req));
437
Chris Wilsone95433c2016-10-28 13:58:27 +0100438 if (list_empty(&req->link))
439 return;
Chris Wilson05235c52016-07-20 09:21:08 +0100440
441 do {
Chris Wilson73cb9702016-10-28 13:58:46 +0100442 tmp = list_first_entry(&engine->timeline->requests,
Chris Wilsonefdf7c02016-08-04 07:52:33 +0100443 typeof(*tmp), link);
Chris Wilson05235c52016-07-20 09:21:08 +0100444
445 i915_gem_request_retire(tmp);
446 } while (tmp != req);
Chris Wilson05235c52016-07-20 09:21:08 +0100447}
448
Chris Wilson9b6586a2017-02-23 07:44:08 +0000449static u32 timeline_get_seqno(struct intel_timeline *tl)
Chris Wilson05235c52016-07-20 09:21:08 +0100450{
Chris Wilson9b6586a2017-02-23 07:44:08 +0000451 return ++tl->seqno;
Chris Wilson05235c52016-07-20 09:21:08 +0100452}
453
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000454void __i915_gem_request_submit(struct drm_i915_gem_request *request)
Chris Wilson5590af32016-09-09 14:11:54 +0100455{
Chris Wilson73cb9702016-10-28 13:58:46 +0100456 struct intel_engine_cs *engine = request->engine;
Chris Wilsonf2d13292016-10-28 13:58:57 +0100457 struct intel_timeline *timeline;
458 u32 seqno;
Chris Wilson5590af32016-09-09 14:11:54 +0100459
Chris Wilsone60a8702017-03-02 11:51:30 +0000460 GEM_BUG_ON(!irqs_disabled());
Chris Wilson67520412017-03-02 13:28:01 +0000461 lockdep_assert_held(&engine->timeline->lock);
Chris Wilsone60a8702017-03-02 11:51:30 +0000462
Chris Wilsonfe497892017-02-23 07:44:13 +0000463 trace_i915_gem_request_execute(request);
464
Chris Wilson80b204b2016-10-28 13:58:58 +0100465 /* Transfer from per-context onto the global per-engine timeline */
466 timeline = engine->timeline;
467 GEM_BUG_ON(timeline == request->timeline);
Chris Wilson5590af32016-09-09 14:11:54 +0100468
Chris Wilson9b6586a2017-02-23 07:44:08 +0000469 seqno = timeline_get_seqno(timeline);
Chris Wilsonf2d13292016-10-28 13:58:57 +0100470 GEM_BUG_ON(!seqno);
471 GEM_BUG_ON(i915_seqno_passed(intel_engine_get_seqno(engine), seqno));
472
Chris Wilsonf2d13292016-10-28 13:58:57 +0100473 /* We may be recursing from the signal callback of another i915 fence */
474 spin_lock_nested(&request->lock, SINGLE_DEPTH_NESTING);
475 request->global_seqno = seqno;
476 if (test_bit(DMA_FENCE_FLAG_ENABLE_SIGNAL_BIT, &request->fence.flags))
Chris Wilsonf7b02a52017-04-26 09:06:59 +0100477 intel_engine_enable_signaling(request, false);
Chris Wilsonf2d13292016-10-28 13:58:57 +0100478 spin_unlock(&request->lock);
479
Chris Wilsoncaddfe72016-10-28 13:58:52 +0100480 engine->emit_breadcrumb(request,
481 request->ring->vaddr + request->postfix);
Chris Wilson5590af32016-09-09 14:11:54 +0100482
Chris Wilsonbb894852016-11-14 20:40:57 +0000483 spin_lock(&request->timeline->lock);
Chris Wilson80b204b2016-10-28 13:58:58 +0100484 list_move_tail(&request->link, &timeline->requests);
485 spin_unlock(&request->timeline->lock);
486
Chris Wilsonfe497892017-02-23 07:44:13 +0000487 wake_up_all(&request->execute);
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000488}
Chris Wilson23902e42016-11-14 20:40:58 +0000489
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000490void i915_gem_request_submit(struct drm_i915_gem_request *request)
491{
492 struct intel_engine_cs *engine = request->engine;
493 unsigned long flags;
494
495 /* Will be called from irq-context when using foreign fences. */
496 spin_lock_irqsave(&engine->timeline->lock, flags);
497
498 __i915_gem_request_submit(request);
499
500 spin_unlock_irqrestore(&engine->timeline->lock, flags);
501}
502
Chris Wilsond6a22892017-02-23 07:44:17 +0000503void __i915_gem_request_unsubmit(struct drm_i915_gem_request *request)
504{
505 struct intel_engine_cs *engine = request->engine;
506 struct intel_timeline *timeline;
507
Chris Wilsone60a8702017-03-02 11:51:30 +0000508 GEM_BUG_ON(!irqs_disabled());
Chris Wilson67520412017-03-02 13:28:01 +0000509 lockdep_assert_held(&engine->timeline->lock);
Chris Wilsond6a22892017-02-23 07:44:17 +0000510
511 /* Only unwind in reverse order, required so that the per-context list
512 * is kept in seqno/ring order.
513 */
514 GEM_BUG_ON(request->global_seqno != engine->timeline->seqno);
515 engine->timeline->seqno--;
516
517 /* We may be recursing from the signal callback of another i915 fence */
518 spin_lock_nested(&request->lock, SINGLE_DEPTH_NESTING);
519 request->global_seqno = 0;
520 if (test_bit(DMA_FENCE_FLAG_ENABLE_SIGNAL_BIT, &request->fence.flags))
521 intel_engine_cancel_signaling(request);
522 spin_unlock(&request->lock);
523
524 /* Transfer back from the global per-engine timeline to per-context */
525 timeline = request->timeline;
526 GEM_BUG_ON(timeline == engine->timeline);
527
528 spin_lock(&timeline->lock);
529 list_move(&request->link, &timeline->requests);
530 spin_unlock(&timeline->lock);
531
532 /* We don't need to wake_up any waiters on request->execute, they
533 * will get woken by any other event or us re-adding this request
534 * to the engine timeline (__i915_gem_request_submit()). The waiters
535 * should be quite adapt at finding that the request now has a new
536 * global_seqno to the one they went to sleep on.
537 */
538}
539
540void i915_gem_request_unsubmit(struct drm_i915_gem_request *request)
541{
542 struct intel_engine_cs *engine = request->engine;
543 unsigned long flags;
544
545 /* Will be called from irq-context when using foreign fences. */
546 spin_lock_irqsave(&engine->timeline->lock, flags);
547
548 __i915_gem_request_unsubmit(request);
549
550 spin_unlock_irqrestore(&engine->timeline->lock, flags);
551}
552
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000553static int __i915_sw_fence_call
554submit_notify(struct i915_sw_fence *fence, enum i915_sw_fence_notify state)
555{
Chris Wilson48bc2a42016-11-25 13:17:17 +0000556 struct drm_i915_gem_request *request =
557 container_of(fence, typeof(*request), submit);
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000558
Chris Wilson48bc2a42016-11-25 13:17:17 +0000559 switch (state) {
560 case FENCE_COMPLETE:
Tvrtko Ursulin354d0362017-02-21 11:01:42 +0000561 trace_i915_gem_request_submit(request);
Daniel Vetteraf7a8ff2017-10-11 11:10:19 +0200562 /*
563 * We need to serialize use of the submit_request() callback with its
564 * hotplugging performed during an emergency i915_gem_set_wedged().
565 * We use the RCU mechanism to mark the critical section in order to
566 * force i915_gem_set_wedged() to wait until the submit_request() is
567 * completed before proceeding.
568 */
569 rcu_read_lock();
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000570 request->engine->submit_request(request);
Daniel Vetteraf7a8ff2017-10-11 11:10:19 +0200571 rcu_read_unlock();
Chris Wilson48bc2a42016-11-25 13:17:17 +0000572 break;
573
574 case FENCE_FREE:
575 i915_gem_request_put(request);
576 break;
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000577 }
Chris Wilson80b204b2016-10-28 13:58:58 +0100578
Chris Wilson5590af32016-09-09 14:11:54 +0100579 return NOTIFY_DONE;
580}
581
Chris Wilson8e637172016-08-02 22:50:26 +0100582/**
583 * i915_gem_request_alloc - allocate a request structure
584 *
585 * @engine: engine that we wish to issue the request on.
586 * @ctx: context that the request will be associated with.
Chris Wilson8e637172016-08-02 22:50:26 +0100587 *
588 * Returns a pointer to the allocated request if successful,
589 * or an error code if not.
590 */
591struct drm_i915_gem_request *
592i915_gem_request_alloc(struct intel_engine_cs *engine,
593 struct i915_gem_context *ctx)
Chris Wilson05235c52016-07-20 09:21:08 +0100594{
595 struct drm_i915_private *dev_priv = engine->i915;
Chris Wilson05235c52016-07-20 09:21:08 +0100596 struct drm_i915_gem_request *req;
Chris Wilson266a2402017-05-04 10:33:08 +0100597 struct intel_ring *ring;
Chris Wilson05235c52016-07-20 09:21:08 +0100598 int ret;
599
Chris Wilson28176ef2016-10-28 13:58:56 +0100600 lockdep_assert_held(&dev_priv->drm.struct_mutex);
601
Chris Wilsone7af3112017-10-03 21:34:48 +0100602 /*
603 * Preempt contexts are reserved for exclusive use to inject a
604 * preemption context switch. They are never to be used for any trivial
605 * request!
606 */
607 GEM_BUG_ON(ctx == dev_priv->preempt_context);
608
Chris Wilson05235c52016-07-20 09:21:08 +0100609 /* ABI: Before userspace accesses the GPU (e.g. execbuffer), report
Chris Wilson6ffb7d02017-01-14 16:23:33 +0000610 * EIO if the GPU is already wedged.
Chris Wilson05235c52016-07-20 09:21:08 +0100611 */
Chris Wilson6ffb7d02017-01-14 16:23:33 +0000612 if (i915_terminally_wedged(&dev_priv->gpu_error))
613 return ERR_PTR(-EIO);
Chris Wilson05235c52016-07-20 09:21:08 +0100614
Chris Wilsone8a9c582016-12-18 15:37:20 +0000615 /* Pinning the contexts may generate requests in order to acquire
616 * GGTT space, so do this first before we reserve a seqno for
617 * ourselves.
618 */
Chris Wilson266a2402017-05-04 10:33:08 +0100619 ring = engine->context_pin(engine, ctx);
620 if (IS_ERR(ring))
621 return ERR_CAST(ring);
622 GEM_BUG_ON(!ring);
Chris Wilson28176ef2016-10-28 13:58:56 +0100623
Chris Wilson636918f2017-08-17 15:47:19 +0100624 ret = reserve_engine(engine);
Chris Wilsone8a9c582016-12-18 15:37:20 +0000625 if (ret)
626 goto err_unpin;
627
Chris Wilson3fef5cd2017-11-20 10:20:02 +0000628 ret = intel_ring_wait_for_space(ring, MIN_SPACE_FOR_ADD_REQUEST);
629 if (ret)
630 goto err_unreserve;
631
Chris Wilson9b5f4e52016-07-20 09:21:09 +0100632 /* Move the oldest request to the slab-cache (if not in use!) */
Chris Wilson73cb9702016-10-28 13:58:46 +0100633 req = list_first_entry_or_null(&engine->timeline->requests,
Chris Wilsonefdf7c02016-08-04 07:52:33 +0100634 typeof(*req), link);
Chris Wilson754c9fd2017-02-23 07:44:14 +0000635 if (req && i915_gem_request_completed(req))
Chris Wilson2a1d7752016-07-26 12:01:51 +0100636 i915_gem_request_retire(req);
Chris Wilson9b5f4e52016-07-20 09:21:09 +0100637
Chris Wilson5a198b82016-08-09 09:23:34 +0100638 /* Beware: Dragons be flying overhead.
639 *
640 * We use RCU to look up requests in flight. The lookups may
641 * race with the request being allocated from the slab freelist.
642 * That is the request we are writing to here, may be in the process
Chris Wilson1426f712016-08-09 17:03:22 +0100643 * of being read by __i915_gem_active_get_rcu(). As such,
Chris Wilson5a198b82016-08-09 09:23:34 +0100644 * we have to be very careful when overwriting the contents. During
645 * the RCU lookup, we change chase the request->engine pointer,
Chris Wilson65e47602016-10-28 13:58:49 +0100646 * read the request->global_seqno and increment the reference count.
Chris Wilson5a198b82016-08-09 09:23:34 +0100647 *
648 * The reference count is incremented atomically. If it is zero,
649 * the lookup knows the request is unallocated and complete. Otherwise,
650 * it is either still in use, or has been reallocated and reset
Chris Wilsonf54d1862016-10-25 13:00:45 +0100651 * with dma_fence_init(). This increment is safe for release as we
652 * check that the request we have a reference to and matches the active
Chris Wilson5a198b82016-08-09 09:23:34 +0100653 * request.
654 *
655 * Before we increment the refcount, we chase the request->engine
656 * pointer. We must not call kmem_cache_zalloc() or else we set
657 * that pointer to NULL and cause a crash during the lookup. If
658 * we see the request is completed (based on the value of the
659 * old engine and seqno), the lookup is complete and reports NULL.
660 * If we decide the request is not completed (new engine or seqno),
661 * then we grab a reference and double check that it is still the
662 * active request - which it won't be and restart the lookup.
663 *
664 * Do not use kmem_cache_zalloc() here!
665 */
666 req = kmem_cache_alloc(dev_priv->requests, GFP_KERNEL);
Chris Wilson28176ef2016-10-28 13:58:56 +0100667 if (!req) {
668 ret = -ENOMEM;
669 goto err_unreserve;
670 }
Chris Wilson05235c52016-07-20 09:21:08 +0100671
Chris Wilson80b204b2016-10-28 13:58:58 +0100672 req->timeline = i915_gem_context_lookup_timeline(ctx, engine);
673 GEM_BUG_ON(req->timeline == engine->timeline);
Chris Wilson73cb9702016-10-28 13:58:46 +0100674
Chris Wilson04769652016-07-20 09:21:11 +0100675 spin_lock_init(&req->lock);
Chris Wilsonf54d1862016-10-25 13:00:45 +0100676 dma_fence_init(&req->fence,
677 &i915_fence_ops,
678 &req->lock,
Chris Wilson73cb9702016-10-28 13:58:46 +0100679 req->timeline->fence_context,
Chris Wilson9b6586a2017-02-23 07:44:08 +0000680 timeline_get_seqno(req->timeline));
Chris Wilson04769652016-07-20 09:21:11 +0100681
Chris Wilson48bc2a42016-11-25 13:17:17 +0000682 /* We bump the ref for the fence chain */
683 i915_sw_fence_init(&i915_gem_request_get(req)->submit, submit_notify);
Chris Wilsonfe497892017-02-23 07:44:13 +0000684 init_waitqueue_head(&req->execute);
Chris Wilson5590af32016-09-09 14:11:54 +0100685
Chris Wilson52e54202016-11-14 20:41:02 +0000686 i915_priotree_init(&req->priotree);
687
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100688 INIT_LIST_HEAD(&req->active_list);
Chris Wilson05235c52016-07-20 09:21:08 +0100689 req->i915 = dev_priv;
690 req->engine = engine;
Chris Wilsone8a9c582016-12-18 15:37:20 +0000691 req->ctx = ctx;
Chris Wilson266a2402017-05-04 10:33:08 +0100692 req->ring = ring;
Chris Wilson05235c52016-07-20 09:21:08 +0100693
Chris Wilson5a198b82016-08-09 09:23:34 +0100694 /* No zalloc, must clear what we need by hand */
Chris Wilsonf2d13292016-10-28 13:58:57 +0100695 req->global_seqno = 0;
Chris Wilson5a198b82016-08-09 09:23:34 +0100696 req->file_priv = NULL;
Chris Wilson058d88c2016-08-15 10:49:06 +0100697 req->batch = NULL;
Chris Wilsonb0fd47a2017-04-15 10:39:02 +0100698 req->capture_list = NULL;
Chris Wilson7b92c1b2017-06-28 13:35:48 +0100699 req->waitboost = false;
Chris Wilson5a198b82016-08-09 09:23:34 +0100700
Chris Wilson05235c52016-07-20 09:21:08 +0100701 /*
702 * Reserve space in the ring buffer for all the commands required to
703 * eventually emit this request. This is to guarantee that the
704 * i915_add_request() call can't fail. Note that the reserve may need
705 * to be redone if the request is not actually submitted straight
706 * away, e.g. because a GPU scheduler has deferred it.
707 */
708 req->reserved_space = MIN_SPACE_FOR_ADD_REQUEST;
Chris Wilson98f29e82016-10-28 13:58:51 +0100709 GEM_BUG_ON(req->reserved_space < engine->emit_breadcrumb_sz);
Chris Wilson05235c52016-07-20 09:21:08 +0100710
Chris Wilson21131842017-11-20 10:20:01 +0000711 /*
712 * Record the position of the start of the request so that
Chris Wilsond0454462016-08-15 10:48:40 +0100713 * should we detect the updated seqno part-way through the
714 * GPU processing the request, we never over-estimate the
715 * position of the head.
716 */
Chris Wilsone6ba9992017-04-25 14:00:49 +0100717 req->head = req->ring->emit;
Chris Wilsond0454462016-08-15 10:48:40 +0100718
Chris Wilson21131842017-11-20 10:20:01 +0000719 /* Unconditionally invalidate GPU caches and TLBs. */
720 ret = engine->emit_flush(req, EMIT_INVALIDATE);
721 if (ret)
722 goto err_ctx;
723
724 ret = engine->request_alloc(req);
725 if (ret) {
726 /*
727 * Past the point-of-no-return. Since we may have updated
728 * global state after partially completing the request alloc,
729 * we need to commit any commands so far emitted in the
730 * request to the HW.
731 */
732 __i915_add_request(req, false);
733 return ERR_PTR(ret);
734 }
735
Chris Wilson9b6586a2017-02-23 07:44:08 +0000736 /* Check that we didn't interrupt ourselves with a new request */
737 GEM_BUG_ON(req->timeline->seqno != req->fence.seqno);
Chris Wilson8e637172016-08-02 22:50:26 +0100738 return req;
Chris Wilson05235c52016-07-20 09:21:08 +0100739
740err_ctx:
Chris Wilson1618bdb2016-11-25 13:17:16 +0000741 /* Make sure we didn't add ourselves to external state before freeing */
742 GEM_BUG_ON(!list_empty(&req->active_list));
743 GEM_BUG_ON(!list_empty(&req->priotree.signalers_list));
744 GEM_BUG_ON(!list_empty(&req->priotree.waiters_list));
745
Chris Wilson05235c52016-07-20 09:21:08 +0100746 kmem_cache_free(dev_priv->requests, req);
Chris Wilson28176ef2016-10-28 13:58:56 +0100747err_unreserve:
Chris Wilson636918f2017-08-17 15:47:19 +0100748 unreserve_engine(engine);
Chris Wilsone8a9c582016-12-18 15:37:20 +0000749err_unpin:
750 engine->context_unpin(engine, ctx);
Chris Wilson8e637172016-08-02 22:50:26 +0100751 return ERR_PTR(ret);
Chris Wilson05235c52016-07-20 09:21:08 +0100752}
753
Chris Wilsona2bc4692016-09-09 14:11:56 +0100754static int
755i915_gem_request_await_request(struct drm_i915_gem_request *to,
756 struct drm_i915_gem_request *from)
757{
Chris Wilson85e17f52016-10-28 13:58:53 +0100758 int ret;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100759
760 GEM_BUG_ON(to == from);
Chris Wilsonceae14b2017-05-03 10:39:20 +0100761 GEM_BUG_ON(to->timeline == from->timeline);
Chris Wilsona2bc4692016-09-09 14:11:56 +0100762
Chris Wilsonade0b0c2017-04-22 09:15:37 +0100763 if (i915_gem_request_completed(from))
764 return 0;
765
Chris Wilson52e54202016-11-14 20:41:02 +0000766 if (to->engine->schedule) {
767 ret = i915_priotree_add_dependency(to->i915,
768 &to->priotree,
769 &from->priotree);
770 if (ret < 0)
771 return ret;
772 }
773
Chris Wilson73cb9702016-10-28 13:58:46 +0100774 if (to->engine == from->engine) {
775 ret = i915_sw_fence_await_sw_fence_gfp(&to->submit,
776 &from->submit,
777 GFP_KERNEL);
778 return ret < 0 ? ret : 0;
779 }
780
Chris Wilson6b567082017-06-08 12:14:05 +0100781 if (to->engine->semaphore.sync_to) {
782 u32 seqno;
Chris Wilson65e47602016-10-28 13:58:49 +0100783
Chris Wilson49f08592017-05-03 10:39:24 +0100784 GEM_BUG_ON(!from->engine->semaphore.signal);
785
Chris Wilson6b567082017-06-08 12:14:05 +0100786 seqno = i915_gem_request_global_seqno(from);
787 if (!seqno)
788 goto await_dma_fence;
789
Chris Wilsonfc9d4d22017-05-03 10:39:23 +0100790 if (seqno <= to->timeline->global_sync[from->engine->id])
791 return 0;
792
793 trace_i915_gem_ring_sync_to(to, from);
Chris Wilsona2bc4692016-09-09 14:11:56 +0100794 ret = to->engine->semaphore.sync_to(to, from);
795 if (ret)
796 return ret;
Chris Wilsonfc9d4d22017-05-03 10:39:23 +0100797
798 to->timeline->global_sync[from->engine->id] = seqno;
Chris Wilson6b567082017-06-08 12:14:05 +0100799 return 0;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100800 }
801
Chris Wilsonfc9d4d22017-05-03 10:39:23 +0100802await_dma_fence:
803 ret = i915_sw_fence_await_dma_fence(&to->submit,
804 &from->fence, 0,
805 GFP_KERNEL);
806 return ret < 0 ? ret : 0;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100807}
808
Chris Wilsonb52992c2016-10-28 13:58:24 +0100809int
810i915_gem_request_await_dma_fence(struct drm_i915_gem_request *req,
811 struct dma_fence *fence)
812{
Chris Wilson29ef3fa2017-05-03 10:39:19 +0100813 struct dma_fence **child = &fence;
814 unsigned int nchild = 1;
Chris Wilsonb52992c2016-10-28 13:58:24 +0100815 int ret;
Chris Wilsonb52992c2016-10-28 13:58:24 +0100816
817 /* Note that if the fence-array was created in signal-on-any mode,
818 * we should *not* decompose it into its individual fences. However,
819 * we don't currently store which mode the fence-array is operating
820 * in. Fortunately, the only user of signal-on-any is private to
821 * amdgpu and we should not see any incoming fence-array from
822 * sync-file being in signal-on-any mode.
823 */
Chris Wilson29ef3fa2017-05-03 10:39:19 +0100824 if (dma_fence_is_array(fence)) {
825 struct dma_fence_array *array = to_dma_fence_array(fence);
Chris Wilsonb52992c2016-10-28 13:58:24 +0100826
Chris Wilson29ef3fa2017-05-03 10:39:19 +0100827 child = array->fences;
828 nchild = array->num_fences;
829 GEM_BUG_ON(!nchild);
830 }
Chris Wilsonb52992c2016-10-28 13:58:24 +0100831
Chris Wilson29ef3fa2017-05-03 10:39:19 +0100832 do {
833 fence = *child++;
834 if (test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &fence->flags))
835 continue;
836
Chris Wilsonceae14b2017-05-03 10:39:20 +0100837 /*
838 * Requests on the same timeline are explicitly ordered, along
839 * with their dependencies, by i915_add_request() which ensures
840 * that requests are submitted in-order through each ring.
841 */
842 if (fence->context == req->fence.context)
843 continue;
844
Chris Wilson47979482017-05-03 10:39:21 +0100845 /* Squash repeated waits to the same timelines */
846 if (fence->context != req->i915->mm.unordered_timeline &&
847 intel_timeline_sync_is_later(req->timeline, fence))
848 continue;
849
Chris Wilson29ef3fa2017-05-03 10:39:19 +0100850 if (dma_fence_is_i915(fence))
Chris Wilsonb52992c2016-10-28 13:58:24 +0100851 ret = i915_gem_request_await_request(req,
Chris Wilson29ef3fa2017-05-03 10:39:19 +0100852 to_request(fence));
Chris Wilsonb52992c2016-10-28 13:58:24 +0100853 else
Chris Wilson29ef3fa2017-05-03 10:39:19 +0100854 ret = i915_sw_fence_await_dma_fence(&req->submit, fence,
855 I915_FENCE_TIMEOUT,
Chris Wilsonb52992c2016-10-28 13:58:24 +0100856 GFP_KERNEL);
857 if (ret < 0)
858 return ret;
Chris Wilson47979482017-05-03 10:39:21 +0100859
860 /* Record the latest fence used against each timeline */
861 if (fence->context != req->i915->mm.unordered_timeline)
862 intel_timeline_sync_set(req->timeline, fence);
Chris Wilson29ef3fa2017-05-03 10:39:19 +0100863 } while (--nchild);
Chris Wilsonb52992c2016-10-28 13:58:24 +0100864
865 return 0;
866}
867
Chris Wilsona2bc4692016-09-09 14:11:56 +0100868/**
869 * i915_gem_request_await_object - set this request to (async) wait upon a bo
870 *
871 * @to: request we are wishing to use
872 * @obj: object which may be in use on another ring.
873 *
874 * This code is meant to abstract object synchronization with the GPU.
875 * Conceptually we serialise writes between engines inside the GPU.
876 * We only allow one engine to write into a buffer at any time, but
877 * multiple readers. To ensure each has a coherent view of memory, we must:
878 *
879 * - If there is an outstanding write request to the object, the new
880 * request must wait for it to complete (either CPU or in hw, requests
881 * on the same ring will be naturally ordered).
882 *
883 * - If we are a write request (pending_write_domain is set), the new
884 * request must wait for outstanding read requests to complete.
885 *
886 * Returns 0 if successful, else propagates up the lower layer error.
887 */
888int
889i915_gem_request_await_object(struct drm_i915_gem_request *to,
890 struct drm_i915_gem_object *obj,
891 bool write)
892{
Chris Wilsond07f0e52016-10-28 13:58:44 +0100893 struct dma_fence *excl;
894 int ret = 0;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100895
896 if (write) {
Chris Wilsond07f0e52016-10-28 13:58:44 +0100897 struct dma_fence **shared;
898 unsigned int count, i;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100899
Chris Wilsond07f0e52016-10-28 13:58:44 +0100900 ret = reservation_object_get_fences_rcu(obj->resv,
901 &excl, &count, &shared);
Chris Wilsona2bc4692016-09-09 14:11:56 +0100902 if (ret)
903 return ret;
Chris Wilsond07f0e52016-10-28 13:58:44 +0100904
905 for (i = 0; i < count; i++) {
906 ret = i915_gem_request_await_dma_fence(to, shared[i]);
907 if (ret)
908 break;
909
910 dma_fence_put(shared[i]);
911 }
912
913 for (; i < count; i++)
914 dma_fence_put(shared[i]);
915 kfree(shared);
916 } else {
917 excl = reservation_object_get_excl_rcu(obj->resv);
Chris Wilsona2bc4692016-09-09 14:11:56 +0100918 }
919
Chris Wilsond07f0e52016-10-28 13:58:44 +0100920 if (excl) {
921 if (ret == 0)
922 ret = i915_gem_request_await_dma_fence(to, excl);
923
924 dma_fence_put(excl);
925 }
926
927 return ret;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100928}
929
Chris Wilson05235c52016-07-20 09:21:08 +0100930/*
931 * NB: This function is not allowed to fail. Doing so would mean the the
932 * request is not being tracked for completion but the work itself is
933 * going to happen on the hardware. This would be a Bad Thing(tm).
934 */
Chris Wilson17f298cf2016-08-10 13:41:46 +0100935void __i915_add_request(struct drm_i915_gem_request *request, bool flush_caches)
Chris Wilson05235c52016-07-20 09:21:08 +0100936{
Chris Wilson95b2ab52016-08-15 10:48:46 +0100937 struct intel_engine_cs *engine = request->engine;
938 struct intel_ring *ring = request->ring;
Chris Wilson73cb9702016-10-28 13:58:46 +0100939 struct intel_timeline *timeline = request->timeline;
Chris Wilson0a046a02016-09-09 14:12:00 +0100940 struct drm_i915_gem_request *prev;
Tvrtko Ursulin73dec952017-02-14 11:32:42 +0000941 u32 *cs;
Chris Wilsoncaddfe72016-10-28 13:58:52 +0100942 int err;
Chris Wilson05235c52016-07-20 09:21:08 +0100943
Chris Wilson4c7d62c2016-10-28 13:58:32 +0100944 lockdep_assert_held(&request->i915->drm.struct_mutex);
Chris Wilson0f25dff2016-09-09 14:11:55 +0100945 trace_i915_gem_request_add(request);
946
Chris Wilsonc781c972017-01-11 14:08:58 +0000947 /* Make sure that no request gazumped us - if it was allocated after
948 * our i915_gem_request_alloc() and called __i915_add_request() before
949 * us, the timeline will hold its seqno which is later than ours.
950 */
Chris Wilson9b6586a2017-02-23 07:44:08 +0000951 GEM_BUG_ON(timeline->seqno != request->fence.seqno);
Chris Wilsonc781c972017-01-11 14:08:58 +0000952
Chris Wilson05235c52016-07-20 09:21:08 +0100953 /*
954 * To ensure that this call will not fail, space for its emissions
955 * should already have been reserved in the ring buffer. Let the ring
956 * know that it is time to use that space up.
957 */
Chris Wilson05235c52016-07-20 09:21:08 +0100958 request->reserved_space = 0;
959
960 /*
961 * Emit any outstanding flushes - execbuf can fail to emit the flush
962 * after having emitted the batchbuffer command. Hence we need to fix
963 * things up similar to emitting the lazy request. The difference here
964 * is that the flush _must_ happen before the next request, no matter
965 * what.
966 */
967 if (flush_caches) {
Chris Wilsoncaddfe72016-10-28 13:58:52 +0100968 err = engine->emit_flush(request, EMIT_FLUSH);
Chris Wilsonc7fe7d22016-08-02 22:50:24 +0100969
Chris Wilson05235c52016-07-20 09:21:08 +0100970 /* Not allowed to fail! */
Chris Wilsoncaddfe72016-10-28 13:58:52 +0100971 WARN(err, "engine->emit_flush() failed: %d!\n", err);
Chris Wilson05235c52016-07-20 09:21:08 +0100972 }
973
Chris Wilsond0454462016-08-15 10:48:40 +0100974 /* Record the position of the start of the breadcrumb so that
Chris Wilson05235c52016-07-20 09:21:08 +0100975 * should we detect the updated seqno part-way through the
976 * GPU processing the request, we never over-estimate the
Chris Wilsond0454462016-08-15 10:48:40 +0100977 * position of the ring's HEAD.
Chris Wilson05235c52016-07-20 09:21:08 +0100978 */
Tvrtko Ursulin73dec952017-02-14 11:32:42 +0000979 cs = intel_ring_begin(request, engine->emit_breadcrumb_sz);
980 GEM_BUG_ON(IS_ERR(cs));
981 request->postfix = intel_ring_offset(request, cs);
Chris Wilson05235c52016-07-20 09:21:08 +0100982
Chris Wilson0f25dff2016-09-09 14:11:55 +0100983 /* Seal the request and mark it as pending execution. Note that
984 * we may inspect this state, without holding any locks, during
985 * hangcheck. Hence we apply the barrier to ensure that we do not
986 * see a more recent value in the hws than we are tracking.
987 */
Chris Wilson0a046a02016-09-09 14:12:00 +0100988
Chris Wilson73cb9702016-10-28 13:58:46 +0100989 prev = i915_gem_active_raw(&timeline->last_request,
Chris Wilson0a046a02016-09-09 14:12:00 +0100990 &request->i915->drm.struct_mutex);
Chris Wilson52e54202016-11-14 20:41:02 +0000991 if (prev) {
Chris Wilson0a046a02016-09-09 14:12:00 +0100992 i915_sw_fence_await_sw_fence(&request->submit, &prev->submit,
993 &request->submitq);
Chris Wilson52e54202016-11-14 20:41:02 +0000994 if (engine->schedule)
995 __i915_priotree_add_dependency(&request->priotree,
996 &prev->priotree,
997 &request->dep,
998 0);
999 }
Chris Wilson0a046a02016-09-09 14:12:00 +01001000
Chris Wilson80b204b2016-10-28 13:58:58 +01001001 spin_lock_irq(&timeline->lock);
Chris Wilsonf2d13292016-10-28 13:58:57 +01001002 list_add_tail(&request->link, &timeline->requests);
Chris Wilson80b204b2016-10-28 13:58:58 +01001003 spin_unlock_irq(&timeline->lock);
Chris Wilson28176ef2016-10-28 13:58:56 +01001004
Chris Wilson9b6586a2017-02-23 07:44:08 +00001005 GEM_BUG_ON(timeline->seqno != request->fence.seqno);
Chris Wilson73cb9702016-10-28 13:58:46 +01001006 i915_gem_active_set(&timeline->last_request, request);
Chris Wilsonf2d13292016-10-28 13:58:57 +01001007
Chris Wilson0f25dff2016-09-09 14:11:55 +01001008 list_add_tail(&request->ring_link, &ring->request_list);
Chris Wilsonf2d13292016-10-28 13:58:57 +01001009 request->emitted_jiffies = jiffies;
Chris Wilson0f25dff2016-09-09 14:11:55 +01001010
Chris Wilson0de91362016-11-14 20:41:01 +00001011 /* Let the backend know a new request has arrived that may need
1012 * to adjust the existing execution schedule due to a high priority
1013 * request - i.e. we may want to preempt the current request in order
1014 * to run a high priority dependency chain *before* we can execute this
1015 * request.
1016 *
1017 * This is called before the request is ready to run so that we can
1018 * decide whether to preempt the entire chain so that it is ready to
1019 * run at the earliest possible convenience.
1020 */
1021 if (engine->schedule)
Chris Wilson9f792eb2016-11-14 20:41:04 +00001022 engine->schedule(request, request->ctx->priority);
Chris Wilson0de91362016-11-14 20:41:01 +00001023
Chris Wilson5590af32016-09-09 14:11:54 +01001024 local_bh_disable();
1025 i915_sw_fence_commit(&request->submit);
1026 local_bh_enable(); /* Kick the execlists tasklet if just scheduled */
Chris Wilson05235c52016-07-20 09:21:08 +01001027}
1028
1029static unsigned long local_clock_us(unsigned int *cpu)
1030{
1031 unsigned long t;
1032
1033 /* Cheaply and approximately convert from nanoseconds to microseconds.
1034 * The result and subsequent calculations are also defined in the same
1035 * approximate microseconds units. The principal source of timing
1036 * error here is from the simple truncation.
1037 *
1038 * Note that local_clock() is only defined wrt to the current CPU;
1039 * the comparisons are no longer valid if we switch CPUs. Instead of
1040 * blocking preemption for the entire busywait, we can detect the CPU
1041 * switch and use that as indicator of system load and a reason to
1042 * stop busywaiting, see busywait_stop().
1043 */
1044 *cpu = get_cpu();
1045 t = local_clock() >> 10;
1046 put_cpu();
1047
1048 return t;
1049}
1050
1051static bool busywait_stop(unsigned long timeout, unsigned int cpu)
1052{
1053 unsigned int this_cpu;
1054
1055 if (time_after(local_clock_us(&this_cpu), timeout))
1056 return true;
1057
1058 return this_cpu != cpu;
1059}
1060
Chris Wilsonb2f2f0f2017-09-22 13:03:33 +01001061static bool __i915_spin_request(const struct drm_i915_gem_request *req,
1062 u32 seqno, int state, unsigned long timeout_us)
Chris Wilson05235c52016-07-20 09:21:08 +01001063{
Chris Wilsonc33ed062017-02-17 15:13:01 +00001064 struct intel_engine_cs *engine = req->engine;
1065 unsigned int irq, cpu;
Chris Wilson05235c52016-07-20 09:21:08 +01001066
Chris Wilsonb2f2f0f2017-09-22 13:03:33 +01001067 GEM_BUG_ON(!seqno);
1068
1069 /*
1070 * Only wait for the request if we know it is likely to complete.
1071 *
1072 * We don't track the timestamps around requests, nor the average
1073 * request length, so we do not have a good indicator that this
1074 * request will complete within the timeout. What we do know is the
1075 * order in which requests are executed by the engine and so we can
1076 * tell if the request has started. If the request hasn't started yet,
1077 * it is a fair assumption that it will not complete within our
1078 * relatively short timeout.
1079 */
1080 if (!i915_seqno_passed(intel_engine_get_seqno(engine), seqno - 1))
1081 return false;
1082
Chris Wilson05235c52016-07-20 09:21:08 +01001083 /* When waiting for high frequency requests, e.g. during synchronous
1084 * rendering split between the CPU and GPU, the finite amount of time
1085 * required to set up the irq and wait upon it limits the response
1086 * rate. By busywaiting on the request completion for a short while we
1087 * can service the high frequency waits as quick as possible. However,
1088 * if it is a slow request, we want to sleep as quickly as possible.
1089 * The tradeoff between waiting and sleeping is roughly the time it
1090 * takes to sleep on a request, on the order of a microsecond.
1091 */
1092
Chris Wilsonc33ed062017-02-17 15:13:01 +00001093 irq = atomic_read(&engine->irq_count);
Chris Wilson05235c52016-07-20 09:21:08 +01001094 timeout_us += local_clock_us(&cpu);
1095 do {
Chris Wilsonb2f2f0f2017-09-22 13:03:33 +01001096 if (i915_seqno_passed(intel_engine_get_seqno(engine), seqno))
Chris Wilsona3df2c82017-09-21 22:09:03 +01001097 return seqno == i915_gem_request_global_seqno(req);
Chris Wilson05235c52016-07-20 09:21:08 +01001098
Chris Wilsonc33ed062017-02-17 15:13:01 +00001099 /* Seqno are meant to be ordered *before* the interrupt. If
1100 * we see an interrupt without a corresponding seqno advance,
1101 * assume we won't see one in the near future but require
1102 * the engine->seqno_barrier() to fixup coherency.
1103 */
1104 if (atomic_read(&engine->irq_count) != irq)
1105 break;
1106
Chris Wilson05235c52016-07-20 09:21:08 +01001107 if (signal_pending_state(state, current))
1108 break;
1109
1110 if (busywait_stop(timeout_us, cpu))
1111 break;
1112
Christian Borntraegerf2f09a42016-10-25 11:03:14 +02001113 cpu_relax();
Chris Wilson05235c52016-07-20 09:21:08 +01001114 } while (!need_resched());
1115
1116 return false;
1117}
1118
Chris Wilsone0705112017-02-23 07:44:20 +00001119static bool __i915_wait_request_check_and_reset(struct drm_i915_gem_request *request)
Chris Wilson4680816b2016-10-28 13:58:48 +01001120{
Chris Wilson8c185ec2017-03-16 17:13:02 +00001121 if (likely(!i915_reset_handoff(&request->i915->gpu_error)))
Chris Wilsone0705112017-02-23 07:44:20 +00001122 return false;
Chris Wilson4680816b2016-10-28 13:58:48 +01001123
Chris Wilsone0705112017-02-23 07:44:20 +00001124 __set_current_state(TASK_RUNNING);
Chris Wilson535275d2017-07-21 13:32:37 +01001125 i915_reset(request->i915, 0);
Chris Wilsone0705112017-02-23 07:44:20 +00001126 return true;
Chris Wilson4680816b2016-10-28 13:58:48 +01001127}
1128
Chris Wilson05235c52016-07-20 09:21:08 +01001129/**
Chris Wilson776f3232016-08-04 07:52:40 +01001130 * i915_wait_request - wait until execution of request has finished
Chris Wilsone95433c2016-10-28 13:58:27 +01001131 * @req: the request to wait upon
Chris Wilsonea746f32016-09-09 14:11:49 +01001132 * @flags: how to wait
Chris Wilsone95433c2016-10-28 13:58:27 +01001133 * @timeout: how long to wait in jiffies
Chris Wilson05235c52016-07-20 09:21:08 +01001134 *
Chris Wilsone95433c2016-10-28 13:58:27 +01001135 * i915_wait_request() waits for the request to be completed, for a
1136 * maximum of @timeout jiffies (with MAX_SCHEDULE_TIMEOUT implying an
1137 * unbounded wait).
Chris Wilson05235c52016-07-20 09:21:08 +01001138 *
Chris Wilsone95433c2016-10-28 13:58:27 +01001139 * If the caller holds the struct_mutex, the caller must pass I915_WAIT_LOCKED
1140 * in via the flags, and vice versa if the struct_mutex is not held, the caller
1141 * must not specify that the wait is locked.
1142 *
1143 * Returns the remaining time (in jiffies) if the request completed, which may
1144 * be zero or -ETIME if the request is unfinished after the timeout expires.
1145 * May return -EINTR is called with I915_WAIT_INTERRUPTIBLE and a signal is
1146 * pending before the request completes.
Chris Wilson05235c52016-07-20 09:21:08 +01001147 */
Chris Wilsone95433c2016-10-28 13:58:27 +01001148long i915_wait_request(struct drm_i915_gem_request *req,
1149 unsigned int flags,
1150 long timeout)
Chris Wilson05235c52016-07-20 09:21:08 +01001151{
Chris Wilsonea746f32016-09-09 14:11:49 +01001152 const int state = flags & I915_WAIT_INTERRUPTIBLE ?
1153 TASK_INTERRUPTIBLE : TASK_UNINTERRUPTIBLE;
Chris Wilson4b36b2e2017-02-23 07:44:10 +00001154 wait_queue_head_t *errq = &req->i915->gpu_error.wait_queue;
Chris Wilsona49625f2017-02-23 07:44:19 +00001155 DEFINE_WAIT_FUNC(reset, default_wake_function);
1156 DEFINE_WAIT_FUNC(exec, default_wake_function);
Chris Wilson05235c52016-07-20 09:21:08 +01001157 struct intel_wait wait;
Chris Wilson05235c52016-07-20 09:21:08 +01001158
1159 might_sleep();
Chris Wilson22dd3bb2016-09-09 14:11:50 +01001160#if IS_ENABLED(CONFIG_LOCKDEP)
Chris Wilsone95433c2016-10-28 13:58:27 +01001161 GEM_BUG_ON(debug_locks &&
1162 !!lockdep_is_held(&req->i915->drm.struct_mutex) !=
Chris Wilson22dd3bb2016-09-09 14:11:50 +01001163 !!(flags & I915_WAIT_LOCKED));
1164#endif
Chris Wilsone95433c2016-10-28 13:58:27 +01001165 GEM_BUG_ON(timeout < 0);
Chris Wilson05235c52016-07-20 09:21:08 +01001166
Chris Wilson05235c52016-07-20 09:21:08 +01001167 if (i915_gem_request_completed(req))
Chris Wilsone95433c2016-10-28 13:58:27 +01001168 return timeout;
Chris Wilson05235c52016-07-20 09:21:08 +01001169
Chris Wilsone95433c2016-10-28 13:58:27 +01001170 if (!timeout)
1171 return -ETIME;
Chris Wilson05235c52016-07-20 09:21:08 +01001172
Tvrtko Ursulin936925022017-02-21 11:00:24 +00001173 trace_i915_gem_request_wait_begin(req, flags);
Chris Wilson05235c52016-07-20 09:21:08 +01001174
Chris Wilsona49625f2017-02-23 07:44:19 +00001175 add_wait_queue(&req->execute, &exec);
Chris Wilson7de53bf2017-02-23 07:44:11 +00001176 if (flags & I915_WAIT_LOCKED)
1177 add_wait_queue(errq, &reset);
1178
Chris Wilson56299fb2017-02-27 20:58:48 +00001179 intel_wait_init(&wait, req);
Chris Wilson754c9fd2017-02-23 07:44:14 +00001180
Chris Wilsond6a22892017-02-23 07:44:17 +00001181restart:
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001182 do {
1183 set_current_state(state);
1184 if (intel_wait_update_request(&wait, req))
1185 break;
Chris Wilson754c9fd2017-02-23 07:44:14 +00001186
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001187 if (flags & I915_WAIT_LOCKED &&
1188 __i915_wait_request_check_and_reset(req))
1189 continue;
Chris Wilson541ca6e2017-02-23 07:44:12 +00001190
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001191 if (signal_pending_state(state, current)) {
1192 timeout = -ERESTARTSYS;
Chris Wilson4680816b2016-10-28 13:58:48 +01001193 goto complete;
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001194 }
Chris Wilson4680816b2016-10-28 13:58:48 +01001195
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001196 if (!timeout) {
1197 timeout = -ETIME;
1198 goto complete;
1199 }
Chris Wilson541ca6e2017-02-23 07:44:12 +00001200
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001201 timeout = io_schedule_timeout(timeout);
1202 } while (1);
Chris Wilson541ca6e2017-02-23 07:44:12 +00001203
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001204 GEM_BUG_ON(!intel_wait_has_seqno(&wait));
Chris Wilsonfe497892017-02-23 07:44:13 +00001205 GEM_BUG_ON(!i915_sw_fence_signaled(&req->submit));
Chris Wilson4680816b2016-10-28 13:58:48 +01001206
Daniel Vetter437c3082016-08-05 18:11:24 +02001207 /* Optimistic short spin before touching IRQs */
Chris Wilsonb2f2f0f2017-09-22 13:03:33 +01001208 if (__i915_spin_request(req, wait.seqno, state, 5))
Chris Wilson05235c52016-07-20 09:21:08 +01001209 goto complete;
1210
1211 set_current_state(state);
Chris Wilson05235c52016-07-20 09:21:08 +01001212 if (intel_engine_add_wait(req->engine, &wait))
1213 /* In order to check that we haven't missed the interrupt
1214 * as we enabled it, we need to kick ourselves to do a
1215 * coherent check on the seqno before we sleep.
1216 */
1217 goto wakeup;
1218
Chris Wilson24f417e2017-02-23 07:44:21 +00001219 if (flags & I915_WAIT_LOCKED)
1220 __i915_wait_request_check_and_reset(req);
1221
Chris Wilson05235c52016-07-20 09:21:08 +01001222 for (;;) {
1223 if (signal_pending_state(state, current)) {
Chris Wilsone95433c2016-10-28 13:58:27 +01001224 timeout = -ERESTARTSYS;
Chris Wilson05235c52016-07-20 09:21:08 +01001225 break;
1226 }
1227
Chris Wilsone95433c2016-10-28 13:58:27 +01001228 if (!timeout) {
1229 timeout = -ETIME;
Chris Wilson05235c52016-07-20 09:21:08 +01001230 break;
1231 }
1232
Chris Wilsone95433c2016-10-28 13:58:27 +01001233 timeout = io_schedule_timeout(timeout);
1234
Chris Wilson754c9fd2017-02-23 07:44:14 +00001235 if (intel_wait_complete(&wait) &&
1236 intel_wait_check_request(&wait, req))
Chris Wilson05235c52016-07-20 09:21:08 +01001237 break;
1238
1239 set_current_state(state);
1240
1241wakeup:
1242 /* Carefully check if the request is complete, giving time
1243 * for the seqno to be visible following the interrupt.
1244 * We also have to check in case we are kicked by the GPU
1245 * reset in order to drop the struct_mutex.
1246 */
1247 if (__i915_request_irq_complete(req))
1248 break;
1249
Chris Wilson221fe792016-09-09 14:11:51 +01001250 /* If the GPU is hung, and we hold the lock, reset the GPU
1251 * and then check for completion. On a full reset, the engine's
1252 * HW seqno will be advanced passed us and we are complete.
1253 * If we do a partial reset, we have to wait for the GPU to
1254 * resume and update the breadcrumb.
1255 *
1256 * If we don't hold the mutex, we can just wait for the worker
1257 * to come along and update the breadcrumb (either directly
1258 * itself, or indirectly by recovering the GPU).
1259 */
1260 if (flags & I915_WAIT_LOCKED &&
Chris Wilsone0705112017-02-23 07:44:20 +00001261 __i915_wait_request_check_and_reset(req))
Chris Wilson221fe792016-09-09 14:11:51 +01001262 continue;
Chris Wilson221fe792016-09-09 14:11:51 +01001263
Chris Wilson05235c52016-07-20 09:21:08 +01001264 /* Only spin if we know the GPU is processing this request */
Chris Wilsonb2f2f0f2017-09-22 13:03:33 +01001265 if (__i915_spin_request(req, wait.seqno, state, 2))
Chris Wilson05235c52016-07-20 09:21:08 +01001266 break;
Chris Wilsond6a22892017-02-23 07:44:17 +00001267
1268 if (!intel_wait_check_request(&wait, req)) {
1269 intel_engine_remove_wait(req->engine, &wait);
1270 goto restart;
1271 }
Chris Wilson05235c52016-07-20 09:21:08 +01001272 }
Chris Wilson05235c52016-07-20 09:21:08 +01001273
1274 intel_engine_remove_wait(req->engine, &wait);
Chris Wilson05235c52016-07-20 09:21:08 +01001275complete:
Chris Wilsona49625f2017-02-23 07:44:19 +00001276 __set_current_state(TASK_RUNNING);
Chris Wilson7de53bf2017-02-23 07:44:11 +00001277 if (flags & I915_WAIT_LOCKED)
1278 remove_wait_queue(errq, &reset);
Chris Wilsona49625f2017-02-23 07:44:19 +00001279 remove_wait_queue(&req->execute, &exec);
Chris Wilson05235c52016-07-20 09:21:08 +01001280 trace_i915_gem_request_wait_end(req);
1281
Chris Wilsone95433c2016-10-28 13:58:27 +01001282 return timeout;
Chris Wilson05235c52016-07-20 09:21:08 +01001283}
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001284
Chris Wilson28176ef2016-10-28 13:58:56 +01001285static void engine_retire_requests(struct intel_engine_cs *engine)
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001286{
1287 struct drm_i915_gem_request *request, *next;
Chris Wilson754c9fd2017-02-23 07:44:14 +00001288 u32 seqno = intel_engine_get_seqno(engine);
1289 LIST_HEAD(retire);
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001290
Chris Wilson754c9fd2017-02-23 07:44:14 +00001291 spin_lock_irq(&engine->timeline->lock);
Chris Wilson73cb9702016-10-28 13:58:46 +01001292 list_for_each_entry_safe(request, next,
1293 &engine->timeline->requests, link) {
Chris Wilson754c9fd2017-02-23 07:44:14 +00001294 if (!i915_seqno_passed(seqno, request->global_seqno))
1295 break;
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001296
Chris Wilson754c9fd2017-02-23 07:44:14 +00001297 list_move_tail(&request->link, &retire);
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001298 }
Chris Wilson754c9fd2017-02-23 07:44:14 +00001299 spin_unlock_irq(&engine->timeline->lock);
1300
1301 list_for_each_entry_safe(request, next, &retire, link)
1302 i915_gem_request_retire(request);
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001303}
1304
1305void i915_gem_retire_requests(struct drm_i915_private *dev_priv)
1306{
1307 struct intel_engine_cs *engine;
Chris Wilson28176ef2016-10-28 13:58:56 +01001308 enum intel_engine_id id;
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001309
1310 lockdep_assert_held(&dev_priv->drm.struct_mutex);
1311
Chris Wilson28176ef2016-10-28 13:58:56 +01001312 if (!dev_priv->gt.active_requests)
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001313 return;
1314
Chris Wilson28176ef2016-10-28 13:58:56 +01001315 for_each_engine(engine, dev_priv, id)
1316 engine_retire_requests(engine);
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001317}
Chris Wilsonc835c552017-02-13 17:15:21 +00001318
1319#if IS_ENABLED(CONFIG_DRM_I915_SELFTEST)
1320#include "selftests/mock_request.c"
1321#include "selftests/i915_gem_request.c"
1322#endif