blob: 37ef7084fce5ee34933391053ef3d7d51a7cfb23 [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);
Chris Wilsonfc158402016-11-25 13:17:18 +000072
Chris Wilson04769652016-07-20 09:21:11 +010073 kmem_cache_free(req->i915->requests, req);
74}
75
Chris Wilsonf54d1862016-10-25 13:00:45 +010076const struct dma_fence_ops i915_fence_ops = {
Chris Wilson04769652016-07-20 09:21:11 +010077 .get_driver_name = i915_fence_get_driver_name,
78 .get_timeline_name = i915_fence_get_timeline_name,
79 .enable_signaling = i915_fence_enable_signaling,
80 .signaled = i915_fence_signaled,
81 .wait = i915_fence_wait,
82 .release = i915_fence_release,
Chris Wilson04769652016-07-20 09:21:11 +010083};
84
Chris Wilson05235c52016-07-20 09:21:08 +010085int i915_gem_request_add_to_client(struct drm_i915_gem_request *req,
86 struct drm_file *file)
87{
88 struct drm_i915_private *dev_private;
89 struct drm_i915_file_private *file_priv;
90
91 WARN_ON(!req || !file || req->file_priv);
92
93 if (!req || !file)
94 return -EINVAL;
95
96 if (req->file_priv)
97 return -EINVAL;
98
99 dev_private = req->i915;
100 file_priv = file->driver_priv;
101
102 spin_lock(&file_priv->mm.lock);
103 req->file_priv = file_priv;
104 list_add_tail(&req->client_list, &file_priv->mm.request_list);
105 spin_unlock(&file_priv->mm.lock);
106
Chris Wilson05235c52016-07-20 09:21:08 +0100107 return 0;
108}
109
110static inline void
111i915_gem_request_remove_from_client(struct drm_i915_gem_request *request)
112{
113 struct drm_i915_file_private *file_priv = request->file_priv;
114
115 if (!file_priv)
116 return;
117
118 spin_lock(&file_priv->mm.lock);
119 list_del(&request->client_list);
120 request->file_priv = NULL;
121 spin_unlock(&file_priv->mm.lock);
Chris Wilson05235c52016-07-20 09:21:08 +0100122}
123
Chris Wilson52e54202016-11-14 20:41:02 +0000124static struct i915_dependency *
125i915_dependency_alloc(struct drm_i915_private *i915)
126{
127 return kmem_cache_alloc(i915->dependencies, GFP_KERNEL);
128}
129
130static void
131i915_dependency_free(struct drm_i915_private *i915,
132 struct i915_dependency *dep)
133{
134 kmem_cache_free(i915->dependencies, dep);
135}
136
137static void
138__i915_priotree_add_dependency(struct i915_priotree *pt,
139 struct i915_priotree *signal,
140 struct i915_dependency *dep,
141 unsigned long flags)
142{
Chris Wilson20311bd2016-11-14 20:41:03 +0000143 INIT_LIST_HEAD(&dep->dfs_link);
Chris Wilson52e54202016-11-14 20:41:02 +0000144 list_add(&dep->wait_link, &signal->waiters_list);
145 list_add(&dep->signal_link, &pt->signalers_list);
146 dep->signaler = signal;
147 dep->flags = flags;
148}
149
150static int
151i915_priotree_add_dependency(struct drm_i915_private *i915,
152 struct i915_priotree *pt,
153 struct i915_priotree *signal)
154{
155 struct i915_dependency *dep;
156
157 dep = i915_dependency_alloc(i915);
158 if (!dep)
159 return -ENOMEM;
160
161 __i915_priotree_add_dependency(pt, signal, dep, I915_DEPENDENCY_ALLOC);
162 return 0;
163}
164
165static void
166i915_priotree_fini(struct drm_i915_private *i915, struct i915_priotree *pt)
167{
168 struct i915_dependency *dep, *next;
169
Chris Wilson20311bd2016-11-14 20:41:03 +0000170 GEM_BUG_ON(!RB_EMPTY_NODE(&pt->node));
171
Chris Wilson52e54202016-11-14 20:41:02 +0000172 /* Everyone we depended upon (the fences we wait to be signaled)
173 * should retire before us and remove themselves from our list.
174 * However, retirement is run independently on each timeline and
175 * so we may be called out-of-order.
176 */
177 list_for_each_entry_safe(dep, next, &pt->signalers_list, signal_link) {
178 list_del(&dep->wait_link);
179 if (dep->flags & I915_DEPENDENCY_ALLOC)
180 i915_dependency_free(i915, dep);
181 }
182
183 /* Remove ourselves from everyone who depends upon us */
184 list_for_each_entry_safe(dep, next, &pt->waiters_list, wait_link) {
185 list_del(&dep->signal_link);
186 if (dep->flags & I915_DEPENDENCY_ALLOC)
187 i915_dependency_free(i915, dep);
188 }
189}
190
191static void
192i915_priotree_init(struct i915_priotree *pt)
193{
194 INIT_LIST_HEAD(&pt->signalers_list);
195 INIT_LIST_HEAD(&pt->waiters_list);
Chris Wilson20311bd2016-11-14 20:41:03 +0000196 RB_CLEAR_NODE(&pt->node);
197 pt->priority = INT_MIN;
Chris Wilson52e54202016-11-14 20:41:02 +0000198}
199
Chris Wilson12d31732017-02-23 07:44:09 +0000200static int reset_all_global_seqno(struct drm_i915_private *i915, u32 seqno)
201{
202 struct i915_gem_timeline *timeline = &i915->gt.global_timeline;
203 struct intel_engine_cs *engine;
204 enum intel_engine_id id;
205 int ret;
206
207 /* Carefully retire all requests without writing to the rings */
208 ret = i915_gem_wait_for_idle(i915,
209 I915_WAIT_INTERRUPTIBLE |
210 I915_WAIT_LOCKED);
211 if (ret)
212 return ret;
213
214 i915_gem_retire_requests(i915);
215 GEM_BUG_ON(i915->gt.active_requests > 1);
216
217 /* If the seqno wraps around, we need to clear the breadcrumb rbtree */
218 for_each_engine(engine, i915, id) {
219 struct intel_timeline *tl = &timeline->engine[id];
220
221 if (!i915_seqno_passed(seqno, tl->seqno)) {
222 /* spin until threads are complete */
223 while (intel_breadcrumbs_busy(engine))
224 cond_resched();
225 }
226
227 /* Finally reset hw state */
228 tl->seqno = seqno;
229 intel_engine_init_global_seqno(engine, seqno);
230 }
231
232 list_for_each_entry(timeline, &i915->gt.timelines, link) {
233 for_each_engine(engine, i915, id) {
234 struct intel_timeline *tl = &timeline->engine[id];
235
236 memset(tl->sync_seqno, 0, sizeof(tl->sync_seqno));
237 }
238 }
239
240 return 0;
241}
242
243int i915_gem_set_global_seqno(struct drm_device *dev, u32 seqno)
244{
245 struct drm_i915_private *dev_priv = to_i915(dev);
246
247 lockdep_assert_held(&dev_priv->drm.struct_mutex);
248
249 if (seqno == 0)
250 return -EINVAL;
251
252 /* HWS page needs to be set less than what we
253 * will inject to ring
254 */
255 return reset_all_global_seqno(dev_priv, seqno - 1);
256}
257
258static int reserve_seqno(struct intel_engine_cs *engine)
259{
260 u32 active = ++engine->timeline->inflight_seqnos;
261 u32 seqno = engine->timeline->seqno;
262 int ret;
263
264 /* Reservation is fine until we need to wrap around */
265 if (likely(!add_overflows(seqno, active)))
266 return 0;
267
268 ret = reset_all_global_seqno(engine->i915, 0);
269 if (ret) {
270 engine->timeline->inflight_seqnos--;
271 return ret;
272 }
273
274 return 0;
275}
276
Chris Wilson9b6586a2017-02-23 07:44:08 +0000277static void unreserve_seqno(struct intel_engine_cs *engine)
278{
279 GEM_BUG_ON(!engine->timeline->inflight_seqnos);
280 engine->timeline->inflight_seqnos--;
281}
282
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100283void i915_gem_retire_noop(struct i915_gem_active *active,
284 struct drm_i915_gem_request *request)
285{
286 /* Space left intentionally blank */
287}
288
Chris Wilson05235c52016-07-20 09:21:08 +0100289static void i915_gem_request_retire(struct drm_i915_gem_request *request)
290{
Chris Wilsone8a9c582016-12-18 15:37:20 +0000291 struct intel_engine_cs *engine = request->engine;
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100292 struct i915_gem_active *active, *next;
293
Chris Wilson4c7d62c2016-10-28 13:58:32 +0100294 lockdep_assert_held(&request->i915->drm.struct_mutex);
Chris Wilson48bc2a42016-11-25 13:17:17 +0000295 GEM_BUG_ON(!i915_sw_fence_signaled(&request->submit));
Chris Wilson4c7d62c2016-10-28 13:58:32 +0100296 GEM_BUG_ON(!i915_gem_request_completed(request));
Chris Wilson43020552016-11-15 16:46:20 +0000297 GEM_BUG_ON(!request->i915->gt.active_requests);
Chris Wilson4c7d62c2016-10-28 13:58:32 +0100298
Chris Wilson05235c52016-07-20 09:21:08 +0100299 trace_i915_gem_request_retire(request);
Chris Wilson80b204b2016-10-28 13:58:58 +0100300
Chris Wilsone8a9c582016-12-18 15:37:20 +0000301 spin_lock_irq(&engine->timeline->lock);
Chris Wilsone95433c2016-10-28 13:58:27 +0100302 list_del_init(&request->link);
Chris Wilsone8a9c582016-12-18 15:37:20 +0000303 spin_unlock_irq(&engine->timeline->lock);
Chris Wilson05235c52016-07-20 09:21:08 +0100304
305 /* We know the GPU must have read the request to have
306 * sent us the seqno + interrupt, so use the position
307 * of tail of the request to update the last known position
308 * of the GPU head.
309 *
310 * Note this requires that we are always called in request
311 * completion order.
312 */
Chris Wilson675d9ad2016-08-04 07:52:36 +0100313 list_del(&request->ring_link);
Chris Wilson1dae2df2016-08-02 22:50:19 +0100314 request->ring->last_retired_head = request->postfix;
Chris Wilson43020552016-11-15 16:46:20 +0000315 if (!--request->i915->gt.active_requests) {
316 GEM_BUG_ON(!request->i915->gt.awake);
317 mod_delayed_work(request->i915->wq,
318 &request->i915->gt.idle_work,
319 msecs_to_jiffies(100));
320 }
Chris Wilson9b6586a2017-02-23 07:44:08 +0000321 unreserve_seqno(request->engine);
Chris Wilson05235c52016-07-20 09:21:08 +0100322
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100323 /* Walk through the active list, calling retire on each. This allows
324 * objects to track their GPU activity and mark themselves as idle
325 * when their *last* active request is completed (updating state
326 * tracking lists for eviction, active references for GEM, etc).
327 *
328 * As the ->retire() may free the node, we decouple it first and
329 * pass along the auxiliary information (to avoid dereferencing
330 * the node after the callback).
331 */
332 list_for_each_entry_safe(active, next, &request->active_list, link) {
333 /* In microbenchmarks or focusing upon time inside the kernel,
334 * we may spend an inordinate amount of time simply handling
335 * the retirement of requests and processing their callbacks.
336 * Of which, this loop itself is particularly hot due to the
337 * cache misses when jumping around the list of i915_gem_active.
338 * So we try to keep this loop as streamlined as possible and
339 * also prefetch the next i915_gem_active to try and hide
340 * the likely cache miss.
341 */
342 prefetchw(next);
343
344 INIT_LIST_HEAD(&active->link);
Chris Wilson0eafec62016-08-04 16:32:41 +0100345 RCU_INIT_POINTER(active->request, NULL);
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100346
347 active->retire(active, request);
348 }
349
Chris Wilson05235c52016-07-20 09:21:08 +0100350 i915_gem_request_remove_from_client(request);
351
Mika Kuoppalae5e1fc42016-11-16 17:20:31 +0200352 /* Retirement decays the ban score as it is a sign of ctx progress */
Mika Kuoppalabc1d53c2016-11-16 17:20:34 +0200353 if (request->ctx->ban_score > 0)
354 request->ctx->ban_score--;
Mika Kuoppalae5e1fc42016-11-16 17:20:31 +0200355
Chris Wilsone8a9c582016-12-18 15:37:20 +0000356 /* The backing object for the context is done after switching to the
357 * *next* context. Therefore we cannot retire the previous context until
358 * the next context has already started running. However, since we
359 * cannot take the required locks at i915_gem_request_submit() we
360 * defer the unpinning of the active context to now, retirement of
361 * the subsequent request.
362 */
363 if (engine->last_retired_context)
364 engine->context_unpin(engine, engine->last_retired_context);
365 engine->last_retired_context = request->ctx;
Chris Wilsond07f0e52016-10-28 13:58:44 +0100366
367 dma_fence_signal(&request->fence);
Chris Wilson52e54202016-11-14 20:41:02 +0000368
369 i915_priotree_fini(request->i915, &request->priotree);
Chris Wilsone8a261e2016-07-20 13:31:49 +0100370 i915_gem_request_put(request);
Chris Wilson05235c52016-07-20 09:21:08 +0100371}
372
373void i915_gem_request_retire_upto(struct drm_i915_gem_request *req)
374{
375 struct intel_engine_cs *engine = req->engine;
376 struct drm_i915_gem_request *tmp;
377
378 lockdep_assert_held(&req->i915->drm.struct_mutex);
Chris Wilson4ffd6e02016-11-25 13:17:15 +0000379 GEM_BUG_ON(!i915_gem_request_completed(req));
380
Chris Wilsone95433c2016-10-28 13:58:27 +0100381 if (list_empty(&req->link))
382 return;
Chris Wilson05235c52016-07-20 09:21:08 +0100383
384 do {
Chris Wilson73cb9702016-10-28 13:58:46 +0100385 tmp = list_first_entry(&engine->timeline->requests,
Chris Wilsonefdf7c02016-08-04 07:52:33 +0100386 typeof(*tmp), link);
Chris Wilson05235c52016-07-20 09:21:08 +0100387
388 i915_gem_request_retire(tmp);
389 } while (tmp != req);
Chris Wilson05235c52016-07-20 09:21:08 +0100390}
391
Chris Wilson9b6586a2017-02-23 07:44:08 +0000392static u32 timeline_get_seqno(struct intel_timeline *tl)
Chris Wilson80b204b2016-10-28 13:58:58 +0100393{
Chris Wilson9b6586a2017-02-23 07:44:08 +0000394 return ++tl->seqno;
Chris Wilson05235c52016-07-20 09:21:08 +0100395}
396
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000397void __i915_gem_request_submit(struct drm_i915_gem_request *request)
Chris Wilson5590af32016-09-09 14:11:54 +0100398{
Chris Wilson73cb9702016-10-28 13:58:46 +0100399 struct intel_engine_cs *engine = request->engine;
Chris Wilsonf2d13292016-10-28 13:58:57 +0100400 struct intel_timeline *timeline;
401 u32 seqno;
Chris Wilson5590af32016-09-09 14:11:54 +0100402
Chris Wilsonfe497892017-02-23 07:44:13 +0000403 trace_i915_gem_request_execute(request);
404
Chris Wilson80b204b2016-10-28 13:58:58 +0100405 /* Transfer from per-context onto the global per-engine timeline */
406 timeline = engine->timeline;
407 GEM_BUG_ON(timeline == request->timeline);
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000408 assert_spin_locked(&timeline->lock);
Chris Wilson5590af32016-09-09 14:11:54 +0100409
Chris Wilson9b6586a2017-02-23 07:44:08 +0000410 seqno = timeline_get_seqno(timeline);
Chris Wilsonf2d13292016-10-28 13:58:57 +0100411 GEM_BUG_ON(!seqno);
412 GEM_BUG_ON(i915_seqno_passed(intel_engine_get_seqno(engine), seqno));
413
Chris Wilsonf2d13292016-10-28 13:58:57 +0100414 /* We may be recursing from the signal callback of another i915 fence */
415 spin_lock_nested(&request->lock, SINGLE_DEPTH_NESTING);
416 request->global_seqno = seqno;
417 if (test_bit(DMA_FENCE_FLAG_ENABLE_SIGNAL_BIT, &request->fence.flags))
418 intel_engine_enable_signaling(request);
419 spin_unlock(&request->lock);
420
421 GEM_BUG_ON(!request->global_seqno);
Chris Wilsoncaddfe72016-10-28 13:58:52 +0100422 engine->emit_breadcrumb(request,
423 request->ring->vaddr + request->postfix);
Chris Wilson5590af32016-09-09 14:11:54 +0100424
Chris Wilsonbb894852016-11-14 20:40:57 +0000425 spin_lock(&request->timeline->lock);
Chris Wilson80b204b2016-10-28 13:58:58 +0100426 list_move_tail(&request->link, &timeline->requests);
427 spin_unlock(&request->timeline->lock);
428
Chris Wilsonfe497892017-02-23 07:44:13 +0000429 wake_up_all(&request->execute);
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000430}
Chris Wilson23902e42016-11-14 20:40:58 +0000431
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000432void i915_gem_request_submit(struct drm_i915_gem_request *request)
433{
434 struct intel_engine_cs *engine = request->engine;
435 unsigned long flags;
436
437 /* Will be called from irq-context when using foreign fences. */
438 spin_lock_irqsave(&engine->timeline->lock, flags);
439
440 __i915_gem_request_submit(request);
441
442 spin_unlock_irqrestore(&engine->timeline->lock, flags);
443}
444
445static int __i915_sw_fence_call
446submit_notify(struct i915_sw_fence *fence, enum i915_sw_fence_notify state)
447{
Chris Wilson48bc2a42016-11-25 13:17:17 +0000448 struct drm_i915_gem_request *request =
449 container_of(fence, typeof(*request), submit);
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000450
Chris Wilson48bc2a42016-11-25 13:17:17 +0000451 switch (state) {
452 case FENCE_COMPLETE:
Tvrtko Ursulin354d0362017-02-21 11:01:42 +0000453 trace_i915_gem_request_submit(request);
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000454 request->engine->submit_request(request);
Chris Wilson48bc2a42016-11-25 13:17:17 +0000455 break;
456
457 case FENCE_FREE:
458 i915_gem_request_put(request);
459 break;
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000460 }
Chris Wilson80b204b2016-10-28 13:58:58 +0100461
Chris Wilson5590af32016-09-09 14:11:54 +0100462 return NOTIFY_DONE;
463}
464
Chris Wilson8e637172016-08-02 22:50:26 +0100465/**
466 * i915_gem_request_alloc - allocate a request structure
467 *
468 * @engine: engine that we wish to issue the request on.
469 * @ctx: context that the request will be associated with.
470 * This can be NULL if the request is not directly related to
471 * any specific user context, in which case this function will
472 * choose an appropriate context to use.
473 *
474 * Returns a pointer to the allocated request if successful,
475 * or an error code if not.
476 */
477struct drm_i915_gem_request *
478i915_gem_request_alloc(struct intel_engine_cs *engine,
479 struct i915_gem_context *ctx)
Chris Wilson05235c52016-07-20 09:21:08 +0100480{
481 struct drm_i915_private *dev_priv = engine->i915;
Chris Wilson05235c52016-07-20 09:21:08 +0100482 struct drm_i915_gem_request *req;
483 int ret;
484
Chris Wilson28176ef2016-10-28 13:58:56 +0100485 lockdep_assert_held(&dev_priv->drm.struct_mutex);
486
Chris Wilson05235c52016-07-20 09:21:08 +0100487 /* ABI: Before userspace accesses the GPU (e.g. execbuffer), report
Chris Wilson6ffb7d02017-01-14 16:23:33 +0000488 * EIO if the GPU is already wedged.
Chris Wilson05235c52016-07-20 09:21:08 +0100489 */
Chris Wilson6ffb7d02017-01-14 16:23:33 +0000490 if (i915_terminally_wedged(&dev_priv->gpu_error))
491 return ERR_PTR(-EIO);
Chris Wilson05235c52016-07-20 09:21:08 +0100492
Chris Wilsone8a9c582016-12-18 15:37:20 +0000493 /* Pinning the contexts may generate requests in order to acquire
494 * GGTT space, so do this first before we reserve a seqno for
495 * ourselves.
496 */
497 ret = engine->context_pin(engine, ctx);
Chris Wilson28176ef2016-10-28 13:58:56 +0100498 if (ret)
499 return ERR_PTR(ret);
500
Chris Wilson9b6586a2017-02-23 07:44:08 +0000501 ret = reserve_seqno(engine);
Chris Wilsone8a9c582016-12-18 15:37:20 +0000502 if (ret)
503 goto err_unpin;
504
Chris Wilson9b5f4e52016-07-20 09:21:09 +0100505 /* Move the oldest request to the slab-cache (if not in use!) */
Chris Wilson73cb9702016-10-28 13:58:46 +0100506 req = list_first_entry_or_null(&engine->timeline->requests,
Chris Wilsonefdf7c02016-08-04 07:52:33 +0100507 typeof(*req), link);
Chris Wilson80b204b2016-10-28 13:58:58 +0100508 if (req && __i915_gem_request_completed(req))
Chris Wilson2a1d7752016-07-26 12:01:51 +0100509 i915_gem_request_retire(req);
Chris Wilson9b5f4e52016-07-20 09:21:09 +0100510
Chris Wilson5a198b82016-08-09 09:23:34 +0100511 /* Beware: Dragons be flying overhead.
512 *
513 * We use RCU to look up requests in flight. The lookups may
514 * race with the request being allocated from the slab freelist.
515 * That is the request we are writing to here, may be in the process
Chris Wilson1426f712016-08-09 17:03:22 +0100516 * of being read by __i915_gem_active_get_rcu(). As such,
Chris Wilson5a198b82016-08-09 09:23:34 +0100517 * we have to be very careful when overwriting the contents. During
518 * the RCU lookup, we change chase the request->engine pointer,
Chris Wilson65e47602016-10-28 13:58:49 +0100519 * read the request->global_seqno and increment the reference count.
Chris Wilson5a198b82016-08-09 09:23:34 +0100520 *
521 * The reference count is incremented atomically. If it is zero,
522 * the lookup knows the request is unallocated and complete. Otherwise,
523 * it is either still in use, or has been reallocated and reset
Chris Wilsonf54d1862016-10-25 13:00:45 +0100524 * with dma_fence_init(). This increment is safe for release as we
525 * check that the request we have a reference to and matches the active
Chris Wilson5a198b82016-08-09 09:23:34 +0100526 * request.
527 *
528 * Before we increment the refcount, we chase the request->engine
529 * pointer. We must not call kmem_cache_zalloc() or else we set
530 * that pointer to NULL and cause a crash during the lookup. If
531 * we see the request is completed (based on the value of the
532 * old engine and seqno), the lookup is complete and reports NULL.
533 * If we decide the request is not completed (new engine or seqno),
534 * then we grab a reference and double check that it is still the
535 * active request - which it won't be and restart the lookup.
536 *
537 * Do not use kmem_cache_zalloc() here!
538 */
539 req = kmem_cache_alloc(dev_priv->requests, GFP_KERNEL);
Chris Wilson28176ef2016-10-28 13:58:56 +0100540 if (!req) {
541 ret = -ENOMEM;
542 goto err_unreserve;
543 }
Chris Wilson05235c52016-07-20 09:21:08 +0100544
Chris Wilson80b204b2016-10-28 13:58:58 +0100545 req->timeline = i915_gem_context_lookup_timeline(ctx, engine);
546 GEM_BUG_ON(req->timeline == engine->timeline);
Chris Wilson73cb9702016-10-28 13:58:46 +0100547
Chris Wilson04769652016-07-20 09:21:11 +0100548 spin_lock_init(&req->lock);
Chris Wilsonf54d1862016-10-25 13:00:45 +0100549 dma_fence_init(&req->fence,
550 &i915_fence_ops,
551 &req->lock,
Chris Wilson73cb9702016-10-28 13:58:46 +0100552 req->timeline->fence_context,
Chris Wilson9b6586a2017-02-23 07:44:08 +0000553 timeline_get_seqno(req->timeline));
Chris Wilson04769652016-07-20 09:21:11 +0100554
Chris Wilson48bc2a42016-11-25 13:17:17 +0000555 /* We bump the ref for the fence chain */
556 i915_sw_fence_init(&i915_gem_request_get(req)->submit, submit_notify);
Chris Wilsonfe497892017-02-23 07:44:13 +0000557 init_waitqueue_head(&req->execute);
Chris Wilson5590af32016-09-09 14:11:54 +0100558
Chris Wilson52e54202016-11-14 20:41:02 +0000559 i915_priotree_init(&req->priotree);
560
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100561 INIT_LIST_HEAD(&req->active_list);
Chris Wilson05235c52016-07-20 09:21:08 +0100562 req->i915 = dev_priv;
563 req->engine = engine;
Chris Wilsone8a9c582016-12-18 15:37:20 +0000564 req->ctx = ctx;
Chris Wilson05235c52016-07-20 09:21:08 +0100565
Chris Wilson5a198b82016-08-09 09:23:34 +0100566 /* No zalloc, must clear what we need by hand */
Chris Wilsonf2d13292016-10-28 13:58:57 +0100567 req->global_seqno = 0;
Chris Wilson5a198b82016-08-09 09:23:34 +0100568 req->file_priv = NULL;
Chris Wilson058d88c2016-08-15 10:49:06 +0100569 req->batch = NULL;
Chris Wilson5a198b82016-08-09 09:23:34 +0100570
Chris Wilson05235c52016-07-20 09:21:08 +0100571 /*
572 * Reserve space in the ring buffer for all the commands required to
573 * eventually emit this request. This is to guarantee that the
574 * i915_add_request() call can't fail. Note that the reserve may need
575 * to be redone if the request is not actually submitted straight
576 * away, e.g. because a GPU scheduler has deferred it.
577 */
578 req->reserved_space = MIN_SPACE_FOR_ADD_REQUEST;
Chris Wilson98f29e82016-10-28 13:58:51 +0100579 GEM_BUG_ON(req->reserved_space < engine->emit_breadcrumb_sz);
Chris Wilson05235c52016-07-20 09:21:08 +0100580
Chris Wilsonf73e7392016-12-18 15:37:24 +0000581 ret = engine->request_alloc(req);
Chris Wilson05235c52016-07-20 09:21:08 +0100582 if (ret)
583 goto err_ctx;
584
Chris Wilsond0454462016-08-15 10:48:40 +0100585 /* Record the position of the start of the request so that
586 * should we detect the updated seqno part-way through the
587 * GPU processing the request, we never over-estimate the
588 * position of the head.
589 */
590 req->head = req->ring->tail;
591
Chris Wilson9b6586a2017-02-23 07:44:08 +0000592 /* Check that we didn't interrupt ourselves with a new request */
593 GEM_BUG_ON(req->timeline->seqno != req->fence.seqno);
Chris Wilson8e637172016-08-02 22:50:26 +0100594 return req;
Chris Wilson05235c52016-07-20 09:21:08 +0100595
596err_ctx:
Chris Wilson1618bdb2016-11-25 13:17:16 +0000597 /* Make sure we didn't add ourselves to external state before freeing */
598 GEM_BUG_ON(!list_empty(&req->active_list));
599 GEM_BUG_ON(!list_empty(&req->priotree.signalers_list));
600 GEM_BUG_ON(!list_empty(&req->priotree.waiters_list));
601
Chris Wilson05235c52016-07-20 09:21:08 +0100602 kmem_cache_free(dev_priv->requests, req);
Chris Wilson28176ef2016-10-28 13:58:56 +0100603err_unreserve:
Chris Wilson9b6586a2017-02-23 07:44:08 +0000604 unreserve_seqno(engine);
Chris Wilsone8a9c582016-12-18 15:37:20 +0000605err_unpin:
606 engine->context_unpin(engine, ctx);
Chris Wilson8e637172016-08-02 22:50:26 +0100607 return ERR_PTR(ret);
Chris Wilson05235c52016-07-20 09:21:08 +0100608}
609
Chris Wilsona2bc4692016-09-09 14:11:56 +0100610static int
611i915_gem_request_await_request(struct drm_i915_gem_request *to,
612 struct drm_i915_gem_request *from)
613{
Chris Wilson85e17f52016-10-28 13:58:53 +0100614 int ret;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100615
616 GEM_BUG_ON(to == from);
617
Chris Wilson52e54202016-11-14 20:41:02 +0000618 if (to->engine->schedule) {
619 ret = i915_priotree_add_dependency(to->i915,
620 &to->priotree,
621 &from->priotree);
622 if (ret < 0)
623 return ret;
624 }
625
Chris Wilson73cb9702016-10-28 13:58:46 +0100626 if (to->timeline == from->timeline)
Chris Wilsona2bc4692016-09-09 14:11:56 +0100627 return 0;
628
Chris Wilson73cb9702016-10-28 13:58:46 +0100629 if (to->engine == from->engine) {
630 ret = i915_sw_fence_await_sw_fence_gfp(&to->submit,
631 &from->submit,
632 GFP_KERNEL);
633 return ret < 0 ? ret : 0;
634 }
635
Chris Wilson65e47602016-10-28 13:58:49 +0100636 if (!from->global_seqno) {
637 ret = i915_sw_fence_await_dma_fence(&to->submit,
638 &from->fence, 0,
639 GFP_KERNEL);
640 return ret < 0 ? ret : 0;
641 }
642
Chris Wilson85e17f52016-10-28 13:58:53 +0100643 if (from->global_seqno <= to->timeline->sync_seqno[from->engine->id])
Chris Wilsona2bc4692016-09-09 14:11:56 +0100644 return 0;
645
646 trace_i915_gem_ring_sync_to(to, from);
647 if (!i915.semaphores) {
Chris Wilson0a046a02016-09-09 14:12:00 +0100648 if (!i915_spin_request(from, TASK_INTERRUPTIBLE, 2)) {
649 ret = i915_sw_fence_await_dma_fence(&to->submit,
650 &from->fence, 0,
651 GFP_KERNEL);
652 if (ret < 0)
653 return ret;
654 }
Chris Wilsona2bc4692016-09-09 14:11:56 +0100655 } else {
656 ret = to->engine->semaphore.sync_to(to, from);
657 if (ret)
658 return ret;
659 }
660
Chris Wilson85e17f52016-10-28 13:58:53 +0100661 to->timeline->sync_seqno[from->engine->id] = from->global_seqno;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100662 return 0;
663}
664
Chris Wilsonb52992c2016-10-28 13:58:24 +0100665int
666i915_gem_request_await_dma_fence(struct drm_i915_gem_request *req,
667 struct dma_fence *fence)
668{
669 struct dma_fence_array *array;
670 int ret;
671 int i;
672
673 if (test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &fence->flags))
674 return 0;
675
676 if (dma_fence_is_i915(fence))
677 return i915_gem_request_await_request(req, to_request(fence));
678
679 if (!dma_fence_is_array(fence)) {
680 ret = i915_sw_fence_await_dma_fence(&req->submit,
681 fence, I915_FENCE_TIMEOUT,
682 GFP_KERNEL);
683 return ret < 0 ? ret : 0;
684 }
685
686 /* Note that if the fence-array was created in signal-on-any mode,
687 * we should *not* decompose it into its individual fences. However,
688 * we don't currently store which mode the fence-array is operating
689 * in. Fortunately, the only user of signal-on-any is private to
690 * amdgpu and we should not see any incoming fence-array from
691 * sync-file being in signal-on-any mode.
692 */
693
694 array = to_dma_fence_array(fence);
695 for (i = 0; i < array->num_fences; i++) {
696 struct dma_fence *child = array->fences[i];
697
698 if (dma_fence_is_i915(child))
699 ret = i915_gem_request_await_request(req,
700 to_request(child));
701 else
702 ret = i915_sw_fence_await_dma_fence(&req->submit,
703 child, I915_FENCE_TIMEOUT,
704 GFP_KERNEL);
705 if (ret < 0)
706 return ret;
707 }
708
709 return 0;
710}
711
Chris Wilsona2bc4692016-09-09 14:11:56 +0100712/**
713 * i915_gem_request_await_object - set this request to (async) wait upon a bo
714 *
715 * @to: request we are wishing to use
716 * @obj: object which may be in use on another ring.
717 *
718 * This code is meant to abstract object synchronization with the GPU.
719 * Conceptually we serialise writes between engines inside the GPU.
720 * We only allow one engine to write into a buffer at any time, but
721 * multiple readers. To ensure each has a coherent view of memory, we must:
722 *
723 * - If there is an outstanding write request to the object, the new
724 * request must wait for it to complete (either CPU or in hw, requests
725 * on the same ring will be naturally ordered).
726 *
727 * - If we are a write request (pending_write_domain is set), the new
728 * request must wait for outstanding read requests to complete.
729 *
730 * Returns 0 if successful, else propagates up the lower layer error.
731 */
732int
733i915_gem_request_await_object(struct drm_i915_gem_request *to,
734 struct drm_i915_gem_object *obj,
735 bool write)
736{
Chris Wilsond07f0e52016-10-28 13:58:44 +0100737 struct dma_fence *excl;
738 int ret = 0;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100739
740 if (write) {
Chris Wilsond07f0e52016-10-28 13:58:44 +0100741 struct dma_fence **shared;
742 unsigned int count, i;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100743
Chris Wilsond07f0e52016-10-28 13:58:44 +0100744 ret = reservation_object_get_fences_rcu(obj->resv,
745 &excl, &count, &shared);
Chris Wilsona2bc4692016-09-09 14:11:56 +0100746 if (ret)
747 return ret;
Chris Wilsond07f0e52016-10-28 13:58:44 +0100748
749 for (i = 0; i < count; i++) {
750 ret = i915_gem_request_await_dma_fence(to, shared[i]);
751 if (ret)
752 break;
753
754 dma_fence_put(shared[i]);
755 }
756
757 for (; i < count; i++)
758 dma_fence_put(shared[i]);
759 kfree(shared);
760 } else {
761 excl = reservation_object_get_excl_rcu(obj->resv);
Chris Wilsona2bc4692016-09-09 14:11:56 +0100762 }
763
Chris Wilsond07f0e52016-10-28 13:58:44 +0100764 if (excl) {
765 if (ret == 0)
766 ret = i915_gem_request_await_dma_fence(to, excl);
767
768 dma_fence_put(excl);
769 }
770
771 return ret;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100772}
773
Chris Wilson05235c52016-07-20 09:21:08 +0100774static void i915_gem_mark_busy(const struct intel_engine_cs *engine)
775{
776 struct drm_i915_private *dev_priv = engine->i915;
777
Chris Wilson05235c52016-07-20 09:21:08 +0100778 if (dev_priv->gt.awake)
779 return;
780
Chris Wilson43020552016-11-15 16:46:20 +0000781 GEM_BUG_ON(!dev_priv->gt.active_requests);
782
Chris Wilson05235c52016-07-20 09:21:08 +0100783 intel_runtime_pm_get_noresume(dev_priv);
784 dev_priv->gt.awake = true;
785
Chris Wilson54b4f682016-07-21 21:16:19 +0100786 intel_enable_gt_powersave(dev_priv);
Chris Wilson05235c52016-07-20 09:21:08 +0100787 i915_update_gfx_val(dev_priv);
788 if (INTEL_GEN(dev_priv) >= 6)
789 gen6_rps_busy(dev_priv);
790
791 queue_delayed_work(dev_priv->wq,
792 &dev_priv->gt.retire_work,
793 round_jiffies_up_relative(HZ));
794}
795
796/*
797 * NB: This function is not allowed to fail. Doing so would mean the the
798 * request is not being tracked for completion but the work itself is
799 * going to happen on the hardware. This would be a Bad Thing(tm).
800 */
Chris Wilson17f298cf2016-08-10 13:41:46 +0100801void __i915_add_request(struct drm_i915_gem_request *request, bool flush_caches)
Chris Wilson05235c52016-07-20 09:21:08 +0100802{
Chris Wilson95b2ab52016-08-15 10:48:46 +0100803 struct intel_engine_cs *engine = request->engine;
804 struct intel_ring *ring = request->ring;
Chris Wilson73cb9702016-10-28 13:58:46 +0100805 struct intel_timeline *timeline = request->timeline;
Chris Wilson0a046a02016-09-09 14:12:00 +0100806 struct drm_i915_gem_request *prev;
Tvrtko Ursulin73dec952017-02-14 11:32:42 +0000807 u32 *cs;
Chris Wilsoncaddfe72016-10-28 13:58:52 +0100808 int err;
Chris Wilson05235c52016-07-20 09:21:08 +0100809
Chris Wilson4c7d62c2016-10-28 13:58:32 +0100810 lockdep_assert_held(&request->i915->drm.struct_mutex);
Chris Wilson0f25dff2016-09-09 14:11:55 +0100811 trace_i915_gem_request_add(request);
812
Chris Wilsonc781c972017-01-11 14:08:58 +0000813 /* Make sure that no request gazumped us - if it was allocated after
814 * our i915_gem_request_alloc() and called __i915_add_request() before
815 * us, the timeline will hold its seqno which is later than ours.
816 */
Chris Wilson9b6586a2017-02-23 07:44:08 +0000817 GEM_BUG_ON(timeline->seqno != request->fence.seqno);
Chris Wilsonc781c972017-01-11 14:08:58 +0000818
Chris Wilson05235c52016-07-20 09:21:08 +0100819 /*
820 * To ensure that this call will not fail, space for its emissions
821 * should already have been reserved in the ring buffer. Let the ring
822 * know that it is time to use that space up.
823 */
Chris Wilson05235c52016-07-20 09:21:08 +0100824 request->reserved_space = 0;
825
826 /*
827 * Emit any outstanding flushes - execbuf can fail to emit the flush
828 * after having emitted the batchbuffer command. Hence we need to fix
829 * things up similar to emitting the lazy request. The difference here
830 * is that the flush _must_ happen before the next request, no matter
831 * what.
832 */
833 if (flush_caches) {
Chris Wilsoncaddfe72016-10-28 13:58:52 +0100834 err = engine->emit_flush(request, EMIT_FLUSH);
Chris Wilsonc7fe7d22016-08-02 22:50:24 +0100835
Chris Wilson05235c52016-07-20 09:21:08 +0100836 /* Not allowed to fail! */
Chris Wilsoncaddfe72016-10-28 13:58:52 +0100837 WARN(err, "engine->emit_flush() failed: %d!\n", err);
Chris Wilson05235c52016-07-20 09:21:08 +0100838 }
839
Chris Wilsond0454462016-08-15 10:48:40 +0100840 /* Record the position of the start of the breadcrumb so that
Chris Wilson05235c52016-07-20 09:21:08 +0100841 * should we detect the updated seqno part-way through the
842 * GPU processing the request, we never over-estimate the
Chris Wilsond0454462016-08-15 10:48:40 +0100843 * position of the ring's HEAD.
Chris Wilson05235c52016-07-20 09:21:08 +0100844 */
Tvrtko Ursulin73dec952017-02-14 11:32:42 +0000845 cs = intel_ring_begin(request, engine->emit_breadcrumb_sz);
846 GEM_BUG_ON(IS_ERR(cs));
847 request->postfix = intel_ring_offset(request, cs);
Chris Wilson05235c52016-07-20 09:21:08 +0100848
Chris Wilson0f25dff2016-09-09 14:11:55 +0100849 /* Seal the request and mark it as pending execution. Note that
850 * we may inspect this state, without holding any locks, during
851 * hangcheck. Hence we apply the barrier to ensure that we do not
852 * see a more recent value in the hws than we are tracking.
853 */
Chris Wilson0a046a02016-09-09 14:12:00 +0100854
Chris Wilson73cb9702016-10-28 13:58:46 +0100855 prev = i915_gem_active_raw(&timeline->last_request,
Chris Wilson0a046a02016-09-09 14:12:00 +0100856 &request->i915->drm.struct_mutex);
Chris Wilson52e54202016-11-14 20:41:02 +0000857 if (prev) {
Chris Wilson0a046a02016-09-09 14:12:00 +0100858 i915_sw_fence_await_sw_fence(&request->submit, &prev->submit,
859 &request->submitq);
Chris Wilson52e54202016-11-14 20:41:02 +0000860 if (engine->schedule)
861 __i915_priotree_add_dependency(&request->priotree,
862 &prev->priotree,
863 &request->dep,
864 0);
865 }
Chris Wilson0a046a02016-09-09 14:12:00 +0100866
Chris Wilson80b204b2016-10-28 13:58:58 +0100867 spin_lock_irq(&timeline->lock);
Chris Wilsonf2d13292016-10-28 13:58:57 +0100868 list_add_tail(&request->link, &timeline->requests);
Chris Wilson80b204b2016-10-28 13:58:58 +0100869 spin_unlock_irq(&timeline->lock);
Chris Wilson28176ef2016-10-28 13:58:56 +0100870
Chris Wilson9b6586a2017-02-23 07:44:08 +0000871 GEM_BUG_ON(timeline->seqno != request->fence.seqno);
Chris Wilson73cb9702016-10-28 13:58:46 +0100872 i915_gem_active_set(&timeline->last_request, request);
Chris Wilsonf2d13292016-10-28 13:58:57 +0100873
Chris Wilson0f25dff2016-09-09 14:11:55 +0100874 list_add_tail(&request->ring_link, &ring->request_list);
Chris Wilsonf2d13292016-10-28 13:58:57 +0100875 request->emitted_jiffies = jiffies;
Chris Wilson0f25dff2016-09-09 14:11:55 +0100876
Chris Wilson9b6586a2017-02-23 07:44:08 +0000877 if (!request->i915->gt.active_requests++)
878 i915_gem_mark_busy(engine);
Chris Wilson5590af32016-09-09 14:11:54 +0100879
Chris Wilson0de91362016-11-14 20:41:01 +0000880 /* Let the backend know a new request has arrived that may need
881 * to adjust the existing execution schedule due to a high priority
882 * request - i.e. we may want to preempt the current request in order
883 * to run a high priority dependency chain *before* we can execute this
884 * request.
885 *
886 * This is called before the request is ready to run so that we can
887 * decide whether to preempt the entire chain so that it is ready to
888 * run at the earliest possible convenience.
889 */
890 if (engine->schedule)
Chris Wilson9f792eb2016-11-14 20:41:04 +0000891 engine->schedule(request, request->ctx->priority);
Chris Wilson0de91362016-11-14 20:41:01 +0000892
Chris Wilson5590af32016-09-09 14:11:54 +0100893 local_bh_disable();
894 i915_sw_fence_commit(&request->submit);
895 local_bh_enable(); /* Kick the execlists tasklet if just scheduled */
Chris Wilson05235c52016-07-20 09:21:08 +0100896}
897
Chris Wilson221fe792016-09-09 14:11:51 +0100898static void reset_wait_queue(wait_queue_head_t *q, wait_queue_t *wait)
899{
900 unsigned long flags;
901
902 spin_lock_irqsave(&q->lock, flags);
903 if (list_empty(&wait->task_list))
904 __add_wait_queue(q, wait);
905 spin_unlock_irqrestore(&q->lock, flags);
906}
907
Chris Wilson05235c52016-07-20 09:21:08 +0100908static unsigned long local_clock_us(unsigned int *cpu)
909{
910 unsigned long t;
911
912 /* Cheaply and approximately convert from nanoseconds to microseconds.
913 * The result and subsequent calculations are also defined in the same
914 * approximate microseconds units. The principal source of timing
915 * error here is from the simple truncation.
916 *
917 * Note that local_clock() is only defined wrt to the current CPU;
918 * the comparisons are no longer valid if we switch CPUs. Instead of
919 * blocking preemption for the entire busywait, we can detect the CPU
920 * switch and use that as indicator of system load and a reason to
921 * stop busywaiting, see busywait_stop().
922 */
923 *cpu = get_cpu();
924 t = local_clock() >> 10;
925 put_cpu();
926
927 return t;
928}
929
930static bool busywait_stop(unsigned long timeout, unsigned int cpu)
931{
932 unsigned int this_cpu;
933
934 if (time_after(local_clock_us(&this_cpu), timeout))
935 return true;
936
937 return this_cpu != cpu;
938}
939
940bool __i915_spin_request(const struct drm_i915_gem_request *req,
941 int state, unsigned long timeout_us)
942{
Chris Wilsonc33ed062017-02-17 15:13:01 +0000943 struct intel_engine_cs *engine = req->engine;
944 unsigned int irq, cpu;
Chris Wilson05235c52016-07-20 09:21:08 +0100945
946 /* When waiting for high frequency requests, e.g. during synchronous
947 * rendering split between the CPU and GPU, the finite amount of time
948 * required to set up the irq and wait upon it limits the response
949 * rate. By busywaiting on the request completion for a short while we
950 * can service the high frequency waits as quick as possible. However,
951 * if it is a slow request, we want to sleep as quickly as possible.
952 * The tradeoff between waiting and sleeping is roughly the time it
953 * takes to sleep on a request, on the order of a microsecond.
954 */
955
Chris Wilsonc33ed062017-02-17 15:13:01 +0000956 irq = atomic_read(&engine->irq_count);
Chris Wilson05235c52016-07-20 09:21:08 +0100957 timeout_us += local_clock_us(&cpu);
958 do {
Chris Wilson65e47602016-10-28 13:58:49 +0100959 if (__i915_gem_request_completed(req))
Chris Wilson05235c52016-07-20 09:21:08 +0100960 return true;
961
Chris Wilsonc33ed062017-02-17 15:13:01 +0000962 /* Seqno are meant to be ordered *before* the interrupt. If
963 * we see an interrupt without a corresponding seqno advance,
964 * assume we won't see one in the near future but require
965 * the engine->seqno_barrier() to fixup coherency.
966 */
967 if (atomic_read(&engine->irq_count) != irq)
968 break;
969
Chris Wilson05235c52016-07-20 09:21:08 +0100970 if (signal_pending_state(state, current))
971 break;
972
973 if (busywait_stop(timeout_us, cpu))
974 break;
975
Christian Borntraegerf2f09a42016-10-25 11:03:14 +0200976 cpu_relax();
Chris Wilson05235c52016-07-20 09:21:08 +0100977 } while (!need_resched());
978
979 return false;
980}
981
982/**
Chris Wilson776f3232016-08-04 07:52:40 +0100983 * i915_wait_request - wait until execution of request has finished
Chris Wilsone95433c2016-10-28 13:58:27 +0100984 * @req: the request to wait upon
Chris Wilsonea746f32016-09-09 14:11:49 +0100985 * @flags: how to wait
Chris Wilsone95433c2016-10-28 13:58:27 +0100986 * @timeout: how long to wait in jiffies
Chris Wilson05235c52016-07-20 09:21:08 +0100987 *
Chris Wilsone95433c2016-10-28 13:58:27 +0100988 * i915_wait_request() waits for the request to be completed, for a
989 * maximum of @timeout jiffies (with MAX_SCHEDULE_TIMEOUT implying an
990 * unbounded wait).
Chris Wilson05235c52016-07-20 09:21:08 +0100991 *
Chris Wilsone95433c2016-10-28 13:58:27 +0100992 * If the caller holds the struct_mutex, the caller must pass I915_WAIT_LOCKED
993 * in via the flags, and vice versa if the struct_mutex is not held, the caller
994 * must not specify that the wait is locked.
995 *
996 * Returns the remaining time (in jiffies) if the request completed, which may
997 * be zero or -ETIME if the request is unfinished after the timeout expires.
998 * May return -EINTR is called with I915_WAIT_INTERRUPTIBLE and a signal is
999 * pending before the request completes.
Chris Wilson05235c52016-07-20 09:21:08 +01001000 */
Chris Wilsone95433c2016-10-28 13:58:27 +01001001long i915_wait_request(struct drm_i915_gem_request *req,
1002 unsigned int flags,
1003 long timeout)
Chris Wilson05235c52016-07-20 09:21:08 +01001004{
Chris Wilsonea746f32016-09-09 14:11:49 +01001005 const int state = flags & I915_WAIT_INTERRUPTIBLE ?
1006 TASK_INTERRUPTIBLE : TASK_UNINTERRUPTIBLE;
Chris Wilson4b36b2e2017-02-23 07:44:10 +00001007 wait_queue_head_t *errq = &req->i915->gpu_error.wait_queue;
Chris Wilson05235c52016-07-20 09:21:08 +01001008 DEFINE_WAIT(reset);
Chris Wilsonfe497892017-02-23 07:44:13 +00001009 DEFINE_WAIT(exec);
Chris Wilson05235c52016-07-20 09:21:08 +01001010 struct intel_wait wait;
Chris Wilson05235c52016-07-20 09:21:08 +01001011
1012 might_sleep();
Chris Wilson22dd3bb2016-09-09 14:11:50 +01001013#if IS_ENABLED(CONFIG_LOCKDEP)
Chris Wilsone95433c2016-10-28 13:58:27 +01001014 GEM_BUG_ON(debug_locks &&
1015 !!lockdep_is_held(&req->i915->drm.struct_mutex) !=
Chris Wilson22dd3bb2016-09-09 14:11:50 +01001016 !!(flags & I915_WAIT_LOCKED));
1017#endif
Chris Wilsone95433c2016-10-28 13:58:27 +01001018 GEM_BUG_ON(timeout < 0);
Chris Wilson05235c52016-07-20 09:21:08 +01001019
Chris Wilson05235c52016-07-20 09:21:08 +01001020 if (i915_gem_request_completed(req))
Chris Wilsone95433c2016-10-28 13:58:27 +01001021 return timeout;
Chris Wilson05235c52016-07-20 09:21:08 +01001022
Chris Wilsone95433c2016-10-28 13:58:27 +01001023 if (!timeout)
1024 return -ETIME;
Chris Wilson05235c52016-07-20 09:21:08 +01001025
Tvrtko Ursulin936925022017-02-21 11:00:24 +00001026 trace_i915_gem_request_wait_begin(req, flags);
Chris Wilson05235c52016-07-20 09:21:08 +01001027
Chris Wilson7de53bf2017-02-23 07:44:11 +00001028 if (flags & I915_WAIT_LOCKED)
1029 add_wait_queue(errq, &reset);
1030
Chris Wilsonfe497892017-02-23 07:44:13 +00001031 reset_wait_queue(&req->execute, &exec);
1032 if (!req->global_seqno) {
Chris Wilson541ca6e2017-02-23 07:44:12 +00001033 do {
Chris Wilsonfe497892017-02-23 07:44:13 +00001034 set_current_state(state);
1035 if (req->global_seqno)
Chris Wilson541ca6e2017-02-23 07:44:12 +00001036 break;
1037
1038 if (flags & I915_WAIT_LOCKED &&
1039 i915_reset_in_progress(&req->i915->gpu_error)) {
1040 __set_current_state(TASK_RUNNING);
1041 i915_reset(req->i915);
1042 reset_wait_queue(errq, &reset);
1043 continue;
1044 }
1045
1046 if (signal_pending_state(state, current)) {
1047 timeout = -ERESTARTSYS;
1048 break;
1049 }
1050
1051 if (!timeout) {
1052 timeout = -ETIME;
1053 break;
1054 }
1055
1056 timeout = io_schedule_timeout(timeout);
1057 } while (1);
Chris Wilsonfe497892017-02-23 07:44:13 +00001058 finish_wait(&req->execute, &exec);
Chris Wilson541ca6e2017-02-23 07:44:12 +00001059
Chris Wilson4680816b2016-10-28 13:58:48 +01001060 if (timeout < 0)
1061 goto complete;
1062
Chris Wilsonfe497892017-02-23 07:44:13 +00001063 GEM_BUG_ON(!req->global_seqno);
Chris Wilson4680816b2016-10-28 13:58:48 +01001064 }
Chris Wilsonfe497892017-02-23 07:44:13 +00001065 GEM_BUG_ON(!i915_sw_fence_signaled(&req->submit));
Chris Wilson4680816b2016-10-28 13:58:48 +01001066
Daniel Vetter437c3082016-08-05 18:11:24 +02001067 /* Optimistic short spin before touching IRQs */
Chris Wilson05235c52016-07-20 09:21:08 +01001068 if (i915_spin_request(req, state, 5))
1069 goto complete;
1070
1071 set_current_state(state);
Chris Wilson65e47602016-10-28 13:58:49 +01001072 intel_wait_init(&wait, req->global_seqno);
Chris Wilson05235c52016-07-20 09:21:08 +01001073 if (intel_engine_add_wait(req->engine, &wait))
1074 /* In order to check that we haven't missed the interrupt
1075 * as we enabled it, we need to kick ourselves to do a
1076 * coherent check on the seqno before we sleep.
1077 */
1078 goto wakeup;
1079
1080 for (;;) {
1081 if (signal_pending_state(state, current)) {
Chris Wilsone95433c2016-10-28 13:58:27 +01001082 timeout = -ERESTARTSYS;
Chris Wilson05235c52016-07-20 09:21:08 +01001083 break;
1084 }
1085
Chris Wilsone95433c2016-10-28 13:58:27 +01001086 if (!timeout) {
1087 timeout = -ETIME;
Chris Wilson05235c52016-07-20 09:21:08 +01001088 break;
1089 }
1090
Chris Wilsone95433c2016-10-28 13:58:27 +01001091 timeout = io_schedule_timeout(timeout);
1092
Chris Wilson05235c52016-07-20 09:21:08 +01001093 if (intel_wait_complete(&wait))
1094 break;
1095
1096 set_current_state(state);
1097
1098wakeup:
1099 /* Carefully check if the request is complete, giving time
1100 * for the seqno to be visible following the interrupt.
1101 * We also have to check in case we are kicked by the GPU
1102 * reset in order to drop the struct_mutex.
1103 */
1104 if (__i915_request_irq_complete(req))
1105 break;
1106
Chris Wilson221fe792016-09-09 14:11:51 +01001107 /* If the GPU is hung, and we hold the lock, reset the GPU
1108 * and then check for completion. On a full reset, the engine's
1109 * HW seqno will be advanced passed us and we are complete.
1110 * If we do a partial reset, we have to wait for the GPU to
1111 * resume and update the breadcrumb.
1112 *
1113 * If we don't hold the mutex, we can just wait for the worker
1114 * to come along and update the breadcrumb (either directly
1115 * itself, or indirectly by recovering the GPU).
1116 */
1117 if (flags & I915_WAIT_LOCKED &&
1118 i915_reset_in_progress(&req->i915->gpu_error)) {
1119 __set_current_state(TASK_RUNNING);
1120 i915_reset(req->i915);
Chris Wilson4b36b2e2017-02-23 07:44:10 +00001121 reset_wait_queue(errq, &reset);
Chris Wilson221fe792016-09-09 14:11:51 +01001122 continue;
1123 }
1124
Chris Wilson05235c52016-07-20 09:21:08 +01001125 /* Only spin if we know the GPU is processing this request */
1126 if (i915_spin_request(req, state, 2))
1127 break;
1128 }
Chris Wilson05235c52016-07-20 09:21:08 +01001129
1130 intel_engine_remove_wait(req->engine, &wait);
1131 __set_current_state(TASK_RUNNING);
Chris Wilson22dd3bb2016-09-09 14:11:50 +01001132
Chris Wilson05235c52016-07-20 09:21:08 +01001133complete:
Chris Wilson7de53bf2017-02-23 07:44:11 +00001134 if (flags & I915_WAIT_LOCKED)
1135 remove_wait_queue(errq, &reset);
Chris Wilson05235c52016-07-20 09:21:08 +01001136 trace_i915_gem_request_wait_end(req);
1137
Chris Wilsone95433c2016-10-28 13:58:27 +01001138 return timeout;
Chris Wilson05235c52016-07-20 09:21:08 +01001139}
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001140
Chris Wilson28176ef2016-10-28 13:58:56 +01001141static void engine_retire_requests(struct intel_engine_cs *engine)
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001142{
1143 struct drm_i915_gem_request *request, *next;
1144
Chris Wilson73cb9702016-10-28 13:58:46 +01001145 list_for_each_entry_safe(request, next,
1146 &engine->timeline->requests, link) {
Chris Wilson80b204b2016-10-28 13:58:58 +01001147 if (!__i915_gem_request_completed(request))
Chris Wilson28176ef2016-10-28 13:58:56 +01001148 return;
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001149
1150 i915_gem_request_retire(request);
1151 }
1152}
1153
1154void i915_gem_retire_requests(struct drm_i915_private *dev_priv)
1155{
1156 struct intel_engine_cs *engine;
Chris Wilson28176ef2016-10-28 13:58:56 +01001157 enum intel_engine_id id;
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001158
1159 lockdep_assert_held(&dev_priv->drm.struct_mutex);
1160
Chris Wilson28176ef2016-10-28 13:58:56 +01001161 if (!dev_priv->gt.active_requests)
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001162 return;
1163
Chris Wilson28176ef2016-10-28 13:58:56 +01001164 for_each_engine(engine, dev_priv, id)
1165 engine_retire_requests(engine);
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001166}
Chris Wilsonc835c552017-02-13 17:15:21 +00001167
1168#if IS_ENABLED(CONFIG_DRM_I915_SELFTEST)
1169#include "selftests/mock_request.c"
1170#include "selftests/i915_gem_request.c"
1171#endif