blob: 72bdc203716fb9b8b62a63c8f81fe8f05760f474 [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 Wilson83cc84c2018-01-02 15:12:25 +0000164 /*
165 * Everyone we depended upon (the fences we wait to be signaled)
Chris Wilson52e54202016-11-14 20:41:02 +0000166 * should retire before us and remove themselves from our list.
167 * However, retirement is run independently on each timeline and
168 * so we may be called out-of-order.
169 */
170 list_for_each_entry_safe(dep, next, &pt->signalers_list, signal_link) {
Chris Wilson83cc84c2018-01-02 15:12:25 +0000171 GEM_BUG_ON(!i915_priotree_signaled(dep->signaler));
172 GEM_BUG_ON(!list_empty(&dep->dfs_link));
173
Chris Wilson52e54202016-11-14 20:41:02 +0000174 list_del(&dep->wait_link);
175 if (dep->flags & I915_DEPENDENCY_ALLOC)
176 i915_dependency_free(i915, dep);
177 }
178
179 /* Remove ourselves from everyone who depends upon us */
180 list_for_each_entry_safe(dep, next, &pt->waiters_list, wait_link) {
Chris Wilson83cc84c2018-01-02 15:12:25 +0000181 GEM_BUG_ON(dep->signaler != pt);
182 GEM_BUG_ON(!list_empty(&dep->dfs_link));
183
Chris Wilson52e54202016-11-14 20:41:02 +0000184 list_del(&dep->signal_link);
185 if (dep->flags & I915_DEPENDENCY_ALLOC)
186 i915_dependency_free(i915, dep);
187 }
188}
189
190static void
191i915_priotree_init(struct i915_priotree *pt)
192{
193 INIT_LIST_HEAD(&pt->signalers_list);
194 INIT_LIST_HEAD(&pt->waiters_list);
Chris Wilson6c067572017-05-17 13:10:03 +0100195 INIT_LIST_HEAD(&pt->link);
Chris Wilson7d1ea602017-09-28 20:39:00 +0100196 pt->priority = I915_PRIORITY_INVALID;
Chris Wilson52e54202016-11-14 20:41:02 +0000197}
198
Chris Wilson12d31732017-02-23 07:44:09 +0000199static int reset_all_global_seqno(struct drm_i915_private *i915, u32 seqno)
200{
Chris Wilson12d31732017-02-23 07:44:09 +0000201 struct intel_engine_cs *engine;
202 enum intel_engine_id id;
203 int ret;
204
205 /* Carefully retire all requests without writing to the rings */
206 ret = i915_gem_wait_for_idle(i915,
207 I915_WAIT_INTERRUPTIBLE |
208 I915_WAIT_LOCKED);
209 if (ret)
210 return ret;
211
Chris Wilson12d31732017-02-23 07:44:09 +0000212 /* If the seqno wraps around, we need to clear the breadcrumb rbtree */
213 for_each_engine(engine, i915, id) {
Chris Wilsonae351be2017-03-30 15:50:41 +0100214 struct i915_gem_timeline *timeline;
215 struct intel_timeline *tl = engine->timeline;
Chris Wilson12d31732017-02-23 07:44:09 +0000216
217 if (!i915_seqno_passed(seqno, tl->seqno)) {
218 /* spin until threads are complete */
219 while (intel_breadcrumbs_busy(engine))
220 cond_resched();
221 }
222
Chris Wilson4d535682017-07-21 13:32:26 +0100223 /* Check we are idle before we fiddle with hw state! */
224 GEM_BUG_ON(!intel_engine_is_idle(engine));
225 GEM_BUG_ON(i915_gem_active_isset(&engine->timeline->last_request));
226
Chris Wilson12d31732017-02-23 07:44:09 +0000227 /* Finally reset hw state */
Chris Wilson12d31732017-02-23 07:44:09 +0000228 intel_engine_init_global_seqno(engine, seqno);
Chris Wilson2ca9faa2017-04-05 16:30:54 +0100229 tl->seqno = seqno;
Chris Wilson12d31732017-02-23 07:44:09 +0000230
Chris Wilsonae351be2017-03-30 15:50:41 +0100231 list_for_each_entry(timeline, &i915->gt.timelines, link)
Chris Wilson7e8894e2017-05-03 10:39:22 +0100232 memset(timeline->engine[id].global_sync, 0,
233 sizeof(timeline->engine[id].global_sync));
Chris Wilson12d31732017-02-23 07:44:09 +0000234 }
235
236 return 0;
237}
238
239int i915_gem_set_global_seqno(struct drm_device *dev, u32 seqno)
240{
241 struct drm_i915_private *dev_priv = to_i915(dev);
242
243 lockdep_assert_held(&dev_priv->drm.struct_mutex);
244
245 if (seqno == 0)
246 return -EINVAL;
247
248 /* HWS page needs to be set less than what we
249 * will inject to ring
250 */
251 return reset_all_global_seqno(dev_priv, seqno - 1);
252}
253
Chris Wilson636918f2017-08-17 15:47:19 +0100254static void mark_busy(struct drm_i915_private *i915)
Chris Wilson12d31732017-02-23 07:44:09 +0000255{
Chris Wilson636918f2017-08-17 15:47:19 +0100256 if (i915->gt.awake)
257 return;
258
259 GEM_BUG_ON(!i915->gt.active_requests);
260
261 intel_runtime_pm_get_noresume(i915);
Tvrtko Ursulinb6876372017-12-05 13:28:54 +0000262
263 /*
264 * It seems that the DMC likes to transition between the DC states a lot
265 * when there are no connected displays (no active power domains) during
266 * command submission.
267 *
268 * This activity has negative impact on the performance of the chip with
269 * huge latencies observed in the interrupt handler and elsewhere.
270 *
271 * Work around it by grabbing a GT IRQ power domain whilst there is any
272 * GT activity, preventing any DC state transitions.
273 */
274 intel_display_power_get(i915, POWER_DOMAIN_GT_IRQ);
275
Chris Wilson636918f2017-08-17 15:47:19 +0100276 i915->gt.awake = true;
277
278 intel_enable_gt_powersave(i915);
279 i915_update_gfx_val(i915);
280 if (INTEL_GEN(i915) >= 6)
281 gen6_rps_busy(i915);
Tvrtko Ursulinfeff0dc2017-11-21 18:18:46 +0000282 i915_pmu_gt_unparked(i915);
Chris Wilson636918f2017-08-17 15:47:19 +0100283
Chris Wilsonaba5e272017-10-25 15:39:41 +0100284 intel_engines_unpark(i915);
285
Chris Wilson636918f2017-08-17 15:47:19 +0100286 queue_delayed_work(i915->wq,
287 &i915->gt.retire_work,
288 round_jiffies_up_relative(HZ));
289}
290
291static int reserve_engine(struct intel_engine_cs *engine)
292{
293 struct drm_i915_private *i915 = engine->i915;
Chris Wilson12d31732017-02-23 07:44:09 +0000294 u32 active = ++engine->timeline->inflight_seqnos;
295 u32 seqno = engine->timeline->seqno;
296 int ret;
297
298 /* Reservation is fine until we need to wrap around */
Chris Wilson636918f2017-08-17 15:47:19 +0100299 if (unlikely(add_overflows(seqno, active))) {
300 ret = reset_all_global_seqno(i915, 0);
301 if (ret) {
302 engine->timeline->inflight_seqnos--;
303 return ret;
304 }
Chris Wilson12d31732017-02-23 07:44:09 +0000305 }
306
Chris Wilson636918f2017-08-17 15:47:19 +0100307 if (!i915->gt.active_requests++)
308 mark_busy(i915);
309
Chris Wilson12d31732017-02-23 07:44:09 +0000310 return 0;
311}
312
Chris Wilson636918f2017-08-17 15:47:19 +0100313static void unreserve_engine(struct intel_engine_cs *engine)
Chris Wilson9b6586a2017-02-23 07:44:08 +0000314{
Chris Wilson636918f2017-08-17 15:47:19 +0100315 struct drm_i915_private *i915 = engine->i915;
316
317 if (!--i915->gt.active_requests) {
318 /* Cancel the mark_busy() from our reserve_engine() */
319 GEM_BUG_ON(!i915->gt.awake);
320 mod_delayed_work(i915->wq,
321 &i915->gt.idle_work,
322 msecs_to_jiffies(100));
323 }
324
Chris Wilson9b6586a2017-02-23 07:44:08 +0000325 GEM_BUG_ON(!engine->timeline->inflight_seqnos);
326 engine->timeline->inflight_seqnos--;
327}
328
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100329void i915_gem_retire_noop(struct i915_gem_active *active,
330 struct drm_i915_gem_request *request)
331{
332 /* Space left intentionally blank */
333}
334
Chris Wilsoncbb60b42017-04-06 18:00:28 +0100335static void advance_ring(struct drm_i915_gem_request *request)
336{
337 unsigned int tail;
338
339 /* We know the GPU must have read the request to have
340 * sent us the seqno + interrupt, so use the position
341 * of tail of the request to update the last known position
342 * of the GPU head.
343 *
344 * Note this requires that we are always called in request
345 * completion order.
346 */
Chris Wilsone6ba9992017-04-25 14:00:49 +0100347 if (list_is_last(&request->ring_link, &request->ring->request_list)) {
348 /* We may race here with execlists resubmitting this request
349 * as we retire it. The resubmission will move the ring->tail
350 * forwards (to request->wa_tail). We either read the
351 * current value that was written to hw, or the value that
352 * is just about to be. Either works, if we miss the last two
353 * noops - they are safe to be replayed on a reset.
354 */
355 tail = READ_ONCE(request->ring->tail);
356 } else {
Chris Wilsoncbb60b42017-04-06 18:00:28 +0100357 tail = request->postfix;
Chris Wilsone6ba9992017-04-25 14:00:49 +0100358 }
Chris Wilsoncbb60b42017-04-06 18:00:28 +0100359 list_del(&request->ring_link);
360
361 request->ring->head = tail;
362}
363
Chris Wilsonb0fd47a2017-04-15 10:39:02 +0100364static void free_capture_list(struct drm_i915_gem_request *request)
365{
366 struct i915_gem_capture_list *capture;
367
368 capture = request->capture_list;
369 while (capture) {
370 struct i915_gem_capture_list *next = capture->next;
371
372 kfree(capture);
373 capture = next;
374 }
375}
376
Chris Wilson05235c52016-07-20 09:21:08 +0100377static void i915_gem_request_retire(struct drm_i915_gem_request *request)
378{
Chris Wilsone8a9c582016-12-18 15:37:20 +0000379 struct intel_engine_cs *engine = request->engine;
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100380 struct i915_gem_active *active, *next;
381
Chris Wilson4c7d62c2016-10-28 13:58:32 +0100382 lockdep_assert_held(&request->i915->drm.struct_mutex);
Chris Wilson48bc2a42016-11-25 13:17:17 +0000383 GEM_BUG_ON(!i915_sw_fence_signaled(&request->submit));
Chris Wilson4c7d62c2016-10-28 13:58:32 +0100384 GEM_BUG_ON(!i915_gem_request_completed(request));
Chris Wilson43020552016-11-15 16:46:20 +0000385 GEM_BUG_ON(!request->i915->gt.active_requests);
Chris Wilson4c7d62c2016-10-28 13:58:32 +0100386
Chris Wilson05235c52016-07-20 09:21:08 +0100387 trace_i915_gem_request_retire(request);
Chris Wilson80b204b2016-10-28 13:58:58 +0100388
Chris Wilsone8a9c582016-12-18 15:37:20 +0000389 spin_lock_irq(&engine->timeline->lock);
Chris Wilsone95433c2016-10-28 13:58:27 +0100390 list_del_init(&request->link);
Chris Wilsone8a9c582016-12-18 15:37:20 +0000391 spin_unlock_irq(&engine->timeline->lock);
Chris Wilson05235c52016-07-20 09:21:08 +0100392
Chris Wilson636918f2017-08-17 15:47:19 +0100393 unreserve_engine(request->engine);
Chris Wilsoncbb60b42017-04-06 18:00:28 +0100394 advance_ring(request);
Chris Wilson05235c52016-07-20 09:21:08 +0100395
Chris Wilsonb0fd47a2017-04-15 10:39:02 +0100396 free_capture_list(request);
397
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100398 /* Walk through the active list, calling retire on each. This allows
399 * objects to track their GPU activity and mark themselves as idle
400 * when their *last* active request is completed (updating state
401 * tracking lists for eviction, active references for GEM, etc).
402 *
403 * As the ->retire() may free the node, we decouple it first and
404 * pass along the auxiliary information (to avoid dereferencing
405 * the node after the callback).
406 */
407 list_for_each_entry_safe(active, next, &request->active_list, link) {
408 /* In microbenchmarks or focusing upon time inside the kernel,
409 * we may spend an inordinate amount of time simply handling
410 * the retirement of requests and processing their callbacks.
411 * Of which, this loop itself is particularly hot due to the
412 * cache misses when jumping around the list of i915_gem_active.
413 * So we try to keep this loop as streamlined as possible and
414 * also prefetch the next i915_gem_active to try and hide
415 * the likely cache miss.
416 */
417 prefetchw(next);
418
419 INIT_LIST_HEAD(&active->link);
Chris Wilson0eafec62016-08-04 16:32:41 +0100420 RCU_INIT_POINTER(active->request, NULL);
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100421
422 active->retire(active, request);
423 }
424
Chris Wilson05235c52016-07-20 09:21:08 +0100425 i915_gem_request_remove_from_client(request);
426
Mika Kuoppalae5e1fc42016-11-16 17:20:31 +0200427 /* Retirement decays the ban score as it is a sign of ctx progress */
Chris Wilson77b25a92017-07-21 13:32:30 +0100428 atomic_dec_if_positive(&request->ctx->ban_score);
Mika Kuoppalae5e1fc42016-11-16 17:20:31 +0200429
Chris Wilsone8a9c582016-12-18 15:37:20 +0000430 /* The backing object for the context is done after switching to the
431 * *next* context. Therefore we cannot retire the previous context until
432 * the next context has already started running. However, since we
433 * cannot take the required locks at i915_gem_request_submit() we
434 * defer the unpinning of the active context to now, retirement of
435 * the subsequent request.
436 */
437 if (engine->last_retired_context)
438 engine->context_unpin(engine, engine->last_retired_context);
439 engine->last_retired_context = request->ctx;
Chris Wilsond07f0e52016-10-28 13:58:44 +0100440
Chris Wilson7b92c1b2017-06-28 13:35:48 +0100441 spin_lock_irq(&request->lock);
442 if (request->waitboost)
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +0100443 atomic_dec(&request->i915->gt_pm.rps.num_waiters);
Chris Wilson7b92c1b2017-06-28 13:35:48 +0100444 dma_fence_signal_locked(&request->fence);
445 spin_unlock_irq(&request->lock);
Chris Wilson52e54202016-11-14 20:41:02 +0000446
447 i915_priotree_fini(request->i915, &request->priotree);
Chris Wilsone8a261e2016-07-20 13:31:49 +0100448 i915_gem_request_put(request);
Chris Wilson05235c52016-07-20 09:21:08 +0100449}
450
451void i915_gem_request_retire_upto(struct drm_i915_gem_request *req)
452{
453 struct intel_engine_cs *engine = req->engine;
454 struct drm_i915_gem_request *tmp;
455
456 lockdep_assert_held(&req->i915->drm.struct_mutex);
Chris Wilson4ffd6e02016-11-25 13:17:15 +0000457 GEM_BUG_ON(!i915_gem_request_completed(req));
458
Chris Wilsone95433c2016-10-28 13:58:27 +0100459 if (list_empty(&req->link))
460 return;
Chris Wilson05235c52016-07-20 09:21:08 +0100461
462 do {
Chris Wilson73cb9702016-10-28 13:58:46 +0100463 tmp = list_first_entry(&engine->timeline->requests,
Chris Wilsonefdf7c02016-08-04 07:52:33 +0100464 typeof(*tmp), link);
Chris Wilson05235c52016-07-20 09:21:08 +0100465
466 i915_gem_request_retire(tmp);
467 } while (tmp != req);
Chris Wilson05235c52016-07-20 09:21:08 +0100468}
469
Chris Wilson9b6586a2017-02-23 07:44:08 +0000470static u32 timeline_get_seqno(struct intel_timeline *tl)
Chris Wilson05235c52016-07-20 09:21:08 +0100471{
Chris Wilson9b6586a2017-02-23 07:44:08 +0000472 return ++tl->seqno;
Chris Wilson05235c52016-07-20 09:21:08 +0100473}
474
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000475void __i915_gem_request_submit(struct drm_i915_gem_request *request)
Chris Wilson5590af32016-09-09 14:11:54 +0100476{
Chris Wilson73cb9702016-10-28 13:58:46 +0100477 struct intel_engine_cs *engine = request->engine;
Chris Wilsonf2d13292016-10-28 13:58:57 +0100478 struct intel_timeline *timeline;
479 u32 seqno;
Chris Wilson5590af32016-09-09 14:11:54 +0100480
Chris Wilsone60a8702017-03-02 11:51:30 +0000481 GEM_BUG_ON(!irqs_disabled());
Chris Wilson67520412017-03-02 13:28:01 +0000482 lockdep_assert_held(&engine->timeline->lock);
Chris Wilsone60a8702017-03-02 11:51:30 +0000483
Chris Wilsonfe497892017-02-23 07:44:13 +0000484 trace_i915_gem_request_execute(request);
485
Chris Wilson80b204b2016-10-28 13:58:58 +0100486 /* Transfer from per-context onto the global per-engine timeline */
487 timeline = engine->timeline;
488 GEM_BUG_ON(timeline == request->timeline);
Chris Wilson2d453c72017-12-22 14:19:59 +0000489 GEM_BUG_ON(request->global_seqno);
Chris Wilson5590af32016-09-09 14:11:54 +0100490
Chris Wilson9b6586a2017-02-23 07:44:08 +0000491 seqno = timeline_get_seqno(timeline);
Chris Wilsonf2d13292016-10-28 13:58:57 +0100492 GEM_BUG_ON(!seqno);
493 GEM_BUG_ON(i915_seqno_passed(intel_engine_get_seqno(engine), seqno));
494
Chris Wilsonf2d13292016-10-28 13:58:57 +0100495 /* We may be recursing from the signal callback of another i915 fence */
496 spin_lock_nested(&request->lock, SINGLE_DEPTH_NESTING);
497 request->global_seqno = seqno;
498 if (test_bit(DMA_FENCE_FLAG_ENABLE_SIGNAL_BIT, &request->fence.flags))
Chris Wilsonf7b02a52017-04-26 09:06:59 +0100499 intel_engine_enable_signaling(request, false);
Chris Wilsonf2d13292016-10-28 13:58:57 +0100500 spin_unlock(&request->lock);
501
Chris Wilsoncaddfe72016-10-28 13:58:52 +0100502 engine->emit_breadcrumb(request,
503 request->ring->vaddr + request->postfix);
Chris Wilson5590af32016-09-09 14:11:54 +0100504
Chris Wilsonbb894852016-11-14 20:40:57 +0000505 spin_lock(&request->timeline->lock);
Chris Wilson80b204b2016-10-28 13:58:58 +0100506 list_move_tail(&request->link, &timeline->requests);
507 spin_unlock(&request->timeline->lock);
508
Chris Wilsonfe497892017-02-23 07:44:13 +0000509 wake_up_all(&request->execute);
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000510}
Chris Wilson23902e42016-11-14 20:40:58 +0000511
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000512void i915_gem_request_submit(struct drm_i915_gem_request *request)
513{
514 struct intel_engine_cs *engine = request->engine;
515 unsigned long flags;
516
517 /* Will be called from irq-context when using foreign fences. */
518 spin_lock_irqsave(&engine->timeline->lock, flags);
519
520 __i915_gem_request_submit(request);
521
522 spin_unlock_irqrestore(&engine->timeline->lock, flags);
523}
524
Chris Wilsond6a22892017-02-23 07:44:17 +0000525void __i915_gem_request_unsubmit(struct drm_i915_gem_request *request)
526{
527 struct intel_engine_cs *engine = request->engine;
528 struct intel_timeline *timeline;
529
Chris Wilsone60a8702017-03-02 11:51:30 +0000530 GEM_BUG_ON(!irqs_disabled());
Chris Wilson67520412017-03-02 13:28:01 +0000531 lockdep_assert_held(&engine->timeline->lock);
Chris Wilsond6a22892017-02-23 07:44:17 +0000532
533 /* Only unwind in reverse order, required so that the per-context list
534 * is kept in seqno/ring order.
535 */
Chris Wilson2d453c72017-12-22 14:19:59 +0000536 GEM_BUG_ON(!request->global_seqno);
Chris Wilsond6a22892017-02-23 07:44:17 +0000537 GEM_BUG_ON(request->global_seqno != engine->timeline->seqno);
538 engine->timeline->seqno--;
539
540 /* We may be recursing from the signal callback of another i915 fence */
541 spin_lock_nested(&request->lock, SINGLE_DEPTH_NESTING);
542 request->global_seqno = 0;
543 if (test_bit(DMA_FENCE_FLAG_ENABLE_SIGNAL_BIT, &request->fence.flags))
544 intel_engine_cancel_signaling(request);
545 spin_unlock(&request->lock);
546
547 /* Transfer back from the global per-engine timeline to per-context */
548 timeline = request->timeline;
549 GEM_BUG_ON(timeline == engine->timeline);
550
551 spin_lock(&timeline->lock);
552 list_move(&request->link, &timeline->requests);
553 spin_unlock(&timeline->lock);
554
555 /* We don't need to wake_up any waiters on request->execute, they
556 * will get woken by any other event or us re-adding this request
557 * to the engine timeline (__i915_gem_request_submit()). The waiters
558 * should be quite adapt at finding that the request now has a new
559 * global_seqno to the one they went to sleep on.
560 */
561}
562
563void i915_gem_request_unsubmit(struct drm_i915_gem_request *request)
564{
565 struct intel_engine_cs *engine = request->engine;
566 unsigned long flags;
567
568 /* Will be called from irq-context when using foreign fences. */
569 spin_lock_irqsave(&engine->timeline->lock, flags);
570
571 __i915_gem_request_unsubmit(request);
572
573 spin_unlock_irqrestore(&engine->timeline->lock, flags);
574}
575
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000576static int __i915_sw_fence_call
577submit_notify(struct i915_sw_fence *fence, enum i915_sw_fence_notify state)
578{
Chris Wilson48bc2a42016-11-25 13:17:17 +0000579 struct drm_i915_gem_request *request =
580 container_of(fence, typeof(*request), submit);
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000581
Chris Wilson48bc2a42016-11-25 13:17:17 +0000582 switch (state) {
583 case FENCE_COMPLETE:
Tvrtko Ursulin354d0362017-02-21 11:01:42 +0000584 trace_i915_gem_request_submit(request);
Daniel Vetteraf7a8ff2017-10-11 11:10:19 +0200585 /*
586 * We need to serialize use of the submit_request() callback with its
587 * hotplugging performed during an emergency i915_gem_set_wedged().
588 * We use the RCU mechanism to mark the critical section in order to
589 * force i915_gem_set_wedged() to wait until the submit_request() is
590 * completed before proceeding.
591 */
592 rcu_read_lock();
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000593 request->engine->submit_request(request);
Daniel Vetteraf7a8ff2017-10-11 11:10:19 +0200594 rcu_read_unlock();
Chris Wilson48bc2a42016-11-25 13:17:17 +0000595 break;
596
597 case FENCE_FREE:
598 i915_gem_request_put(request);
599 break;
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000600 }
Chris Wilson80b204b2016-10-28 13:58:58 +0100601
Chris Wilson5590af32016-09-09 14:11:54 +0100602 return NOTIFY_DONE;
603}
604
Chris Wilson8e637172016-08-02 22:50:26 +0100605/**
606 * i915_gem_request_alloc - allocate a request structure
607 *
608 * @engine: engine that we wish to issue the request on.
609 * @ctx: context that the request will be associated with.
Chris Wilson8e637172016-08-02 22:50:26 +0100610 *
611 * Returns a pointer to the allocated request if successful,
612 * or an error code if not.
613 */
614struct drm_i915_gem_request *
615i915_gem_request_alloc(struct intel_engine_cs *engine,
616 struct i915_gem_context *ctx)
Chris Wilson05235c52016-07-20 09:21:08 +0100617{
618 struct drm_i915_private *dev_priv = engine->i915;
Chris Wilson05235c52016-07-20 09:21:08 +0100619 struct drm_i915_gem_request *req;
Chris Wilson266a2402017-05-04 10:33:08 +0100620 struct intel_ring *ring;
Chris Wilson05235c52016-07-20 09:21:08 +0100621 int ret;
622
Chris Wilson28176ef2016-10-28 13:58:56 +0100623 lockdep_assert_held(&dev_priv->drm.struct_mutex);
624
Chris Wilsone7af3112017-10-03 21:34:48 +0100625 /*
626 * Preempt contexts are reserved for exclusive use to inject a
627 * preemption context switch. They are never to be used for any trivial
628 * request!
629 */
630 GEM_BUG_ON(ctx == dev_priv->preempt_context);
631
Chris Wilson05235c52016-07-20 09:21:08 +0100632 /* ABI: Before userspace accesses the GPU (e.g. execbuffer), report
Chris Wilson6ffb7d02017-01-14 16:23:33 +0000633 * EIO if the GPU is already wedged.
Chris Wilson05235c52016-07-20 09:21:08 +0100634 */
Chris Wilson6ffb7d02017-01-14 16:23:33 +0000635 if (i915_terminally_wedged(&dev_priv->gpu_error))
636 return ERR_PTR(-EIO);
Chris Wilson05235c52016-07-20 09:21:08 +0100637
Chris Wilsone8a9c582016-12-18 15:37:20 +0000638 /* Pinning the contexts may generate requests in order to acquire
639 * GGTT space, so do this first before we reserve a seqno for
640 * ourselves.
641 */
Chris Wilson266a2402017-05-04 10:33:08 +0100642 ring = engine->context_pin(engine, ctx);
643 if (IS_ERR(ring))
644 return ERR_CAST(ring);
645 GEM_BUG_ON(!ring);
Chris Wilson28176ef2016-10-28 13:58:56 +0100646
Chris Wilson636918f2017-08-17 15:47:19 +0100647 ret = reserve_engine(engine);
Chris Wilsone8a9c582016-12-18 15:37:20 +0000648 if (ret)
649 goto err_unpin;
650
Chris Wilson3fef5cd2017-11-20 10:20:02 +0000651 ret = intel_ring_wait_for_space(ring, MIN_SPACE_FOR_ADD_REQUEST);
652 if (ret)
653 goto err_unreserve;
654
Chris Wilson9b5f4e52016-07-20 09:21:09 +0100655 /* Move the oldest request to the slab-cache (if not in use!) */
Chris Wilson73cb9702016-10-28 13:58:46 +0100656 req = list_first_entry_or_null(&engine->timeline->requests,
Chris Wilsonefdf7c02016-08-04 07:52:33 +0100657 typeof(*req), link);
Chris Wilson754c9fd2017-02-23 07:44:14 +0000658 if (req && i915_gem_request_completed(req))
Chris Wilson2a1d7752016-07-26 12:01:51 +0100659 i915_gem_request_retire(req);
Chris Wilson9b5f4e52016-07-20 09:21:09 +0100660
Chris Wilson5a198b82016-08-09 09:23:34 +0100661 /* Beware: Dragons be flying overhead.
662 *
663 * We use RCU to look up requests in flight. The lookups may
664 * race with the request being allocated from the slab freelist.
665 * That is the request we are writing to here, may be in the process
Chris Wilson1426f712016-08-09 17:03:22 +0100666 * of being read by __i915_gem_active_get_rcu(). As such,
Chris Wilson5a198b82016-08-09 09:23:34 +0100667 * we have to be very careful when overwriting the contents. During
668 * the RCU lookup, we change chase the request->engine pointer,
Chris Wilson65e47602016-10-28 13:58:49 +0100669 * read the request->global_seqno and increment the reference count.
Chris Wilson5a198b82016-08-09 09:23:34 +0100670 *
671 * The reference count is incremented atomically. If it is zero,
672 * the lookup knows the request is unallocated and complete. Otherwise,
673 * it is either still in use, or has been reallocated and reset
Chris Wilsonf54d1862016-10-25 13:00:45 +0100674 * with dma_fence_init(). This increment is safe for release as we
675 * check that the request we have a reference to and matches the active
Chris Wilson5a198b82016-08-09 09:23:34 +0100676 * request.
677 *
678 * Before we increment the refcount, we chase the request->engine
679 * pointer. We must not call kmem_cache_zalloc() or else we set
680 * that pointer to NULL and cause a crash during the lookup. If
681 * we see the request is completed (based on the value of the
682 * old engine and seqno), the lookup is complete and reports NULL.
683 * If we decide the request is not completed (new engine or seqno),
684 * then we grab a reference and double check that it is still the
685 * active request - which it won't be and restart the lookup.
686 *
687 * Do not use kmem_cache_zalloc() here!
688 */
Chris Wilson31c70f92017-12-12 18:06:52 +0000689 req = kmem_cache_alloc(dev_priv->requests,
690 GFP_KERNEL | __GFP_RETRY_MAYFAIL | __GFP_NOWARN);
691 if (unlikely(!req)) {
692 /* Ratelimit ourselves to prevent oom from malicious clients */
693 ret = i915_gem_wait_for_idle(dev_priv,
694 I915_WAIT_LOCKED |
695 I915_WAIT_INTERRUPTIBLE);
696 if (ret)
697 goto err_unreserve;
698
699 req = kmem_cache_alloc(dev_priv->requests, GFP_KERNEL);
700 if (!req) {
701 ret = -ENOMEM;
702 goto err_unreserve;
703 }
Chris Wilson28176ef2016-10-28 13:58:56 +0100704 }
Chris Wilson05235c52016-07-20 09:21:08 +0100705
Chris Wilson80b204b2016-10-28 13:58:58 +0100706 req->timeline = i915_gem_context_lookup_timeline(ctx, engine);
707 GEM_BUG_ON(req->timeline == engine->timeline);
Chris Wilson73cb9702016-10-28 13:58:46 +0100708
Chris Wilson04769652016-07-20 09:21:11 +0100709 spin_lock_init(&req->lock);
Chris Wilsonf54d1862016-10-25 13:00:45 +0100710 dma_fence_init(&req->fence,
711 &i915_fence_ops,
712 &req->lock,
Chris Wilson73cb9702016-10-28 13:58:46 +0100713 req->timeline->fence_context,
Chris Wilson9b6586a2017-02-23 07:44:08 +0000714 timeline_get_seqno(req->timeline));
Chris Wilson04769652016-07-20 09:21:11 +0100715
Chris Wilson48bc2a42016-11-25 13:17:17 +0000716 /* We bump the ref for the fence chain */
717 i915_sw_fence_init(&i915_gem_request_get(req)->submit, submit_notify);
Chris Wilsonfe497892017-02-23 07:44:13 +0000718 init_waitqueue_head(&req->execute);
Chris Wilson5590af32016-09-09 14:11:54 +0100719
Chris Wilson52e54202016-11-14 20:41:02 +0000720 i915_priotree_init(&req->priotree);
721
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100722 INIT_LIST_HEAD(&req->active_list);
Chris Wilson05235c52016-07-20 09:21:08 +0100723 req->i915 = dev_priv;
724 req->engine = engine;
Chris Wilsone8a9c582016-12-18 15:37:20 +0000725 req->ctx = ctx;
Chris Wilson266a2402017-05-04 10:33:08 +0100726 req->ring = ring;
Chris Wilson05235c52016-07-20 09:21:08 +0100727
Chris Wilson5a198b82016-08-09 09:23:34 +0100728 /* No zalloc, must clear what we need by hand */
Chris Wilsonf2d13292016-10-28 13:58:57 +0100729 req->global_seqno = 0;
Chris Wilson5a198b82016-08-09 09:23:34 +0100730 req->file_priv = NULL;
Chris Wilson058d88c2016-08-15 10:49:06 +0100731 req->batch = NULL;
Chris Wilsonb0fd47a2017-04-15 10:39:02 +0100732 req->capture_list = NULL;
Chris Wilson7b92c1b2017-06-28 13:35:48 +0100733 req->waitboost = false;
Chris Wilson5a198b82016-08-09 09:23:34 +0100734
Chris Wilson05235c52016-07-20 09:21:08 +0100735 /*
736 * Reserve space in the ring buffer for all the commands required to
737 * eventually emit this request. This is to guarantee that the
738 * i915_add_request() call can't fail. Note that the reserve may need
739 * to be redone if the request is not actually submitted straight
740 * away, e.g. because a GPU scheduler has deferred it.
741 */
742 req->reserved_space = MIN_SPACE_FOR_ADD_REQUEST;
Chris Wilson98f29e82016-10-28 13:58:51 +0100743 GEM_BUG_ON(req->reserved_space < engine->emit_breadcrumb_sz);
Chris Wilson05235c52016-07-20 09:21:08 +0100744
Chris Wilson21131842017-11-20 10:20:01 +0000745 /*
746 * Record the position of the start of the request so that
Chris Wilsond0454462016-08-15 10:48:40 +0100747 * should we detect the updated seqno part-way through the
748 * GPU processing the request, we never over-estimate the
749 * position of the head.
750 */
Chris Wilsone6ba9992017-04-25 14:00:49 +0100751 req->head = req->ring->emit;
Chris Wilsond0454462016-08-15 10:48:40 +0100752
Chris Wilson21131842017-11-20 10:20:01 +0000753 /* Unconditionally invalidate GPU caches and TLBs. */
754 ret = engine->emit_flush(req, EMIT_INVALIDATE);
755 if (ret)
Chris Wilsonb1c24a62017-11-23 15:26:30 +0000756 goto err_unwind;
Chris Wilson21131842017-11-20 10:20:01 +0000757
758 ret = engine->request_alloc(req);
Chris Wilsonb1c24a62017-11-23 15:26:30 +0000759 if (ret)
760 goto err_unwind;
Chris Wilson21131842017-11-20 10:20:01 +0000761
Chris Wilson9b6586a2017-02-23 07:44:08 +0000762 /* Check that we didn't interrupt ourselves with a new request */
763 GEM_BUG_ON(req->timeline->seqno != req->fence.seqno);
Chris Wilson8e637172016-08-02 22:50:26 +0100764 return req;
Chris Wilson05235c52016-07-20 09:21:08 +0100765
Chris Wilsonb1c24a62017-11-23 15:26:30 +0000766err_unwind:
767 req->ring->emit = req->head;
768
Chris Wilson1618bdb2016-11-25 13:17:16 +0000769 /* Make sure we didn't add ourselves to external state before freeing */
770 GEM_BUG_ON(!list_empty(&req->active_list));
771 GEM_BUG_ON(!list_empty(&req->priotree.signalers_list));
772 GEM_BUG_ON(!list_empty(&req->priotree.waiters_list));
773
Chris Wilson05235c52016-07-20 09:21:08 +0100774 kmem_cache_free(dev_priv->requests, req);
Chris Wilson28176ef2016-10-28 13:58:56 +0100775err_unreserve:
Chris Wilson636918f2017-08-17 15:47:19 +0100776 unreserve_engine(engine);
Chris Wilsone8a9c582016-12-18 15:37:20 +0000777err_unpin:
778 engine->context_unpin(engine, ctx);
Chris Wilson8e637172016-08-02 22:50:26 +0100779 return ERR_PTR(ret);
Chris Wilson05235c52016-07-20 09:21:08 +0100780}
781
Chris Wilsona2bc4692016-09-09 14:11:56 +0100782static int
783i915_gem_request_await_request(struct drm_i915_gem_request *to,
784 struct drm_i915_gem_request *from)
785{
Chris Wilson85e17f52016-10-28 13:58:53 +0100786 int ret;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100787
788 GEM_BUG_ON(to == from);
Chris Wilsonceae14b2017-05-03 10:39:20 +0100789 GEM_BUG_ON(to->timeline == from->timeline);
Chris Wilsona2bc4692016-09-09 14:11:56 +0100790
Chris Wilsonade0b0c2017-04-22 09:15:37 +0100791 if (i915_gem_request_completed(from))
792 return 0;
793
Chris Wilson52e54202016-11-14 20:41:02 +0000794 if (to->engine->schedule) {
795 ret = i915_priotree_add_dependency(to->i915,
796 &to->priotree,
797 &from->priotree);
798 if (ret < 0)
799 return ret;
800 }
801
Chris Wilson73cb9702016-10-28 13:58:46 +0100802 if (to->engine == from->engine) {
803 ret = i915_sw_fence_await_sw_fence_gfp(&to->submit,
804 &from->submit,
Chris Wilson2abe2f82017-12-12 18:06:51 +0000805 I915_FENCE_GFP);
Chris Wilson73cb9702016-10-28 13:58:46 +0100806 return ret < 0 ? ret : 0;
807 }
808
Chris Wilson6b567082017-06-08 12:14:05 +0100809 if (to->engine->semaphore.sync_to) {
810 u32 seqno;
Chris Wilson65e47602016-10-28 13:58:49 +0100811
Chris Wilson49f08592017-05-03 10:39:24 +0100812 GEM_BUG_ON(!from->engine->semaphore.signal);
813
Chris Wilson6b567082017-06-08 12:14:05 +0100814 seqno = i915_gem_request_global_seqno(from);
815 if (!seqno)
816 goto await_dma_fence;
817
Chris Wilsonfc9d4d22017-05-03 10:39:23 +0100818 if (seqno <= to->timeline->global_sync[from->engine->id])
819 return 0;
820
821 trace_i915_gem_ring_sync_to(to, from);
Chris Wilsona2bc4692016-09-09 14:11:56 +0100822 ret = to->engine->semaphore.sync_to(to, from);
823 if (ret)
824 return ret;
Chris Wilsonfc9d4d22017-05-03 10:39:23 +0100825
826 to->timeline->global_sync[from->engine->id] = seqno;
Chris Wilson6b567082017-06-08 12:14:05 +0100827 return 0;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100828 }
829
Chris Wilsonfc9d4d22017-05-03 10:39:23 +0100830await_dma_fence:
831 ret = i915_sw_fence_await_dma_fence(&to->submit,
832 &from->fence, 0,
Chris Wilson2abe2f82017-12-12 18:06:51 +0000833 I915_FENCE_GFP);
Chris Wilsonfc9d4d22017-05-03 10:39:23 +0100834 return ret < 0 ? ret : 0;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100835}
836
Chris Wilsonb52992c2016-10-28 13:58:24 +0100837int
838i915_gem_request_await_dma_fence(struct drm_i915_gem_request *req,
839 struct dma_fence *fence)
840{
Chris Wilson29ef3fa2017-05-03 10:39:19 +0100841 struct dma_fence **child = &fence;
842 unsigned int nchild = 1;
Chris Wilsonb52992c2016-10-28 13:58:24 +0100843 int ret;
Chris Wilsonb52992c2016-10-28 13:58:24 +0100844
845 /* Note that if the fence-array was created in signal-on-any mode,
846 * we should *not* decompose it into its individual fences. However,
847 * we don't currently store which mode the fence-array is operating
848 * in. Fortunately, the only user of signal-on-any is private to
849 * amdgpu and we should not see any incoming fence-array from
850 * sync-file being in signal-on-any mode.
851 */
Chris Wilson29ef3fa2017-05-03 10:39:19 +0100852 if (dma_fence_is_array(fence)) {
853 struct dma_fence_array *array = to_dma_fence_array(fence);
Chris Wilsonb52992c2016-10-28 13:58:24 +0100854
Chris Wilson29ef3fa2017-05-03 10:39:19 +0100855 child = array->fences;
856 nchild = array->num_fences;
857 GEM_BUG_ON(!nchild);
858 }
Chris Wilsonb52992c2016-10-28 13:58:24 +0100859
Chris Wilson29ef3fa2017-05-03 10:39:19 +0100860 do {
861 fence = *child++;
862 if (test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &fence->flags))
863 continue;
864
Chris Wilsonceae14b2017-05-03 10:39:20 +0100865 /*
866 * Requests on the same timeline are explicitly ordered, along
867 * with their dependencies, by i915_add_request() which ensures
868 * that requests are submitted in-order through each ring.
869 */
870 if (fence->context == req->fence.context)
871 continue;
872
Chris Wilson47979482017-05-03 10:39:21 +0100873 /* Squash repeated waits to the same timelines */
874 if (fence->context != req->i915->mm.unordered_timeline &&
875 intel_timeline_sync_is_later(req->timeline, fence))
876 continue;
877
Chris Wilson29ef3fa2017-05-03 10:39:19 +0100878 if (dma_fence_is_i915(fence))
Chris Wilsonb52992c2016-10-28 13:58:24 +0100879 ret = i915_gem_request_await_request(req,
Chris Wilson29ef3fa2017-05-03 10:39:19 +0100880 to_request(fence));
Chris Wilsonb52992c2016-10-28 13:58:24 +0100881 else
Chris Wilson29ef3fa2017-05-03 10:39:19 +0100882 ret = i915_sw_fence_await_dma_fence(&req->submit, fence,
883 I915_FENCE_TIMEOUT,
Chris Wilson2abe2f82017-12-12 18:06:51 +0000884 I915_FENCE_GFP);
Chris Wilsonb52992c2016-10-28 13:58:24 +0100885 if (ret < 0)
886 return ret;
Chris Wilson47979482017-05-03 10:39:21 +0100887
888 /* Record the latest fence used against each timeline */
889 if (fence->context != req->i915->mm.unordered_timeline)
890 intel_timeline_sync_set(req->timeline, fence);
Chris Wilson29ef3fa2017-05-03 10:39:19 +0100891 } while (--nchild);
Chris Wilsonb52992c2016-10-28 13:58:24 +0100892
893 return 0;
894}
895
Chris Wilsona2bc4692016-09-09 14:11:56 +0100896/**
897 * i915_gem_request_await_object - set this request to (async) wait upon a bo
898 *
899 * @to: request we are wishing to use
900 * @obj: object which may be in use on another ring.
901 *
902 * This code is meant to abstract object synchronization with the GPU.
903 * Conceptually we serialise writes between engines inside the GPU.
904 * We only allow one engine to write into a buffer at any time, but
905 * multiple readers. To ensure each has a coherent view of memory, we must:
906 *
907 * - If there is an outstanding write request to the object, the new
908 * request must wait for it to complete (either CPU or in hw, requests
909 * on the same ring will be naturally ordered).
910 *
911 * - If we are a write request (pending_write_domain is set), the new
912 * request must wait for outstanding read requests to complete.
913 *
914 * Returns 0 if successful, else propagates up the lower layer error.
915 */
916int
917i915_gem_request_await_object(struct drm_i915_gem_request *to,
918 struct drm_i915_gem_object *obj,
919 bool write)
920{
Chris Wilsond07f0e52016-10-28 13:58:44 +0100921 struct dma_fence *excl;
922 int ret = 0;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100923
924 if (write) {
Chris Wilsond07f0e52016-10-28 13:58:44 +0100925 struct dma_fence **shared;
926 unsigned int count, i;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100927
Chris Wilsond07f0e52016-10-28 13:58:44 +0100928 ret = reservation_object_get_fences_rcu(obj->resv,
929 &excl, &count, &shared);
Chris Wilsona2bc4692016-09-09 14:11:56 +0100930 if (ret)
931 return ret;
Chris Wilsond07f0e52016-10-28 13:58:44 +0100932
933 for (i = 0; i < count; i++) {
934 ret = i915_gem_request_await_dma_fence(to, shared[i]);
935 if (ret)
936 break;
937
938 dma_fence_put(shared[i]);
939 }
940
941 for (; i < count; i++)
942 dma_fence_put(shared[i]);
943 kfree(shared);
944 } else {
945 excl = reservation_object_get_excl_rcu(obj->resv);
Chris Wilsona2bc4692016-09-09 14:11:56 +0100946 }
947
Chris Wilsond07f0e52016-10-28 13:58:44 +0100948 if (excl) {
949 if (ret == 0)
950 ret = i915_gem_request_await_dma_fence(to, excl);
951
952 dma_fence_put(excl);
953 }
954
955 return ret;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100956}
957
Chris Wilson05235c52016-07-20 09:21:08 +0100958/*
959 * NB: This function is not allowed to fail. Doing so would mean the the
960 * request is not being tracked for completion but the work itself is
961 * going to happen on the hardware. This would be a Bad Thing(tm).
962 */
Chris Wilson17f298cf2016-08-10 13:41:46 +0100963void __i915_add_request(struct drm_i915_gem_request *request, bool flush_caches)
Chris Wilson05235c52016-07-20 09:21:08 +0100964{
Chris Wilson95b2ab52016-08-15 10:48:46 +0100965 struct intel_engine_cs *engine = request->engine;
966 struct intel_ring *ring = request->ring;
Chris Wilson73cb9702016-10-28 13:58:46 +0100967 struct intel_timeline *timeline = request->timeline;
Chris Wilson0a046a02016-09-09 14:12:00 +0100968 struct drm_i915_gem_request *prev;
Tvrtko Ursulin73dec952017-02-14 11:32:42 +0000969 u32 *cs;
Chris Wilsoncaddfe72016-10-28 13:58:52 +0100970 int err;
Chris Wilson05235c52016-07-20 09:21:08 +0100971
Chris Wilson4c7d62c2016-10-28 13:58:32 +0100972 lockdep_assert_held(&request->i915->drm.struct_mutex);
Chris Wilson0f25dff2016-09-09 14:11:55 +0100973 trace_i915_gem_request_add(request);
974
Chris Wilsonc781c972017-01-11 14:08:58 +0000975 /* Make sure that no request gazumped us - if it was allocated after
976 * our i915_gem_request_alloc() and called __i915_add_request() before
977 * us, the timeline will hold its seqno which is later than ours.
978 */
Chris Wilson9b6586a2017-02-23 07:44:08 +0000979 GEM_BUG_ON(timeline->seqno != request->fence.seqno);
Chris Wilsonc781c972017-01-11 14:08:58 +0000980
Chris Wilson05235c52016-07-20 09:21:08 +0100981 /*
982 * To ensure that this call will not fail, space for its emissions
983 * should already have been reserved in the ring buffer. Let the ring
984 * know that it is time to use that space up.
985 */
Chris Wilson05235c52016-07-20 09:21:08 +0100986 request->reserved_space = 0;
987
988 /*
989 * Emit any outstanding flushes - execbuf can fail to emit the flush
990 * after having emitted the batchbuffer command. Hence we need to fix
991 * things up similar to emitting the lazy request. The difference here
992 * is that the flush _must_ happen before the next request, no matter
993 * what.
994 */
995 if (flush_caches) {
Chris Wilsoncaddfe72016-10-28 13:58:52 +0100996 err = engine->emit_flush(request, EMIT_FLUSH);
Chris Wilsonc7fe7d22016-08-02 22:50:24 +0100997
Chris Wilson05235c52016-07-20 09:21:08 +0100998 /* Not allowed to fail! */
Chris Wilsoncaddfe72016-10-28 13:58:52 +0100999 WARN(err, "engine->emit_flush() failed: %d!\n", err);
Chris Wilson05235c52016-07-20 09:21:08 +01001000 }
1001
Chris Wilsond0454462016-08-15 10:48:40 +01001002 /* Record the position of the start of the breadcrumb so that
Chris Wilson05235c52016-07-20 09:21:08 +01001003 * should we detect the updated seqno part-way through the
1004 * GPU processing the request, we never over-estimate the
Chris Wilsond0454462016-08-15 10:48:40 +01001005 * position of the ring's HEAD.
Chris Wilson05235c52016-07-20 09:21:08 +01001006 */
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001007 cs = intel_ring_begin(request, engine->emit_breadcrumb_sz);
1008 GEM_BUG_ON(IS_ERR(cs));
1009 request->postfix = intel_ring_offset(request, cs);
Chris Wilson05235c52016-07-20 09:21:08 +01001010
Chris Wilson0f25dff2016-09-09 14:11:55 +01001011 /* Seal the request and mark it as pending execution. Note that
1012 * we may inspect this state, without holding any locks, during
1013 * hangcheck. Hence we apply the barrier to ensure that we do not
1014 * see a more recent value in the hws than we are tracking.
1015 */
Chris Wilson0a046a02016-09-09 14:12:00 +01001016
Chris Wilson73cb9702016-10-28 13:58:46 +01001017 prev = i915_gem_active_raw(&timeline->last_request,
Chris Wilson0a046a02016-09-09 14:12:00 +01001018 &request->i915->drm.struct_mutex);
Chris Wilson52e54202016-11-14 20:41:02 +00001019 if (prev) {
Chris Wilson0a046a02016-09-09 14:12:00 +01001020 i915_sw_fence_await_sw_fence(&request->submit, &prev->submit,
1021 &request->submitq);
Chris Wilson52e54202016-11-14 20:41:02 +00001022 if (engine->schedule)
1023 __i915_priotree_add_dependency(&request->priotree,
1024 &prev->priotree,
1025 &request->dep,
1026 0);
1027 }
Chris Wilson0a046a02016-09-09 14:12:00 +01001028
Chris Wilson80b204b2016-10-28 13:58:58 +01001029 spin_lock_irq(&timeline->lock);
Chris Wilsonf2d13292016-10-28 13:58:57 +01001030 list_add_tail(&request->link, &timeline->requests);
Chris Wilson80b204b2016-10-28 13:58:58 +01001031 spin_unlock_irq(&timeline->lock);
Chris Wilson28176ef2016-10-28 13:58:56 +01001032
Chris Wilson9b6586a2017-02-23 07:44:08 +00001033 GEM_BUG_ON(timeline->seqno != request->fence.seqno);
Chris Wilson73cb9702016-10-28 13:58:46 +01001034 i915_gem_active_set(&timeline->last_request, request);
Chris Wilsonf2d13292016-10-28 13:58:57 +01001035
Chris Wilson0f25dff2016-09-09 14:11:55 +01001036 list_add_tail(&request->ring_link, &ring->request_list);
Chris Wilsonf2d13292016-10-28 13:58:57 +01001037 request->emitted_jiffies = jiffies;
Chris Wilson0f25dff2016-09-09 14:11:55 +01001038
Chris Wilson0de91362016-11-14 20:41:01 +00001039 /* Let the backend know a new request has arrived that may need
1040 * to adjust the existing execution schedule due to a high priority
1041 * request - i.e. we may want to preempt the current request in order
1042 * to run a high priority dependency chain *before* we can execute this
1043 * request.
1044 *
1045 * This is called before the request is ready to run so that we can
1046 * decide whether to preempt the entire chain so that it is ready to
1047 * run at the earliest possible convenience.
1048 */
1049 if (engine->schedule)
Chris Wilson9f792eb2016-11-14 20:41:04 +00001050 engine->schedule(request, request->ctx->priority);
Chris Wilson0de91362016-11-14 20:41:01 +00001051
Chris Wilson5590af32016-09-09 14:11:54 +01001052 local_bh_disable();
1053 i915_sw_fence_commit(&request->submit);
1054 local_bh_enable(); /* Kick the execlists tasklet if just scheduled */
Chris Wilson05235c52016-07-20 09:21:08 +01001055}
1056
1057static unsigned long local_clock_us(unsigned int *cpu)
1058{
1059 unsigned long t;
1060
1061 /* Cheaply and approximately convert from nanoseconds to microseconds.
1062 * The result and subsequent calculations are also defined in the same
1063 * approximate microseconds units. The principal source of timing
1064 * error here is from the simple truncation.
1065 *
1066 * Note that local_clock() is only defined wrt to the current CPU;
1067 * the comparisons are no longer valid if we switch CPUs. Instead of
1068 * blocking preemption for the entire busywait, we can detect the CPU
1069 * switch and use that as indicator of system load and a reason to
1070 * stop busywaiting, see busywait_stop().
1071 */
1072 *cpu = get_cpu();
1073 t = local_clock() >> 10;
1074 put_cpu();
1075
1076 return t;
1077}
1078
1079static bool busywait_stop(unsigned long timeout, unsigned int cpu)
1080{
1081 unsigned int this_cpu;
1082
1083 if (time_after(local_clock_us(&this_cpu), timeout))
1084 return true;
1085
1086 return this_cpu != cpu;
1087}
1088
Chris Wilsonb2f2f0f2017-09-22 13:03:33 +01001089static bool __i915_spin_request(const struct drm_i915_gem_request *req,
1090 u32 seqno, int state, unsigned long timeout_us)
Chris Wilson05235c52016-07-20 09:21:08 +01001091{
Chris Wilsonc33ed062017-02-17 15:13:01 +00001092 struct intel_engine_cs *engine = req->engine;
1093 unsigned int irq, cpu;
Chris Wilson05235c52016-07-20 09:21:08 +01001094
Chris Wilsonb2f2f0f2017-09-22 13:03:33 +01001095 GEM_BUG_ON(!seqno);
1096
1097 /*
1098 * Only wait for the request if we know it is likely to complete.
1099 *
1100 * We don't track the timestamps around requests, nor the average
1101 * request length, so we do not have a good indicator that this
1102 * request will complete within the timeout. What we do know is the
1103 * order in which requests are executed by the engine and so we can
1104 * tell if the request has started. If the request hasn't started yet,
1105 * it is a fair assumption that it will not complete within our
1106 * relatively short timeout.
1107 */
1108 if (!i915_seqno_passed(intel_engine_get_seqno(engine), seqno - 1))
1109 return false;
1110
Chris Wilson05235c52016-07-20 09:21:08 +01001111 /* When waiting for high frequency requests, e.g. during synchronous
1112 * rendering split between the CPU and GPU, the finite amount of time
1113 * required to set up the irq and wait upon it limits the response
1114 * rate. By busywaiting on the request completion for a short while we
1115 * can service the high frequency waits as quick as possible. However,
1116 * if it is a slow request, we want to sleep as quickly as possible.
1117 * The tradeoff between waiting and sleeping is roughly the time it
1118 * takes to sleep on a request, on the order of a microsecond.
1119 */
1120
Chris Wilsonc33ed062017-02-17 15:13:01 +00001121 irq = atomic_read(&engine->irq_count);
Chris Wilson05235c52016-07-20 09:21:08 +01001122 timeout_us += local_clock_us(&cpu);
1123 do {
Chris Wilsonb2f2f0f2017-09-22 13:03:33 +01001124 if (i915_seqno_passed(intel_engine_get_seqno(engine), seqno))
Chris Wilsona3df2c82017-09-21 22:09:03 +01001125 return seqno == i915_gem_request_global_seqno(req);
Chris Wilson05235c52016-07-20 09:21:08 +01001126
Chris Wilsonc33ed062017-02-17 15:13:01 +00001127 /* Seqno are meant to be ordered *before* the interrupt. If
1128 * we see an interrupt without a corresponding seqno advance,
1129 * assume we won't see one in the near future but require
1130 * the engine->seqno_barrier() to fixup coherency.
1131 */
1132 if (atomic_read(&engine->irq_count) != irq)
1133 break;
1134
Chris Wilson05235c52016-07-20 09:21:08 +01001135 if (signal_pending_state(state, current))
1136 break;
1137
1138 if (busywait_stop(timeout_us, cpu))
1139 break;
1140
Christian Borntraegerf2f09a42016-10-25 11:03:14 +02001141 cpu_relax();
Chris Wilson05235c52016-07-20 09:21:08 +01001142 } while (!need_resched());
1143
1144 return false;
1145}
1146
Chris Wilsone0705112017-02-23 07:44:20 +00001147static bool __i915_wait_request_check_and_reset(struct drm_i915_gem_request *request)
Chris Wilson4680816b2016-10-28 13:58:48 +01001148{
Chris Wilson8c185ec2017-03-16 17:13:02 +00001149 if (likely(!i915_reset_handoff(&request->i915->gpu_error)))
Chris Wilsone0705112017-02-23 07:44:20 +00001150 return false;
Chris Wilson4680816b2016-10-28 13:58:48 +01001151
Chris Wilsone0705112017-02-23 07:44:20 +00001152 __set_current_state(TASK_RUNNING);
Chris Wilson535275d2017-07-21 13:32:37 +01001153 i915_reset(request->i915, 0);
Chris Wilsone0705112017-02-23 07:44:20 +00001154 return true;
Chris Wilson4680816b2016-10-28 13:58:48 +01001155}
1156
Chris Wilson05235c52016-07-20 09:21:08 +01001157/**
Chris Wilson776f3232016-08-04 07:52:40 +01001158 * i915_wait_request - wait until execution of request has finished
Chris Wilsone95433c2016-10-28 13:58:27 +01001159 * @req: the request to wait upon
Chris Wilsonea746f32016-09-09 14:11:49 +01001160 * @flags: how to wait
Chris Wilsone95433c2016-10-28 13:58:27 +01001161 * @timeout: how long to wait in jiffies
Chris Wilson05235c52016-07-20 09:21:08 +01001162 *
Chris Wilsone95433c2016-10-28 13:58:27 +01001163 * i915_wait_request() waits for the request to be completed, for a
1164 * maximum of @timeout jiffies (with MAX_SCHEDULE_TIMEOUT implying an
1165 * unbounded wait).
Chris Wilson05235c52016-07-20 09:21:08 +01001166 *
Chris Wilsone95433c2016-10-28 13:58:27 +01001167 * If the caller holds the struct_mutex, the caller must pass I915_WAIT_LOCKED
1168 * in via the flags, and vice versa if the struct_mutex is not held, the caller
1169 * must not specify that the wait is locked.
1170 *
1171 * Returns the remaining time (in jiffies) if the request completed, which may
1172 * be zero or -ETIME if the request is unfinished after the timeout expires.
1173 * May return -EINTR is called with I915_WAIT_INTERRUPTIBLE and a signal is
1174 * pending before the request completes.
Chris Wilson05235c52016-07-20 09:21:08 +01001175 */
Chris Wilsone95433c2016-10-28 13:58:27 +01001176long i915_wait_request(struct drm_i915_gem_request *req,
1177 unsigned int flags,
1178 long timeout)
Chris Wilson05235c52016-07-20 09:21:08 +01001179{
Chris Wilsonea746f32016-09-09 14:11:49 +01001180 const int state = flags & I915_WAIT_INTERRUPTIBLE ?
1181 TASK_INTERRUPTIBLE : TASK_UNINTERRUPTIBLE;
Chris Wilson4b36b2e2017-02-23 07:44:10 +00001182 wait_queue_head_t *errq = &req->i915->gpu_error.wait_queue;
Chris Wilsona49625f2017-02-23 07:44:19 +00001183 DEFINE_WAIT_FUNC(reset, default_wake_function);
1184 DEFINE_WAIT_FUNC(exec, default_wake_function);
Chris Wilson05235c52016-07-20 09:21:08 +01001185 struct intel_wait wait;
Chris Wilson05235c52016-07-20 09:21:08 +01001186
1187 might_sleep();
Chris Wilson22dd3bb2016-09-09 14:11:50 +01001188#if IS_ENABLED(CONFIG_LOCKDEP)
Chris Wilsone95433c2016-10-28 13:58:27 +01001189 GEM_BUG_ON(debug_locks &&
1190 !!lockdep_is_held(&req->i915->drm.struct_mutex) !=
Chris Wilson22dd3bb2016-09-09 14:11:50 +01001191 !!(flags & I915_WAIT_LOCKED));
1192#endif
Chris Wilsone95433c2016-10-28 13:58:27 +01001193 GEM_BUG_ON(timeout < 0);
Chris Wilson05235c52016-07-20 09:21:08 +01001194
Chris Wilson05235c52016-07-20 09:21:08 +01001195 if (i915_gem_request_completed(req))
Chris Wilsone95433c2016-10-28 13:58:27 +01001196 return timeout;
Chris Wilson05235c52016-07-20 09:21:08 +01001197
Chris Wilsone95433c2016-10-28 13:58:27 +01001198 if (!timeout)
1199 return -ETIME;
Chris Wilson05235c52016-07-20 09:21:08 +01001200
Tvrtko Ursulin936925022017-02-21 11:00:24 +00001201 trace_i915_gem_request_wait_begin(req, flags);
Chris Wilson05235c52016-07-20 09:21:08 +01001202
Chris Wilsona49625f2017-02-23 07:44:19 +00001203 add_wait_queue(&req->execute, &exec);
Chris Wilson7de53bf2017-02-23 07:44:11 +00001204 if (flags & I915_WAIT_LOCKED)
1205 add_wait_queue(errq, &reset);
1206
Chris Wilson56299fb2017-02-27 20:58:48 +00001207 intel_wait_init(&wait, req);
Chris Wilson754c9fd2017-02-23 07:44:14 +00001208
Chris Wilsond6a22892017-02-23 07:44:17 +00001209restart:
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001210 do {
1211 set_current_state(state);
1212 if (intel_wait_update_request(&wait, req))
1213 break;
Chris Wilson754c9fd2017-02-23 07:44:14 +00001214
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001215 if (flags & I915_WAIT_LOCKED &&
1216 __i915_wait_request_check_and_reset(req))
1217 continue;
Chris Wilson541ca6e2017-02-23 07:44:12 +00001218
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001219 if (signal_pending_state(state, current)) {
1220 timeout = -ERESTARTSYS;
Chris Wilson4680816b2016-10-28 13:58:48 +01001221 goto complete;
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001222 }
Chris Wilson4680816b2016-10-28 13:58:48 +01001223
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001224 if (!timeout) {
1225 timeout = -ETIME;
1226 goto complete;
1227 }
Chris Wilson541ca6e2017-02-23 07:44:12 +00001228
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001229 timeout = io_schedule_timeout(timeout);
1230 } while (1);
Chris Wilson541ca6e2017-02-23 07:44:12 +00001231
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001232 GEM_BUG_ON(!intel_wait_has_seqno(&wait));
Chris Wilsonfe497892017-02-23 07:44:13 +00001233 GEM_BUG_ON(!i915_sw_fence_signaled(&req->submit));
Chris Wilson4680816b2016-10-28 13:58:48 +01001234
Daniel Vetter437c3082016-08-05 18:11:24 +02001235 /* Optimistic short spin before touching IRQs */
Chris Wilsonb2f2f0f2017-09-22 13:03:33 +01001236 if (__i915_spin_request(req, wait.seqno, state, 5))
Chris Wilson05235c52016-07-20 09:21:08 +01001237 goto complete;
1238
1239 set_current_state(state);
Chris Wilson05235c52016-07-20 09:21:08 +01001240 if (intel_engine_add_wait(req->engine, &wait))
1241 /* In order to check that we haven't missed the interrupt
1242 * as we enabled it, we need to kick ourselves to do a
1243 * coherent check on the seqno before we sleep.
1244 */
1245 goto wakeup;
1246
Chris Wilson24f417e2017-02-23 07:44:21 +00001247 if (flags & I915_WAIT_LOCKED)
1248 __i915_wait_request_check_and_reset(req);
1249
Chris Wilson05235c52016-07-20 09:21:08 +01001250 for (;;) {
1251 if (signal_pending_state(state, current)) {
Chris Wilsone95433c2016-10-28 13:58:27 +01001252 timeout = -ERESTARTSYS;
Chris Wilson05235c52016-07-20 09:21:08 +01001253 break;
1254 }
1255
Chris Wilsone95433c2016-10-28 13:58:27 +01001256 if (!timeout) {
1257 timeout = -ETIME;
Chris Wilson05235c52016-07-20 09:21:08 +01001258 break;
1259 }
1260
Chris Wilsone95433c2016-10-28 13:58:27 +01001261 timeout = io_schedule_timeout(timeout);
1262
Chris Wilson754c9fd2017-02-23 07:44:14 +00001263 if (intel_wait_complete(&wait) &&
1264 intel_wait_check_request(&wait, req))
Chris Wilson05235c52016-07-20 09:21:08 +01001265 break;
1266
1267 set_current_state(state);
1268
1269wakeup:
1270 /* Carefully check if the request is complete, giving time
1271 * for the seqno to be visible following the interrupt.
1272 * We also have to check in case we are kicked by the GPU
1273 * reset in order to drop the struct_mutex.
1274 */
1275 if (__i915_request_irq_complete(req))
1276 break;
1277
Chris Wilson221fe792016-09-09 14:11:51 +01001278 /* If the GPU is hung, and we hold the lock, reset the GPU
1279 * and then check for completion. On a full reset, the engine's
1280 * HW seqno will be advanced passed us and we are complete.
1281 * If we do a partial reset, we have to wait for the GPU to
1282 * resume and update the breadcrumb.
1283 *
1284 * If we don't hold the mutex, we can just wait for the worker
1285 * to come along and update the breadcrumb (either directly
1286 * itself, or indirectly by recovering the GPU).
1287 */
1288 if (flags & I915_WAIT_LOCKED &&
Chris Wilsone0705112017-02-23 07:44:20 +00001289 __i915_wait_request_check_and_reset(req))
Chris Wilson221fe792016-09-09 14:11:51 +01001290 continue;
Chris Wilson221fe792016-09-09 14:11:51 +01001291
Chris Wilson05235c52016-07-20 09:21:08 +01001292 /* Only spin if we know the GPU is processing this request */
Chris Wilsonb2f2f0f2017-09-22 13:03:33 +01001293 if (__i915_spin_request(req, wait.seqno, state, 2))
Chris Wilson05235c52016-07-20 09:21:08 +01001294 break;
Chris Wilsond6a22892017-02-23 07:44:17 +00001295
1296 if (!intel_wait_check_request(&wait, req)) {
1297 intel_engine_remove_wait(req->engine, &wait);
1298 goto restart;
1299 }
Chris Wilson05235c52016-07-20 09:21:08 +01001300 }
Chris Wilson05235c52016-07-20 09:21:08 +01001301
1302 intel_engine_remove_wait(req->engine, &wait);
Chris Wilson05235c52016-07-20 09:21:08 +01001303complete:
Chris Wilsona49625f2017-02-23 07:44:19 +00001304 __set_current_state(TASK_RUNNING);
Chris Wilson7de53bf2017-02-23 07:44:11 +00001305 if (flags & I915_WAIT_LOCKED)
1306 remove_wait_queue(errq, &reset);
Chris Wilsona49625f2017-02-23 07:44:19 +00001307 remove_wait_queue(&req->execute, &exec);
Chris Wilson05235c52016-07-20 09:21:08 +01001308 trace_i915_gem_request_wait_end(req);
1309
Chris Wilsone95433c2016-10-28 13:58:27 +01001310 return timeout;
Chris Wilson05235c52016-07-20 09:21:08 +01001311}
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001312
Chris Wilson28176ef2016-10-28 13:58:56 +01001313static void engine_retire_requests(struct intel_engine_cs *engine)
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001314{
1315 struct drm_i915_gem_request *request, *next;
Chris Wilson754c9fd2017-02-23 07:44:14 +00001316 u32 seqno = intel_engine_get_seqno(engine);
1317 LIST_HEAD(retire);
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001318
Chris Wilson754c9fd2017-02-23 07:44:14 +00001319 spin_lock_irq(&engine->timeline->lock);
Chris Wilson73cb9702016-10-28 13:58:46 +01001320 list_for_each_entry_safe(request, next,
1321 &engine->timeline->requests, link) {
Chris Wilson754c9fd2017-02-23 07:44:14 +00001322 if (!i915_seqno_passed(seqno, request->global_seqno))
1323 break;
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001324
Chris Wilson754c9fd2017-02-23 07:44:14 +00001325 list_move_tail(&request->link, &retire);
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001326 }
Chris Wilson754c9fd2017-02-23 07:44:14 +00001327 spin_unlock_irq(&engine->timeline->lock);
1328
1329 list_for_each_entry_safe(request, next, &retire, link)
1330 i915_gem_request_retire(request);
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001331}
1332
1333void i915_gem_retire_requests(struct drm_i915_private *dev_priv)
1334{
1335 struct intel_engine_cs *engine;
Chris Wilson28176ef2016-10-28 13:58:56 +01001336 enum intel_engine_id id;
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001337
1338 lockdep_assert_held(&dev_priv->drm.struct_mutex);
1339
Chris Wilson28176ef2016-10-28 13:58:56 +01001340 if (!dev_priv->gt.active_requests)
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001341 return;
1342
Chris Wilson28176ef2016-10-28 13:58:56 +01001343 for_each_engine(engine, dev_priv, id)
1344 engine_retire_requests(engine);
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001345}
Chris Wilsonc835c552017-02-13 17:15:21 +00001346
1347#if IS_ENABLED(CONFIG_DRM_I915_SELFTEST)
1348#include "selftests/mock_request.c"
1349#include "selftests/i915_gem_request.c"
1350#endif