blob: e0d6221022a83ac9a159e72e7a8537c6334d12a5 [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);
261
Chris Wilsonaba5e272017-10-25 15:39:41 +0100262 intel_engines_unpark(i915);
263
Chris Wilson636918f2017-08-17 15:47:19 +0100264 queue_delayed_work(i915->wq,
265 &i915->gt.retire_work,
266 round_jiffies_up_relative(HZ));
267}
268
269static int reserve_engine(struct intel_engine_cs *engine)
270{
271 struct drm_i915_private *i915 = engine->i915;
Chris Wilson12d31732017-02-23 07:44:09 +0000272 u32 active = ++engine->timeline->inflight_seqnos;
273 u32 seqno = engine->timeline->seqno;
274 int ret;
275
276 /* Reservation is fine until we need to wrap around */
Chris Wilson636918f2017-08-17 15:47:19 +0100277 if (unlikely(add_overflows(seqno, active))) {
278 ret = reset_all_global_seqno(i915, 0);
279 if (ret) {
280 engine->timeline->inflight_seqnos--;
281 return ret;
282 }
Chris Wilson12d31732017-02-23 07:44:09 +0000283 }
284
Chris Wilson636918f2017-08-17 15:47:19 +0100285 if (!i915->gt.active_requests++)
286 mark_busy(i915);
287
Chris Wilson12d31732017-02-23 07:44:09 +0000288 return 0;
289}
290
Chris Wilson636918f2017-08-17 15:47:19 +0100291static void unreserve_engine(struct intel_engine_cs *engine)
Chris Wilson9b6586a2017-02-23 07:44:08 +0000292{
Chris Wilson636918f2017-08-17 15:47:19 +0100293 struct drm_i915_private *i915 = engine->i915;
294
295 if (!--i915->gt.active_requests) {
296 /* Cancel the mark_busy() from our reserve_engine() */
297 GEM_BUG_ON(!i915->gt.awake);
298 mod_delayed_work(i915->wq,
299 &i915->gt.idle_work,
300 msecs_to_jiffies(100));
301 }
302
Chris Wilson9b6586a2017-02-23 07:44:08 +0000303 GEM_BUG_ON(!engine->timeline->inflight_seqnos);
304 engine->timeline->inflight_seqnos--;
305}
306
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100307void i915_gem_retire_noop(struct i915_gem_active *active,
308 struct drm_i915_gem_request *request)
309{
310 /* Space left intentionally blank */
311}
312
Chris Wilsoncbb60b42017-04-06 18:00:28 +0100313static void advance_ring(struct drm_i915_gem_request *request)
314{
315 unsigned int tail;
316
317 /* We know the GPU must have read the request to have
318 * sent us the seqno + interrupt, so use the position
319 * of tail of the request to update the last known position
320 * of the GPU head.
321 *
322 * Note this requires that we are always called in request
323 * completion order.
324 */
Chris Wilsone6ba9992017-04-25 14:00:49 +0100325 if (list_is_last(&request->ring_link, &request->ring->request_list)) {
326 /* We may race here with execlists resubmitting this request
327 * as we retire it. The resubmission will move the ring->tail
328 * forwards (to request->wa_tail). We either read the
329 * current value that was written to hw, or the value that
330 * is just about to be. Either works, if we miss the last two
331 * noops - they are safe to be replayed on a reset.
332 */
333 tail = READ_ONCE(request->ring->tail);
334 } else {
Chris Wilsoncbb60b42017-04-06 18:00:28 +0100335 tail = request->postfix;
Chris Wilsone6ba9992017-04-25 14:00:49 +0100336 }
Chris Wilsoncbb60b42017-04-06 18:00:28 +0100337 list_del(&request->ring_link);
338
339 request->ring->head = tail;
340}
341
Chris Wilsonb0fd47a2017-04-15 10:39:02 +0100342static void free_capture_list(struct drm_i915_gem_request *request)
343{
344 struct i915_gem_capture_list *capture;
345
346 capture = request->capture_list;
347 while (capture) {
348 struct i915_gem_capture_list *next = capture->next;
349
350 kfree(capture);
351 capture = next;
352 }
353}
354
Chris Wilson05235c52016-07-20 09:21:08 +0100355static void i915_gem_request_retire(struct drm_i915_gem_request *request)
356{
Chris Wilsone8a9c582016-12-18 15:37:20 +0000357 struct intel_engine_cs *engine = request->engine;
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100358 struct i915_gem_active *active, *next;
359
Chris Wilson4c7d62c2016-10-28 13:58:32 +0100360 lockdep_assert_held(&request->i915->drm.struct_mutex);
Chris Wilson48bc2a42016-11-25 13:17:17 +0000361 GEM_BUG_ON(!i915_sw_fence_signaled(&request->submit));
Chris Wilson4c7d62c2016-10-28 13:58:32 +0100362 GEM_BUG_ON(!i915_gem_request_completed(request));
Chris Wilson43020552016-11-15 16:46:20 +0000363 GEM_BUG_ON(!request->i915->gt.active_requests);
Chris Wilson4c7d62c2016-10-28 13:58:32 +0100364
Chris Wilson05235c52016-07-20 09:21:08 +0100365 trace_i915_gem_request_retire(request);
Chris Wilson80b204b2016-10-28 13:58:58 +0100366
Chris Wilsone8a9c582016-12-18 15:37:20 +0000367 spin_lock_irq(&engine->timeline->lock);
Chris Wilsone95433c2016-10-28 13:58:27 +0100368 list_del_init(&request->link);
Chris Wilsone8a9c582016-12-18 15:37:20 +0000369 spin_unlock_irq(&engine->timeline->lock);
Chris Wilson05235c52016-07-20 09:21:08 +0100370
Chris Wilson636918f2017-08-17 15:47:19 +0100371 unreserve_engine(request->engine);
Chris Wilsoncbb60b42017-04-06 18:00:28 +0100372 advance_ring(request);
Chris Wilson05235c52016-07-20 09:21:08 +0100373
Chris Wilsonb0fd47a2017-04-15 10:39:02 +0100374 free_capture_list(request);
375
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100376 /* Walk through the active list, calling retire on each. This allows
377 * objects to track their GPU activity and mark themselves as idle
378 * when their *last* active request is completed (updating state
379 * tracking lists for eviction, active references for GEM, etc).
380 *
381 * As the ->retire() may free the node, we decouple it first and
382 * pass along the auxiliary information (to avoid dereferencing
383 * the node after the callback).
384 */
385 list_for_each_entry_safe(active, next, &request->active_list, link) {
386 /* In microbenchmarks or focusing upon time inside the kernel,
387 * we may spend an inordinate amount of time simply handling
388 * the retirement of requests and processing their callbacks.
389 * Of which, this loop itself is particularly hot due to the
390 * cache misses when jumping around the list of i915_gem_active.
391 * So we try to keep this loop as streamlined as possible and
392 * also prefetch the next i915_gem_active to try and hide
393 * the likely cache miss.
394 */
395 prefetchw(next);
396
397 INIT_LIST_HEAD(&active->link);
Chris Wilson0eafec62016-08-04 16:32:41 +0100398 RCU_INIT_POINTER(active->request, NULL);
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100399
400 active->retire(active, request);
401 }
402
Chris Wilson05235c52016-07-20 09:21:08 +0100403 i915_gem_request_remove_from_client(request);
404
Mika Kuoppalae5e1fc42016-11-16 17:20:31 +0200405 /* Retirement decays the ban score as it is a sign of ctx progress */
Chris Wilson77b25a92017-07-21 13:32:30 +0100406 atomic_dec_if_positive(&request->ctx->ban_score);
Mika Kuoppalae5e1fc42016-11-16 17:20:31 +0200407
Chris Wilsone8a9c582016-12-18 15:37:20 +0000408 /* The backing object for the context is done after switching to the
409 * *next* context. Therefore we cannot retire the previous context until
410 * the next context has already started running. However, since we
411 * cannot take the required locks at i915_gem_request_submit() we
412 * defer the unpinning of the active context to now, retirement of
413 * the subsequent request.
414 */
415 if (engine->last_retired_context)
416 engine->context_unpin(engine, engine->last_retired_context);
417 engine->last_retired_context = request->ctx;
Chris Wilsond07f0e52016-10-28 13:58:44 +0100418
Chris Wilson7b92c1b2017-06-28 13:35:48 +0100419 spin_lock_irq(&request->lock);
420 if (request->waitboost)
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +0100421 atomic_dec(&request->i915->gt_pm.rps.num_waiters);
Chris Wilson7b92c1b2017-06-28 13:35:48 +0100422 dma_fence_signal_locked(&request->fence);
423 spin_unlock_irq(&request->lock);
Chris Wilson52e54202016-11-14 20:41:02 +0000424
425 i915_priotree_fini(request->i915, &request->priotree);
Chris Wilsone8a261e2016-07-20 13:31:49 +0100426 i915_gem_request_put(request);
Chris Wilson05235c52016-07-20 09:21:08 +0100427}
428
429void i915_gem_request_retire_upto(struct drm_i915_gem_request *req)
430{
431 struct intel_engine_cs *engine = req->engine;
432 struct drm_i915_gem_request *tmp;
433
434 lockdep_assert_held(&req->i915->drm.struct_mutex);
Chris Wilson4ffd6e02016-11-25 13:17:15 +0000435 GEM_BUG_ON(!i915_gem_request_completed(req));
436
Chris Wilsone95433c2016-10-28 13:58:27 +0100437 if (list_empty(&req->link))
438 return;
Chris Wilson05235c52016-07-20 09:21:08 +0100439
440 do {
Chris Wilson73cb9702016-10-28 13:58:46 +0100441 tmp = list_first_entry(&engine->timeline->requests,
Chris Wilsonefdf7c02016-08-04 07:52:33 +0100442 typeof(*tmp), link);
Chris Wilson05235c52016-07-20 09:21:08 +0100443
444 i915_gem_request_retire(tmp);
445 } while (tmp != req);
Chris Wilson05235c52016-07-20 09:21:08 +0100446}
447
Chris Wilson9b6586a2017-02-23 07:44:08 +0000448static u32 timeline_get_seqno(struct intel_timeline *tl)
Chris Wilson05235c52016-07-20 09:21:08 +0100449{
Chris Wilson9b6586a2017-02-23 07:44:08 +0000450 return ++tl->seqno;
Chris Wilson05235c52016-07-20 09:21:08 +0100451}
452
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000453void __i915_gem_request_submit(struct drm_i915_gem_request *request)
Chris Wilson5590af32016-09-09 14:11:54 +0100454{
Chris Wilson73cb9702016-10-28 13:58:46 +0100455 struct intel_engine_cs *engine = request->engine;
Chris Wilsonf2d13292016-10-28 13:58:57 +0100456 struct intel_timeline *timeline;
457 u32 seqno;
Chris Wilson5590af32016-09-09 14:11:54 +0100458
Chris Wilsone60a8702017-03-02 11:51:30 +0000459 GEM_BUG_ON(!irqs_disabled());
Chris Wilson67520412017-03-02 13:28:01 +0000460 lockdep_assert_held(&engine->timeline->lock);
Chris Wilsone60a8702017-03-02 11:51:30 +0000461
Chris Wilsonfe497892017-02-23 07:44:13 +0000462 trace_i915_gem_request_execute(request);
463
Chris Wilson80b204b2016-10-28 13:58:58 +0100464 /* Transfer from per-context onto the global per-engine timeline */
465 timeline = engine->timeline;
466 GEM_BUG_ON(timeline == request->timeline);
Chris Wilson5590af32016-09-09 14:11:54 +0100467
Chris Wilson9b6586a2017-02-23 07:44:08 +0000468 seqno = timeline_get_seqno(timeline);
Chris Wilsonf2d13292016-10-28 13:58:57 +0100469 GEM_BUG_ON(!seqno);
470 GEM_BUG_ON(i915_seqno_passed(intel_engine_get_seqno(engine), seqno));
471
Chris Wilsonf2d13292016-10-28 13:58:57 +0100472 /* We may be recursing from the signal callback of another i915 fence */
473 spin_lock_nested(&request->lock, SINGLE_DEPTH_NESTING);
474 request->global_seqno = seqno;
475 if (test_bit(DMA_FENCE_FLAG_ENABLE_SIGNAL_BIT, &request->fence.flags))
Chris Wilsonf7b02a52017-04-26 09:06:59 +0100476 intel_engine_enable_signaling(request, false);
Chris Wilsonf2d13292016-10-28 13:58:57 +0100477 spin_unlock(&request->lock);
478
Chris Wilsoncaddfe72016-10-28 13:58:52 +0100479 engine->emit_breadcrumb(request,
480 request->ring->vaddr + request->postfix);
Chris Wilson5590af32016-09-09 14:11:54 +0100481
Chris Wilsonbb894852016-11-14 20:40:57 +0000482 spin_lock(&request->timeline->lock);
Chris Wilson80b204b2016-10-28 13:58:58 +0100483 list_move_tail(&request->link, &timeline->requests);
484 spin_unlock(&request->timeline->lock);
485
Chris Wilsonfe497892017-02-23 07:44:13 +0000486 wake_up_all(&request->execute);
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000487}
Chris Wilson23902e42016-11-14 20:40:58 +0000488
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000489void i915_gem_request_submit(struct drm_i915_gem_request *request)
490{
491 struct intel_engine_cs *engine = request->engine;
492 unsigned long flags;
493
494 /* Will be called from irq-context when using foreign fences. */
495 spin_lock_irqsave(&engine->timeline->lock, flags);
496
497 __i915_gem_request_submit(request);
498
499 spin_unlock_irqrestore(&engine->timeline->lock, flags);
500}
501
Chris Wilsond6a22892017-02-23 07:44:17 +0000502void __i915_gem_request_unsubmit(struct drm_i915_gem_request *request)
503{
504 struct intel_engine_cs *engine = request->engine;
505 struct intel_timeline *timeline;
506
Chris Wilsone60a8702017-03-02 11:51:30 +0000507 GEM_BUG_ON(!irqs_disabled());
Chris Wilson67520412017-03-02 13:28:01 +0000508 lockdep_assert_held(&engine->timeline->lock);
Chris Wilsond6a22892017-02-23 07:44:17 +0000509
510 /* Only unwind in reverse order, required so that the per-context list
511 * is kept in seqno/ring order.
512 */
513 GEM_BUG_ON(request->global_seqno != engine->timeline->seqno);
514 engine->timeline->seqno--;
515
516 /* We may be recursing from the signal callback of another i915 fence */
517 spin_lock_nested(&request->lock, SINGLE_DEPTH_NESTING);
518 request->global_seqno = 0;
519 if (test_bit(DMA_FENCE_FLAG_ENABLE_SIGNAL_BIT, &request->fence.flags))
520 intel_engine_cancel_signaling(request);
521 spin_unlock(&request->lock);
522
523 /* Transfer back from the global per-engine timeline to per-context */
524 timeline = request->timeline;
525 GEM_BUG_ON(timeline == engine->timeline);
526
527 spin_lock(&timeline->lock);
528 list_move(&request->link, &timeline->requests);
529 spin_unlock(&timeline->lock);
530
531 /* We don't need to wake_up any waiters on request->execute, they
532 * will get woken by any other event or us re-adding this request
533 * to the engine timeline (__i915_gem_request_submit()). The waiters
534 * should be quite adapt at finding that the request now has a new
535 * global_seqno to the one they went to sleep on.
536 */
537}
538
539void i915_gem_request_unsubmit(struct drm_i915_gem_request *request)
540{
541 struct intel_engine_cs *engine = request->engine;
542 unsigned long flags;
543
544 /* Will be called from irq-context when using foreign fences. */
545 spin_lock_irqsave(&engine->timeline->lock, flags);
546
547 __i915_gem_request_unsubmit(request);
548
549 spin_unlock_irqrestore(&engine->timeline->lock, flags);
550}
551
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000552static int __i915_sw_fence_call
553submit_notify(struct i915_sw_fence *fence, enum i915_sw_fence_notify state)
554{
Chris Wilson48bc2a42016-11-25 13:17:17 +0000555 struct drm_i915_gem_request *request =
556 container_of(fence, typeof(*request), submit);
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000557
Chris Wilson48bc2a42016-11-25 13:17:17 +0000558 switch (state) {
559 case FENCE_COMPLETE:
Tvrtko Ursulin354d0362017-02-21 11:01:42 +0000560 trace_i915_gem_request_submit(request);
Daniel Vetteraf7a8ff2017-10-11 11:10:19 +0200561 /*
562 * We need to serialize use of the submit_request() callback with its
563 * hotplugging performed during an emergency i915_gem_set_wedged().
564 * We use the RCU mechanism to mark the critical section in order to
565 * force i915_gem_set_wedged() to wait until the submit_request() is
566 * completed before proceeding.
567 */
568 rcu_read_lock();
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000569 request->engine->submit_request(request);
Daniel Vetteraf7a8ff2017-10-11 11:10:19 +0200570 rcu_read_unlock();
Chris Wilson48bc2a42016-11-25 13:17:17 +0000571 break;
572
573 case FENCE_FREE:
574 i915_gem_request_put(request);
575 break;
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000576 }
Chris Wilson80b204b2016-10-28 13:58:58 +0100577
Chris Wilson5590af32016-09-09 14:11:54 +0100578 return NOTIFY_DONE;
579}
580
Chris Wilson8e637172016-08-02 22:50:26 +0100581/**
582 * i915_gem_request_alloc - allocate a request structure
583 *
584 * @engine: engine that we wish to issue the request on.
585 * @ctx: context that the request will be associated with.
Chris Wilson8e637172016-08-02 22:50:26 +0100586 *
587 * Returns a pointer to the allocated request if successful,
588 * or an error code if not.
589 */
590struct drm_i915_gem_request *
591i915_gem_request_alloc(struct intel_engine_cs *engine,
592 struct i915_gem_context *ctx)
Chris Wilson05235c52016-07-20 09:21:08 +0100593{
594 struct drm_i915_private *dev_priv = engine->i915;
Chris Wilson05235c52016-07-20 09:21:08 +0100595 struct drm_i915_gem_request *req;
Chris Wilson266a2402017-05-04 10:33:08 +0100596 struct intel_ring *ring;
Chris Wilson05235c52016-07-20 09:21:08 +0100597 int ret;
598
Chris Wilson28176ef2016-10-28 13:58:56 +0100599 lockdep_assert_held(&dev_priv->drm.struct_mutex);
600
Chris Wilsone7af3112017-10-03 21:34:48 +0100601 /*
602 * Preempt contexts are reserved for exclusive use to inject a
603 * preemption context switch. They are never to be used for any trivial
604 * request!
605 */
606 GEM_BUG_ON(ctx == dev_priv->preempt_context);
607
Chris Wilson05235c52016-07-20 09:21:08 +0100608 /* ABI: Before userspace accesses the GPU (e.g. execbuffer), report
Chris Wilson6ffb7d02017-01-14 16:23:33 +0000609 * EIO if the GPU is already wedged.
Chris Wilson05235c52016-07-20 09:21:08 +0100610 */
Chris Wilson6ffb7d02017-01-14 16:23:33 +0000611 if (i915_terminally_wedged(&dev_priv->gpu_error))
612 return ERR_PTR(-EIO);
Chris Wilson05235c52016-07-20 09:21:08 +0100613
Chris Wilsone8a9c582016-12-18 15:37:20 +0000614 /* Pinning the contexts may generate requests in order to acquire
615 * GGTT space, so do this first before we reserve a seqno for
616 * ourselves.
617 */
Chris Wilson266a2402017-05-04 10:33:08 +0100618 ring = engine->context_pin(engine, ctx);
619 if (IS_ERR(ring))
620 return ERR_CAST(ring);
621 GEM_BUG_ON(!ring);
Chris Wilson28176ef2016-10-28 13:58:56 +0100622
Chris Wilson636918f2017-08-17 15:47:19 +0100623 ret = reserve_engine(engine);
Chris Wilsone8a9c582016-12-18 15:37:20 +0000624 if (ret)
625 goto err_unpin;
626
Chris Wilson9b5f4e52016-07-20 09:21:09 +0100627 /* Move the oldest request to the slab-cache (if not in use!) */
Chris Wilson73cb9702016-10-28 13:58:46 +0100628 req = list_first_entry_or_null(&engine->timeline->requests,
Chris Wilsonefdf7c02016-08-04 07:52:33 +0100629 typeof(*req), link);
Chris Wilson754c9fd2017-02-23 07:44:14 +0000630 if (req && i915_gem_request_completed(req))
Chris Wilson2a1d7752016-07-26 12:01:51 +0100631 i915_gem_request_retire(req);
Chris Wilson9b5f4e52016-07-20 09:21:09 +0100632
Chris Wilson5a198b82016-08-09 09:23:34 +0100633 /* Beware: Dragons be flying overhead.
634 *
635 * We use RCU to look up requests in flight. The lookups may
636 * race with the request being allocated from the slab freelist.
637 * That is the request we are writing to here, may be in the process
Chris Wilson1426f712016-08-09 17:03:22 +0100638 * of being read by __i915_gem_active_get_rcu(). As such,
Chris Wilson5a198b82016-08-09 09:23:34 +0100639 * we have to be very careful when overwriting the contents. During
640 * the RCU lookup, we change chase the request->engine pointer,
Chris Wilson65e47602016-10-28 13:58:49 +0100641 * read the request->global_seqno and increment the reference count.
Chris Wilson5a198b82016-08-09 09:23:34 +0100642 *
643 * The reference count is incremented atomically. If it is zero,
644 * the lookup knows the request is unallocated and complete. Otherwise,
645 * it is either still in use, or has been reallocated and reset
Chris Wilsonf54d1862016-10-25 13:00:45 +0100646 * with dma_fence_init(). This increment is safe for release as we
647 * check that the request we have a reference to and matches the active
Chris Wilson5a198b82016-08-09 09:23:34 +0100648 * request.
649 *
650 * Before we increment the refcount, we chase the request->engine
651 * pointer. We must not call kmem_cache_zalloc() or else we set
652 * that pointer to NULL and cause a crash during the lookup. If
653 * we see the request is completed (based on the value of the
654 * old engine and seqno), the lookup is complete and reports NULL.
655 * If we decide the request is not completed (new engine or seqno),
656 * then we grab a reference and double check that it is still the
657 * active request - which it won't be and restart the lookup.
658 *
659 * Do not use kmem_cache_zalloc() here!
660 */
661 req = kmem_cache_alloc(dev_priv->requests, GFP_KERNEL);
Chris Wilson28176ef2016-10-28 13:58:56 +0100662 if (!req) {
663 ret = -ENOMEM;
664 goto err_unreserve;
665 }
Chris Wilson05235c52016-07-20 09:21:08 +0100666
Chris Wilson80b204b2016-10-28 13:58:58 +0100667 req->timeline = i915_gem_context_lookup_timeline(ctx, engine);
668 GEM_BUG_ON(req->timeline == engine->timeline);
Chris Wilson73cb9702016-10-28 13:58:46 +0100669
Chris Wilson04769652016-07-20 09:21:11 +0100670 spin_lock_init(&req->lock);
Chris Wilsonf54d1862016-10-25 13:00:45 +0100671 dma_fence_init(&req->fence,
672 &i915_fence_ops,
673 &req->lock,
Chris Wilson73cb9702016-10-28 13:58:46 +0100674 req->timeline->fence_context,
Chris Wilson9b6586a2017-02-23 07:44:08 +0000675 timeline_get_seqno(req->timeline));
Chris Wilson04769652016-07-20 09:21:11 +0100676
Chris Wilson48bc2a42016-11-25 13:17:17 +0000677 /* We bump the ref for the fence chain */
678 i915_sw_fence_init(&i915_gem_request_get(req)->submit, submit_notify);
Chris Wilsonfe497892017-02-23 07:44:13 +0000679 init_waitqueue_head(&req->execute);
Chris Wilson5590af32016-09-09 14:11:54 +0100680
Chris Wilson52e54202016-11-14 20:41:02 +0000681 i915_priotree_init(&req->priotree);
682
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100683 INIT_LIST_HEAD(&req->active_list);
Chris Wilson05235c52016-07-20 09:21:08 +0100684 req->i915 = dev_priv;
685 req->engine = engine;
Chris Wilsone8a9c582016-12-18 15:37:20 +0000686 req->ctx = ctx;
Chris Wilson266a2402017-05-04 10:33:08 +0100687 req->ring = ring;
Chris Wilson05235c52016-07-20 09:21:08 +0100688
Chris Wilson5a198b82016-08-09 09:23:34 +0100689 /* No zalloc, must clear what we need by hand */
Chris Wilsonf2d13292016-10-28 13:58:57 +0100690 req->global_seqno = 0;
Chris Wilson5a198b82016-08-09 09:23:34 +0100691 req->file_priv = NULL;
Chris Wilson058d88c2016-08-15 10:49:06 +0100692 req->batch = NULL;
Chris Wilsonb0fd47a2017-04-15 10:39:02 +0100693 req->capture_list = NULL;
Chris Wilson7b92c1b2017-06-28 13:35:48 +0100694 req->waitboost = false;
Chris Wilson5a198b82016-08-09 09:23:34 +0100695
Chris Wilson05235c52016-07-20 09:21:08 +0100696 /*
697 * Reserve space in the ring buffer for all the commands required to
698 * eventually emit this request. This is to guarantee that the
699 * i915_add_request() call can't fail. Note that the reserve may need
700 * to be redone if the request is not actually submitted straight
701 * away, e.g. because a GPU scheduler has deferred it.
702 */
703 req->reserved_space = MIN_SPACE_FOR_ADD_REQUEST;
Chris Wilson98f29e82016-10-28 13:58:51 +0100704 GEM_BUG_ON(req->reserved_space < engine->emit_breadcrumb_sz);
Chris Wilson05235c52016-07-20 09:21:08 +0100705
Chris Wilsonf73e7392016-12-18 15:37:24 +0000706 ret = engine->request_alloc(req);
Chris Wilson05235c52016-07-20 09:21:08 +0100707 if (ret)
708 goto err_ctx;
709
Chris Wilsond0454462016-08-15 10:48:40 +0100710 /* Record the position of the start of the request so that
711 * should we detect the updated seqno part-way through the
712 * GPU processing the request, we never over-estimate the
713 * position of the head.
714 */
Chris Wilsone6ba9992017-04-25 14:00:49 +0100715 req->head = req->ring->emit;
Chris Wilsond0454462016-08-15 10:48:40 +0100716
Chris Wilson9b6586a2017-02-23 07:44:08 +0000717 /* Check that we didn't interrupt ourselves with a new request */
718 GEM_BUG_ON(req->timeline->seqno != req->fence.seqno);
Chris Wilson8e637172016-08-02 22:50:26 +0100719 return req;
Chris Wilson05235c52016-07-20 09:21:08 +0100720
721err_ctx:
Chris Wilson1618bdb2016-11-25 13:17:16 +0000722 /* Make sure we didn't add ourselves to external state before freeing */
723 GEM_BUG_ON(!list_empty(&req->active_list));
724 GEM_BUG_ON(!list_empty(&req->priotree.signalers_list));
725 GEM_BUG_ON(!list_empty(&req->priotree.waiters_list));
726
Chris Wilson05235c52016-07-20 09:21:08 +0100727 kmem_cache_free(dev_priv->requests, req);
Chris Wilson28176ef2016-10-28 13:58:56 +0100728err_unreserve:
Chris Wilson636918f2017-08-17 15:47:19 +0100729 unreserve_engine(engine);
Chris Wilsone8a9c582016-12-18 15:37:20 +0000730err_unpin:
731 engine->context_unpin(engine, ctx);
Chris Wilson8e637172016-08-02 22:50:26 +0100732 return ERR_PTR(ret);
Chris Wilson05235c52016-07-20 09:21:08 +0100733}
734
Chris Wilsona2bc4692016-09-09 14:11:56 +0100735static int
736i915_gem_request_await_request(struct drm_i915_gem_request *to,
737 struct drm_i915_gem_request *from)
738{
Chris Wilson85e17f52016-10-28 13:58:53 +0100739 int ret;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100740
741 GEM_BUG_ON(to == from);
Chris Wilsonceae14b2017-05-03 10:39:20 +0100742 GEM_BUG_ON(to->timeline == from->timeline);
Chris Wilsona2bc4692016-09-09 14:11:56 +0100743
Chris Wilsonade0b0c2017-04-22 09:15:37 +0100744 if (i915_gem_request_completed(from))
745 return 0;
746
Chris Wilson52e54202016-11-14 20:41:02 +0000747 if (to->engine->schedule) {
748 ret = i915_priotree_add_dependency(to->i915,
749 &to->priotree,
750 &from->priotree);
751 if (ret < 0)
752 return ret;
753 }
754
Chris Wilson73cb9702016-10-28 13:58:46 +0100755 if (to->engine == from->engine) {
756 ret = i915_sw_fence_await_sw_fence_gfp(&to->submit,
757 &from->submit,
758 GFP_KERNEL);
759 return ret < 0 ? ret : 0;
760 }
761
Chris Wilson6b567082017-06-08 12:14:05 +0100762 if (to->engine->semaphore.sync_to) {
763 u32 seqno;
Chris Wilson65e47602016-10-28 13:58:49 +0100764
Chris Wilson49f08592017-05-03 10:39:24 +0100765 GEM_BUG_ON(!from->engine->semaphore.signal);
766
Chris Wilson6b567082017-06-08 12:14:05 +0100767 seqno = i915_gem_request_global_seqno(from);
768 if (!seqno)
769 goto await_dma_fence;
770
Chris Wilsonfc9d4d22017-05-03 10:39:23 +0100771 if (seqno <= to->timeline->global_sync[from->engine->id])
772 return 0;
773
774 trace_i915_gem_ring_sync_to(to, from);
Chris Wilsona2bc4692016-09-09 14:11:56 +0100775 ret = to->engine->semaphore.sync_to(to, from);
776 if (ret)
777 return ret;
Chris Wilsonfc9d4d22017-05-03 10:39:23 +0100778
779 to->timeline->global_sync[from->engine->id] = seqno;
Chris Wilson6b567082017-06-08 12:14:05 +0100780 return 0;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100781 }
782
Chris Wilsonfc9d4d22017-05-03 10:39:23 +0100783await_dma_fence:
784 ret = i915_sw_fence_await_dma_fence(&to->submit,
785 &from->fence, 0,
786 GFP_KERNEL);
787 return ret < 0 ? ret : 0;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100788}
789
Chris Wilsonb52992c2016-10-28 13:58:24 +0100790int
791i915_gem_request_await_dma_fence(struct drm_i915_gem_request *req,
792 struct dma_fence *fence)
793{
Chris Wilson29ef3fa2017-05-03 10:39:19 +0100794 struct dma_fence **child = &fence;
795 unsigned int nchild = 1;
Chris Wilsonb52992c2016-10-28 13:58:24 +0100796 int ret;
Chris Wilsonb52992c2016-10-28 13:58:24 +0100797
798 /* Note that if the fence-array was created in signal-on-any mode,
799 * we should *not* decompose it into its individual fences. However,
800 * we don't currently store which mode the fence-array is operating
801 * in. Fortunately, the only user of signal-on-any is private to
802 * amdgpu and we should not see any incoming fence-array from
803 * sync-file being in signal-on-any mode.
804 */
Chris Wilson29ef3fa2017-05-03 10:39:19 +0100805 if (dma_fence_is_array(fence)) {
806 struct dma_fence_array *array = to_dma_fence_array(fence);
Chris Wilsonb52992c2016-10-28 13:58:24 +0100807
Chris Wilson29ef3fa2017-05-03 10:39:19 +0100808 child = array->fences;
809 nchild = array->num_fences;
810 GEM_BUG_ON(!nchild);
811 }
Chris Wilsonb52992c2016-10-28 13:58:24 +0100812
Chris Wilson29ef3fa2017-05-03 10:39:19 +0100813 do {
814 fence = *child++;
815 if (test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &fence->flags))
816 continue;
817
Chris Wilsonceae14b2017-05-03 10:39:20 +0100818 /*
819 * Requests on the same timeline are explicitly ordered, along
820 * with their dependencies, by i915_add_request() which ensures
821 * that requests are submitted in-order through each ring.
822 */
823 if (fence->context == req->fence.context)
824 continue;
825
Chris Wilson47979482017-05-03 10:39:21 +0100826 /* Squash repeated waits to the same timelines */
827 if (fence->context != req->i915->mm.unordered_timeline &&
828 intel_timeline_sync_is_later(req->timeline, fence))
829 continue;
830
Chris Wilson29ef3fa2017-05-03 10:39:19 +0100831 if (dma_fence_is_i915(fence))
Chris Wilsonb52992c2016-10-28 13:58:24 +0100832 ret = i915_gem_request_await_request(req,
Chris Wilson29ef3fa2017-05-03 10:39:19 +0100833 to_request(fence));
Chris Wilsonb52992c2016-10-28 13:58:24 +0100834 else
Chris Wilson29ef3fa2017-05-03 10:39:19 +0100835 ret = i915_sw_fence_await_dma_fence(&req->submit, fence,
836 I915_FENCE_TIMEOUT,
Chris Wilsonb52992c2016-10-28 13:58:24 +0100837 GFP_KERNEL);
838 if (ret < 0)
839 return ret;
Chris Wilson47979482017-05-03 10:39:21 +0100840
841 /* Record the latest fence used against each timeline */
842 if (fence->context != req->i915->mm.unordered_timeline)
843 intel_timeline_sync_set(req->timeline, fence);
Chris Wilson29ef3fa2017-05-03 10:39:19 +0100844 } while (--nchild);
Chris Wilsonb52992c2016-10-28 13:58:24 +0100845
846 return 0;
847}
848
Chris Wilsona2bc4692016-09-09 14:11:56 +0100849/**
850 * i915_gem_request_await_object - set this request to (async) wait upon a bo
851 *
852 * @to: request we are wishing to use
853 * @obj: object which may be in use on another ring.
854 *
855 * This code is meant to abstract object synchronization with the GPU.
856 * Conceptually we serialise writes between engines inside the GPU.
857 * We only allow one engine to write into a buffer at any time, but
858 * multiple readers. To ensure each has a coherent view of memory, we must:
859 *
860 * - If there is an outstanding write request to the object, the new
861 * request must wait for it to complete (either CPU or in hw, requests
862 * on the same ring will be naturally ordered).
863 *
864 * - If we are a write request (pending_write_domain is set), the new
865 * request must wait for outstanding read requests to complete.
866 *
867 * Returns 0 if successful, else propagates up the lower layer error.
868 */
869int
870i915_gem_request_await_object(struct drm_i915_gem_request *to,
871 struct drm_i915_gem_object *obj,
872 bool write)
873{
Chris Wilsond07f0e52016-10-28 13:58:44 +0100874 struct dma_fence *excl;
875 int ret = 0;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100876
877 if (write) {
Chris Wilsond07f0e52016-10-28 13:58:44 +0100878 struct dma_fence **shared;
879 unsigned int count, i;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100880
Chris Wilsond07f0e52016-10-28 13:58:44 +0100881 ret = reservation_object_get_fences_rcu(obj->resv,
882 &excl, &count, &shared);
Chris Wilsona2bc4692016-09-09 14:11:56 +0100883 if (ret)
884 return ret;
Chris Wilsond07f0e52016-10-28 13:58:44 +0100885
886 for (i = 0; i < count; i++) {
887 ret = i915_gem_request_await_dma_fence(to, shared[i]);
888 if (ret)
889 break;
890
891 dma_fence_put(shared[i]);
892 }
893
894 for (; i < count; i++)
895 dma_fence_put(shared[i]);
896 kfree(shared);
897 } else {
898 excl = reservation_object_get_excl_rcu(obj->resv);
Chris Wilsona2bc4692016-09-09 14:11:56 +0100899 }
900
Chris Wilsond07f0e52016-10-28 13:58:44 +0100901 if (excl) {
902 if (ret == 0)
903 ret = i915_gem_request_await_dma_fence(to, excl);
904
905 dma_fence_put(excl);
906 }
907
908 return ret;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100909}
910
Chris Wilson05235c52016-07-20 09:21:08 +0100911/*
912 * NB: This function is not allowed to fail. Doing so would mean the the
913 * request is not being tracked for completion but the work itself is
914 * going to happen on the hardware. This would be a Bad Thing(tm).
915 */
Chris Wilson17f298cf2016-08-10 13:41:46 +0100916void __i915_add_request(struct drm_i915_gem_request *request, bool flush_caches)
Chris Wilson05235c52016-07-20 09:21:08 +0100917{
Chris Wilson95b2ab52016-08-15 10:48:46 +0100918 struct intel_engine_cs *engine = request->engine;
919 struct intel_ring *ring = request->ring;
Chris Wilson73cb9702016-10-28 13:58:46 +0100920 struct intel_timeline *timeline = request->timeline;
Chris Wilson0a046a02016-09-09 14:12:00 +0100921 struct drm_i915_gem_request *prev;
Tvrtko Ursulin73dec952017-02-14 11:32:42 +0000922 u32 *cs;
Chris Wilsoncaddfe72016-10-28 13:58:52 +0100923 int err;
Chris Wilson05235c52016-07-20 09:21:08 +0100924
Chris Wilson4c7d62c2016-10-28 13:58:32 +0100925 lockdep_assert_held(&request->i915->drm.struct_mutex);
Chris Wilson0f25dff2016-09-09 14:11:55 +0100926 trace_i915_gem_request_add(request);
927
Chris Wilsonc781c972017-01-11 14:08:58 +0000928 /* Make sure that no request gazumped us - if it was allocated after
929 * our i915_gem_request_alloc() and called __i915_add_request() before
930 * us, the timeline will hold its seqno which is later than ours.
931 */
Chris Wilson9b6586a2017-02-23 07:44:08 +0000932 GEM_BUG_ON(timeline->seqno != request->fence.seqno);
Chris Wilsonc781c972017-01-11 14:08:58 +0000933
Chris Wilson05235c52016-07-20 09:21:08 +0100934 /*
935 * To ensure that this call will not fail, space for its emissions
936 * should already have been reserved in the ring buffer. Let the ring
937 * know that it is time to use that space up.
938 */
Chris Wilson05235c52016-07-20 09:21:08 +0100939 request->reserved_space = 0;
940
941 /*
942 * Emit any outstanding flushes - execbuf can fail to emit the flush
943 * after having emitted the batchbuffer command. Hence we need to fix
944 * things up similar to emitting the lazy request. The difference here
945 * is that the flush _must_ happen before the next request, no matter
946 * what.
947 */
948 if (flush_caches) {
Chris Wilsoncaddfe72016-10-28 13:58:52 +0100949 err = engine->emit_flush(request, EMIT_FLUSH);
Chris Wilsonc7fe7d22016-08-02 22:50:24 +0100950
Chris Wilson05235c52016-07-20 09:21:08 +0100951 /* Not allowed to fail! */
Chris Wilsoncaddfe72016-10-28 13:58:52 +0100952 WARN(err, "engine->emit_flush() failed: %d!\n", err);
Chris Wilson05235c52016-07-20 09:21:08 +0100953 }
954
Chris Wilsond0454462016-08-15 10:48:40 +0100955 /* Record the position of the start of the breadcrumb so that
Chris Wilson05235c52016-07-20 09:21:08 +0100956 * should we detect the updated seqno part-way through the
957 * GPU processing the request, we never over-estimate the
Chris Wilsond0454462016-08-15 10:48:40 +0100958 * position of the ring's HEAD.
Chris Wilson05235c52016-07-20 09:21:08 +0100959 */
Tvrtko Ursulin73dec952017-02-14 11:32:42 +0000960 cs = intel_ring_begin(request, engine->emit_breadcrumb_sz);
961 GEM_BUG_ON(IS_ERR(cs));
962 request->postfix = intel_ring_offset(request, cs);
Chris Wilson05235c52016-07-20 09:21:08 +0100963
Chris Wilson0f25dff2016-09-09 14:11:55 +0100964 /* Seal the request and mark it as pending execution. Note that
965 * we may inspect this state, without holding any locks, during
966 * hangcheck. Hence we apply the barrier to ensure that we do not
967 * see a more recent value in the hws than we are tracking.
968 */
Chris Wilson0a046a02016-09-09 14:12:00 +0100969
Chris Wilson73cb9702016-10-28 13:58:46 +0100970 prev = i915_gem_active_raw(&timeline->last_request,
Chris Wilson0a046a02016-09-09 14:12:00 +0100971 &request->i915->drm.struct_mutex);
Chris Wilson52e54202016-11-14 20:41:02 +0000972 if (prev) {
Chris Wilson0a046a02016-09-09 14:12:00 +0100973 i915_sw_fence_await_sw_fence(&request->submit, &prev->submit,
974 &request->submitq);
Chris Wilson52e54202016-11-14 20:41:02 +0000975 if (engine->schedule)
976 __i915_priotree_add_dependency(&request->priotree,
977 &prev->priotree,
978 &request->dep,
979 0);
980 }
Chris Wilson0a046a02016-09-09 14:12:00 +0100981
Chris Wilson80b204b2016-10-28 13:58:58 +0100982 spin_lock_irq(&timeline->lock);
Chris Wilsonf2d13292016-10-28 13:58:57 +0100983 list_add_tail(&request->link, &timeline->requests);
Chris Wilson80b204b2016-10-28 13:58:58 +0100984 spin_unlock_irq(&timeline->lock);
Chris Wilson28176ef2016-10-28 13:58:56 +0100985
Chris Wilson9b6586a2017-02-23 07:44:08 +0000986 GEM_BUG_ON(timeline->seqno != request->fence.seqno);
Chris Wilson73cb9702016-10-28 13:58:46 +0100987 i915_gem_active_set(&timeline->last_request, request);
Chris Wilsonf2d13292016-10-28 13:58:57 +0100988
Chris Wilson0f25dff2016-09-09 14:11:55 +0100989 list_add_tail(&request->ring_link, &ring->request_list);
Chris Wilsonf2d13292016-10-28 13:58:57 +0100990 request->emitted_jiffies = jiffies;
Chris Wilson0f25dff2016-09-09 14:11:55 +0100991
Chris Wilson0de91362016-11-14 20:41:01 +0000992 /* Let the backend know a new request has arrived that may need
993 * to adjust the existing execution schedule due to a high priority
994 * request - i.e. we may want to preempt the current request in order
995 * to run a high priority dependency chain *before* we can execute this
996 * request.
997 *
998 * This is called before the request is ready to run so that we can
999 * decide whether to preempt the entire chain so that it is ready to
1000 * run at the earliest possible convenience.
1001 */
1002 if (engine->schedule)
Chris Wilson9f792eb2016-11-14 20:41:04 +00001003 engine->schedule(request, request->ctx->priority);
Chris Wilson0de91362016-11-14 20:41:01 +00001004
Chris Wilson5590af32016-09-09 14:11:54 +01001005 local_bh_disable();
1006 i915_sw_fence_commit(&request->submit);
1007 local_bh_enable(); /* Kick the execlists tasklet if just scheduled */
Chris Wilson05235c52016-07-20 09:21:08 +01001008}
1009
1010static unsigned long local_clock_us(unsigned int *cpu)
1011{
1012 unsigned long t;
1013
1014 /* Cheaply and approximately convert from nanoseconds to microseconds.
1015 * The result and subsequent calculations are also defined in the same
1016 * approximate microseconds units. The principal source of timing
1017 * error here is from the simple truncation.
1018 *
1019 * Note that local_clock() is only defined wrt to the current CPU;
1020 * the comparisons are no longer valid if we switch CPUs. Instead of
1021 * blocking preemption for the entire busywait, we can detect the CPU
1022 * switch and use that as indicator of system load and a reason to
1023 * stop busywaiting, see busywait_stop().
1024 */
1025 *cpu = get_cpu();
1026 t = local_clock() >> 10;
1027 put_cpu();
1028
1029 return t;
1030}
1031
1032static bool busywait_stop(unsigned long timeout, unsigned int cpu)
1033{
1034 unsigned int this_cpu;
1035
1036 if (time_after(local_clock_us(&this_cpu), timeout))
1037 return true;
1038
1039 return this_cpu != cpu;
1040}
1041
Chris Wilsonb2f2f0f2017-09-22 13:03:33 +01001042static bool __i915_spin_request(const struct drm_i915_gem_request *req,
1043 u32 seqno, int state, unsigned long timeout_us)
Chris Wilson05235c52016-07-20 09:21:08 +01001044{
Chris Wilsonc33ed062017-02-17 15:13:01 +00001045 struct intel_engine_cs *engine = req->engine;
1046 unsigned int irq, cpu;
Chris Wilson05235c52016-07-20 09:21:08 +01001047
Chris Wilsonb2f2f0f2017-09-22 13:03:33 +01001048 GEM_BUG_ON(!seqno);
1049
1050 /*
1051 * Only wait for the request if we know it is likely to complete.
1052 *
1053 * We don't track the timestamps around requests, nor the average
1054 * request length, so we do not have a good indicator that this
1055 * request will complete within the timeout. What we do know is the
1056 * order in which requests are executed by the engine and so we can
1057 * tell if the request has started. If the request hasn't started yet,
1058 * it is a fair assumption that it will not complete within our
1059 * relatively short timeout.
1060 */
1061 if (!i915_seqno_passed(intel_engine_get_seqno(engine), seqno - 1))
1062 return false;
1063
Chris Wilson05235c52016-07-20 09:21:08 +01001064 /* When waiting for high frequency requests, e.g. during synchronous
1065 * rendering split between the CPU and GPU, the finite amount of time
1066 * required to set up the irq and wait upon it limits the response
1067 * rate. By busywaiting on the request completion for a short while we
1068 * can service the high frequency waits as quick as possible. However,
1069 * if it is a slow request, we want to sleep as quickly as possible.
1070 * The tradeoff between waiting and sleeping is roughly the time it
1071 * takes to sleep on a request, on the order of a microsecond.
1072 */
1073
Chris Wilsonc33ed062017-02-17 15:13:01 +00001074 irq = atomic_read(&engine->irq_count);
Chris Wilson05235c52016-07-20 09:21:08 +01001075 timeout_us += local_clock_us(&cpu);
1076 do {
Chris Wilsonb2f2f0f2017-09-22 13:03:33 +01001077 if (i915_seqno_passed(intel_engine_get_seqno(engine), seqno))
Chris Wilsona3df2c82017-09-21 22:09:03 +01001078 return seqno == i915_gem_request_global_seqno(req);
Chris Wilson05235c52016-07-20 09:21:08 +01001079
Chris Wilsonc33ed062017-02-17 15:13:01 +00001080 /* Seqno are meant to be ordered *before* the interrupt. If
1081 * we see an interrupt without a corresponding seqno advance,
1082 * assume we won't see one in the near future but require
1083 * the engine->seqno_barrier() to fixup coherency.
1084 */
1085 if (atomic_read(&engine->irq_count) != irq)
1086 break;
1087
Chris Wilson05235c52016-07-20 09:21:08 +01001088 if (signal_pending_state(state, current))
1089 break;
1090
1091 if (busywait_stop(timeout_us, cpu))
1092 break;
1093
Christian Borntraegerf2f09a42016-10-25 11:03:14 +02001094 cpu_relax();
Chris Wilson05235c52016-07-20 09:21:08 +01001095 } while (!need_resched());
1096
1097 return false;
1098}
1099
Chris Wilsone0705112017-02-23 07:44:20 +00001100static bool __i915_wait_request_check_and_reset(struct drm_i915_gem_request *request)
Chris Wilson4680816b2016-10-28 13:58:48 +01001101{
Chris Wilson8c185ec2017-03-16 17:13:02 +00001102 if (likely(!i915_reset_handoff(&request->i915->gpu_error)))
Chris Wilsone0705112017-02-23 07:44:20 +00001103 return false;
Chris Wilson4680816b2016-10-28 13:58:48 +01001104
Chris Wilsone0705112017-02-23 07:44:20 +00001105 __set_current_state(TASK_RUNNING);
Chris Wilson535275d2017-07-21 13:32:37 +01001106 i915_reset(request->i915, 0);
Chris Wilsone0705112017-02-23 07:44:20 +00001107 return true;
Chris Wilson4680816b2016-10-28 13:58:48 +01001108}
1109
Chris Wilson05235c52016-07-20 09:21:08 +01001110/**
Chris Wilson776f3232016-08-04 07:52:40 +01001111 * i915_wait_request - wait until execution of request has finished
Chris Wilsone95433c2016-10-28 13:58:27 +01001112 * @req: the request to wait upon
Chris Wilsonea746f32016-09-09 14:11:49 +01001113 * @flags: how to wait
Chris Wilsone95433c2016-10-28 13:58:27 +01001114 * @timeout: how long to wait in jiffies
Chris Wilson05235c52016-07-20 09:21:08 +01001115 *
Chris Wilsone95433c2016-10-28 13:58:27 +01001116 * i915_wait_request() waits for the request to be completed, for a
1117 * maximum of @timeout jiffies (with MAX_SCHEDULE_TIMEOUT implying an
1118 * unbounded wait).
Chris Wilson05235c52016-07-20 09:21:08 +01001119 *
Chris Wilsone95433c2016-10-28 13:58:27 +01001120 * If the caller holds the struct_mutex, the caller must pass I915_WAIT_LOCKED
1121 * in via the flags, and vice versa if the struct_mutex is not held, the caller
1122 * must not specify that the wait is locked.
1123 *
1124 * Returns the remaining time (in jiffies) if the request completed, which may
1125 * be zero or -ETIME if the request is unfinished after the timeout expires.
1126 * May return -EINTR is called with I915_WAIT_INTERRUPTIBLE and a signal is
1127 * pending before the request completes.
Chris Wilson05235c52016-07-20 09:21:08 +01001128 */
Chris Wilsone95433c2016-10-28 13:58:27 +01001129long i915_wait_request(struct drm_i915_gem_request *req,
1130 unsigned int flags,
1131 long timeout)
Chris Wilson05235c52016-07-20 09:21:08 +01001132{
Chris Wilsonea746f32016-09-09 14:11:49 +01001133 const int state = flags & I915_WAIT_INTERRUPTIBLE ?
1134 TASK_INTERRUPTIBLE : TASK_UNINTERRUPTIBLE;
Chris Wilson4b36b2e2017-02-23 07:44:10 +00001135 wait_queue_head_t *errq = &req->i915->gpu_error.wait_queue;
Chris Wilsona49625f2017-02-23 07:44:19 +00001136 DEFINE_WAIT_FUNC(reset, default_wake_function);
1137 DEFINE_WAIT_FUNC(exec, default_wake_function);
Chris Wilson05235c52016-07-20 09:21:08 +01001138 struct intel_wait wait;
Chris Wilson05235c52016-07-20 09:21:08 +01001139
1140 might_sleep();
Chris Wilson22dd3bb2016-09-09 14:11:50 +01001141#if IS_ENABLED(CONFIG_LOCKDEP)
Chris Wilsone95433c2016-10-28 13:58:27 +01001142 GEM_BUG_ON(debug_locks &&
1143 !!lockdep_is_held(&req->i915->drm.struct_mutex) !=
Chris Wilson22dd3bb2016-09-09 14:11:50 +01001144 !!(flags & I915_WAIT_LOCKED));
1145#endif
Chris Wilsone95433c2016-10-28 13:58:27 +01001146 GEM_BUG_ON(timeout < 0);
Chris Wilson05235c52016-07-20 09:21:08 +01001147
Chris Wilson05235c52016-07-20 09:21:08 +01001148 if (i915_gem_request_completed(req))
Chris Wilsone95433c2016-10-28 13:58:27 +01001149 return timeout;
Chris Wilson05235c52016-07-20 09:21:08 +01001150
Chris Wilsone95433c2016-10-28 13:58:27 +01001151 if (!timeout)
1152 return -ETIME;
Chris Wilson05235c52016-07-20 09:21:08 +01001153
Tvrtko Ursulin936925022017-02-21 11:00:24 +00001154 trace_i915_gem_request_wait_begin(req, flags);
Chris Wilson05235c52016-07-20 09:21:08 +01001155
Chris Wilsona49625f2017-02-23 07:44:19 +00001156 add_wait_queue(&req->execute, &exec);
Chris Wilson7de53bf2017-02-23 07:44:11 +00001157 if (flags & I915_WAIT_LOCKED)
1158 add_wait_queue(errq, &reset);
1159
Chris Wilson56299fb2017-02-27 20:58:48 +00001160 intel_wait_init(&wait, req);
Chris Wilson754c9fd2017-02-23 07:44:14 +00001161
Chris Wilsond6a22892017-02-23 07:44:17 +00001162restart:
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001163 do {
1164 set_current_state(state);
1165 if (intel_wait_update_request(&wait, req))
1166 break;
Chris Wilson754c9fd2017-02-23 07:44:14 +00001167
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001168 if (flags & I915_WAIT_LOCKED &&
1169 __i915_wait_request_check_and_reset(req))
1170 continue;
Chris Wilson541ca6e2017-02-23 07:44:12 +00001171
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001172 if (signal_pending_state(state, current)) {
1173 timeout = -ERESTARTSYS;
Chris Wilson4680816b2016-10-28 13:58:48 +01001174 goto complete;
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001175 }
Chris Wilson4680816b2016-10-28 13:58:48 +01001176
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001177 if (!timeout) {
1178 timeout = -ETIME;
1179 goto complete;
1180 }
Chris Wilson541ca6e2017-02-23 07:44:12 +00001181
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001182 timeout = io_schedule_timeout(timeout);
1183 } while (1);
Chris Wilson541ca6e2017-02-23 07:44:12 +00001184
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001185 GEM_BUG_ON(!intel_wait_has_seqno(&wait));
Chris Wilsonfe497892017-02-23 07:44:13 +00001186 GEM_BUG_ON(!i915_sw_fence_signaled(&req->submit));
Chris Wilson4680816b2016-10-28 13:58:48 +01001187
Daniel Vetter437c3082016-08-05 18:11:24 +02001188 /* Optimistic short spin before touching IRQs */
Chris Wilsonb2f2f0f2017-09-22 13:03:33 +01001189 if (__i915_spin_request(req, wait.seqno, state, 5))
Chris Wilson05235c52016-07-20 09:21:08 +01001190 goto complete;
1191
1192 set_current_state(state);
Chris Wilson05235c52016-07-20 09:21:08 +01001193 if (intel_engine_add_wait(req->engine, &wait))
1194 /* In order to check that we haven't missed the interrupt
1195 * as we enabled it, we need to kick ourselves to do a
1196 * coherent check on the seqno before we sleep.
1197 */
1198 goto wakeup;
1199
Chris Wilson24f417e2017-02-23 07:44:21 +00001200 if (flags & I915_WAIT_LOCKED)
1201 __i915_wait_request_check_and_reset(req);
1202
Chris Wilson05235c52016-07-20 09:21:08 +01001203 for (;;) {
1204 if (signal_pending_state(state, current)) {
Chris Wilsone95433c2016-10-28 13:58:27 +01001205 timeout = -ERESTARTSYS;
Chris Wilson05235c52016-07-20 09:21:08 +01001206 break;
1207 }
1208
Chris Wilsone95433c2016-10-28 13:58:27 +01001209 if (!timeout) {
1210 timeout = -ETIME;
Chris Wilson05235c52016-07-20 09:21:08 +01001211 break;
1212 }
1213
Chris Wilsone95433c2016-10-28 13:58:27 +01001214 timeout = io_schedule_timeout(timeout);
1215
Chris Wilson754c9fd2017-02-23 07:44:14 +00001216 if (intel_wait_complete(&wait) &&
1217 intel_wait_check_request(&wait, req))
Chris Wilson05235c52016-07-20 09:21:08 +01001218 break;
1219
1220 set_current_state(state);
1221
1222wakeup:
1223 /* Carefully check if the request is complete, giving time
1224 * for the seqno to be visible following the interrupt.
1225 * We also have to check in case we are kicked by the GPU
1226 * reset in order to drop the struct_mutex.
1227 */
1228 if (__i915_request_irq_complete(req))
1229 break;
1230
Chris Wilson221fe792016-09-09 14:11:51 +01001231 /* If the GPU is hung, and we hold the lock, reset the GPU
1232 * and then check for completion. On a full reset, the engine's
1233 * HW seqno will be advanced passed us and we are complete.
1234 * If we do a partial reset, we have to wait for the GPU to
1235 * resume and update the breadcrumb.
1236 *
1237 * If we don't hold the mutex, we can just wait for the worker
1238 * to come along and update the breadcrumb (either directly
1239 * itself, or indirectly by recovering the GPU).
1240 */
1241 if (flags & I915_WAIT_LOCKED &&
Chris Wilsone0705112017-02-23 07:44:20 +00001242 __i915_wait_request_check_and_reset(req))
Chris Wilson221fe792016-09-09 14:11:51 +01001243 continue;
Chris Wilson221fe792016-09-09 14:11:51 +01001244
Chris Wilson05235c52016-07-20 09:21:08 +01001245 /* Only spin if we know the GPU is processing this request */
Chris Wilsonb2f2f0f2017-09-22 13:03:33 +01001246 if (__i915_spin_request(req, wait.seqno, state, 2))
Chris Wilson05235c52016-07-20 09:21:08 +01001247 break;
Chris Wilsond6a22892017-02-23 07:44:17 +00001248
1249 if (!intel_wait_check_request(&wait, req)) {
1250 intel_engine_remove_wait(req->engine, &wait);
1251 goto restart;
1252 }
Chris Wilson05235c52016-07-20 09:21:08 +01001253 }
Chris Wilson05235c52016-07-20 09:21:08 +01001254
1255 intel_engine_remove_wait(req->engine, &wait);
Chris Wilson05235c52016-07-20 09:21:08 +01001256complete:
Chris Wilsona49625f2017-02-23 07:44:19 +00001257 __set_current_state(TASK_RUNNING);
Chris Wilson7de53bf2017-02-23 07:44:11 +00001258 if (flags & I915_WAIT_LOCKED)
1259 remove_wait_queue(errq, &reset);
Chris Wilsona49625f2017-02-23 07:44:19 +00001260 remove_wait_queue(&req->execute, &exec);
Chris Wilson05235c52016-07-20 09:21:08 +01001261 trace_i915_gem_request_wait_end(req);
1262
Chris Wilsone95433c2016-10-28 13:58:27 +01001263 return timeout;
Chris Wilson05235c52016-07-20 09:21:08 +01001264}
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001265
Chris Wilson28176ef2016-10-28 13:58:56 +01001266static void engine_retire_requests(struct intel_engine_cs *engine)
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001267{
1268 struct drm_i915_gem_request *request, *next;
Chris Wilson754c9fd2017-02-23 07:44:14 +00001269 u32 seqno = intel_engine_get_seqno(engine);
1270 LIST_HEAD(retire);
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001271
Chris Wilson754c9fd2017-02-23 07:44:14 +00001272 spin_lock_irq(&engine->timeline->lock);
Chris Wilson73cb9702016-10-28 13:58:46 +01001273 list_for_each_entry_safe(request, next,
1274 &engine->timeline->requests, link) {
Chris Wilson754c9fd2017-02-23 07:44:14 +00001275 if (!i915_seqno_passed(seqno, request->global_seqno))
1276 break;
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001277
Chris Wilson754c9fd2017-02-23 07:44:14 +00001278 list_move_tail(&request->link, &retire);
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001279 }
Chris Wilson754c9fd2017-02-23 07:44:14 +00001280 spin_unlock_irq(&engine->timeline->lock);
1281
1282 list_for_each_entry_safe(request, next, &retire, link)
1283 i915_gem_request_retire(request);
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001284}
1285
1286void i915_gem_retire_requests(struct drm_i915_private *dev_priv)
1287{
1288 struct intel_engine_cs *engine;
Chris Wilson28176ef2016-10-28 13:58:56 +01001289 enum intel_engine_id id;
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001290
1291 lockdep_assert_held(&dev_priv->drm.struct_mutex);
1292
Chris Wilson28176ef2016-10-28 13:58:56 +01001293 if (!dev_priv->gt.active_requests)
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001294 return;
1295
Chris Wilson28176ef2016-10-28 13:58:56 +01001296 for_each_engine(engine, dev_priv, id)
1297 engine_retire_requests(engine);
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001298}
Chris Wilsonc835c552017-02-13 17:15:21 +00001299
1300#if IS_ENABLED(CONFIG_DRM_I915_SELFTEST)
1301#include "selftests/mock_request.c"
1302#include "selftests/i915_gem_request.c"
1303#endif