blob: 1bfc3e664470507f4c9fc52d5b23c3ff8a01aec2 [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
64 intel_engine_enable_signaling(to_request(fence));
65 return true;
66}
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 Wilson20311bd2016-11-14 20:41:03 +0000162 GEM_BUG_ON(!RB_EMPTY_NODE(&pt->node));
163
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 Wilson20311bd2016-11-14 20:41:03 +0000188 RB_CLEAR_NODE(&pt->node);
189 pt->priority = INT_MIN;
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{
194 struct i915_gem_timeline *timeline = &i915->gt.global_timeline;
195 struct intel_engine_cs *engine;
196 enum intel_engine_id id;
197 int ret;
198
199 /* Carefully retire all requests without writing to the rings */
200 ret = i915_gem_wait_for_idle(i915,
201 I915_WAIT_INTERRUPTIBLE |
202 I915_WAIT_LOCKED);
203 if (ret)
204 return ret;
205
Chris Wilson12d31732017-02-23 07:44:09 +0000206 /* If the seqno wraps around, we need to clear the breadcrumb rbtree */
207 for_each_engine(engine, i915, id) {
208 struct intel_timeline *tl = &timeline->engine[id];
209
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
216 /* Finally reset hw state */
217 tl->seqno = seqno;
218 intel_engine_init_global_seqno(engine, seqno);
219 }
220
221 list_for_each_entry(timeline, &i915->gt.timelines, link) {
222 for_each_engine(engine, i915, id) {
223 struct intel_timeline *tl = &timeline->engine[id];
224
225 memset(tl->sync_seqno, 0, sizeof(tl->sync_seqno));
226 }
227 }
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
247static int reserve_seqno(struct intel_engine_cs *engine)
248{
249 u32 active = ++engine->timeline->inflight_seqnos;
250 u32 seqno = engine->timeline->seqno;
251 int ret;
252
253 /* Reservation is fine until we need to wrap around */
254 if (likely(!add_overflows(seqno, active)))
255 return 0;
256
257 ret = reset_all_global_seqno(engine->i915, 0);
258 if (ret) {
259 engine->timeline->inflight_seqnos--;
260 return ret;
261 }
262
263 return 0;
264}
265
Chris Wilson9b6586a2017-02-23 07:44:08 +0000266static void unreserve_seqno(struct intel_engine_cs *engine)
267{
268 GEM_BUG_ON(!engine->timeline->inflight_seqnos);
269 engine->timeline->inflight_seqnos--;
270}
271
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100272void i915_gem_retire_noop(struct i915_gem_active *active,
273 struct drm_i915_gem_request *request)
274{
275 /* Space left intentionally blank */
276}
277
Chris Wilson05235c52016-07-20 09:21:08 +0100278static void i915_gem_request_retire(struct drm_i915_gem_request *request)
279{
Chris Wilsone8a9c582016-12-18 15:37:20 +0000280 struct intel_engine_cs *engine = request->engine;
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100281 struct i915_gem_active *active, *next;
282
Chris Wilson4c7d62c2016-10-28 13:58:32 +0100283 lockdep_assert_held(&request->i915->drm.struct_mutex);
Chris Wilson48bc2a42016-11-25 13:17:17 +0000284 GEM_BUG_ON(!i915_sw_fence_signaled(&request->submit));
Chris Wilson4c7d62c2016-10-28 13:58:32 +0100285 GEM_BUG_ON(!i915_gem_request_completed(request));
Chris Wilson43020552016-11-15 16:46:20 +0000286 GEM_BUG_ON(!request->i915->gt.active_requests);
Chris Wilson4c7d62c2016-10-28 13:58:32 +0100287
Chris Wilson05235c52016-07-20 09:21:08 +0100288 trace_i915_gem_request_retire(request);
Chris Wilson80b204b2016-10-28 13:58:58 +0100289
Chris Wilsone8a9c582016-12-18 15:37:20 +0000290 spin_lock_irq(&engine->timeline->lock);
Chris Wilsone95433c2016-10-28 13:58:27 +0100291 list_del_init(&request->link);
Chris Wilsone8a9c582016-12-18 15:37:20 +0000292 spin_unlock_irq(&engine->timeline->lock);
Chris Wilson05235c52016-07-20 09:21:08 +0100293
294 /* We know the GPU must have read the request to have
295 * sent us the seqno + interrupt, so use the position
296 * of tail of the request to update the last known position
297 * of the GPU head.
298 *
299 * Note this requires that we are always called in request
300 * completion order.
301 */
Chris Wilson675d9ad2016-08-04 07:52:36 +0100302 list_del(&request->ring_link);
Chris Wilsonfe085f12017-03-21 10:25:52 +0000303 request->ring->head = request->postfix;
Chris Wilson43020552016-11-15 16:46:20 +0000304 if (!--request->i915->gt.active_requests) {
305 GEM_BUG_ON(!request->i915->gt.awake);
306 mod_delayed_work(request->i915->wq,
307 &request->i915->gt.idle_work,
308 msecs_to_jiffies(100));
309 }
Chris Wilson9b6586a2017-02-23 07:44:08 +0000310 unreserve_seqno(request->engine);
Chris Wilson05235c52016-07-20 09:21:08 +0100311
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100312 /* Walk through the active list, calling retire on each. This allows
313 * objects to track their GPU activity and mark themselves as idle
314 * when their *last* active request is completed (updating state
315 * tracking lists for eviction, active references for GEM, etc).
316 *
317 * As the ->retire() may free the node, we decouple it first and
318 * pass along the auxiliary information (to avoid dereferencing
319 * the node after the callback).
320 */
321 list_for_each_entry_safe(active, next, &request->active_list, link) {
322 /* In microbenchmarks or focusing upon time inside the kernel,
323 * we may spend an inordinate amount of time simply handling
324 * the retirement of requests and processing their callbacks.
325 * Of which, this loop itself is particularly hot due to the
326 * cache misses when jumping around the list of i915_gem_active.
327 * So we try to keep this loop as streamlined as possible and
328 * also prefetch the next i915_gem_active to try and hide
329 * the likely cache miss.
330 */
331 prefetchw(next);
332
333 INIT_LIST_HEAD(&active->link);
Chris Wilson0eafec62016-08-04 16:32:41 +0100334 RCU_INIT_POINTER(active->request, NULL);
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100335
336 active->retire(active, request);
337 }
338
Chris Wilson05235c52016-07-20 09:21:08 +0100339 i915_gem_request_remove_from_client(request);
340
Mika Kuoppalae5e1fc42016-11-16 17:20:31 +0200341 /* Retirement decays the ban score as it is a sign of ctx progress */
Mika Kuoppalabc1d53c2016-11-16 17:20:34 +0200342 if (request->ctx->ban_score > 0)
343 request->ctx->ban_score--;
Mika Kuoppalae5e1fc42016-11-16 17:20:31 +0200344
Chris Wilsone8a9c582016-12-18 15:37:20 +0000345 /* The backing object for the context is done after switching to the
346 * *next* context. Therefore we cannot retire the previous context until
347 * the next context has already started running. However, since we
348 * cannot take the required locks at i915_gem_request_submit() we
349 * defer the unpinning of the active context to now, retirement of
350 * the subsequent request.
351 */
352 if (engine->last_retired_context)
353 engine->context_unpin(engine, engine->last_retired_context);
354 engine->last_retired_context = request->ctx;
Chris Wilsond07f0e52016-10-28 13:58:44 +0100355
356 dma_fence_signal(&request->fence);
Chris Wilson52e54202016-11-14 20:41:02 +0000357
358 i915_priotree_fini(request->i915, &request->priotree);
Chris Wilsone8a261e2016-07-20 13:31:49 +0100359 i915_gem_request_put(request);
Chris Wilson05235c52016-07-20 09:21:08 +0100360}
361
362void i915_gem_request_retire_upto(struct drm_i915_gem_request *req)
363{
364 struct intel_engine_cs *engine = req->engine;
365 struct drm_i915_gem_request *tmp;
366
367 lockdep_assert_held(&req->i915->drm.struct_mutex);
Chris Wilson4ffd6e02016-11-25 13:17:15 +0000368 GEM_BUG_ON(!i915_gem_request_completed(req));
369
Chris Wilsone95433c2016-10-28 13:58:27 +0100370 if (list_empty(&req->link))
371 return;
Chris Wilson05235c52016-07-20 09:21:08 +0100372
373 do {
Chris Wilson73cb9702016-10-28 13:58:46 +0100374 tmp = list_first_entry(&engine->timeline->requests,
Chris Wilsonefdf7c02016-08-04 07:52:33 +0100375 typeof(*tmp), link);
Chris Wilson05235c52016-07-20 09:21:08 +0100376
377 i915_gem_request_retire(tmp);
378 } while (tmp != req);
Chris Wilson05235c52016-07-20 09:21:08 +0100379}
380
Chris Wilson9b6586a2017-02-23 07:44:08 +0000381static u32 timeline_get_seqno(struct intel_timeline *tl)
Chris Wilson05235c52016-07-20 09:21:08 +0100382{
Chris Wilson9b6586a2017-02-23 07:44:08 +0000383 return ++tl->seqno;
Chris Wilson05235c52016-07-20 09:21:08 +0100384}
385
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000386void __i915_gem_request_submit(struct drm_i915_gem_request *request)
Chris Wilson5590af32016-09-09 14:11:54 +0100387{
Chris Wilson73cb9702016-10-28 13:58:46 +0100388 struct intel_engine_cs *engine = request->engine;
Chris Wilsonf2d13292016-10-28 13:58:57 +0100389 struct intel_timeline *timeline;
390 u32 seqno;
Chris Wilson5590af32016-09-09 14:11:54 +0100391
Chris Wilsone60a8702017-03-02 11:51:30 +0000392 GEM_BUG_ON(!irqs_disabled());
Chris Wilson67520412017-03-02 13:28:01 +0000393 lockdep_assert_held(&engine->timeline->lock);
Chris Wilsone60a8702017-03-02 11:51:30 +0000394
Chris Wilsonfe497892017-02-23 07:44:13 +0000395 trace_i915_gem_request_execute(request);
396
Chris Wilson80b204b2016-10-28 13:58:58 +0100397 /* Transfer from per-context onto the global per-engine timeline */
398 timeline = engine->timeline;
399 GEM_BUG_ON(timeline == request->timeline);
Chris Wilson5590af32016-09-09 14:11:54 +0100400
Chris Wilson9b6586a2017-02-23 07:44:08 +0000401 seqno = timeline_get_seqno(timeline);
Chris Wilsonf2d13292016-10-28 13:58:57 +0100402 GEM_BUG_ON(!seqno);
403 GEM_BUG_ON(i915_seqno_passed(intel_engine_get_seqno(engine), seqno));
404
Chris Wilsonf2d13292016-10-28 13:58:57 +0100405 /* We may be recursing from the signal callback of another i915 fence */
406 spin_lock_nested(&request->lock, SINGLE_DEPTH_NESTING);
407 request->global_seqno = seqno;
408 if (test_bit(DMA_FENCE_FLAG_ENABLE_SIGNAL_BIT, &request->fence.flags))
409 intel_engine_enable_signaling(request);
410 spin_unlock(&request->lock);
411
Chris Wilsoncaddfe72016-10-28 13:58:52 +0100412 engine->emit_breadcrumb(request,
413 request->ring->vaddr + request->postfix);
Chris Wilson5590af32016-09-09 14:11:54 +0100414
Chris Wilsonbb894852016-11-14 20:40:57 +0000415 spin_lock(&request->timeline->lock);
Chris Wilson80b204b2016-10-28 13:58:58 +0100416 list_move_tail(&request->link, &timeline->requests);
417 spin_unlock(&request->timeline->lock);
418
Chris Wilsonfe497892017-02-23 07:44:13 +0000419 wake_up_all(&request->execute);
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000420}
Chris Wilson23902e42016-11-14 20:40:58 +0000421
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000422void i915_gem_request_submit(struct drm_i915_gem_request *request)
423{
424 struct intel_engine_cs *engine = request->engine;
425 unsigned long flags;
426
427 /* Will be called from irq-context when using foreign fences. */
428 spin_lock_irqsave(&engine->timeline->lock, flags);
429
430 __i915_gem_request_submit(request);
431
432 spin_unlock_irqrestore(&engine->timeline->lock, flags);
433}
434
Chris Wilsond6a22892017-02-23 07:44:17 +0000435void __i915_gem_request_unsubmit(struct drm_i915_gem_request *request)
436{
437 struct intel_engine_cs *engine = request->engine;
438 struct intel_timeline *timeline;
439
Chris Wilsone60a8702017-03-02 11:51:30 +0000440 GEM_BUG_ON(!irqs_disabled());
Chris Wilson67520412017-03-02 13:28:01 +0000441 lockdep_assert_held(&engine->timeline->lock);
Chris Wilsond6a22892017-02-23 07:44:17 +0000442
443 /* Only unwind in reverse order, required so that the per-context list
444 * is kept in seqno/ring order.
445 */
446 GEM_BUG_ON(request->global_seqno != engine->timeline->seqno);
447 engine->timeline->seqno--;
448
449 /* We may be recursing from the signal callback of another i915 fence */
450 spin_lock_nested(&request->lock, SINGLE_DEPTH_NESTING);
451 request->global_seqno = 0;
452 if (test_bit(DMA_FENCE_FLAG_ENABLE_SIGNAL_BIT, &request->fence.flags))
453 intel_engine_cancel_signaling(request);
454 spin_unlock(&request->lock);
455
456 /* Transfer back from the global per-engine timeline to per-context */
457 timeline = request->timeline;
458 GEM_BUG_ON(timeline == engine->timeline);
459
460 spin_lock(&timeline->lock);
461 list_move(&request->link, &timeline->requests);
462 spin_unlock(&timeline->lock);
463
464 /* We don't need to wake_up any waiters on request->execute, they
465 * will get woken by any other event or us re-adding this request
466 * to the engine timeline (__i915_gem_request_submit()). The waiters
467 * should be quite adapt at finding that the request now has a new
468 * global_seqno to the one they went to sleep on.
469 */
470}
471
472void i915_gem_request_unsubmit(struct drm_i915_gem_request *request)
473{
474 struct intel_engine_cs *engine = request->engine;
475 unsigned long flags;
476
477 /* Will be called from irq-context when using foreign fences. */
478 spin_lock_irqsave(&engine->timeline->lock, flags);
479
480 __i915_gem_request_unsubmit(request);
481
482 spin_unlock_irqrestore(&engine->timeline->lock, flags);
483}
484
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000485static int __i915_sw_fence_call
486submit_notify(struct i915_sw_fence *fence, enum i915_sw_fence_notify state)
487{
Chris Wilson48bc2a42016-11-25 13:17:17 +0000488 struct drm_i915_gem_request *request =
489 container_of(fence, typeof(*request), submit);
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000490
Chris Wilson48bc2a42016-11-25 13:17:17 +0000491 switch (state) {
492 case FENCE_COMPLETE:
Tvrtko Ursulin354d0362017-02-21 11:01:42 +0000493 trace_i915_gem_request_submit(request);
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000494 request->engine->submit_request(request);
Chris Wilson48bc2a42016-11-25 13:17:17 +0000495 break;
496
497 case FENCE_FREE:
498 i915_gem_request_put(request);
499 break;
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000500 }
Chris Wilson80b204b2016-10-28 13:58:58 +0100501
Chris Wilson5590af32016-09-09 14:11:54 +0100502 return NOTIFY_DONE;
503}
504
Chris Wilson8e637172016-08-02 22:50:26 +0100505/**
506 * i915_gem_request_alloc - allocate a request structure
507 *
508 * @engine: engine that we wish to issue the request on.
509 * @ctx: context that the request will be associated with.
510 * This can be NULL if the request is not directly related to
511 * any specific user context, in which case this function will
512 * choose an appropriate context to use.
513 *
514 * Returns a pointer to the allocated request if successful,
515 * or an error code if not.
516 */
517struct drm_i915_gem_request *
518i915_gem_request_alloc(struct intel_engine_cs *engine,
519 struct i915_gem_context *ctx)
Chris Wilson05235c52016-07-20 09:21:08 +0100520{
521 struct drm_i915_private *dev_priv = engine->i915;
Chris Wilson05235c52016-07-20 09:21:08 +0100522 struct drm_i915_gem_request *req;
523 int ret;
524
Chris Wilson28176ef2016-10-28 13:58:56 +0100525 lockdep_assert_held(&dev_priv->drm.struct_mutex);
526
Chris Wilson05235c52016-07-20 09:21:08 +0100527 /* ABI: Before userspace accesses the GPU (e.g. execbuffer), report
Chris Wilson6ffb7d02017-01-14 16:23:33 +0000528 * EIO if the GPU is already wedged.
Chris Wilson05235c52016-07-20 09:21:08 +0100529 */
Chris Wilson6ffb7d02017-01-14 16:23:33 +0000530 if (i915_terminally_wedged(&dev_priv->gpu_error))
531 return ERR_PTR(-EIO);
Chris Wilson05235c52016-07-20 09:21:08 +0100532
Chris Wilsone8a9c582016-12-18 15:37:20 +0000533 /* Pinning the contexts may generate requests in order to acquire
534 * GGTT space, so do this first before we reserve a seqno for
535 * ourselves.
536 */
537 ret = engine->context_pin(engine, ctx);
Chris Wilson28176ef2016-10-28 13:58:56 +0100538 if (ret)
539 return ERR_PTR(ret);
540
Chris Wilson9b6586a2017-02-23 07:44:08 +0000541 ret = reserve_seqno(engine);
Chris Wilsone8a9c582016-12-18 15:37:20 +0000542 if (ret)
543 goto err_unpin;
544
Chris Wilson9b5f4e52016-07-20 09:21:09 +0100545 /* Move the oldest request to the slab-cache (if not in use!) */
Chris Wilson73cb9702016-10-28 13:58:46 +0100546 req = list_first_entry_or_null(&engine->timeline->requests,
Chris Wilsonefdf7c02016-08-04 07:52:33 +0100547 typeof(*req), link);
Chris Wilson754c9fd2017-02-23 07:44:14 +0000548 if (req && i915_gem_request_completed(req))
Chris Wilson2a1d7752016-07-26 12:01:51 +0100549 i915_gem_request_retire(req);
Chris Wilson9b5f4e52016-07-20 09:21:09 +0100550
Chris Wilson5a198b82016-08-09 09:23:34 +0100551 /* Beware: Dragons be flying overhead.
552 *
553 * We use RCU to look up requests in flight. The lookups may
554 * race with the request being allocated from the slab freelist.
555 * That is the request we are writing to here, may be in the process
Chris Wilson1426f712016-08-09 17:03:22 +0100556 * of being read by __i915_gem_active_get_rcu(). As such,
Chris Wilson5a198b82016-08-09 09:23:34 +0100557 * we have to be very careful when overwriting the contents. During
558 * the RCU lookup, we change chase the request->engine pointer,
Chris Wilson65e47602016-10-28 13:58:49 +0100559 * read the request->global_seqno and increment the reference count.
Chris Wilson5a198b82016-08-09 09:23:34 +0100560 *
561 * The reference count is incremented atomically. If it is zero,
562 * the lookup knows the request is unallocated and complete. Otherwise,
563 * it is either still in use, or has been reallocated and reset
Chris Wilsonf54d1862016-10-25 13:00:45 +0100564 * with dma_fence_init(). This increment is safe for release as we
565 * check that the request we have a reference to and matches the active
Chris Wilson5a198b82016-08-09 09:23:34 +0100566 * request.
567 *
568 * Before we increment the refcount, we chase the request->engine
569 * pointer. We must not call kmem_cache_zalloc() or else we set
570 * that pointer to NULL and cause a crash during the lookup. If
571 * we see the request is completed (based on the value of the
572 * old engine and seqno), the lookup is complete and reports NULL.
573 * If we decide the request is not completed (new engine or seqno),
574 * then we grab a reference and double check that it is still the
575 * active request - which it won't be and restart the lookup.
576 *
577 * Do not use kmem_cache_zalloc() here!
578 */
579 req = kmem_cache_alloc(dev_priv->requests, GFP_KERNEL);
Chris Wilson28176ef2016-10-28 13:58:56 +0100580 if (!req) {
581 ret = -ENOMEM;
582 goto err_unreserve;
583 }
Chris Wilson05235c52016-07-20 09:21:08 +0100584
Chris Wilson80b204b2016-10-28 13:58:58 +0100585 req->timeline = i915_gem_context_lookup_timeline(ctx, engine);
586 GEM_BUG_ON(req->timeline == engine->timeline);
Chris Wilson73cb9702016-10-28 13:58:46 +0100587
Chris Wilson04769652016-07-20 09:21:11 +0100588 spin_lock_init(&req->lock);
Chris Wilsonf54d1862016-10-25 13:00:45 +0100589 dma_fence_init(&req->fence,
590 &i915_fence_ops,
591 &req->lock,
Chris Wilson73cb9702016-10-28 13:58:46 +0100592 req->timeline->fence_context,
Chris Wilson9b6586a2017-02-23 07:44:08 +0000593 timeline_get_seqno(req->timeline));
Chris Wilson04769652016-07-20 09:21:11 +0100594
Chris Wilson48bc2a42016-11-25 13:17:17 +0000595 /* We bump the ref for the fence chain */
596 i915_sw_fence_init(&i915_gem_request_get(req)->submit, submit_notify);
Chris Wilsonfe497892017-02-23 07:44:13 +0000597 init_waitqueue_head(&req->execute);
Chris Wilson5590af32016-09-09 14:11:54 +0100598
Chris Wilson52e54202016-11-14 20:41:02 +0000599 i915_priotree_init(&req->priotree);
600
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100601 INIT_LIST_HEAD(&req->active_list);
Chris Wilson05235c52016-07-20 09:21:08 +0100602 req->i915 = dev_priv;
603 req->engine = engine;
Chris Wilsone8a9c582016-12-18 15:37:20 +0000604 req->ctx = ctx;
Chris Wilson05235c52016-07-20 09:21:08 +0100605
Chris Wilson5a198b82016-08-09 09:23:34 +0100606 /* No zalloc, must clear what we need by hand */
Chris Wilsonf2d13292016-10-28 13:58:57 +0100607 req->global_seqno = 0;
Chris Wilson5a198b82016-08-09 09:23:34 +0100608 req->file_priv = NULL;
Chris Wilson058d88c2016-08-15 10:49:06 +0100609 req->batch = NULL;
Chris Wilson5a198b82016-08-09 09:23:34 +0100610
Chris Wilson05235c52016-07-20 09:21:08 +0100611 /*
612 * Reserve space in the ring buffer for all the commands required to
613 * eventually emit this request. This is to guarantee that the
614 * i915_add_request() call can't fail. Note that the reserve may need
615 * to be redone if the request is not actually submitted straight
616 * away, e.g. because a GPU scheduler has deferred it.
617 */
618 req->reserved_space = MIN_SPACE_FOR_ADD_REQUEST;
Chris Wilson98f29e82016-10-28 13:58:51 +0100619 GEM_BUG_ON(req->reserved_space < engine->emit_breadcrumb_sz);
Chris Wilson05235c52016-07-20 09:21:08 +0100620
Chris Wilsonf73e7392016-12-18 15:37:24 +0000621 ret = engine->request_alloc(req);
Chris Wilson05235c52016-07-20 09:21:08 +0100622 if (ret)
623 goto err_ctx;
624
Chris Wilsond0454462016-08-15 10:48:40 +0100625 /* Record the position of the start of the request so that
626 * should we detect the updated seqno part-way through the
627 * GPU processing the request, we never over-estimate the
628 * position of the head.
629 */
630 req->head = req->ring->tail;
631
Chris Wilson9b6586a2017-02-23 07:44:08 +0000632 /* Check that we didn't interrupt ourselves with a new request */
633 GEM_BUG_ON(req->timeline->seqno != req->fence.seqno);
Chris Wilson8e637172016-08-02 22:50:26 +0100634 return req;
Chris Wilson05235c52016-07-20 09:21:08 +0100635
636err_ctx:
Chris Wilson1618bdb2016-11-25 13:17:16 +0000637 /* Make sure we didn't add ourselves to external state before freeing */
638 GEM_BUG_ON(!list_empty(&req->active_list));
639 GEM_BUG_ON(!list_empty(&req->priotree.signalers_list));
640 GEM_BUG_ON(!list_empty(&req->priotree.waiters_list));
641
Chris Wilson05235c52016-07-20 09:21:08 +0100642 kmem_cache_free(dev_priv->requests, req);
Chris Wilson28176ef2016-10-28 13:58:56 +0100643err_unreserve:
Chris Wilson9b6586a2017-02-23 07:44:08 +0000644 unreserve_seqno(engine);
Chris Wilsone8a9c582016-12-18 15:37:20 +0000645err_unpin:
646 engine->context_unpin(engine, ctx);
Chris Wilson8e637172016-08-02 22:50:26 +0100647 return ERR_PTR(ret);
Chris Wilson05235c52016-07-20 09:21:08 +0100648}
649
Chris Wilsona2bc4692016-09-09 14:11:56 +0100650static int
651i915_gem_request_await_request(struct drm_i915_gem_request *to,
652 struct drm_i915_gem_request *from)
653{
Chris Wilson754c9fd2017-02-23 07:44:14 +0000654 u32 seqno;
Chris Wilson85e17f52016-10-28 13:58:53 +0100655 int ret;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100656
657 GEM_BUG_ON(to == from);
658
Chris Wilson52e54202016-11-14 20:41:02 +0000659 if (to->engine->schedule) {
660 ret = i915_priotree_add_dependency(to->i915,
661 &to->priotree,
662 &from->priotree);
663 if (ret < 0)
664 return ret;
665 }
666
Chris Wilson73cb9702016-10-28 13:58:46 +0100667 if (to->timeline == from->timeline)
Chris Wilsona2bc4692016-09-09 14:11:56 +0100668 return 0;
669
Chris Wilson73cb9702016-10-28 13:58:46 +0100670 if (to->engine == from->engine) {
671 ret = i915_sw_fence_await_sw_fence_gfp(&to->submit,
672 &from->submit,
673 GFP_KERNEL);
674 return ret < 0 ? ret : 0;
675 }
676
Chris Wilson754c9fd2017-02-23 07:44:14 +0000677 seqno = i915_gem_request_global_seqno(from);
678 if (!seqno) {
Chris Wilson65e47602016-10-28 13:58:49 +0100679 ret = i915_sw_fence_await_dma_fence(&to->submit,
680 &from->fence, 0,
681 GFP_KERNEL);
682 return ret < 0 ? ret : 0;
683 }
684
Chris Wilson754c9fd2017-02-23 07:44:14 +0000685 if (seqno <= to->timeline->sync_seqno[from->engine->id])
Chris Wilsona2bc4692016-09-09 14:11:56 +0100686 return 0;
687
688 trace_i915_gem_ring_sync_to(to, from);
689 if (!i915.semaphores) {
Chris Wilson0a046a02016-09-09 14:12:00 +0100690 if (!i915_spin_request(from, TASK_INTERRUPTIBLE, 2)) {
691 ret = i915_sw_fence_await_dma_fence(&to->submit,
692 &from->fence, 0,
693 GFP_KERNEL);
694 if (ret < 0)
695 return ret;
696 }
Chris Wilsona2bc4692016-09-09 14:11:56 +0100697 } else {
698 ret = to->engine->semaphore.sync_to(to, from);
699 if (ret)
700 return ret;
701 }
702
Chris Wilson754c9fd2017-02-23 07:44:14 +0000703 to->timeline->sync_seqno[from->engine->id] = seqno;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100704 return 0;
705}
706
Chris Wilsonb52992c2016-10-28 13:58:24 +0100707int
708i915_gem_request_await_dma_fence(struct drm_i915_gem_request *req,
709 struct dma_fence *fence)
710{
711 struct dma_fence_array *array;
712 int ret;
713 int i;
714
715 if (test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &fence->flags))
716 return 0;
717
718 if (dma_fence_is_i915(fence))
719 return i915_gem_request_await_request(req, to_request(fence));
720
721 if (!dma_fence_is_array(fence)) {
722 ret = i915_sw_fence_await_dma_fence(&req->submit,
723 fence, I915_FENCE_TIMEOUT,
724 GFP_KERNEL);
725 return ret < 0 ? ret : 0;
726 }
727
728 /* Note that if the fence-array was created in signal-on-any mode,
729 * we should *not* decompose it into its individual fences. However,
730 * we don't currently store which mode the fence-array is operating
731 * in. Fortunately, the only user of signal-on-any is private to
732 * amdgpu and we should not see any incoming fence-array from
733 * sync-file being in signal-on-any mode.
734 */
735
736 array = to_dma_fence_array(fence);
737 for (i = 0; i < array->num_fences; i++) {
738 struct dma_fence *child = array->fences[i];
739
740 if (dma_fence_is_i915(child))
741 ret = i915_gem_request_await_request(req,
742 to_request(child));
743 else
744 ret = i915_sw_fence_await_dma_fence(&req->submit,
745 child, I915_FENCE_TIMEOUT,
746 GFP_KERNEL);
747 if (ret < 0)
748 return ret;
749 }
750
751 return 0;
752}
753
Chris Wilsona2bc4692016-09-09 14:11:56 +0100754/**
755 * i915_gem_request_await_object - set this request to (async) wait upon a bo
756 *
757 * @to: request we are wishing to use
758 * @obj: object which may be in use on another ring.
759 *
760 * This code is meant to abstract object synchronization with the GPU.
761 * Conceptually we serialise writes between engines inside the GPU.
762 * We only allow one engine to write into a buffer at any time, but
763 * multiple readers. To ensure each has a coherent view of memory, we must:
764 *
765 * - If there is an outstanding write request to the object, the new
766 * request must wait for it to complete (either CPU or in hw, requests
767 * on the same ring will be naturally ordered).
768 *
769 * - If we are a write request (pending_write_domain is set), the new
770 * request must wait for outstanding read requests to complete.
771 *
772 * Returns 0 if successful, else propagates up the lower layer error.
773 */
774int
775i915_gem_request_await_object(struct drm_i915_gem_request *to,
776 struct drm_i915_gem_object *obj,
777 bool write)
778{
Chris Wilsond07f0e52016-10-28 13:58:44 +0100779 struct dma_fence *excl;
780 int ret = 0;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100781
782 if (write) {
Chris Wilsond07f0e52016-10-28 13:58:44 +0100783 struct dma_fence **shared;
784 unsigned int count, i;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100785
Chris Wilsond07f0e52016-10-28 13:58:44 +0100786 ret = reservation_object_get_fences_rcu(obj->resv,
787 &excl, &count, &shared);
Chris Wilsona2bc4692016-09-09 14:11:56 +0100788 if (ret)
789 return ret;
Chris Wilsond07f0e52016-10-28 13:58:44 +0100790
791 for (i = 0; i < count; i++) {
792 ret = i915_gem_request_await_dma_fence(to, shared[i]);
793 if (ret)
794 break;
795
796 dma_fence_put(shared[i]);
797 }
798
799 for (; i < count; i++)
800 dma_fence_put(shared[i]);
801 kfree(shared);
802 } else {
803 excl = reservation_object_get_excl_rcu(obj->resv);
Chris Wilsona2bc4692016-09-09 14:11:56 +0100804 }
805
Chris Wilsond07f0e52016-10-28 13:58:44 +0100806 if (excl) {
807 if (ret == 0)
808 ret = i915_gem_request_await_dma_fence(to, excl);
809
810 dma_fence_put(excl);
811 }
812
813 return ret;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100814}
815
Chris Wilson05235c52016-07-20 09:21:08 +0100816static void i915_gem_mark_busy(const struct intel_engine_cs *engine)
817{
818 struct drm_i915_private *dev_priv = engine->i915;
819
Chris Wilson05235c52016-07-20 09:21:08 +0100820 if (dev_priv->gt.awake)
821 return;
822
Chris Wilson43020552016-11-15 16:46:20 +0000823 GEM_BUG_ON(!dev_priv->gt.active_requests);
824
Chris Wilson05235c52016-07-20 09:21:08 +0100825 intel_runtime_pm_get_noresume(dev_priv);
826 dev_priv->gt.awake = true;
827
Chris Wilson54b4f682016-07-21 21:16:19 +0100828 intel_enable_gt_powersave(dev_priv);
Chris Wilson05235c52016-07-20 09:21:08 +0100829 i915_update_gfx_val(dev_priv);
830 if (INTEL_GEN(dev_priv) >= 6)
831 gen6_rps_busy(dev_priv);
832
833 queue_delayed_work(dev_priv->wq,
834 &dev_priv->gt.retire_work,
835 round_jiffies_up_relative(HZ));
836}
837
838/*
839 * NB: This function is not allowed to fail. Doing so would mean the the
840 * request is not being tracked for completion but the work itself is
841 * going to happen on the hardware. This would be a Bad Thing(tm).
842 */
Chris Wilson17f298cf2016-08-10 13:41:46 +0100843void __i915_add_request(struct drm_i915_gem_request *request, bool flush_caches)
Chris Wilson05235c52016-07-20 09:21:08 +0100844{
Chris Wilson95b2ab52016-08-15 10:48:46 +0100845 struct intel_engine_cs *engine = request->engine;
846 struct intel_ring *ring = request->ring;
Chris Wilson73cb9702016-10-28 13:58:46 +0100847 struct intel_timeline *timeline = request->timeline;
Chris Wilson0a046a02016-09-09 14:12:00 +0100848 struct drm_i915_gem_request *prev;
Tvrtko Ursulin73dec952017-02-14 11:32:42 +0000849 u32 *cs;
Chris Wilsoncaddfe72016-10-28 13:58:52 +0100850 int err;
Chris Wilson05235c52016-07-20 09:21:08 +0100851
Chris Wilson4c7d62c2016-10-28 13:58:32 +0100852 lockdep_assert_held(&request->i915->drm.struct_mutex);
Chris Wilson0f25dff2016-09-09 14:11:55 +0100853 trace_i915_gem_request_add(request);
854
Chris Wilsonc781c972017-01-11 14:08:58 +0000855 /* Make sure that no request gazumped us - if it was allocated after
856 * our i915_gem_request_alloc() and called __i915_add_request() before
857 * us, the timeline will hold its seqno which is later than ours.
858 */
Chris Wilson9b6586a2017-02-23 07:44:08 +0000859 GEM_BUG_ON(timeline->seqno != request->fence.seqno);
Chris Wilsonc781c972017-01-11 14:08:58 +0000860
Chris Wilson05235c52016-07-20 09:21:08 +0100861 /*
862 * To ensure that this call will not fail, space for its emissions
863 * should already have been reserved in the ring buffer. Let the ring
864 * know that it is time to use that space up.
865 */
Chris Wilson05235c52016-07-20 09:21:08 +0100866 request->reserved_space = 0;
867
868 /*
869 * Emit any outstanding flushes - execbuf can fail to emit the flush
870 * after having emitted the batchbuffer command. Hence we need to fix
871 * things up similar to emitting the lazy request. The difference here
872 * is that the flush _must_ happen before the next request, no matter
873 * what.
874 */
875 if (flush_caches) {
Chris Wilsoncaddfe72016-10-28 13:58:52 +0100876 err = engine->emit_flush(request, EMIT_FLUSH);
Chris Wilsonc7fe7d22016-08-02 22:50:24 +0100877
Chris Wilson05235c52016-07-20 09:21:08 +0100878 /* Not allowed to fail! */
Chris Wilsoncaddfe72016-10-28 13:58:52 +0100879 WARN(err, "engine->emit_flush() failed: %d!\n", err);
Chris Wilson05235c52016-07-20 09:21:08 +0100880 }
881
Chris Wilsond0454462016-08-15 10:48:40 +0100882 /* Record the position of the start of the breadcrumb so that
Chris Wilson05235c52016-07-20 09:21:08 +0100883 * should we detect the updated seqno part-way through the
884 * GPU processing the request, we never over-estimate the
Chris Wilsond0454462016-08-15 10:48:40 +0100885 * position of the ring's HEAD.
Chris Wilson05235c52016-07-20 09:21:08 +0100886 */
Tvrtko Ursulin73dec952017-02-14 11:32:42 +0000887 cs = intel_ring_begin(request, engine->emit_breadcrumb_sz);
888 GEM_BUG_ON(IS_ERR(cs));
889 request->postfix = intel_ring_offset(request, cs);
Chris Wilson05235c52016-07-20 09:21:08 +0100890
Chris Wilson0f25dff2016-09-09 14:11:55 +0100891 /* Seal the request and mark it as pending execution. Note that
892 * we may inspect this state, without holding any locks, during
893 * hangcheck. Hence we apply the barrier to ensure that we do not
894 * see a more recent value in the hws than we are tracking.
895 */
Chris Wilson0a046a02016-09-09 14:12:00 +0100896
Chris Wilson73cb9702016-10-28 13:58:46 +0100897 prev = i915_gem_active_raw(&timeline->last_request,
Chris Wilson0a046a02016-09-09 14:12:00 +0100898 &request->i915->drm.struct_mutex);
Chris Wilson52e54202016-11-14 20:41:02 +0000899 if (prev) {
Chris Wilson0a046a02016-09-09 14:12:00 +0100900 i915_sw_fence_await_sw_fence(&request->submit, &prev->submit,
901 &request->submitq);
Chris Wilson52e54202016-11-14 20:41:02 +0000902 if (engine->schedule)
903 __i915_priotree_add_dependency(&request->priotree,
904 &prev->priotree,
905 &request->dep,
906 0);
907 }
Chris Wilson0a046a02016-09-09 14:12:00 +0100908
Chris Wilson80b204b2016-10-28 13:58:58 +0100909 spin_lock_irq(&timeline->lock);
Chris Wilsonf2d13292016-10-28 13:58:57 +0100910 list_add_tail(&request->link, &timeline->requests);
Chris Wilson80b204b2016-10-28 13:58:58 +0100911 spin_unlock_irq(&timeline->lock);
Chris Wilson28176ef2016-10-28 13:58:56 +0100912
Chris Wilson9b6586a2017-02-23 07:44:08 +0000913 GEM_BUG_ON(timeline->seqno != request->fence.seqno);
Chris Wilson73cb9702016-10-28 13:58:46 +0100914 i915_gem_active_set(&timeline->last_request, request);
Chris Wilsonf2d13292016-10-28 13:58:57 +0100915
Chris Wilson0f25dff2016-09-09 14:11:55 +0100916 list_add_tail(&request->ring_link, &ring->request_list);
Chris Wilsonf2d13292016-10-28 13:58:57 +0100917 request->emitted_jiffies = jiffies;
Chris Wilson0f25dff2016-09-09 14:11:55 +0100918
Chris Wilson9b6586a2017-02-23 07:44:08 +0000919 if (!request->i915->gt.active_requests++)
920 i915_gem_mark_busy(engine);
Chris Wilson5590af32016-09-09 14:11:54 +0100921
Chris Wilson0de91362016-11-14 20:41:01 +0000922 /* Let the backend know a new request has arrived that may need
923 * to adjust the existing execution schedule due to a high priority
924 * request - i.e. we may want to preempt the current request in order
925 * to run a high priority dependency chain *before* we can execute this
926 * request.
927 *
928 * This is called before the request is ready to run so that we can
929 * decide whether to preempt the entire chain so that it is ready to
930 * run at the earliest possible convenience.
931 */
932 if (engine->schedule)
Chris Wilson9f792eb2016-11-14 20:41:04 +0000933 engine->schedule(request, request->ctx->priority);
Chris Wilson0de91362016-11-14 20:41:01 +0000934
Chris Wilson5590af32016-09-09 14:11:54 +0100935 local_bh_disable();
936 i915_sw_fence_commit(&request->submit);
937 local_bh_enable(); /* Kick the execlists tasklet if just scheduled */
Chris Wilson05235c52016-07-20 09:21:08 +0100938}
939
940static unsigned long local_clock_us(unsigned int *cpu)
941{
942 unsigned long t;
943
944 /* Cheaply and approximately convert from nanoseconds to microseconds.
945 * The result and subsequent calculations are also defined in the same
946 * approximate microseconds units. The principal source of timing
947 * error here is from the simple truncation.
948 *
949 * Note that local_clock() is only defined wrt to the current CPU;
950 * the comparisons are no longer valid if we switch CPUs. Instead of
951 * blocking preemption for the entire busywait, we can detect the CPU
952 * switch and use that as indicator of system load and a reason to
953 * stop busywaiting, see busywait_stop().
954 */
955 *cpu = get_cpu();
956 t = local_clock() >> 10;
957 put_cpu();
958
959 return t;
960}
961
962static bool busywait_stop(unsigned long timeout, unsigned int cpu)
963{
964 unsigned int this_cpu;
965
966 if (time_after(local_clock_us(&this_cpu), timeout))
967 return true;
968
969 return this_cpu != cpu;
970}
971
972bool __i915_spin_request(const struct drm_i915_gem_request *req,
Chris Wilson754c9fd2017-02-23 07:44:14 +0000973 u32 seqno, int state, unsigned long timeout_us)
Chris Wilson05235c52016-07-20 09:21:08 +0100974{
Chris Wilsonc33ed062017-02-17 15:13:01 +0000975 struct intel_engine_cs *engine = req->engine;
976 unsigned int irq, cpu;
Chris Wilson05235c52016-07-20 09:21:08 +0100977
978 /* When waiting for high frequency requests, e.g. during synchronous
979 * rendering split between the CPU and GPU, the finite amount of time
980 * required to set up the irq and wait upon it limits the response
981 * rate. By busywaiting on the request completion for a short while we
982 * can service the high frequency waits as quick as possible. However,
983 * if it is a slow request, we want to sleep as quickly as possible.
984 * The tradeoff between waiting and sleeping is roughly the time it
985 * takes to sleep on a request, on the order of a microsecond.
986 */
987
Chris Wilsonc33ed062017-02-17 15:13:01 +0000988 irq = atomic_read(&engine->irq_count);
Chris Wilson05235c52016-07-20 09:21:08 +0100989 timeout_us += local_clock_us(&cpu);
990 do {
Chris Wilson754c9fd2017-02-23 07:44:14 +0000991 if (seqno != i915_gem_request_global_seqno(req))
992 break;
993
994 if (i915_seqno_passed(intel_engine_get_seqno(req->engine),
995 seqno))
Chris Wilson05235c52016-07-20 09:21:08 +0100996 return true;
997
Chris Wilsonc33ed062017-02-17 15:13:01 +0000998 /* Seqno are meant to be ordered *before* the interrupt. If
999 * we see an interrupt without a corresponding seqno advance,
1000 * assume we won't see one in the near future but require
1001 * the engine->seqno_barrier() to fixup coherency.
1002 */
1003 if (atomic_read(&engine->irq_count) != irq)
1004 break;
1005
Chris Wilson05235c52016-07-20 09:21:08 +01001006 if (signal_pending_state(state, current))
1007 break;
1008
1009 if (busywait_stop(timeout_us, cpu))
1010 break;
1011
Christian Borntraegerf2f09a42016-10-25 11:03:14 +02001012 cpu_relax();
Chris Wilson05235c52016-07-20 09:21:08 +01001013 } while (!need_resched());
1014
1015 return false;
1016}
1017
Chris Wilsone0705112017-02-23 07:44:20 +00001018static bool __i915_wait_request_check_and_reset(struct drm_i915_gem_request *request)
Chris Wilson4680816b2016-10-28 13:58:48 +01001019{
Chris Wilson8c185ec2017-03-16 17:13:02 +00001020 if (likely(!i915_reset_handoff(&request->i915->gpu_error)))
Chris Wilsone0705112017-02-23 07:44:20 +00001021 return false;
Chris Wilson4680816b2016-10-28 13:58:48 +01001022
Chris Wilsone0705112017-02-23 07:44:20 +00001023 __set_current_state(TASK_RUNNING);
1024 i915_reset(request->i915);
1025 return true;
Chris Wilson4680816b2016-10-28 13:58:48 +01001026}
1027
Chris Wilson05235c52016-07-20 09:21:08 +01001028/**
Chris Wilson776f3232016-08-04 07:52:40 +01001029 * i915_wait_request - wait until execution of request has finished
Chris Wilsone95433c2016-10-28 13:58:27 +01001030 * @req: the request to wait upon
Chris Wilsonea746f32016-09-09 14:11:49 +01001031 * @flags: how to wait
Chris Wilsone95433c2016-10-28 13:58:27 +01001032 * @timeout: how long to wait in jiffies
Chris Wilson05235c52016-07-20 09:21:08 +01001033 *
Chris Wilsone95433c2016-10-28 13:58:27 +01001034 * i915_wait_request() waits for the request to be completed, for a
1035 * maximum of @timeout jiffies (with MAX_SCHEDULE_TIMEOUT implying an
1036 * unbounded wait).
Chris Wilson05235c52016-07-20 09:21:08 +01001037 *
Chris Wilsone95433c2016-10-28 13:58:27 +01001038 * If the caller holds the struct_mutex, the caller must pass I915_WAIT_LOCKED
1039 * in via the flags, and vice versa if the struct_mutex is not held, the caller
1040 * must not specify that the wait is locked.
1041 *
1042 * Returns the remaining time (in jiffies) if the request completed, which may
1043 * be zero or -ETIME if the request is unfinished after the timeout expires.
1044 * May return -EINTR is called with I915_WAIT_INTERRUPTIBLE and a signal is
1045 * pending before the request completes.
Chris Wilson05235c52016-07-20 09:21:08 +01001046 */
Chris Wilsone95433c2016-10-28 13:58:27 +01001047long i915_wait_request(struct drm_i915_gem_request *req,
1048 unsigned int flags,
1049 long timeout)
Chris Wilson05235c52016-07-20 09:21:08 +01001050{
Chris Wilsonea746f32016-09-09 14:11:49 +01001051 const int state = flags & I915_WAIT_INTERRUPTIBLE ?
1052 TASK_INTERRUPTIBLE : TASK_UNINTERRUPTIBLE;
Chris Wilson4b36b2e2017-02-23 07:44:10 +00001053 wait_queue_head_t *errq = &req->i915->gpu_error.wait_queue;
Chris Wilsona49625f2017-02-23 07:44:19 +00001054 DEFINE_WAIT_FUNC(reset, default_wake_function);
1055 DEFINE_WAIT_FUNC(exec, default_wake_function);
Chris Wilson05235c52016-07-20 09:21:08 +01001056 struct intel_wait wait;
Chris Wilson05235c52016-07-20 09:21:08 +01001057
1058 might_sleep();
Chris Wilson22dd3bb2016-09-09 14:11:50 +01001059#if IS_ENABLED(CONFIG_LOCKDEP)
Chris Wilsone95433c2016-10-28 13:58:27 +01001060 GEM_BUG_ON(debug_locks &&
1061 !!lockdep_is_held(&req->i915->drm.struct_mutex) !=
Chris Wilson22dd3bb2016-09-09 14:11:50 +01001062 !!(flags & I915_WAIT_LOCKED));
1063#endif
Chris Wilsone95433c2016-10-28 13:58:27 +01001064 GEM_BUG_ON(timeout < 0);
Chris Wilson05235c52016-07-20 09:21:08 +01001065
Chris Wilson05235c52016-07-20 09:21:08 +01001066 if (i915_gem_request_completed(req))
Chris Wilsone95433c2016-10-28 13:58:27 +01001067 return timeout;
Chris Wilson05235c52016-07-20 09:21:08 +01001068
Chris Wilsone95433c2016-10-28 13:58:27 +01001069 if (!timeout)
1070 return -ETIME;
Chris Wilson05235c52016-07-20 09:21:08 +01001071
Tvrtko Ursulin936925022017-02-21 11:00:24 +00001072 trace_i915_gem_request_wait_begin(req, flags);
Chris Wilson05235c52016-07-20 09:21:08 +01001073
Chris Wilsona49625f2017-02-23 07:44:19 +00001074 add_wait_queue(&req->execute, &exec);
Chris Wilson7de53bf2017-02-23 07:44:11 +00001075 if (flags & I915_WAIT_LOCKED)
1076 add_wait_queue(errq, &reset);
1077
Chris Wilson56299fb2017-02-27 20:58:48 +00001078 intel_wait_init(&wait, req);
Chris Wilson754c9fd2017-02-23 07:44:14 +00001079
Chris Wilsond6a22892017-02-23 07:44:17 +00001080restart:
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001081 do {
1082 set_current_state(state);
1083 if (intel_wait_update_request(&wait, req))
1084 break;
Chris Wilson754c9fd2017-02-23 07:44:14 +00001085
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001086 if (flags & I915_WAIT_LOCKED &&
1087 __i915_wait_request_check_and_reset(req))
1088 continue;
Chris Wilson541ca6e2017-02-23 07:44:12 +00001089
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001090 if (signal_pending_state(state, current)) {
1091 timeout = -ERESTARTSYS;
Chris Wilson4680816b2016-10-28 13:58:48 +01001092 goto complete;
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001093 }
Chris Wilson4680816b2016-10-28 13:58:48 +01001094
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001095 if (!timeout) {
1096 timeout = -ETIME;
1097 goto complete;
1098 }
Chris Wilson541ca6e2017-02-23 07:44:12 +00001099
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001100 timeout = io_schedule_timeout(timeout);
1101 } while (1);
Chris Wilson541ca6e2017-02-23 07:44:12 +00001102
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001103 GEM_BUG_ON(!intel_wait_has_seqno(&wait));
Chris Wilsonfe497892017-02-23 07:44:13 +00001104 GEM_BUG_ON(!i915_sw_fence_signaled(&req->submit));
Chris Wilson4680816b2016-10-28 13:58:48 +01001105
Daniel Vetter437c3082016-08-05 18:11:24 +02001106 /* Optimistic short spin before touching IRQs */
Chris Wilson05235c52016-07-20 09:21:08 +01001107 if (i915_spin_request(req, state, 5))
1108 goto complete;
1109
1110 set_current_state(state);
Chris Wilson05235c52016-07-20 09:21:08 +01001111 if (intel_engine_add_wait(req->engine, &wait))
1112 /* In order to check that we haven't missed the interrupt
1113 * as we enabled it, we need to kick ourselves to do a
1114 * coherent check on the seqno before we sleep.
1115 */
1116 goto wakeup;
1117
Chris Wilson24f417e2017-02-23 07:44:21 +00001118 if (flags & I915_WAIT_LOCKED)
1119 __i915_wait_request_check_and_reset(req);
1120
Chris Wilson05235c52016-07-20 09:21:08 +01001121 for (;;) {
1122 if (signal_pending_state(state, current)) {
Chris Wilsone95433c2016-10-28 13:58:27 +01001123 timeout = -ERESTARTSYS;
Chris Wilson05235c52016-07-20 09:21:08 +01001124 break;
1125 }
1126
Chris Wilsone95433c2016-10-28 13:58:27 +01001127 if (!timeout) {
1128 timeout = -ETIME;
Chris Wilson05235c52016-07-20 09:21:08 +01001129 break;
1130 }
1131
Chris Wilsone95433c2016-10-28 13:58:27 +01001132 timeout = io_schedule_timeout(timeout);
1133
Chris Wilson754c9fd2017-02-23 07:44:14 +00001134 if (intel_wait_complete(&wait) &&
1135 intel_wait_check_request(&wait, req))
Chris Wilson05235c52016-07-20 09:21:08 +01001136 break;
1137
1138 set_current_state(state);
1139
1140wakeup:
1141 /* Carefully check if the request is complete, giving time
1142 * for the seqno to be visible following the interrupt.
1143 * We also have to check in case we are kicked by the GPU
1144 * reset in order to drop the struct_mutex.
1145 */
1146 if (__i915_request_irq_complete(req))
1147 break;
1148
Chris Wilson221fe792016-09-09 14:11:51 +01001149 /* If the GPU is hung, and we hold the lock, reset the GPU
1150 * and then check for completion. On a full reset, the engine's
1151 * HW seqno will be advanced passed us and we are complete.
1152 * If we do a partial reset, we have to wait for the GPU to
1153 * resume and update the breadcrumb.
1154 *
1155 * If we don't hold the mutex, we can just wait for the worker
1156 * to come along and update the breadcrumb (either directly
1157 * itself, or indirectly by recovering the GPU).
1158 */
1159 if (flags & I915_WAIT_LOCKED &&
Chris Wilsone0705112017-02-23 07:44:20 +00001160 __i915_wait_request_check_and_reset(req))
Chris Wilson221fe792016-09-09 14:11:51 +01001161 continue;
Chris Wilson221fe792016-09-09 14:11:51 +01001162
Chris Wilson05235c52016-07-20 09:21:08 +01001163 /* Only spin if we know the GPU is processing this request */
1164 if (i915_spin_request(req, state, 2))
1165 break;
Chris Wilsond6a22892017-02-23 07:44:17 +00001166
1167 if (!intel_wait_check_request(&wait, req)) {
1168 intel_engine_remove_wait(req->engine, &wait);
1169 goto restart;
1170 }
Chris Wilson05235c52016-07-20 09:21:08 +01001171 }
Chris Wilson05235c52016-07-20 09:21:08 +01001172
1173 intel_engine_remove_wait(req->engine, &wait);
Chris Wilson05235c52016-07-20 09:21:08 +01001174complete:
Chris Wilsona49625f2017-02-23 07:44:19 +00001175 __set_current_state(TASK_RUNNING);
Chris Wilson7de53bf2017-02-23 07:44:11 +00001176 if (flags & I915_WAIT_LOCKED)
1177 remove_wait_queue(errq, &reset);
Chris Wilsona49625f2017-02-23 07:44:19 +00001178 remove_wait_queue(&req->execute, &exec);
Chris Wilson05235c52016-07-20 09:21:08 +01001179 trace_i915_gem_request_wait_end(req);
1180
Chris Wilsone95433c2016-10-28 13:58:27 +01001181 return timeout;
Chris Wilson05235c52016-07-20 09:21:08 +01001182}
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001183
Chris Wilson28176ef2016-10-28 13:58:56 +01001184static void engine_retire_requests(struct intel_engine_cs *engine)
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001185{
1186 struct drm_i915_gem_request *request, *next;
Chris Wilson754c9fd2017-02-23 07:44:14 +00001187 u32 seqno = intel_engine_get_seqno(engine);
1188 LIST_HEAD(retire);
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001189
Chris Wilson754c9fd2017-02-23 07:44:14 +00001190 spin_lock_irq(&engine->timeline->lock);
Chris Wilson73cb9702016-10-28 13:58:46 +01001191 list_for_each_entry_safe(request, next,
1192 &engine->timeline->requests, link) {
Chris Wilson754c9fd2017-02-23 07:44:14 +00001193 if (!i915_seqno_passed(seqno, request->global_seqno))
1194 break;
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001195
Chris Wilson754c9fd2017-02-23 07:44:14 +00001196 list_move_tail(&request->link, &retire);
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001197 }
Chris Wilson754c9fd2017-02-23 07:44:14 +00001198 spin_unlock_irq(&engine->timeline->lock);
1199
1200 list_for_each_entry_safe(request, next, &retire, link)
1201 i915_gem_request_retire(request);
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001202}
1203
1204void i915_gem_retire_requests(struct drm_i915_private *dev_priv)
1205{
1206 struct intel_engine_cs *engine;
Chris Wilson28176ef2016-10-28 13:58:56 +01001207 enum intel_engine_id id;
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001208
1209 lockdep_assert_held(&dev_priv->drm.struct_mutex);
1210
Chris Wilson28176ef2016-10-28 13:58:56 +01001211 if (!dev_priv->gt.active_requests)
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001212 return;
1213
Chris Wilson28176ef2016-10-28 13:58:56 +01001214 for_each_engine(engine, dev_priv, id)
1215 engine_retire_requests(engine);
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001216}
Chris Wilsonc835c552017-02-13 17:15:21 +00001217
1218#if IS_ENABLED(CONFIG_DRM_I915_SELFTEST)
1219#include "selftests/mock_request.c"
1220#include "selftests/i915_gem_request.c"
1221#endif