blob: b94ae6cf9837f638bedbd934d13ad254bcdd4994 [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>
Chris Wilsonfa545cb2016-08-04 07:52:35 +010027
Chris Wilson05235c52016-07-20 09:21:08 +010028#include "i915_drv.h"
29
Chris Wilsonf54d1862016-10-25 13:00:45 +010030static const char *i915_fence_get_driver_name(struct dma_fence *fence)
Chris Wilson04769652016-07-20 09:21:11 +010031{
32 return "i915";
33}
34
Chris Wilsonf54d1862016-10-25 13:00:45 +010035static const char *i915_fence_get_timeline_name(struct dma_fence *fence)
Chris Wilson04769652016-07-20 09:21:11 +010036{
Chris Wilson73cb9702016-10-28 13:58:46 +010037 return to_request(fence)->timeline->common->name;
Chris Wilson04769652016-07-20 09:21:11 +010038}
39
Chris Wilsonf54d1862016-10-25 13:00:45 +010040static bool i915_fence_signaled(struct dma_fence *fence)
Chris Wilson04769652016-07-20 09:21:11 +010041{
42 return i915_gem_request_completed(to_request(fence));
43}
44
Chris Wilsonf54d1862016-10-25 13:00:45 +010045static bool i915_fence_enable_signaling(struct dma_fence *fence)
Chris Wilson04769652016-07-20 09:21:11 +010046{
47 if (i915_fence_signaled(fence))
48 return false;
49
50 intel_engine_enable_signaling(to_request(fence));
51 return true;
52}
53
Chris Wilsonf54d1862016-10-25 13:00:45 +010054static signed long i915_fence_wait(struct dma_fence *fence,
Chris Wilson04769652016-07-20 09:21:11 +010055 bool interruptible,
Chris Wilsone95433c2016-10-28 13:58:27 +010056 signed long timeout)
Chris Wilson04769652016-07-20 09:21:11 +010057{
Chris Wilsone95433c2016-10-28 13:58:27 +010058 return i915_wait_request(to_request(fence), interruptible, timeout);
Chris Wilson04769652016-07-20 09:21:11 +010059}
60
Chris Wilsonf54d1862016-10-25 13:00:45 +010061static void i915_fence_release(struct dma_fence *fence)
Chris Wilson04769652016-07-20 09:21:11 +010062{
63 struct drm_i915_gem_request *req = to_request(fence);
64
Chris Wilsonfc158402016-11-25 13:17:18 +000065 /* The request is put onto a RCU freelist (i.e. the address
66 * is immediately reused), mark the fences as being freed now.
67 * Otherwise the debugobjects for the fences are only marked as
68 * freed when the slab cache itself is freed, and so we would get
69 * caught trying to reuse dead objects.
70 */
71 i915_sw_fence_fini(&req->submit);
72 i915_sw_fence_fini(&req->execute);
73
Chris Wilson04769652016-07-20 09:21:11 +010074 kmem_cache_free(req->i915->requests, req);
75}
76
Chris Wilsonf54d1862016-10-25 13:00:45 +010077const struct dma_fence_ops i915_fence_ops = {
Chris Wilson04769652016-07-20 09:21:11 +010078 .get_driver_name = i915_fence_get_driver_name,
79 .get_timeline_name = i915_fence_get_timeline_name,
80 .enable_signaling = i915_fence_enable_signaling,
81 .signaled = i915_fence_signaled,
82 .wait = i915_fence_wait,
83 .release = i915_fence_release,
Chris Wilson04769652016-07-20 09:21:11 +010084};
85
Chris Wilson05235c52016-07-20 09:21:08 +010086int i915_gem_request_add_to_client(struct drm_i915_gem_request *req,
87 struct drm_file *file)
88{
89 struct drm_i915_private *dev_private;
90 struct drm_i915_file_private *file_priv;
91
92 WARN_ON(!req || !file || req->file_priv);
93
94 if (!req || !file)
95 return -EINVAL;
96
97 if (req->file_priv)
98 return -EINVAL;
99
100 dev_private = req->i915;
101 file_priv = file->driver_priv;
102
103 spin_lock(&file_priv->mm.lock);
104 req->file_priv = file_priv;
105 list_add_tail(&req->client_list, &file_priv->mm.request_list);
106 spin_unlock(&file_priv->mm.lock);
107
Chris Wilson05235c52016-07-20 09:21:08 +0100108 return 0;
109}
110
111static inline void
112i915_gem_request_remove_from_client(struct drm_i915_gem_request *request)
113{
114 struct drm_i915_file_private *file_priv = request->file_priv;
115
116 if (!file_priv)
117 return;
118
119 spin_lock(&file_priv->mm.lock);
120 list_del(&request->client_list);
121 request->file_priv = NULL;
122 spin_unlock(&file_priv->mm.lock);
Chris Wilson05235c52016-07-20 09:21:08 +0100123}
124
Chris Wilson52e54202016-11-14 20:41:02 +0000125static struct i915_dependency *
126i915_dependency_alloc(struct drm_i915_private *i915)
127{
128 return kmem_cache_alloc(i915->dependencies, GFP_KERNEL);
129}
130
131static void
132i915_dependency_free(struct drm_i915_private *i915,
133 struct i915_dependency *dep)
134{
135 kmem_cache_free(i915->dependencies, dep);
136}
137
138static void
139__i915_priotree_add_dependency(struct i915_priotree *pt,
140 struct i915_priotree *signal,
141 struct i915_dependency *dep,
142 unsigned long flags)
143{
Chris Wilson20311bd2016-11-14 20:41:03 +0000144 INIT_LIST_HEAD(&dep->dfs_link);
Chris Wilson52e54202016-11-14 20:41:02 +0000145 list_add(&dep->wait_link, &signal->waiters_list);
146 list_add(&dep->signal_link, &pt->signalers_list);
147 dep->signaler = signal;
148 dep->flags = flags;
149}
150
151static int
152i915_priotree_add_dependency(struct drm_i915_private *i915,
153 struct i915_priotree *pt,
154 struct i915_priotree *signal)
155{
156 struct i915_dependency *dep;
157
158 dep = i915_dependency_alloc(i915);
159 if (!dep)
160 return -ENOMEM;
161
162 __i915_priotree_add_dependency(pt, signal, dep, I915_DEPENDENCY_ALLOC);
163 return 0;
164}
165
166static void
167i915_priotree_fini(struct drm_i915_private *i915, struct i915_priotree *pt)
168{
169 struct i915_dependency *dep, *next;
170
Chris Wilson20311bd2016-11-14 20:41:03 +0000171 GEM_BUG_ON(!RB_EMPTY_NODE(&pt->node));
172
Chris Wilson52e54202016-11-14 20:41:02 +0000173 /* Everyone we depended upon (the fences we wait to be signaled)
174 * should retire before us and remove themselves from our list.
175 * However, retirement is run independently on each timeline and
176 * so we may be called out-of-order.
177 */
178 list_for_each_entry_safe(dep, next, &pt->signalers_list, signal_link) {
179 list_del(&dep->wait_link);
180 if (dep->flags & I915_DEPENDENCY_ALLOC)
181 i915_dependency_free(i915, dep);
182 }
183
184 /* Remove ourselves from everyone who depends upon us */
185 list_for_each_entry_safe(dep, next, &pt->waiters_list, wait_link) {
186 list_del(&dep->signal_link);
187 if (dep->flags & I915_DEPENDENCY_ALLOC)
188 i915_dependency_free(i915, dep);
189 }
190}
191
192static void
193i915_priotree_init(struct i915_priotree *pt)
194{
195 INIT_LIST_HEAD(&pt->signalers_list);
196 INIT_LIST_HEAD(&pt->waiters_list);
Chris Wilson20311bd2016-11-14 20:41:03 +0000197 RB_CLEAR_NODE(&pt->node);
198 pt->priority = INT_MIN;
Chris Wilson52e54202016-11-14 20:41:02 +0000199}
200
Chris Wilson9b6586a2017-02-23 07:44:08 +0000201static void unreserve_seqno(struct intel_engine_cs *engine)
202{
203 GEM_BUG_ON(!engine->timeline->inflight_seqnos);
204 engine->timeline->inflight_seqnos--;
205}
206
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100207void i915_gem_retire_noop(struct i915_gem_active *active,
208 struct drm_i915_gem_request *request)
209{
210 /* Space left intentionally blank */
211}
212
Chris Wilson05235c52016-07-20 09:21:08 +0100213static void i915_gem_request_retire(struct drm_i915_gem_request *request)
214{
Chris Wilsone8a9c582016-12-18 15:37:20 +0000215 struct intel_engine_cs *engine = request->engine;
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100216 struct i915_gem_active *active, *next;
217
Chris Wilson4c7d62c2016-10-28 13:58:32 +0100218 lockdep_assert_held(&request->i915->drm.struct_mutex);
Chris Wilson48bc2a42016-11-25 13:17:17 +0000219 GEM_BUG_ON(!i915_sw_fence_signaled(&request->submit));
220 GEM_BUG_ON(!i915_sw_fence_signaled(&request->execute));
Chris Wilson4c7d62c2016-10-28 13:58:32 +0100221 GEM_BUG_ON(!i915_gem_request_completed(request));
Chris Wilson43020552016-11-15 16:46:20 +0000222 GEM_BUG_ON(!request->i915->gt.active_requests);
Chris Wilson4c7d62c2016-10-28 13:58:32 +0100223
Chris Wilson05235c52016-07-20 09:21:08 +0100224 trace_i915_gem_request_retire(request);
Chris Wilson80b204b2016-10-28 13:58:58 +0100225
Chris Wilsone8a9c582016-12-18 15:37:20 +0000226 spin_lock_irq(&engine->timeline->lock);
Chris Wilsone95433c2016-10-28 13:58:27 +0100227 list_del_init(&request->link);
Chris Wilsone8a9c582016-12-18 15:37:20 +0000228 spin_unlock_irq(&engine->timeline->lock);
Chris Wilson05235c52016-07-20 09:21:08 +0100229
230 /* We know the GPU must have read the request to have
231 * sent us the seqno + interrupt, so use the position
232 * of tail of the request to update the last known position
233 * of the GPU head.
234 *
235 * Note this requires that we are always called in request
236 * completion order.
237 */
Chris Wilson675d9ad2016-08-04 07:52:36 +0100238 list_del(&request->ring_link);
Chris Wilson1dae2df2016-08-02 22:50:19 +0100239 request->ring->last_retired_head = request->postfix;
Chris Wilson43020552016-11-15 16:46:20 +0000240 if (!--request->i915->gt.active_requests) {
241 GEM_BUG_ON(!request->i915->gt.awake);
242 mod_delayed_work(request->i915->wq,
243 &request->i915->gt.idle_work,
244 msecs_to_jiffies(100));
245 }
Chris Wilson9b6586a2017-02-23 07:44:08 +0000246 unreserve_seqno(request->engine);
Chris Wilson05235c52016-07-20 09:21:08 +0100247
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100248 /* Walk through the active list, calling retire on each. This allows
249 * objects to track their GPU activity and mark themselves as idle
250 * when their *last* active request is completed (updating state
251 * tracking lists for eviction, active references for GEM, etc).
252 *
253 * As the ->retire() may free the node, we decouple it first and
254 * pass along the auxiliary information (to avoid dereferencing
255 * the node after the callback).
256 */
257 list_for_each_entry_safe(active, next, &request->active_list, link) {
258 /* In microbenchmarks or focusing upon time inside the kernel,
259 * we may spend an inordinate amount of time simply handling
260 * the retirement of requests and processing their callbacks.
261 * Of which, this loop itself is particularly hot due to the
262 * cache misses when jumping around the list of i915_gem_active.
263 * So we try to keep this loop as streamlined as possible and
264 * also prefetch the next i915_gem_active to try and hide
265 * the likely cache miss.
266 */
267 prefetchw(next);
268
269 INIT_LIST_HEAD(&active->link);
Chris Wilson0eafec62016-08-04 16:32:41 +0100270 RCU_INIT_POINTER(active->request, NULL);
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100271
272 active->retire(active, request);
273 }
274
Chris Wilson05235c52016-07-20 09:21:08 +0100275 i915_gem_request_remove_from_client(request);
276
Mika Kuoppalae5e1fc42016-11-16 17:20:31 +0200277 /* Retirement decays the ban score as it is a sign of ctx progress */
Mika Kuoppalabc1d53c2016-11-16 17:20:34 +0200278 if (request->ctx->ban_score > 0)
279 request->ctx->ban_score--;
Mika Kuoppalae5e1fc42016-11-16 17:20:31 +0200280
Chris Wilsone8a9c582016-12-18 15:37:20 +0000281 /* The backing object for the context is done after switching to the
282 * *next* context. Therefore we cannot retire the previous context until
283 * the next context has already started running. However, since we
284 * cannot take the required locks at i915_gem_request_submit() we
285 * defer the unpinning of the active context to now, retirement of
286 * the subsequent request.
287 */
288 if (engine->last_retired_context)
289 engine->context_unpin(engine, engine->last_retired_context);
290 engine->last_retired_context = request->ctx;
Chris Wilsond07f0e52016-10-28 13:58:44 +0100291
292 dma_fence_signal(&request->fence);
Chris Wilson52e54202016-11-14 20:41:02 +0000293
294 i915_priotree_fini(request->i915, &request->priotree);
Chris Wilsone8a261e2016-07-20 13:31:49 +0100295 i915_gem_request_put(request);
Chris Wilson05235c52016-07-20 09:21:08 +0100296}
297
298void i915_gem_request_retire_upto(struct drm_i915_gem_request *req)
299{
300 struct intel_engine_cs *engine = req->engine;
301 struct drm_i915_gem_request *tmp;
302
303 lockdep_assert_held(&req->i915->drm.struct_mutex);
Chris Wilson4ffd6e02016-11-25 13:17:15 +0000304 GEM_BUG_ON(!i915_gem_request_completed(req));
305
Chris Wilsone95433c2016-10-28 13:58:27 +0100306 if (list_empty(&req->link))
307 return;
Chris Wilson05235c52016-07-20 09:21:08 +0100308
309 do {
Chris Wilson73cb9702016-10-28 13:58:46 +0100310 tmp = list_first_entry(&engine->timeline->requests,
Chris Wilsonefdf7c02016-08-04 07:52:33 +0100311 typeof(*tmp), link);
Chris Wilson05235c52016-07-20 09:21:08 +0100312
313 i915_gem_request_retire(tmp);
314 } while (tmp != req);
Chris Wilson05235c52016-07-20 09:21:08 +0100315}
316
Chris Wilson9b6586a2017-02-23 07:44:08 +0000317static int reset_all_global_seqno(struct drm_i915_private *i915, u32 seqno)
Chris Wilson05235c52016-07-20 09:21:08 +0100318{
Chris Wilson85e17f52016-10-28 13:58:53 +0100319 struct i915_gem_timeline *timeline = &i915->gt.global_timeline;
Chris Wilson05235c52016-07-20 09:21:08 +0100320 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +0530321 enum intel_engine_id id;
Chris Wilson05235c52016-07-20 09:21:08 +0100322 int ret;
323
324 /* Carefully retire all requests without writing to the rings */
Chris Wilson85e17f52016-10-28 13:58:53 +0100325 ret = i915_gem_wait_for_idle(i915,
Chris Wilson73cb9702016-10-28 13:58:46 +0100326 I915_WAIT_INTERRUPTIBLE |
327 I915_WAIT_LOCKED);
328 if (ret)
329 return ret;
330
Chris Wilson85e17f52016-10-28 13:58:53 +0100331 i915_gem_retire_requests(i915);
Chris Wilson28176ef2016-10-28 13:58:56 +0100332 GEM_BUG_ON(i915->gt.active_requests > 1);
Chris Wilson05235c52016-07-20 09:21:08 +0100333
334 /* If the seqno wraps around, we need to clear the breadcrumb rbtree */
Chris Wilson9b6586a2017-02-23 07:44:08 +0000335 for_each_engine(engine, i915, id) {
336 struct intel_timeline *tl = &timeline->engine[id];
Chris Wilson05235c52016-07-20 09:21:08 +0100337
Chris Wilson9b6586a2017-02-23 07:44:08 +0000338 if (!i915_seqno_passed(seqno, tl->seqno)) {
339 /* spin until threads are complete */
340 while (intel_breadcrumbs_busy(engine))
341 cond_resched();
342 }
343
344 /* Finally reset hw state */
345 tl->seqno = seqno;
Chris Wilson73cb9702016-10-28 13:58:46 +0100346 intel_engine_init_global_seqno(engine, seqno);
Chris Wilson9b6586a2017-02-23 07:44:08 +0000347 }
Chris Wilson05235c52016-07-20 09:21:08 +0100348
Chris Wilson85e17f52016-10-28 13:58:53 +0100349 list_for_each_entry(timeline, &i915->gt.timelines, link) {
350 for_each_engine(engine, i915, id) {
351 struct intel_timeline *tl = &timeline->engine[id];
352
353 memset(tl->sync_seqno, 0, sizeof(tl->sync_seqno));
354 }
355 }
356
Chris Wilson05235c52016-07-20 09:21:08 +0100357 return 0;
358}
359
Chris Wilson73cb9702016-10-28 13:58:46 +0100360int i915_gem_set_global_seqno(struct drm_device *dev, u32 seqno)
Chris Wilson05235c52016-07-20 09:21:08 +0100361{
362 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilson05235c52016-07-20 09:21:08 +0100363
Chris Wilson4c7d62c2016-10-28 13:58:32 +0100364 lockdep_assert_held(&dev_priv->drm.struct_mutex);
365
Chris Wilson05235c52016-07-20 09:21:08 +0100366 if (seqno == 0)
367 return -EINVAL;
368
369 /* HWS page needs to be set less than what we
370 * will inject to ring
371 */
Chris Wilson9b6586a2017-02-23 07:44:08 +0000372 return reset_all_global_seqno(dev_priv, seqno - 1);
Chris Wilson28176ef2016-10-28 13:58:56 +0100373}
Chris Wilson05235c52016-07-20 09:21:08 +0100374
Chris Wilson9b6586a2017-02-23 07:44:08 +0000375static int reserve_seqno(struct intel_engine_cs *engine)
Chris Wilson28176ef2016-10-28 13:58:56 +0100376{
Chris Wilson9b6586a2017-02-23 07:44:08 +0000377 u32 active = ++engine->timeline->inflight_seqnos;
378 u32 seqno = engine->timeline->seqno;
Chris Wilson28176ef2016-10-28 13:58:56 +0100379 int ret;
380
381 /* Reservation is fine until we need to wrap around */
Chris Wilson9b6586a2017-02-23 07:44:08 +0000382 if (likely(!add_overflows(seqno, active)))
Chris Wilson28176ef2016-10-28 13:58:56 +0100383 return 0;
384
Chris Wilson9b6586a2017-02-23 07:44:08 +0000385 /* Even though we are tracking inflight seqno individually on each
386 * engine, other engines may be observing us using hw semaphores and
387 * so we need to idle all engines before wrapping around this engine.
388 * As all engines are then idle, we can reset the seqno on all, so
389 * we don't stall in quick succession if each engine is being
390 * similarly utilized.
391 */
392 ret = reset_all_global_seqno(engine->i915, 0);
Chris Wilson28176ef2016-10-28 13:58:56 +0100393 if (ret) {
Chris Wilson9b6586a2017-02-23 07:44:08 +0000394 engine->timeline->inflight_seqnos--;
Chris Wilson28176ef2016-10-28 13:58:56 +0100395 return ret;
396 }
397
Chris Wilson05235c52016-07-20 09:21:08 +0100398 return 0;
399}
400
Chris Wilson9b6586a2017-02-23 07:44:08 +0000401static u32 timeline_get_seqno(struct intel_timeline *tl)
Chris Wilson80b204b2016-10-28 13:58:58 +0100402{
Chris Wilson9b6586a2017-02-23 07:44:08 +0000403 return ++tl->seqno;
Chris Wilson05235c52016-07-20 09:21:08 +0100404}
405
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000406void __i915_gem_request_submit(struct drm_i915_gem_request *request)
Chris Wilson5590af32016-09-09 14:11:54 +0100407{
Chris Wilson73cb9702016-10-28 13:58:46 +0100408 struct intel_engine_cs *engine = request->engine;
Chris Wilsonf2d13292016-10-28 13:58:57 +0100409 struct intel_timeline *timeline;
410 u32 seqno;
Chris Wilson5590af32016-09-09 14:11:54 +0100411
Chris Wilson80b204b2016-10-28 13:58:58 +0100412 /* Transfer from per-context onto the global per-engine timeline */
413 timeline = engine->timeline;
414 GEM_BUG_ON(timeline == request->timeline);
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000415 assert_spin_locked(&timeline->lock);
Chris Wilson5590af32016-09-09 14:11:54 +0100416
Chris Wilson9b6586a2017-02-23 07:44:08 +0000417 seqno = timeline_get_seqno(timeline);
Chris Wilsonf2d13292016-10-28 13:58:57 +0100418 GEM_BUG_ON(!seqno);
419 GEM_BUG_ON(i915_seqno_passed(intel_engine_get_seqno(engine), seqno));
420
Chris Wilsonf2d13292016-10-28 13:58:57 +0100421 /* We may be recursing from the signal callback of another i915 fence */
422 spin_lock_nested(&request->lock, SINGLE_DEPTH_NESTING);
423 request->global_seqno = seqno;
424 if (test_bit(DMA_FENCE_FLAG_ENABLE_SIGNAL_BIT, &request->fence.flags))
425 intel_engine_enable_signaling(request);
426 spin_unlock(&request->lock);
427
428 GEM_BUG_ON(!request->global_seqno);
Chris Wilsoncaddfe72016-10-28 13:58:52 +0100429 engine->emit_breadcrumb(request,
430 request->ring->vaddr + request->postfix);
Chris Wilson5590af32016-09-09 14:11:54 +0100431
Chris Wilsonbb894852016-11-14 20:40:57 +0000432 spin_lock(&request->timeline->lock);
Chris Wilson80b204b2016-10-28 13:58:58 +0100433 list_move_tail(&request->link, &timeline->requests);
434 spin_unlock(&request->timeline->lock);
435
Chris Wilson23902e42016-11-14 20:40:58 +0000436 i915_sw_fence_commit(&request->execute);
Tvrtko Ursulin354d0362017-02-21 11:01:42 +0000437 trace_i915_gem_request_execute(request);
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000438}
Chris Wilson23902e42016-11-14 20:40:58 +0000439
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000440void i915_gem_request_submit(struct drm_i915_gem_request *request)
441{
442 struct intel_engine_cs *engine = request->engine;
443 unsigned long flags;
444
445 /* Will be called from irq-context when using foreign fences. */
446 spin_lock_irqsave(&engine->timeline->lock, flags);
447
448 __i915_gem_request_submit(request);
449
450 spin_unlock_irqrestore(&engine->timeline->lock, flags);
451}
452
453static int __i915_sw_fence_call
454submit_notify(struct i915_sw_fence *fence, enum i915_sw_fence_notify state)
455{
Chris Wilson48bc2a42016-11-25 13:17:17 +0000456 struct drm_i915_gem_request *request =
457 container_of(fence, typeof(*request), submit);
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000458
Chris Wilson48bc2a42016-11-25 13:17:17 +0000459 switch (state) {
460 case FENCE_COMPLETE:
Tvrtko Ursulin354d0362017-02-21 11:01:42 +0000461 trace_i915_gem_request_submit(request);
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000462 request->engine->submit_request(request);
Chris Wilson48bc2a42016-11-25 13:17:17 +0000463 break;
464
465 case FENCE_FREE:
466 i915_gem_request_put(request);
467 break;
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000468 }
Chris Wilson80b204b2016-10-28 13:58:58 +0100469
Chris Wilson5590af32016-09-09 14:11:54 +0100470 return NOTIFY_DONE;
471}
472
Chris Wilson23902e42016-11-14 20:40:58 +0000473static int __i915_sw_fence_call
474execute_notify(struct i915_sw_fence *fence, enum i915_sw_fence_notify state)
475{
Chris Wilson48bc2a42016-11-25 13:17:17 +0000476 struct drm_i915_gem_request *request =
477 container_of(fence, typeof(*request), execute);
478
479 switch (state) {
480 case FENCE_COMPLETE:
481 break;
482
483 case FENCE_FREE:
484 i915_gem_request_put(request);
485 break;
486 }
487
Chris Wilson23902e42016-11-14 20:40:58 +0000488 return NOTIFY_DONE;
489}
490
Chris Wilson8e637172016-08-02 22:50:26 +0100491/**
492 * i915_gem_request_alloc - allocate a request structure
493 *
494 * @engine: engine that we wish to issue the request on.
495 * @ctx: context that the request will be associated with.
496 * This can be NULL if the request is not directly related to
497 * any specific user context, in which case this function will
498 * choose an appropriate context to use.
499 *
500 * Returns a pointer to the allocated request if successful,
501 * or an error code if not.
502 */
503struct drm_i915_gem_request *
504i915_gem_request_alloc(struct intel_engine_cs *engine,
505 struct i915_gem_context *ctx)
Chris Wilson05235c52016-07-20 09:21:08 +0100506{
507 struct drm_i915_private *dev_priv = engine->i915;
Chris Wilson05235c52016-07-20 09:21:08 +0100508 struct drm_i915_gem_request *req;
509 int ret;
510
Chris Wilson28176ef2016-10-28 13:58:56 +0100511 lockdep_assert_held(&dev_priv->drm.struct_mutex);
512
Chris Wilson05235c52016-07-20 09:21:08 +0100513 /* ABI: Before userspace accesses the GPU (e.g. execbuffer), report
Chris Wilson6ffb7d02017-01-14 16:23:33 +0000514 * EIO if the GPU is already wedged.
Chris Wilson05235c52016-07-20 09:21:08 +0100515 */
Chris Wilson6ffb7d02017-01-14 16:23:33 +0000516 if (i915_terminally_wedged(&dev_priv->gpu_error))
517 return ERR_PTR(-EIO);
Chris Wilson05235c52016-07-20 09:21:08 +0100518
Chris Wilsone8a9c582016-12-18 15:37:20 +0000519 /* Pinning the contexts may generate requests in order to acquire
520 * GGTT space, so do this first before we reserve a seqno for
521 * ourselves.
522 */
523 ret = engine->context_pin(engine, ctx);
Chris Wilson28176ef2016-10-28 13:58:56 +0100524 if (ret)
525 return ERR_PTR(ret);
526
Chris Wilson9b6586a2017-02-23 07:44:08 +0000527 ret = reserve_seqno(engine);
Chris Wilsone8a9c582016-12-18 15:37:20 +0000528 if (ret)
529 goto err_unpin;
530
Chris Wilson9b5f4e52016-07-20 09:21:09 +0100531 /* Move the oldest request to the slab-cache (if not in use!) */
Chris Wilson73cb9702016-10-28 13:58:46 +0100532 req = list_first_entry_or_null(&engine->timeline->requests,
Chris Wilsonefdf7c02016-08-04 07:52:33 +0100533 typeof(*req), link);
Chris Wilson80b204b2016-10-28 13:58:58 +0100534 if (req && __i915_gem_request_completed(req))
Chris Wilson2a1d7752016-07-26 12:01:51 +0100535 i915_gem_request_retire(req);
Chris Wilson9b5f4e52016-07-20 09:21:09 +0100536
Chris Wilson5a198b82016-08-09 09:23:34 +0100537 /* Beware: Dragons be flying overhead.
538 *
539 * We use RCU to look up requests in flight. The lookups may
540 * race with the request being allocated from the slab freelist.
541 * That is the request we are writing to here, may be in the process
Chris Wilson1426f712016-08-09 17:03:22 +0100542 * of being read by __i915_gem_active_get_rcu(). As such,
Chris Wilson5a198b82016-08-09 09:23:34 +0100543 * we have to be very careful when overwriting the contents. During
544 * the RCU lookup, we change chase the request->engine pointer,
Chris Wilson65e47602016-10-28 13:58:49 +0100545 * read the request->global_seqno and increment the reference count.
Chris Wilson5a198b82016-08-09 09:23:34 +0100546 *
547 * The reference count is incremented atomically. If it is zero,
548 * the lookup knows the request is unallocated and complete. Otherwise,
549 * it is either still in use, or has been reallocated and reset
Chris Wilsonf54d1862016-10-25 13:00:45 +0100550 * with dma_fence_init(). This increment is safe for release as we
551 * check that the request we have a reference to and matches the active
Chris Wilson5a198b82016-08-09 09:23:34 +0100552 * request.
553 *
554 * Before we increment the refcount, we chase the request->engine
555 * pointer. We must not call kmem_cache_zalloc() or else we set
556 * that pointer to NULL and cause a crash during the lookup. If
557 * we see the request is completed (based on the value of the
558 * old engine and seqno), the lookup is complete and reports NULL.
559 * If we decide the request is not completed (new engine or seqno),
560 * then we grab a reference and double check that it is still the
561 * active request - which it won't be and restart the lookup.
562 *
563 * Do not use kmem_cache_zalloc() here!
564 */
565 req = kmem_cache_alloc(dev_priv->requests, GFP_KERNEL);
Chris Wilson28176ef2016-10-28 13:58:56 +0100566 if (!req) {
567 ret = -ENOMEM;
568 goto err_unreserve;
569 }
Chris Wilson05235c52016-07-20 09:21:08 +0100570
Chris Wilson80b204b2016-10-28 13:58:58 +0100571 req->timeline = i915_gem_context_lookup_timeline(ctx, engine);
572 GEM_BUG_ON(req->timeline == engine->timeline);
Chris Wilson73cb9702016-10-28 13:58:46 +0100573
Chris Wilson04769652016-07-20 09:21:11 +0100574 spin_lock_init(&req->lock);
Chris Wilsonf54d1862016-10-25 13:00:45 +0100575 dma_fence_init(&req->fence,
576 &i915_fence_ops,
577 &req->lock,
Chris Wilson73cb9702016-10-28 13:58:46 +0100578 req->timeline->fence_context,
Chris Wilson9b6586a2017-02-23 07:44:08 +0000579 timeline_get_seqno(req->timeline));
Chris Wilson04769652016-07-20 09:21:11 +0100580
Chris Wilson48bc2a42016-11-25 13:17:17 +0000581 /* We bump the ref for the fence chain */
582 i915_sw_fence_init(&i915_gem_request_get(req)->submit, submit_notify);
583 i915_sw_fence_init(&i915_gem_request_get(req)->execute, execute_notify);
584
Chris Wilson23902e42016-11-14 20:40:58 +0000585 /* Ensure that the execute fence completes after the submit fence -
586 * as we complete the execute fence from within the submit fence
587 * callback, its completion would otherwise be visible first.
588 */
589 i915_sw_fence_await_sw_fence(&req->execute, &req->submit, &req->execq);
Chris Wilson5590af32016-09-09 14:11:54 +0100590
Chris Wilson52e54202016-11-14 20:41:02 +0000591 i915_priotree_init(&req->priotree);
592
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100593 INIT_LIST_HEAD(&req->active_list);
Chris Wilson05235c52016-07-20 09:21:08 +0100594 req->i915 = dev_priv;
595 req->engine = engine;
Chris Wilsone8a9c582016-12-18 15:37:20 +0000596 req->ctx = ctx;
Chris Wilson05235c52016-07-20 09:21:08 +0100597
Chris Wilson5a198b82016-08-09 09:23:34 +0100598 /* No zalloc, must clear what we need by hand */
Chris Wilsonf2d13292016-10-28 13:58:57 +0100599 req->global_seqno = 0;
Chris Wilson5a198b82016-08-09 09:23:34 +0100600 req->file_priv = NULL;
Chris Wilson058d88c2016-08-15 10:49:06 +0100601 req->batch = NULL;
Chris Wilson5a198b82016-08-09 09:23:34 +0100602
Chris Wilson05235c52016-07-20 09:21:08 +0100603 /*
604 * Reserve space in the ring buffer for all the commands required to
605 * eventually emit this request. This is to guarantee that the
606 * i915_add_request() call can't fail. Note that the reserve may need
607 * to be redone if the request is not actually submitted straight
608 * away, e.g. because a GPU scheduler has deferred it.
609 */
610 req->reserved_space = MIN_SPACE_FOR_ADD_REQUEST;
Chris Wilson98f29e82016-10-28 13:58:51 +0100611 GEM_BUG_ON(req->reserved_space < engine->emit_breadcrumb_sz);
Chris Wilson05235c52016-07-20 09:21:08 +0100612
Chris Wilsonf73e7392016-12-18 15:37:24 +0000613 ret = engine->request_alloc(req);
Chris Wilson05235c52016-07-20 09:21:08 +0100614 if (ret)
615 goto err_ctx;
616
Chris Wilsond0454462016-08-15 10:48:40 +0100617 /* Record the position of the start of the request so that
618 * should we detect the updated seqno part-way through the
619 * GPU processing the request, we never over-estimate the
620 * position of the head.
621 */
622 req->head = req->ring->tail;
623
Chris Wilson9b6586a2017-02-23 07:44:08 +0000624 /* Check that we didn't interrupt ourselves with a new request */
625 GEM_BUG_ON(req->timeline->seqno != req->fence.seqno);
Chris Wilson8e637172016-08-02 22:50:26 +0100626 return req;
Chris Wilson05235c52016-07-20 09:21:08 +0100627
628err_ctx:
Chris Wilson1618bdb2016-11-25 13:17:16 +0000629 /* Make sure we didn't add ourselves to external state before freeing */
630 GEM_BUG_ON(!list_empty(&req->active_list));
631 GEM_BUG_ON(!list_empty(&req->priotree.signalers_list));
632 GEM_BUG_ON(!list_empty(&req->priotree.waiters_list));
633
Chris Wilson05235c52016-07-20 09:21:08 +0100634 kmem_cache_free(dev_priv->requests, req);
Chris Wilson28176ef2016-10-28 13:58:56 +0100635err_unreserve:
Chris Wilson9b6586a2017-02-23 07:44:08 +0000636 unreserve_seqno(engine);
Chris Wilsone8a9c582016-12-18 15:37:20 +0000637err_unpin:
638 engine->context_unpin(engine, ctx);
Chris Wilson8e637172016-08-02 22:50:26 +0100639 return ERR_PTR(ret);
Chris Wilson05235c52016-07-20 09:21:08 +0100640}
641
Chris Wilsona2bc4692016-09-09 14:11:56 +0100642static int
643i915_gem_request_await_request(struct drm_i915_gem_request *to,
644 struct drm_i915_gem_request *from)
645{
Chris Wilson85e17f52016-10-28 13:58:53 +0100646 int ret;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100647
648 GEM_BUG_ON(to == from);
649
Chris Wilson52e54202016-11-14 20:41:02 +0000650 if (to->engine->schedule) {
651 ret = i915_priotree_add_dependency(to->i915,
652 &to->priotree,
653 &from->priotree);
654 if (ret < 0)
655 return ret;
656 }
657
Chris Wilson73cb9702016-10-28 13:58:46 +0100658 if (to->timeline == from->timeline)
Chris Wilsona2bc4692016-09-09 14:11:56 +0100659 return 0;
660
Chris Wilson73cb9702016-10-28 13:58:46 +0100661 if (to->engine == from->engine) {
662 ret = i915_sw_fence_await_sw_fence_gfp(&to->submit,
663 &from->submit,
664 GFP_KERNEL);
665 return ret < 0 ? ret : 0;
666 }
667
Chris Wilson65e47602016-10-28 13:58:49 +0100668 if (!from->global_seqno) {
669 ret = i915_sw_fence_await_dma_fence(&to->submit,
670 &from->fence, 0,
671 GFP_KERNEL);
672 return ret < 0 ? ret : 0;
673 }
674
Chris Wilson85e17f52016-10-28 13:58:53 +0100675 if (from->global_seqno <= to->timeline->sync_seqno[from->engine->id])
Chris Wilsona2bc4692016-09-09 14:11:56 +0100676 return 0;
677
678 trace_i915_gem_ring_sync_to(to, from);
679 if (!i915.semaphores) {
Chris Wilson0a046a02016-09-09 14:12:00 +0100680 if (!i915_spin_request(from, TASK_INTERRUPTIBLE, 2)) {
681 ret = i915_sw_fence_await_dma_fence(&to->submit,
682 &from->fence, 0,
683 GFP_KERNEL);
684 if (ret < 0)
685 return ret;
686 }
Chris Wilsona2bc4692016-09-09 14:11:56 +0100687 } else {
688 ret = to->engine->semaphore.sync_to(to, from);
689 if (ret)
690 return ret;
691 }
692
Chris Wilson85e17f52016-10-28 13:58:53 +0100693 to->timeline->sync_seqno[from->engine->id] = from->global_seqno;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100694 return 0;
695}
696
Chris Wilsonb52992c2016-10-28 13:58:24 +0100697int
698i915_gem_request_await_dma_fence(struct drm_i915_gem_request *req,
699 struct dma_fence *fence)
700{
701 struct dma_fence_array *array;
702 int ret;
703 int i;
704
705 if (test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &fence->flags))
706 return 0;
707
708 if (dma_fence_is_i915(fence))
709 return i915_gem_request_await_request(req, to_request(fence));
710
711 if (!dma_fence_is_array(fence)) {
712 ret = i915_sw_fence_await_dma_fence(&req->submit,
713 fence, I915_FENCE_TIMEOUT,
714 GFP_KERNEL);
715 return ret < 0 ? ret : 0;
716 }
717
718 /* Note that if the fence-array was created in signal-on-any mode,
719 * we should *not* decompose it into its individual fences. However,
720 * we don't currently store which mode the fence-array is operating
721 * in. Fortunately, the only user of signal-on-any is private to
722 * amdgpu and we should not see any incoming fence-array from
723 * sync-file being in signal-on-any mode.
724 */
725
726 array = to_dma_fence_array(fence);
727 for (i = 0; i < array->num_fences; i++) {
728 struct dma_fence *child = array->fences[i];
729
730 if (dma_fence_is_i915(child))
731 ret = i915_gem_request_await_request(req,
732 to_request(child));
733 else
734 ret = i915_sw_fence_await_dma_fence(&req->submit,
735 child, I915_FENCE_TIMEOUT,
736 GFP_KERNEL);
737 if (ret < 0)
738 return ret;
739 }
740
741 return 0;
742}
743
Chris Wilsona2bc4692016-09-09 14:11:56 +0100744/**
745 * i915_gem_request_await_object - set this request to (async) wait upon a bo
746 *
747 * @to: request we are wishing to use
748 * @obj: object which may be in use on another ring.
749 *
750 * This code is meant to abstract object synchronization with the GPU.
751 * Conceptually we serialise writes between engines inside the GPU.
752 * We only allow one engine to write into a buffer at any time, but
753 * multiple readers. To ensure each has a coherent view of memory, we must:
754 *
755 * - If there is an outstanding write request to the object, the new
756 * request must wait for it to complete (either CPU or in hw, requests
757 * on the same ring will be naturally ordered).
758 *
759 * - If we are a write request (pending_write_domain is set), the new
760 * request must wait for outstanding read requests to complete.
761 *
762 * Returns 0 if successful, else propagates up the lower layer error.
763 */
764int
765i915_gem_request_await_object(struct drm_i915_gem_request *to,
766 struct drm_i915_gem_object *obj,
767 bool write)
768{
Chris Wilsond07f0e52016-10-28 13:58:44 +0100769 struct dma_fence *excl;
770 int ret = 0;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100771
772 if (write) {
Chris Wilsond07f0e52016-10-28 13:58:44 +0100773 struct dma_fence **shared;
774 unsigned int count, i;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100775
Chris Wilsond07f0e52016-10-28 13:58:44 +0100776 ret = reservation_object_get_fences_rcu(obj->resv,
777 &excl, &count, &shared);
Chris Wilsona2bc4692016-09-09 14:11:56 +0100778 if (ret)
779 return ret;
Chris Wilsond07f0e52016-10-28 13:58:44 +0100780
781 for (i = 0; i < count; i++) {
782 ret = i915_gem_request_await_dma_fence(to, shared[i]);
783 if (ret)
784 break;
785
786 dma_fence_put(shared[i]);
787 }
788
789 for (; i < count; i++)
790 dma_fence_put(shared[i]);
791 kfree(shared);
792 } else {
793 excl = reservation_object_get_excl_rcu(obj->resv);
Chris Wilsona2bc4692016-09-09 14:11:56 +0100794 }
795
Chris Wilsond07f0e52016-10-28 13:58:44 +0100796 if (excl) {
797 if (ret == 0)
798 ret = i915_gem_request_await_dma_fence(to, excl);
799
800 dma_fence_put(excl);
801 }
802
803 return ret;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100804}
805
Chris Wilson05235c52016-07-20 09:21:08 +0100806static void i915_gem_mark_busy(const struct intel_engine_cs *engine)
807{
808 struct drm_i915_private *dev_priv = engine->i915;
809
Chris Wilson05235c52016-07-20 09:21:08 +0100810 if (dev_priv->gt.awake)
811 return;
812
Chris Wilson43020552016-11-15 16:46:20 +0000813 GEM_BUG_ON(!dev_priv->gt.active_requests);
814
Chris Wilson05235c52016-07-20 09:21:08 +0100815 intel_runtime_pm_get_noresume(dev_priv);
816 dev_priv->gt.awake = true;
817
Chris Wilson54b4f682016-07-21 21:16:19 +0100818 intel_enable_gt_powersave(dev_priv);
Chris Wilson05235c52016-07-20 09:21:08 +0100819 i915_update_gfx_val(dev_priv);
820 if (INTEL_GEN(dev_priv) >= 6)
821 gen6_rps_busy(dev_priv);
822
823 queue_delayed_work(dev_priv->wq,
824 &dev_priv->gt.retire_work,
825 round_jiffies_up_relative(HZ));
826}
827
828/*
829 * NB: This function is not allowed to fail. Doing so would mean the the
830 * request is not being tracked for completion but the work itself is
831 * going to happen on the hardware. This would be a Bad Thing(tm).
832 */
Chris Wilson17f298cf2016-08-10 13:41:46 +0100833void __i915_add_request(struct drm_i915_gem_request *request, bool flush_caches)
Chris Wilson05235c52016-07-20 09:21:08 +0100834{
Chris Wilson95b2ab52016-08-15 10:48:46 +0100835 struct intel_engine_cs *engine = request->engine;
836 struct intel_ring *ring = request->ring;
Chris Wilson73cb9702016-10-28 13:58:46 +0100837 struct intel_timeline *timeline = request->timeline;
Chris Wilson0a046a02016-09-09 14:12:00 +0100838 struct drm_i915_gem_request *prev;
Tvrtko Ursulin73dec952017-02-14 11:32:42 +0000839 u32 *cs;
Chris Wilsoncaddfe72016-10-28 13:58:52 +0100840 int err;
Chris Wilson05235c52016-07-20 09:21:08 +0100841
Chris Wilson4c7d62c2016-10-28 13:58:32 +0100842 lockdep_assert_held(&request->i915->drm.struct_mutex);
Chris Wilson0f25dff2016-09-09 14:11:55 +0100843 trace_i915_gem_request_add(request);
844
Chris Wilsonc781c972017-01-11 14:08:58 +0000845 /* Make sure that no request gazumped us - if it was allocated after
846 * our i915_gem_request_alloc() and called __i915_add_request() before
847 * us, the timeline will hold its seqno which is later than ours.
848 */
Chris Wilson9b6586a2017-02-23 07:44:08 +0000849 GEM_BUG_ON(timeline->seqno != request->fence.seqno);
Chris Wilsonc781c972017-01-11 14:08:58 +0000850
Chris Wilson05235c52016-07-20 09:21:08 +0100851 /*
852 * To ensure that this call will not fail, space for its emissions
853 * should already have been reserved in the ring buffer. Let the ring
854 * know that it is time to use that space up.
855 */
Chris Wilson05235c52016-07-20 09:21:08 +0100856 request->reserved_space = 0;
857
858 /*
859 * Emit any outstanding flushes - execbuf can fail to emit the flush
860 * after having emitted the batchbuffer command. Hence we need to fix
861 * things up similar to emitting the lazy request. The difference here
862 * is that the flush _must_ happen before the next request, no matter
863 * what.
864 */
865 if (flush_caches) {
Chris Wilsoncaddfe72016-10-28 13:58:52 +0100866 err = engine->emit_flush(request, EMIT_FLUSH);
Chris Wilsonc7fe7d22016-08-02 22:50:24 +0100867
Chris Wilson05235c52016-07-20 09:21:08 +0100868 /* Not allowed to fail! */
Chris Wilsoncaddfe72016-10-28 13:58:52 +0100869 WARN(err, "engine->emit_flush() failed: %d!\n", err);
Chris Wilson05235c52016-07-20 09:21:08 +0100870 }
871
Chris Wilsond0454462016-08-15 10:48:40 +0100872 /* Record the position of the start of the breadcrumb so that
Chris Wilson05235c52016-07-20 09:21:08 +0100873 * should we detect the updated seqno part-way through the
874 * GPU processing the request, we never over-estimate the
Chris Wilsond0454462016-08-15 10:48:40 +0100875 * position of the ring's HEAD.
Chris Wilson05235c52016-07-20 09:21:08 +0100876 */
Tvrtko Ursulin73dec952017-02-14 11:32:42 +0000877 cs = intel_ring_begin(request, engine->emit_breadcrumb_sz);
878 GEM_BUG_ON(IS_ERR(cs));
879 request->postfix = intel_ring_offset(request, cs);
Chris Wilson05235c52016-07-20 09:21:08 +0100880
Chris Wilson0f25dff2016-09-09 14:11:55 +0100881 /* Seal the request and mark it as pending execution. Note that
882 * we may inspect this state, without holding any locks, during
883 * hangcheck. Hence we apply the barrier to ensure that we do not
884 * see a more recent value in the hws than we are tracking.
885 */
Chris Wilson0a046a02016-09-09 14:12:00 +0100886
Chris Wilson73cb9702016-10-28 13:58:46 +0100887 prev = i915_gem_active_raw(&timeline->last_request,
Chris Wilson0a046a02016-09-09 14:12:00 +0100888 &request->i915->drm.struct_mutex);
Chris Wilson52e54202016-11-14 20:41:02 +0000889 if (prev) {
Chris Wilson0a046a02016-09-09 14:12:00 +0100890 i915_sw_fence_await_sw_fence(&request->submit, &prev->submit,
891 &request->submitq);
Chris Wilson52e54202016-11-14 20:41:02 +0000892 if (engine->schedule)
893 __i915_priotree_add_dependency(&request->priotree,
894 &prev->priotree,
895 &request->dep,
896 0);
897 }
Chris Wilson0a046a02016-09-09 14:12:00 +0100898
Chris Wilson80b204b2016-10-28 13:58:58 +0100899 spin_lock_irq(&timeline->lock);
Chris Wilsonf2d13292016-10-28 13:58:57 +0100900 list_add_tail(&request->link, &timeline->requests);
Chris Wilson80b204b2016-10-28 13:58:58 +0100901 spin_unlock_irq(&timeline->lock);
Chris Wilson28176ef2016-10-28 13:58:56 +0100902
Chris Wilson9b6586a2017-02-23 07:44:08 +0000903 GEM_BUG_ON(timeline->seqno != request->fence.seqno);
Chris Wilson73cb9702016-10-28 13:58:46 +0100904 i915_gem_active_set(&timeline->last_request, request);
Chris Wilsonf2d13292016-10-28 13:58:57 +0100905
Chris Wilson0f25dff2016-09-09 14:11:55 +0100906 list_add_tail(&request->ring_link, &ring->request_list);
Chris Wilsonf2d13292016-10-28 13:58:57 +0100907 request->emitted_jiffies = jiffies;
Chris Wilson0f25dff2016-09-09 14:11:55 +0100908
Chris Wilson9b6586a2017-02-23 07:44:08 +0000909 if (!request->i915->gt.active_requests++)
910 i915_gem_mark_busy(engine);
Chris Wilson5590af32016-09-09 14:11:54 +0100911
Chris Wilson0de91362016-11-14 20:41:01 +0000912 /* Let the backend know a new request has arrived that may need
913 * to adjust the existing execution schedule due to a high priority
914 * request - i.e. we may want to preempt the current request in order
915 * to run a high priority dependency chain *before* we can execute this
916 * request.
917 *
918 * This is called before the request is ready to run so that we can
919 * decide whether to preempt the entire chain so that it is ready to
920 * run at the earliest possible convenience.
921 */
922 if (engine->schedule)
Chris Wilson9f792eb2016-11-14 20:41:04 +0000923 engine->schedule(request, request->ctx->priority);
Chris Wilson0de91362016-11-14 20:41:01 +0000924
Chris Wilson5590af32016-09-09 14:11:54 +0100925 local_bh_disable();
926 i915_sw_fence_commit(&request->submit);
927 local_bh_enable(); /* Kick the execlists tasklet if just scheduled */
Chris Wilson05235c52016-07-20 09:21:08 +0100928}
929
Chris Wilson221fe792016-09-09 14:11:51 +0100930static void reset_wait_queue(wait_queue_head_t *q, wait_queue_t *wait)
931{
932 unsigned long flags;
933
934 spin_lock_irqsave(&q->lock, flags);
935 if (list_empty(&wait->task_list))
936 __add_wait_queue(q, wait);
937 spin_unlock_irqrestore(&q->lock, flags);
938}
939
Chris Wilson05235c52016-07-20 09:21:08 +0100940static 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,
973 int state, unsigned long timeout_us)
974{
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 Wilson65e47602016-10-28 13:58:49 +0100991 if (__i915_gem_request_completed(req))
Chris Wilson05235c52016-07-20 09:21:08 +0100992 return true;
993
Chris Wilsonc33ed062017-02-17 15:13:01 +0000994 /* Seqno are meant to be ordered *before* the interrupt. If
995 * we see an interrupt without a corresponding seqno advance,
996 * assume we won't see one in the near future but require
997 * the engine->seqno_barrier() to fixup coherency.
998 */
999 if (atomic_read(&engine->irq_count) != irq)
1000 break;
1001
Chris Wilson05235c52016-07-20 09:21:08 +01001002 if (signal_pending_state(state, current))
1003 break;
1004
1005 if (busywait_stop(timeout_us, cpu))
1006 break;
1007
Christian Borntraegerf2f09a42016-10-25 11:03:14 +02001008 cpu_relax();
Chris Wilson05235c52016-07-20 09:21:08 +01001009 } while (!need_resched());
1010
1011 return false;
1012}
1013
Chris Wilson4680816b2016-10-28 13:58:48 +01001014static long
Chris Wilson23902e42016-11-14 20:40:58 +00001015__i915_request_wait_for_execute(struct drm_i915_gem_request *request,
1016 unsigned int flags,
1017 long timeout)
Chris Wilson4680816b2016-10-28 13:58:48 +01001018{
1019 const int state = flags & I915_WAIT_INTERRUPTIBLE ?
1020 TASK_INTERRUPTIBLE : TASK_UNINTERRUPTIBLE;
1021 wait_queue_head_t *q = &request->i915->gpu_error.wait_queue;
1022 DEFINE_WAIT(reset);
1023 DEFINE_WAIT(wait);
1024
1025 if (flags & I915_WAIT_LOCKED)
1026 add_wait_queue(q, &reset);
1027
1028 do {
Chris Wilson23902e42016-11-14 20:40:58 +00001029 prepare_to_wait(&request->execute.wait, &wait, state);
Chris Wilson4680816b2016-10-28 13:58:48 +01001030
Chris Wilson23902e42016-11-14 20:40:58 +00001031 if (i915_sw_fence_done(&request->execute))
Chris Wilson4680816b2016-10-28 13:58:48 +01001032 break;
1033
1034 if (flags & I915_WAIT_LOCKED &&
1035 i915_reset_in_progress(&request->i915->gpu_error)) {
1036 __set_current_state(TASK_RUNNING);
1037 i915_reset(request->i915);
1038 reset_wait_queue(q, &reset);
1039 continue;
1040 }
1041
1042 if (signal_pending_state(state, current)) {
1043 timeout = -ERESTARTSYS;
1044 break;
1045 }
1046
Chris Wilson969bb722017-02-08 18:12:38 +00001047 if (!timeout) {
1048 timeout = -ETIME;
1049 break;
1050 }
1051
Chris Wilson4680816b2016-10-28 13:58:48 +01001052 timeout = io_schedule_timeout(timeout);
Chris Wilson969bb722017-02-08 18:12:38 +00001053 } while (1);
Chris Wilson23902e42016-11-14 20:40:58 +00001054 finish_wait(&request->execute.wait, &wait);
Chris Wilson4680816b2016-10-28 13:58:48 +01001055
1056 if (flags & I915_WAIT_LOCKED)
1057 remove_wait_queue(q, &reset);
1058
1059 return timeout;
1060}
1061
Chris Wilson05235c52016-07-20 09:21:08 +01001062/**
Chris Wilson776f3232016-08-04 07:52:40 +01001063 * i915_wait_request - wait until execution of request has finished
Chris Wilsone95433c2016-10-28 13:58:27 +01001064 * @req: the request to wait upon
Chris Wilsonea746f32016-09-09 14:11:49 +01001065 * @flags: how to wait
Chris Wilsone95433c2016-10-28 13:58:27 +01001066 * @timeout: how long to wait in jiffies
Chris Wilson05235c52016-07-20 09:21:08 +01001067 *
Chris Wilsone95433c2016-10-28 13:58:27 +01001068 * i915_wait_request() waits for the request to be completed, for a
1069 * maximum of @timeout jiffies (with MAX_SCHEDULE_TIMEOUT implying an
1070 * unbounded wait).
Chris Wilson05235c52016-07-20 09:21:08 +01001071 *
Chris Wilsone95433c2016-10-28 13:58:27 +01001072 * If the caller holds the struct_mutex, the caller must pass I915_WAIT_LOCKED
1073 * in via the flags, and vice versa if the struct_mutex is not held, the caller
1074 * must not specify that the wait is locked.
1075 *
1076 * Returns the remaining time (in jiffies) if the request completed, which may
1077 * be zero or -ETIME if the request is unfinished after the timeout expires.
1078 * May return -EINTR is called with I915_WAIT_INTERRUPTIBLE and a signal is
1079 * pending before the request completes.
Chris Wilson05235c52016-07-20 09:21:08 +01001080 */
Chris Wilsone95433c2016-10-28 13:58:27 +01001081long i915_wait_request(struct drm_i915_gem_request *req,
1082 unsigned int flags,
1083 long timeout)
Chris Wilson05235c52016-07-20 09:21:08 +01001084{
Chris Wilsonea746f32016-09-09 14:11:49 +01001085 const int state = flags & I915_WAIT_INTERRUPTIBLE ?
1086 TASK_INTERRUPTIBLE : TASK_UNINTERRUPTIBLE;
Chris Wilson05235c52016-07-20 09:21:08 +01001087 DEFINE_WAIT(reset);
1088 struct intel_wait wait;
Chris Wilson05235c52016-07-20 09:21:08 +01001089
1090 might_sleep();
Chris Wilson22dd3bb2016-09-09 14:11:50 +01001091#if IS_ENABLED(CONFIG_LOCKDEP)
Chris Wilsone95433c2016-10-28 13:58:27 +01001092 GEM_BUG_ON(debug_locks &&
1093 !!lockdep_is_held(&req->i915->drm.struct_mutex) !=
Chris Wilson22dd3bb2016-09-09 14:11:50 +01001094 !!(flags & I915_WAIT_LOCKED));
1095#endif
Chris Wilsone95433c2016-10-28 13:58:27 +01001096 GEM_BUG_ON(timeout < 0);
Chris Wilson05235c52016-07-20 09:21:08 +01001097
Chris Wilson05235c52016-07-20 09:21:08 +01001098 if (i915_gem_request_completed(req))
Chris Wilsone95433c2016-10-28 13:58:27 +01001099 return timeout;
Chris Wilson05235c52016-07-20 09:21:08 +01001100
Chris Wilsone95433c2016-10-28 13:58:27 +01001101 if (!timeout)
1102 return -ETIME;
Chris Wilson05235c52016-07-20 09:21:08 +01001103
Tvrtko Ursulin93692502017-02-21 11:00:24 +00001104 trace_i915_gem_request_wait_begin(req, flags);
Chris Wilson05235c52016-07-20 09:21:08 +01001105
Chris Wilson23902e42016-11-14 20:40:58 +00001106 if (!i915_sw_fence_done(&req->execute)) {
1107 timeout = __i915_request_wait_for_execute(req, flags, timeout);
Chris Wilson4680816b2016-10-28 13:58:48 +01001108 if (timeout < 0)
1109 goto complete;
1110
Chris Wilson23902e42016-11-14 20:40:58 +00001111 GEM_BUG_ON(!i915_sw_fence_done(&req->execute));
Chris Wilson4680816b2016-10-28 13:58:48 +01001112 }
Chris Wilson23902e42016-11-14 20:40:58 +00001113 GEM_BUG_ON(!i915_sw_fence_done(&req->submit));
Chris Wilson65e47602016-10-28 13:58:49 +01001114 GEM_BUG_ON(!req->global_seqno);
Chris Wilson4680816b2016-10-28 13:58:48 +01001115
Daniel Vetter437c3082016-08-05 18:11:24 +02001116 /* Optimistic short spin before touching IRQs */
Chris Wilson05235c52016-07-20 09:21:08 +01001117 if (i915_spin_request(req, state, 5))
1118 goto complete;
1119
1120 set_current_state(state);
Chris Wilson22dd3bb2016-09-09 14:11:50 +01001121 if (flags & I915_WAIT_LOCKED)
1122 add_wait_queue(&req->i915->gpu_error.wait_queue, &reset);
Chris Wilson05235c52016-07-20 09:21:08 +01001123
Chris Wilson65e47602016-10-28 13:58:49 +01001124 intel_wait_init(&wait, req->global_seqno);
Chris Wilson05235c52016-07-20 09:21:08 +01001125 if (intel_engine_add_wait(req->engine, &wait))
1126 /* In order to check that we haven't missed the interrupt
1127 * as we enabled it, we need to kick ourselves to do a
1128 * coherent check on the seqno before we sleep.
1129 */
1130 goto wakeup;
1131
1132 for (;;) {
1133 if (signal_pending_state(state, current)) {
Chris Wilsone95433c2016-10-28 13:58:27 +01001134 timeout = -ERESTARTSYS;
Chris Wilson05235c52016-07-20 09:21:08 +01001135 break;
1136 }
1137
Chris Wilsone95433c2016-10-28 13:58:27 +01001138 if (!timeout) {
1139 timeout = -ETIME;
Chris Wilson05235c52016-07-20 09:21:08 +01001140 break;
1141 }
1142
Chris Wilsone95433c2016-10-28 13:58:27 +01001143 timeout = io_schedule_timeout(timeout);
1144
Chris Wilson05235c52016-07-20 09:21:08 +01001145 if (intel_wait_complete(&wait))
1146 break;
1147
1148 set_current_state(state);
1149
1150wakeup:
1151 /* Carefully check if the request is complete, giving time
1152 * for the seqno to be visible following the interrupt.
1153 * We also have to check in case we are kicked by the GPU
1154 * reset in order to drop the struct_mutex.
1155 */
1156 if (__i915_request_irq_complete(req))
1157 break;
1158
Chris Wilson221fe792016-09-09 14:11:51 +01001159 /* If the GPU is hung, and we hold the lock, reset the GPU
1160 * and then check for completion. On a full reset, the engine's
1161 * HW seqno will be advanced passed us and we are complete.
1162 * If we do a partial reset, we have to wait for the GPU to
1163 * resume and update the breadcrumb.
1164 *
1165 * If we don't hold the mutex, we can just wait for the worker
1166 * to come along and update the breadcrumb (either directly
1167 * itself, or indirectly by recovering the GPU).
1168 */
1169 if (flags & I915_WAIT_LOCKED &&
1170 i915_reset_in_progress(&req->i915->gpu_error)) {
1171 __set_current_state(TASK_RUNNING);
1172 i915_reset(req->i915);
1173 reset_wait_queue(&req->i915->gpu_error.wait_queue,
1174 &reset);
1175 continue;
1176 }
1177
Chris Wilson05235c52016-07-20 09:21:08 +01001178 /* Only spin if we know the GPU is processing this request */
1179 if (i915_spin_request(req, state, 2))
1180 break;
1181 }
Chris Wilson05235c52016-07-20 09:21:08 +01001182
1183 intel_engine_remove_wait(req->engine, &wait);
Chris Wilson22dd3bb2016-09-09 14:11:50 +01001184 if (flags & I915_WAIT_LOCKED)
1185 remove_wait_queue(&req->i915->gpu_error.wait_queue, &reset);
Chris Wilson05235c52016-07-20 09:21:08 +01001186 __set_current_state(TASK_RUNNING);
Chris Wilson22dd3bb2016-09-09 14:11:50 +01001187
Chris Wilson05235c52016-07-20 09:21:08 +01001188complete:
1189 trace_i915_gem_request_wait_end(req);
1190
Chris Wilsone95433c2016-10-28 13:58:27 +01001191 return timeout;
Chris Wilson05235c52016-07-20 09:21:08 +01001192}
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001193
Chris Wilson28176ef2016-10-28 13:58:56 +01001194static void engine_retire_requests(struct intel_engine_cs *engine)
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001195{
1196 struct drm_i915_gem_request *request, *next;
1197
Chris Wilson73cb9702016-10-28 13:58:46 +01001198 list_for_each_entry_safe(request, next,
1199 &engine->timeline->requests, link) {
Chris Wilson80b204b2016-10-28 13:58:58 +01001200 if (!__i915_gem_request_completed(request))
Chris Wilson28176ef2016-10-28 13:58:56 +01001201 return;
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001202
1203 i915_gem_request_retire(request);
1204 }
1205}
1206
1207void i915_gem_retire_requests(struct drm_i915_private *dev_priv)
1208{
1209 struct intel_engine_cs *engine;
Chris Wilson28176ef2016-10-28 13:58:56 +01001210 enum intel_engine_id id;
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001211
1212 lockdep_assert_held(&dev_priv->drm.struct_mutex);
1213
Chris Wilson28176ef2016-10-28 13:58:56 +01001214 if (!dev_priv->gt.active_requests)
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001215 return;
1216
Chris Wilson28176ef2016-10-28 13:58:56 +01001217 for_each_engine(engine, dev_priv, id)
1218 engine_retire_requests(engine);
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001219}
Chris Wilsonc835c552017-02-13 17:15:21 +00001220
1221#if IS_ENABLED(CONFIG_DRM_I915_SELFTEST)
1222#include "selftests/mock_request.c"
1223#include "selftests/i915_gem_request.c"
1224#endif