blob: d0f6b9f826363545e3e4549723c9cf51c37e39a1 [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
65 kmem_cache_free(req->i915->requests, req);
66}
67
Chris Wilsonf54d1862016-10-25 13:00:45 +010068const struct dma_fence_ops i915_fence_ops = {
Chris Wilson04769652016-07-20 09:21:11 +010069 .get_driver_name = i915_fence_get_driver_name,
70 .get_timeline_name = i915_fence_get_timeline_name,
71 .enable_signaling = i915_fence_enable_signaling,
72 .signaled = i915_fence_signaled,
73 .wait = i915_fence_wait,
74 .release = i915_fence_release,
Chris Wilson04769652016-07-20 09:21:11 +010075};
76
Chris Wilson05235c52016-07-20 09:21:08 +010077int i915_gem_request_add_to_client(struct drm_i915_gem_request *req,
78 struct drm_file *file)
79{
80 struct drm_i915_private *dev_private;
81 struct drm_i915_file_private *file_priv;
82
83 WARN_ON(!req || !file || req->file_priv);
84
85 if (!req || !file)
86 return -EINVAL;
87
88 if (req->file_priv)
89 return -EINVAL;
90
91 dev_private = req->i915;
92 file_priv = file->driver_priv;
93
94 spin_lock(&file_priv->mm.lock);
95 req->file_priv = file_priv;
96 list_add_tail(&req->client_list, &file_priv->mm.request_list);
97 spin_unlock(&file_priv->mm.lock);
98
Chris Wilson05235c52016-07-20 09:21:08 +010099 return 0;
100}
101
102static inline void
103i915_gem_request_remove_from_client(struct drm_i915_gem_request *request)
104{
105 struct drm_i915_file_private *file_priv = request->file_priv;
106
107 if (!file_priv)
108 return;
109
110 spin_lock(&file_priv->mm.lock);
111 list_del(&request->client_list);
112 request->file_priv = NULL;
113 spin_unlock(&file_priv->mm.lock);
Chris Wilson05235c52016-07-20 09:21:08 +0100114}
115
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100116void i915_gem_retire_noop(struct i915_gem_active *active,
117 struct drm_i915_gem_request *request)
118{
119 /* Space left intentionally blank */
120}
121
Chris Wilson05235c52016-07-20 09:21:08 +0100122static void i915_gem_request_retire(struct drm_i915_gem_request *request)
123{
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100124 struct i915_gem_active *active, *next;
125
Chris Wilson4c7d62c2016-10-28 13:58:32 +0100126 lockdep_assert_held(&request->i915->drm.struct_mutex);
127 GEM_BUG_ON(!i915_gem_request_completed(request));
128
Chris Wilson05235c52016-07-20 09:21:08 +0100129 trace_i915_gem_request_retire(request);
Chris Wilson80b204b2016-10-28 13:58:58 +0100130
131 spin_lock_irq(&request->engine->timeline->lock);
Chris Wilsone95433c2016-10-28 13:58:27 +0100132 list_del_init(&request->link);
Chris Wilson80b204b2016-10-28 13:58:58 +0100133 spin_unlock_irq(&request->engine->timeline->lock);
Chris Wilson05235c52016-07-20 09:21:08 +0100134
135 /* We know the GPU must have read the request to have
136 * sent us the seqno + interrupt, so use the position
137 * of tail of the request to update the last known position
138 * of the GPU head.
139 *
140 * Note this requires that we are always called in request
141 * completion order.
142 */
Chris Wilson675d9ad2016-08-04 07:52:36 +0100143 list_del(&request->ring_link);
Chris Wilson1dae2df2016-08-02 22:50:19 +0100144 request->ring->last_retired_head = request->postfix;
Chris Wilson28176ef2016-10-28 13:58:56 +0100145 request->i915->gt.active_requests--;
Chris Wilson05235c52016-07-20 09:21:08 +0100146
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100147 /* Walk through the active list, calling retire on each. This allows
148 * objects to track their GPU activity and mark themselves as idle
149 * when their *last* active request is completed (updating state
150 * tracking lists for eviction, active references for GEM, etc).
151 *
152 * As the ->retire() may free the node, we decouple it first and
153 * pass along the auxiliary information (to avoid dereferencing
154 * the node after the callback).
155 */
156 list_for_each_entry_safe(active, next, &request->active_list, link) {
157 /* In microbenchmarks or focusing upon time inside the kernel,
158 * we may spend an inordinate amount of time simply handling
159 * the retirement of requests and processing their callbacks.
160 * Of which, this loop itself is particularly hot due to the
161 * cache misses when jumping around the list of i915_gem_active.
162 * So we try to keep this loop as streamlined as possible and
163 * also prefetch the next i915_gem_active to try and hide
164 * the likely cache miss.
165 */
166 prefetchw(next);
167
168 INIT_LIST_HEAD(&active->link);
Chris Wilson0eafec62016-08-04 16:32:41 +0100169 RCU_INIT_POINTER(active->request, NULL);
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100170
171 active->retire(active, request);
172 }
173
Chris Wilson05235c52016-07-20 09:21:08 +0100174 i915_gem_request_remove_from_client(request);
175
176 if (request->previous_context) {
177 if (i915.enable_execlists)
178 intel_lr_context_unpin(request->previous_context,
179 request->engine);
180 }
181
Chris Wilson9a6feaf2016-07-20 13:31:50 +0100182 i915_gem_context_put(request->ctx);
Chris Wilsond07f0e52016-10-28 13:58:44 +0100183
184 dma_fence_signal(&request->fence);
Chris Wilsone8a261e2016-07-20 13:31:49 +0100185 i915_gem_request_put(request);
Chris Wilson05235c52016-07-20 09:21:08 +0100186}
187
188void i915_gem_request_retire_upto(struct drm_i915_gem_request *req)
189{
190 struct intel_engine_cs *engine = req->engine;
191 struct drm_i915_gem_request *tmp;
192
193 lockdep_assert_held(&req->i915->drm.struct_mutex);
Chris Wilsone95433c2016-10-28 13:58:27 +0100194 if (list_empty(&req->link))
195 return;
Chris Wilson05235c52016-07-20 09:21:08 +0100196
197 do {
Chris Wilson73cb9702016-10-28 13:58:46 +0100198 tmp = list_first_entry(&engine->timeline->requests,
Chris Wilsonefdf7c02016-08-04 07:52:33 +0100199 typeof(*tmp), link);
Chris Wilson05235c52016-07-20 09:21:08 +0100200
201 i915_gem_request_retire(tmp);
202 } while (tmp != req);
Chris Wilson05235c52016-07-20 09:21:08 +0100203}
204
Chris Wilson8af29b02016-09-09 14:11:47 +0100205static int i915_gem_check_wedge(struct drm_i915_private *dev_priv)
Chris Wilson05235c52016-07-20 09:21:08 +0100206{
Chris Wilson8af29b02016-09-09 14:11:47 +0100207 struct i915_gpu_error *error = &dev_priv->gpu_error;
208
209 if (i915_terminally_wedged(error))
Chris Wilson05235c52016-07-20 09:21:08 +0100210 return -EIO;
211
Chris Wilson8af29b02016-09-09 14:11:47 +0100212 if (i915_reset_in_progress(error)) {
Chris Wilson05235c52016-07-20 09:21:08 +0100213 /* Non-interruptible callers can't handle -EAGAIN, hence return
214 * -EIO unconditionally for these.
215 */
Chris Wilson8af29b02016-09-09 14:11:47 +0100216 if (!dev_priv->mm.interruptible)
Chris Wilson05235c52016-07-20 09:21:08 +0100217 return -EIO;
218
219 return -EAGAIN;
220 }
221
222 return 0;
223}
224
Chris Wilson85e17f52016-10-28 13:58:53 +0100225static int i915_gem_init_global_seqno(struct drm_i915_private *i915, u32 seqno)
Chris Wilson05235c52016-07-20 09:21:08 +0100226{
Chris Wilson85e17f52016-10-28 13:58:53 +0100227 struct i915_gem_timeline *timeline = &i915->gt.global_timeline;
Chris Wilson05235c52016-07-20 09:21:08 +0100228 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +0530229 enum intel_engine_id id;
Chris Wilson05235c52016-07-20 09:21:08 +0100230 int ret;
231
232 /* Carefully retire all requests without writing to the rings */
Chris Wilson85e17f52016-10-28 13:58:53 +0100233 ret = i915_gem_wait_for_idle(i915,
Chris Wilson73cb9702016-10-28 13:58:46 +0100234 I915_WAIT_INTERRUPTIBLE |
235 I915_WAIT_LOCKED);
236 if (ret)
237 return ret;
238
Chris Wilson85e17f52016-10-28 13:58:53 +0100239 i915_gem_retire_requests(i915);
Chris Wilson28176ef2016-10-28 13:58:56 +0100240 GEM_BUG_ON(i915->gt.active_requests > 1);
Chris Wilson05235c52016-07-20 09:21:08 +0100241
242 /* If the seqno wraps around, we need to clear the breadcrumb rbtree */
Chris Wilson28176ef2016-10-28 13:58:56 +0100243 if (!i915_seqno_passed(seqno, atomic_read(&timeline->next_seqno))) {
Chris Wilson6a5d1db2016-11-08 14:37:19 +0000244 while (intel_breadcrumbs_busy(i915))
245 cond_resched(); /* spin until threads are complete */
Chris Wilson05235c52016-07-20 09:21:08 +0100246 }
Chris Wilson28176ef2016-10-28 13:58:56 +0100247 atomic_set(&timeline->next_seqno, seqno);
Chris Wilson05235c52016-07-20 09:21:08 +0100248
249 /* Finally reset hw state */
Chris Wilson85e17f52016-10-28 13:58:53 +0100250 for_each_engine(engine, i915, id)
Chris Wilson73cb9702016-10-28 13:58:46 +0100251 intel_engine_init_global_seqno(engine, seqno);
Chris Wilson05235c52016-07-20 09:21:08 +0100252
Chris Wilson85e17f52016-10-28 13:58:53 +0100253 list_for_each_entry(timeline, &i915->gt.timelines, link) {
254 for_each_engine(engine, i915, id) {
255 struct intel_timeline *tl = &timeline->engine[id];
256
257 memset(tl->sync_seqno, 0, sizeof(tl->sync_seqno));
258 }
259 }
260
Chris Wilson05235c52016-07-20 09:21:08 +0100261 return 0;
262}
263
Chris Wilson73cb9702016-10-28 13:58:46 +0100264int i915_gem_set_global_seqno(struct drm_device *dev, u32 seqno)
Chris Wilson05235c52016-07-20 09:21:08 +0100265{
266 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilson05235c52016-07-20 09:21:08 +0100267
Chris Wilson4c7d62c2016-10-28 13:58:32 +0100268 lockdep_assert_held(&dev_priv->drm.struct_mutex);
269
Chris Wilson05235c52016-07-20 09:21:08 +0100270 if (seqno == 0)
271 return -EINVAL;
272
273 /* HWS page needs to be set less than what we
274 * will inject to ring
275 */
Chris Wilson28176ef2016-10-28 13:58:56 +0100276 return i915_gem_init_global_seqno(dev_priv, seqno - 1);
277}
Chris Wilson05235c52016-07-20 09:21:08 +0100278
Chris Wilson28176ef2016-10-28 13:58:56 +0100279static int reserve_global_seqno(struct drm_i915_private *i915)
280{
281 u32 active_requests = ++i915->gt.active_requests;
282 u32 next_seqno = atomic_read(&i915->gt.global_timeline.next_seqno);
283 int ret;
284
285 /* Reservation is fine until we need to wrap around */
286 if (likely(next_seqno + active_requests > next_seqno))
287 return 0;
288
289 ret = i915_gem_init_global_seqno(i915, 0);
290 if (ret) {
291 i915->gt.active_requests--;
292 return ret;
293 }
294
Chris Wilson05235c52016-07-20 09:21:08 +0100295 return 0;
296}
297
Chris Wilson80b204b2016-10-28 13:58:58 +0100298static u32 __timeline_get_seqno(struct i915_gem_timeline *tl)
299{
300 /* next_seqno only incremented under a mutex */
301 return ++tl->next_seqno.counter;
302}
303
Chris Wilson28176ef2016-10-28 13:58:56 +0100304static u32 timeline_get_seqno(struct i915_gem_timeline *tl)
Chris Wilson05235c52016-07-20 09:21:08 +0100305{
Chris Wilson28176ef2016-10-28 13:58:56 +0100306 return atomic_inc_return(&tl->next_seqno);
Chris Wilson05235c52016-07-20 09:21:08 +0100307}
308
Chris Wilson5590af32016-09-09 14:11:54 +0100309static int __i915_sw_fence_call
310submit_notify(struct i915_sw_fence *fence, enum i915_sw_fence_notify state)
311{
312 struct drm_i915_gem_request *request =
313 container_of(fence, typeof(*request), submit);
Chris Wilson73cb9702016-10-28 13:58:46 +0100314 struct intel_engine_cs *engine = request->engine;
Chris Wilsonf2d13292016-10-28 13:58:57 +0100315 struct intel_timeline *timeline;
Chris Wilson80b204b2016-10-28 13:58:58 +0100316 unsigned long flags;
Chris Wilsonf2d13292016-10-28 13:58:57 +0100317 u32 seqno;
Chris Wilson5590af32016-09-09 14:11:54 +0100318
Chris Wilsoncaddfe72016-10-28 13:58:52 +0100319 if (state != FENCE_COMPLETE)
320 return NOTIFY_DONE;
321
Chris Wilson80b204b2016-10-28 13:58:58 +0100322 /* Transfer from per-context onto the global per-engine timeline */
323 timeline = engine->timeline;
324 GEM_BUG_ON(timeline == request->timeline);
325
Chris Wilson5590af32016-09-09 14:11:54 +0100326 /* Will be called from irq-context when using foreign DMA fences */
Chris Wilson80b204b2016-10-28 13:58:58 +0100327 spin_lock_irqsave(&timeline->lock, flags);
Chris Wilson5590af32016-09-09 14:11:54 +0100328
Chris Wilson80b204b2016-10-28 13:58:58 +0100329 seqno = timeline_get_seqno(timeline->common);
Chris Wilsonf2d13292016-10-28 13:58:57 +0100330 GEM_BUG_ON(!seqno);
331 GEM_BUG_ON(i915_seqno_passed(intel_engine_get_seqno(engine), seqno));
332
333 GEM_BUG_ON(i915_seqno_passed(timeline->last_submitted_seqno, seqno));
334 request->previous_seqno = timeline->last_submitted_seqno;
335 timeline->last_submitted_seqno = seqno;
336
337 /* We may be recursing from the signal callback of another i915 fence */
338 spin_lock_nested(&request->lock, SINGLE_DEPTH_NESTING);
339 request->global_seqno = seqno;
340 if (test_bit(DMA_FENCE_FLAG_ENABLE_SIGNAL_BIT, &request->fence.flags))
341 intel_engine_enable_signaling(request);
342 spin_unlock(&request->lock);
343
344 GEM_BUG_ON(!request->global_seqno);
Chris Wilsoncaddfe72016-10-28 13:58:52 +0100345 engine->emit_breadcrumb(request,
346 request->ring->vaddr + request->postfix);
347 engine->submit_request(request);
Chris Wilson5590af32016-09-09 14:11:54 +0100348
Chris Wilsonbb894852016-11-14 20:40:57 +0000349 spin_lock(&request->timeline->lock);
Chris Wilson80b204b2016-10-28 13:58:58 +0100350 list_move_tail(&request->link, &timeline->requests);
351 spin_unlock(&request->timeline->lock);
352
Chris Wilson23902e42016-11-14 20:40:58 +0000353 i915_sw_fence_commit(&request->execute);
354
Chris Wilson80b204b2016-10-28 13:58:58 +0100355 spin_unlock_irqrestore(&timeline->lock, flags);
356
Chris Wilson5590af32016-09-09 14:11:54 +0100357 return NOTIFY_DONE;
358}
359
Chris Wilson23902e42016-11-14 20:40:58 +0000360static int __i915_sw_fence_call
361execute_notify(struct i915_sw_fence *fence, enum i915_sw_fence_notify state)
362{
363 return NOTIFY_DONE;
364}
365
Chris Wilson8e637172016-08-02 22:50:26 +0100366/**
367 * i915_gem_request_alloc - allocate a request structure
368 *
369 * @engine: engine that we wish to issue the request on.
370 * @ctx: context that the request will be associated with.
371 * This can be NULL if the request is not directly related to
372 * any specific user context, in which case this function will
373 * choose an appropriate context to use.
374 *
375 * Returns a pointer to the allocated request if successful,
376 * or an error code if not.
377 */
378struct drm_i915_gem_request *
379i915_gem_request_alloc(struct intel_engine_cs *engine,
380 struct i915_gem_context *ctx)
Chris Wilson05235c52016-07-20 09:21:08 +0100381{
382 struct drm_i915_private *dev_priv = engine->i915;
Chris Wilson05235c52016-07-20 09:21:08 +0100383 struct drm_i915_gem_request *req;
384 int ret;
385
Chris Wilson28176ef2016-10-28 13:58:56 +0100386 lockdep_assert_held(&dev_priv->drm.struct_mutex);
387
Chris Wilson05235c52016-07-20 09:21:08 +0100388 /* ABI: Before userspace accesses the GPU (e.g. execbuffer), report
389 * EIO if the GPU is already wedged, or EAGAIN to drop the struct_mutex
390 * and restart.
391 */
Chris Wilson8af29b02016-09-09 14:11:47 +0100392 ret = i915_gem_check_wedge(dev_priv);
Chris Wilson05235c52016-07-20 09:21:08 +0100393 if (ret)
Chris Wilson8e637172016-08-02 22:50:26 +0100394 return ERR_PTR(ret);
Chris Wilson05235c52016-07-20 09:21:08 +0100395
Chris Wilson28176ef2016-10-28 13:58:56 +0100396 ret = reserve_global_seqno(dev_priv);
397 if (ret)
398 return ERR_PTR(ret);
399
Chris Wilson9b5f4e52016-07-20 09:21:09 +0100400 /* Move the oldest request to the slab-cache (if not in use!) */
Chris Wilson73cb9702016-10-28 13:58:46 +0100401 req = list_first_entry_or_null(&engine->timeline->requests,
Chris Wilsonefdf7c02016-08-04 07:52:33 +0100402 typeof(*req), link);
Chris Wilson80b204b2016-10-28 13:58:58 +0100403 if (req && __i915_gem_request_completed(req))
Chris Wilson2a1d7752016-07-26 12:01:51 +0100404 i915_gem_request_retire(req);
Chris Wilson9b5f4e52016-07-20 09:21:09 +0100405
Chris Wilson5a198b82016-08-09 09:23:34 +0100406 /* Beware: Dragons be flying overhead.
407 *
408 * We use RCU to look up requests in flight. The lookups may
409 * race with the request being allocated from the slab freelist.
410 * That is the request we are writing to here, may be in the process
Chris Wilson1426f712016-08-09 17:03:22 +0100411 * of being read by __i915_gem_active_get_rcu(). As such,
Chris Wilson5a198b82016-08-09 09:23:34 +0100412 * we have to be very careful when overwriting the contents. During
413 * the RCU lookup, we change chase the request->engine pointer,
Chris Wilson65e47602016-10-28 13:58:49 +0100414 * read the request->global_seqno and increment the reference count.
Chris Wilson5a198b82016-08-09 09:23:34 +0100415 *
416 * The reference count is incremented atomically. If it is zero,
417 * the lookup knows the request is unallocated and complete. Otherwise,
418 * it is either still in use, or has been reallocated and reset
Chris Wilsonf54d1862016-10-25 13:00:45 +0100419 * with dma_fence_init(). This increment is safe for release as we
420 * check that the request we have a reference to and matches the active
Chris Wilson5a198b82016-08-09 09:23:34 +0100421 * request.
422 *
423 * Before we increment the refcount, we chase the request->engine
424 * pointer. We must not call kmem_cache_zalloc() or else we set
425 * that pointer to NULL and cause a crash during the lookup. If
426 * we see the request is completed (based on the value of the
427 * old engine and seqno), the lookup is complete and reports NULL.
428 * If we decide the request is not completed (new engine or seqno),
429 * then we grab a reference and double check that it is still the
430 * active request - which it won't be and restart the lookup.
431 *
432 * Do not use kmem_cache_zalloc() here!
433 */
434 req = kmem_cache_alloc(dev_priv->requests, GFP_KERNEL);
Chris Wilson28176ef2016-10-28 13:58:56 +0100435 if (!req) {
436 ret = -ENOMEM;
437 goto err_unreserve;
438 }
Chris Wilson05235c52016-07-20 09:21:08 +0100439
Chris Wilson80b204b2016-10-28 13:58:58 +0100440 req->timeline = i915_gem_context_lookup_timeline(ctx, engine);
441 GEM_BUG_ON(req->timeline == engine->timeline);
Chris Wilson73cb9702016-10-28 13:58:46 +0100442
Chris Wilson04769652016-07-20 09:21:11 +0100443 spin_lock_init(&req->lock);
Chris Wilsonf54d1862016-10-25 13:00:45 +0100444 dma_fence_init(&req->fence,
445 &i915_fence_ops,
446 &req->lock,
Chris Wilson73cb9702016-10-28 13:58:46 +0100447 req->timeline->fence_context,
Chris Wilson80b204b2016-10-28 13:58:58 +0100448 __timeline_get_seqno(req->timeline->common));
Chris Wilson04769652016-07-20 09:21:11 +0100449
Chris Wilson5590af32016-09-09 14:11:54 +0100450 i915_sw_fence_init(&req->submit, submit_notify);
Chris Wilson23902e42016-11-14 20:40:58 +0000451 i915_sw_fence_init(&req->execute, execute_notify);
452 /* Ensure that the execute fence completes after the submit fence -
453 * as we complete the execute fence from within the submit fence
454 * callback, its completion would otherwise be visible first.
455 */
456 i915_sw_fence_await_sw_fence(&req->execute, &req->submit, &req->execq);
Chris Wilson5590af32016-09-09 14:11:54 +0100457
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100458 INIT_LIST_HEAD(&req->active_list);
Chris Wilson05235c52016-07-20 09:21:08 +0100459 req->i915 = dev_priv;
460 req->engine = engine;
Chris Wilson9a6feaf2016-07-20 13:31:50 +0100461 req->ctx = i915_gem_context_get(ctx);
Chris Wilson05235c52016-07-20 09:21:08 +0100462
Chris Wilson5a198b82016-08-09 09:23:34 +0100463 /* No zalloc, must clear what we need by hand */
Chris Wilsonf2d13292016-10-28 13:58:57 +0100464 req->global_seqno = 0;
Chris Wilson5a198b82016-08-09 09:23:34 +0100465 req->previous_context = NULL;
466 req->file_priv = NULL;
Chris Wilson058d88c2016-08-15 10:49:06 +0100467 req->batch = NULL;
Chris Wilson5a198b82016-08-09 09:23:34 +0100468
Chris Wilson05235c52016-07-20 09:21:08 +0100469 /*
470 * Reserve space in the ring buffer for all the commands required to
471 * eventually emit this request. This is to guarantee that the
472 * i915_add_request() call can't fail. Note that the reserve may need
473 * to be redone if the request is not actually submitted straight
474 * away, e.g. because a GPU scheduler has deferred it.
475 */
476 req->reserved_space = MIN_SPACE_FOR_ADD_REQUEST;
Chris Wilson98f29e82016-10-28 13:58:51 +0100477 GEM_BUG_ON(req->reserved_space < engine->emit_breadcrumb_sz);
Chris Wilson05235c52016-07-20 09:21:08 +0100478
479 if (i915.enable_execlists)
480 ret = intel_logical_ring_alloc_request_extras(req);
481 else
482 ret = intel_ring_alloc_request_extras(req);
483 if (ret)
484 goto err_ctx;
485
Chris Wilsond0454462016-08-15 10:48:40 +0100486 /* Record the position of the start of the request so that
487 * should we detect the updated seqno part-way through the
488 * GPU processing the request, we never over-estimate the
489 * position of the head.
490 */
491 req->head = req->ring->tail;
492
Chris Wilson8e637172016-08-02 22:50:26 +0100493 return req;
Chris Wilson05235c52016-07-20 09:21:08 +0100494
495err_ctx:
Chris Wilson9a6feaf2016-07-20 13:31:50 +0100496 i915_gem_context_put(ctx);
Chris Wilson05235c52016-07-20 09:21:08 +0100497 kmem_cache_free(dev_priv->requests, req);
Chris Wilson28176ef2016-10-28 13:58:56 +0100498err_unreserve:
499 dev_priv->gt.active_requests--;
Chris Wilson8e637172016-08-02 22:50:26 +0100500 return ERR_PTR(ret);
Chris Wilson05235c52016-07-20 09:21:08 +0100501}
502
Chris Wilsona2bc4692016-09-09 14:11:56 +0100503static int
504i915_gem_request_await_request(struct drm_i915_gem_request *to,
505 struct drm_i915_gem_request *from)
506{
Chris Wilson85e17f52016-10-28 13:58:53 +0100507 int ret;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100508
509 GEM_BUG_ON(to == from);
510
Chris Wilson73cb9702016-10-28 13:58:46 +0100511 if (to->timeline == from->timeline)
Chris Wilsona2bc4692016-09-09 14:11:56 +0100512 return 0;
513
Chris Wilson73cb9702016-10-28 13:58:46 +0100514 if (to->engine == from->engine) {
515 ret = i915_sw_fence_await_sw_fence_gfp(&to->submit,
516 &from->submit,
517 GFP_KERNEL);
518 return ret < 0 ? ret : 0;
519 }
520
Chris Wilson65e47602016-10-28 13:58:49 +0100521 if (!from->global_seqno) {
522 ret = i915_sw_fence_await_dma_fence(&to->submit,
523 &from->fence, 0,
524 GFP_KERNEL);
525 return ret < 0 ? ret : 0;
526 }
527
Chris Wilson85e17f52016-10-28 13:58:53 +0100528 if (from->global_seqno <= to->timeline->sync_seqno[from->engine->id])
Chris Wilsona2bc4692016-09-09 14:11:56 +0100529 return 0;
530
531 trace_i915_gem_ring_sync_to(to, from);
532 if (!i915.semaphores) {
Chris Wilson0a046a02016-09-09 14:12:00 +0100533 if (!i915_spin_request(from, TASK_INTERRUPTIBLE, 2)) {
534 ret = i915_sw_fence_await_dma_fence(&to->submit,
535 &from->fence, 0,
536 GFP_KERNEL);
537 if (ret < 0)
538 return ret;
539 }
Chris Wilsona2bc4692016-09-09 14:11:56 +0100540 } else {
541 ret = to->engine->semaphore.sync_to(to, from);
542 if (ret)
543 return ret;
544 }
545
Chris Wilson85e17f52016-10-28 13:58:53 +0100546 to->timeline->sync_seqno[from->engine->id] = from->global_seqno;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100547 return 0;
548}
549
Chris Wilsonb52992c2016-10-28 13:58:24 +0100550int
551i915_gem_request_await_dma_fence(struct drm_i915_gem_request *req,
552 struct dma_fence *fence)
553{
554 struct dma_fence_array *array;
555 int ret;
556 int i;
557
558 if (test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &fence->flags))
559 return 0;
560
561 if (dma_fence_is_i915(fence))
562 return i915_gem_request_await_request(req, to_request(fence));
563
564 if (!dma_fence_is_array(fence)) {
565 ret = i915_sw_fence_await_dma_fence(&req->submit,
566 fence, I915_FENCE_TIMEOUT,
567 GFP_KERNEL);
568 return ret < 0 ? ret : 0;
569 }
570
571 /* Note that if the fence-array was created in signal-on-any mode,
572 * we should *not* decompose it into its individual fences. However,
573 * we don't currently store which mode the fence-array is operating
574 * in. Fortunately, the only user of signal-on-any is private to
575 * amdgpu and we should not see any incoming fence-array from
576 * sync-file being in signal-on-any mode.
577 */
578
579 array = to_dma_fence_array(fence);
580 for (i = 0; i < array->num_fences; i++) {
581 struct dma_fence *child = array->fences[i];
582
583 if (dma_fence_is_i915(child))
584 ret = i915_gem_request_await_request(req,
585 to_request(child));
586 else
587 ret = i915_sw_fence_await_dma_fence(&req->submit,
588 child, I915_FENCE_TIMEOUT,
589 GFP_KERNEL);
590 if (ret < 0)
591 return ret;
592 }
593
594 return 0;
595}
596
Chris Wilsona2bc4692016-09-09 14:11:56 +0100597/**
598 * i915_gem_request_await_object - set this request to (async) wait upon a bo
599 *
600 * @to: request we are wishing to use
601 * @obj: object which may be in use on another ring.
602 *
603 * This code is meant to abstract object synchronization with the GPU.
604 * Conceptually we serialise writes between engines inside the GPU.
605 * We only allow one engine to write into a buffer at any time, but
606 * multiple readers. To ensure each has a coherent view of memory, we must:
607 *
608 * - If there is an outstanding write request to the object, the new
609 * request must wait for it to complete (either CPU or in hw, requests
610 * on the same ring will be naturally ordered).
611 *
612 * - If we are a write request (pending_write_domain is set), the new
613 * request must wait for outstanding read requests to complete.
614 *
615 * Returns 0 if successful, else propagates up the lower layer error.
616 */
617int
618i915_gem_request_await_object(struct drm_i915_gem_request *to,
619 struct drm_i915_gem_object *obj,
620 bool write)
621{
Chris Wilsond07f0e52016-10-28 13:58:44 +0100622 struct dma_fence *excl;
623 int ret = 0;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100624
625 if (write) {
Chris Wilsond07f0e52016-10-28 13:58:44 +0100626 struct dma_fence **shared;
627 unsigned int count, i;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100628
Chris Wilsond07f0e52016-10-28 13:58:44 +0100629 ret = reservation_object_get_fences_rcu(obj->resv,
630 &excl, &count, &shared);
Chris Wilsona2bc4692016-09-09 14:11:56 +0100631 if (ret)
632 return ret;
Chris Wilsond07f0e52016-10-28 13:58:44 +0100633
634 for (i = 0; i < count; i++) {
635 ret = i915_gem_request_await_dma_fence(to, shared[i]);
636 if (ret)
637 break;
638
639 dma_fence_put(shared[i]);
640 }
641
642 for (; i < count; i++)
643 dma_fence_put(shared[i]);
644 kfree(shared);
645 } else {
646 excl = reservation_object_get_excl_rcu(obj->resv);
Chris Wilsona2bc4692016-09-09 14:11:56 +0100647 }
648
Chris Wilsond07f0e52016-10-28 13:58:44 +0100649 if (excl) {
650 if (ret == 0)
651 ret = i915_gem_request_await_dma_fence(to, excl);
652
653 dma_fence_put(excl);
654 }
655
656 return ret;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100657}
658
Chris Wilson05235c52016-07-20 09:21:08 +0100659static void i915_gem_mark_busy(const struct intel_engine_cs *engine)
660{
661 struct drm_i915_private *dev_priv = engine->i915;
662
Chris Wilson05235c52016-07-20 09:21:08 +0100663 if (dev_priv->gt.awake)
664 return;
665
666 intel_runtime_pm_get_noresume(dev_priv);
667 dev_priv->gt.awake = true;
668
Chris Wilson54b4f682016-07-21 21:16:19 +0100669 intel_enable_gt_powersave(dev_priv);
Chris Wilson05235c52016-07-20 09:21:08 +0100670 i915_update_gfx_val(dev_priv);
671 if (INTEL_GEN(dev_priv) >= 6)
672 gen6_rps_busy(dev_priv);
673
674 queue_delayed_work(dev_priv->wq,
675 &dev_priv->gt.retire_work,
676 round_jiffies_up_relative(HZ));
677}
678
679/*
680 * NB: This function is not allowed to fail. Doing so would mean the the
681 * request is not being tracked for completion but the work itself is
682 * going to happen on the hardware. This would be a Bad Thing(tm).
683 */
Chris Wilson17f298cf2016-08-10 13:41:46 +0100684void __i915_add_request(struct drm_i915_gem_request *request, bool flush_caches)
Chris Wilson05235c52016-07-20 09:21:08 +0100685{
Chris Wilson95b2ab52016-08-15 10:48:46 +0100686 struct intel_engine_cs *engine = request->engine;
687 struct intel_ring *ring = request->ring;
Chris Wilson73cb9702016-10-28 13:58:46 +0100688 struct intel_timeline *timeline = request->timeline;
Chris Wilson0a046a02016-09-09 14:12:00 +0100689 struct drm_i915_gem_request *prev;
Chris Wilsoncaddfe72016-10-28 13:58:52 +0100690 int err;
Chris Wilson05235c52016-07-20 09:21:08 +0100691
Chris Wilson4c7d62c2016-10-28 13:58:32 +0100692 lockdep_assert_held(&request->i915->drm.struct_mutex);
Chris Wilson0f25dff2016-09-09 14:11:55 +0100693 trace_i915_gem_request_add(request);
694
Chris Wilson05235c52016-07-20 09:21:08 +0100695 /*
696 * To ensure that this call will not fail, space for its emissions
697 * should already have been reserved in the ring buffer. Let the ring
698 * know that it is time to use that space up.
699 */
Chris Wilson05235c52016-07-20 09:21:08 +0100700 request->reserved_space = 0;
701
702 /*
703 * Emit any outstanding flushes - execbuf can fail to emit the flush
704 * after having emitted the batchbuffer command. Hence we need to fix
705 * things up similar to emitting the lazy request. The difference here
706 * is that the flush _must_ happen before the next request, no matter
707 * what.
708 */
709 if (flush_caches) {
Chris Wilsoncaddfe72016-10-28 13:58:52 +0100710 err = engine->emit_flush(request, EMIT_FLUSH);
Chris Wilsonc7fe7d22016-08-02 22:50:24 +0100711
Chris Wilson05235c52016-07-20 09:21:08 +0100712 /* Not allowed to fail! */
Chris Wilsoncaddfe72016-10-28 13:58:52 +0100713 WARN(err, "engine->emit_flush() failed: %d!\n", err);
Chris Wilson05235c52016-07-20 09:21:08 +0100714 }
715
Chris Wilsond0454462016-08-15 10:48:40 +0100716 /* Record the position of the start of the breadcrumb so that
Chris Wilson05235c52016-07-20 09:21:08 +0100717 * should we detect the updated seqno part-way through the
718 * GPU processing the request, we never over-estimate the
Chris Wilsond0454462016-08-15 10:48:40 +0100719 * position of the ring's HEAD.
Chris Wilson05235c52016-07-20 09:21:08 +0100720 */
Chris Wilsoncaddfe72016-10-28 13:58:52 +0100721 err = intel_ring_begin(request, engine->emit_breadcrumb_sz);
722 GEM_BUG_ON(err);
Chris Wilsonba76d912016-08-02 22:50:28 +0100723 request->postfix = ring->tail;
Chris Wilsoncaddfe72016-10-28 13:58:52 +0100724 ring->tail += engine->emit_breadcrumb_sz * sizeof(u32);
Chris Wilson05235c52016-07-20 09:21:08 +0100725
Chris Wilson0f25dff2016-09-09 14:11:55 +0100726 /* Seal the request and mark it as pending execution. Note that
727 * we may inspect this state, without holding any locks, during
728 * hangcheck. Hence we apply the barrier to ensure that we do not
729 * see a more recent value in the hws than we are tracking.
730 */
Chris Wilson0a046a02016-09-09 14:12:00 +0100731
Chris Wilson73cb9702016-10-28 13:58:46 +0100732 prev = i915_gem_active_raw(&timeline->last_request,
Chris Wilson0a046a02016-09-09 14:12:00 +0100733 &request->i915->drm.struct_mutex);
734 if (prev)
735 i915_sw_fence_await_sw_fence(&request->submit, &prev->submit,
736 &request->submitq);
737
Chris Wilson80b204b2016-10-28 13:58:58 +0100738 spin_lock_irq(&timeline->lock);
Chris Wilsonf2d13292016-10-28 13:58:57 +0100739 list_add_tail(&request->link, &timeline->requests);
Chris Wilson80b204b2016-10-28 13:58:58 +0100740 spin_unlock_irq(&timeline->lock);
Chris Wilson28176ef2016-10-28 13:58:56 +0100741
Chris Wilson80b204b2016-10-28 13:58:58 +0100742 GEM_BUG_ON(i915_seqno_passed(timeline->last_submitted_seqno,
743 request->fence.seqno));
744
745 timeline->last_submitted_seqno = request->fence.seqno;
Chris Wilson73cb9702016-10-28 13:58:46 +0100746 i915_gem_active_set(&timeline->last_request, request);
Chris Wilsonf2d13292016-10-28 13:58:57 +0100747
Chris Wilson0f25dff2016-09-09 14:11:55 +0100748 list_add_tail(&request->ring_link, &ring->request_list);
Chris Wilsonf2d13292016-10-28 13:58:57 +0100749 request->emitted_jiffies = jiffies;
Chris Wilson0f25dff2016-09-09 14:11:55 +0100750
Chris Wilson05235c52016-07-20 09:21:08 +0100751 i915_gem_mark_busy(engine);
Chris Wilson5590af32016-09-09 14:11:54 +0100752
753 local_bh_disable();
754 i915_sw_fence_commit(&request->submit);
755 local_bh_enable(); /* Kick the execlists tasklet if just scheduled */
Chris Wilson05235c52016-07-20 09:21:08 +0100756}
757
Chris Wilson221fe792016-09-09 14:11:51 +0100758static void reset_wait_queue(wait_queue_head_t *q, wait_queue_t *wait)
759{
760 unsigned long flags;
761
762 spin_lock_irqsave(&q->lock, flags);
763 if (list_empty(&wait->task_list))
764 __add_wait_queue(q, wait);
765 spin_unlock_irqrestore(&q->lock, flags);
766}
767
Chris Wilson05235c52016-07-20 09:21:08 +0100768static unsigned long local_clock_us(unsigned int *cpu)
769{
770 unsigned long t;
771
772 /* Cheaply and approximately convert from nanoseconds to microseconds.
773 * The result and subsequent calculations are also defined in the same
774 * approximate microseconds units. The principal source of timing
775 * error here is from the simple truncation.
776 *
777 * Note that local_clock() is only defined wrt to the current CPU;
778 * the comparisons are no longer valid if we switch CPUs. Instead of
779 * blocking preemption for the entire busywait, we can detect the CPU
780 * switch and use that as indicator of system load and a reason to
781 * stop busywaiting, see busywait_stop().
782 */
783 *cpu = get_cpu();
784 t = local_clock() >> 10;
785 put_cpu();
786
787 return t;
788}
789
790static bool busywait_stop(unsigned long timeout, unsigned int cpu)
791{
792 unsigned int this_cpu;
793
794 if (time_after(local_clock_us(&this_cpu), timeout))
795 return true;
796
797 return this_cpu != cpu;
798}
799
800bool __i915_spin_request(const struct drm_i915_gem_request *req,
801 int state, unsigned long timeout_us)
802{
803 unsigned int cpu;
804
805 /* When waiting for high frequency requests, e.g. during synchronous
806 * rendering split between the CPU and GPU, the finite amount of time
807 * required to set up the irq and wait upon it limits the response
808 * rate. By busywaiting on the request completion for a short while we
809 * can service the high frequency waits as quick as possible. However,
810 * if it is a slow request, we want to sleep as quickly as possible.
811 * The tradeoff between waiting and sleeping is roughly the time it
812 * takes to sleep on a request, on the order of a microsecond.
813 */
814
815 timeout_us += local_clock_us(&cpu);
816 do {
Chris Wilson65e47602016-10-28 13:58:49 +0100817 if (__i915_gem_request_completed(req))
Chris Wilson05235c52016-07-20 09:21:08 +0100818 return true;
819
820 if (signal_pending_state(state, current))
821 break;
822
823 if (busywait_stop(timeout_us, cpu))
824 break;
825
826 cpu_relax_lowlatency();
827 } while (!need_resched());
828
829 return false;
830}
831
Chris Wilson4680816b2016-10-28 13:58:48 +0100832static long
Chris Wilson23902e42016-11-14 20:40:58 +0000833__i915_request_wait_for_execute(struct drm_i915_gem_request *request,
834 unsigned int flags,
835 long timeout)
Chris Wilson4680816b2016-10-28 13:58:48 +0100836{
837 const int state = flags & I915_WAIT_INTERRUPTIBLE ?
838 TASK_INTERRUPTIBLE : TASK_UNINTERRUPTIBLE;
839 wait_queue_head_t *q = &request->i915->gpu_error.wait_queue;
840 DEFINE_WAIT(reset);
841 DEFINE_WAIT(wait);
842
843 if (flags & I915_WAIT_LOCKED)
844 add_wait_queue(q, &reset);
845
846 do {
Chris Wilson23902e42016-11-14 20:40:58 +0000847 prepare_to_wait(&request->execute.wait, &wait, state);
Chris Wilson4680816b2016-10-28 13:58:48 +0100848
Chris Wilson23902e42016-11-14 20:40:58 +0000849 if (i915_sw_fence_done(&request->execute))
Chris Wilson4680816b2016-10-28 13:58:48 +0100850 break;
851
852 if (flags & I915_WAIT_LOCKED &&
853 i915_reset_in_progress(&request->i915->gpu_error)) {
854 __set_current_state(TASK_RUNNING);
855 i915_reset(request->i915);
856 reset_wait_queue(q, &reset);
857 continue;
858 }
859
860 if (signal_pending_state(state, current)) {
861 timeout = -ERESTARTSYS;
862 break;
863 }
864
865 timeout = io_schedule_timeout(timeout);
866 } while (timeout);
Chris Wilson23902e42016-11-14 20:40:58 +0000867 finish_wait(&request->execute.wait, &wait);
Chris Wilson4680816b2016-10-28 13:58:48 +0100868
869 if (flags & I915_WAIT_LOCKED)
870 remove_wait_queue(q, &reset);
871
872 return timeout;
873}
874
Chris Wilson05235c52016-07-20 09:21:08 +0100875/**
Chris Wilson776f3232016-08-04 07:52:40 +0100876 * i915_wait_request - wait until execution of request has finished
Chris Wilsone95433c2016-10-28 13:58:27 +0100877 * @req: the request to wait upon
Chris Wilsonea746f32016-09-09 14:11:49 +0100878 * @flags: how to wait
Chris Wilsone95433c2016-10-28 13:58:27 +0100879 * @timeout: how long to wait in jiffies
Chris Wilson05235c52016-07-20 09:21:08 +0100880 *
Chris Wilsone95433c2016-10-28 13:58:27 +0100881 * i915_wait_request() waits for the request to be completed, for a
882 * maximum of @timeout jiffies (with MAX_SCHEDULE_TIMEOUT implying an
883 * unbounded wait).
Chris Wilson05235c52016-07-20 09:21:08 +0100884 *
Chris Wilsone95433c2016-10-28 13:58:27 +0100885 * If the caller holds the struct_mutex, the caller must pass I915_WAIT_LOCKED
886 * in via the flags, and vice versa if the struct_mutex is not held, the caller
887 * must not specify that the wait is locked.
888 *
889 * Returns the remaining time (in jiffies) if the request completed, which may
890 * be zero or -ETIME if the request is unfinished after the timeout expires.
891 * May return -EINTR is called with I915_WAIT_INTERRUPTIBLE and a signal is
892 * pending before the request completes.
Chris Wilson05235c52016-07-20 09:21:08 +0100893 */
Chris Wilsone95433c2016-10-28 13:58:27 +0100894long i915_wait_request(struct drm_i915_gem_request *req,
895 unsigned int flags,
896 long timeout)
Chris Wilson05235c52016-07-20 09:21:08 +0100897{
Chris Wilsonea746f32016-09-09 14:11:49 +0100898 const int state = flags & I915_WAIT_INTERRUPTIBLE ?
899 TASK_INTERRUPTIBLE : TASK_UNINTERRUPTIBLE;
Chris Wilson05235c52016-07-20 09:21:08 +0100900 DEFINE_WAIT(reset);
901 struct intel_wait wait;
Chris Wilson05235c52016-07-20 09:21:08 +0100902
903 might_sleep();
Chris Wilson22dd3bb2016-09-09 14:11:50 +0100904#if IS_ENABLED(CONFIG_LOCKDEP)
Chris Wilsone95433c2016-10-28 13:58:27 +0100905 GEM_BUG_ON(debug_locks &&
906 !!lockdep_is_held(&req->i915->drm.struct_mutex) !=
Chris Wilson22dd3bb2016-09-09 14:11:50 +0100907 !!(flags & I915_WAIT_LOCKED));
908#endif
Chris Wilsone95433c2016-10-28 13:58:27 +0100909 GEM_BUG_ON(timeout < 0);
Chris Wilson05235c52016-07-20 09:21:08 +0100910
Chris Wilson05235c52016-07-20 09:21:08 +0100911 if (i915_gem_request_completed(req))
Chris Wilsone95433c2016-10-28 13:58:27 +0100912 return timeout;
Chris Wilson05235c52016-07-20 09:21:08 +0100913
Chris Wilsone95433c2016-10-28 13:58:27 +0100914 if (!timeout)
915 return -ETIME;
Chris Wilson05235c52016-07-20 09:21:08 +0100916
917 trace_i915_gem_request_wait_begin(req);
918
Chris Wilson23902e42016-11-14 20:40:58 +0000919 if (!i915_sw_fence_done(&req->execute)) {
920 timeout = __i915_request_wait_for_execute(req, flags, timeout);
Chris Wilson4680816b2016-10-28 13:58:48 +0100921 if (timeout < 0)
922 goto complete;
923
Chris Wilson23902e42016-11-14 20:40:58 +0000924 GEM_BUG_ON(!i915_sw_fence_done(&req->execute));
Chris Wilson4680816b2016-10-28 13:58:48 +0100925 }
Chris Wilson23902e42016-11-14 20:40:58 +0000926 GEM_BUG_ON(!i915_sw_fence_done(&req->submit));
Chris Wilson65e47602016-10-28 13:58:49 +0100927 GEM_BUG_ON(!req->global_seqno);
Chris Wilson4680816b2016-10-28 13:58:48 +0100928
Daniel Vetter437c3082016-08-05 18:11:24 +0200929 /* Optimistic short spin before touching IRQs */
Chris Wilson05235c52016-07-20 09:21:08 +0100930 if (i915_spin_request(req, state, 5))
931 goto complete;
932
933 set_current_state(state);
Chris Wilson22dd3bb2016-09-09 14:11:50 +0100934 if (flags & I915_WAIT_LOCKED)
935 add_wait_queue(&req->i915->gpu_error.wait_queue, &reset);
Chris Wilson05235c52016-07-20 09:21:08 +0100936
Chris Wilson65e47602016-10-28 13:58:49 +0100937 intel_wait_init(&wait, req->global_seqno);
Chris Wilson05235c52016-07-20 09:21:08 +0100938 if (intel_engine_add_wait(req->engine, &wait))
939 /* In order to check that we haven't missed the interrupt
940 * as we enabled it, we need to kick ourselves to do a
941 * coherent check on the seqno before we sleep.
942 */
943 goto wakeup;
944
945 for (;;) {
946 if (signal_pending_state(state, current)) {
Chris Wilsone95433c2016-10-28 13:58:27 +0100947 timeout = -ERESTARTSYS;
Chris Wilson05235c52016-07-20 09:21:08 +0100948 break;
949 }
950
Chris Wilsone95433c2016-10-28 13:58:27 +0100951 if (!timeout) {
952 timeout = -ETIME;
Chris Wilson05235c52016-07-20 09:21:08 +0100953 break;
954 }
955
Chris Wilsone95433c2016-10-28 13:58:27 +0100956 timeout = io_schedule_timeout(timeout);
957
Chris Wilson05235c52016-07-20 09:21:08 +0100958 if (intel_wait_complete(&wait))
959 break;
960
961 set_current_state(state);
962
963wakeup:
964 /* Carefully check if the request is complete, giving time
965 * for the seqno to be visible following the interrupt.
966 * We also have to check in case we are kicked by the GPU
967 * reset in order to drop the struct_mutex.
968 */
969 if (__i915_request_irq_complete(req))
970 break;
971
Chris Wilson221fe792016-09-09 14:11:51 +0100972 /* If the GPU is hung, and we hold the lock, reset the GPU
973 * and then check for completion. On a full reset, the engine's
974 * HW seqno will be advanced passed us and we are complete.
975 * If we do a partial reset, we have to wait for the GPU to
976 * resume and update the breadcrumb.
977 *
978 * If we don't hold the mutex, we can just wait for the worker
979 * to come along and update the breadcrumb (either directly
980 * itself, or indirectly by recovering the GPU).
981 */
982 if (flags & I915_WAIT_LOCKED &&
983 i915_reset_in_progress(&req->i915->gpu_error)) {
984 __set_current_state(TASK_RUNNING);
985 i915_reset(req->i915);
986 reset_wait_queue(&req->i915->gpu_error.wait_queue,
987 &reset);
988 continue;
989 }
990
Chris Wilson05235c52016-07-20 09:21:08 +0100991 /* Only spin if we know the GPU is processing this request */
992 if (i915_spin_request(req, state, 2))
993 break;
994 }
Chris Wilson05235c52016-07-20 09:21:08 +0100995
996 intel_engine_remove_wait(req->engine, &wait);
Chris Wilson22dd3bb2016-09-09 14:11:50 +0100997 if (flags & I915_WAIT_LOCKED)
998 remove_wait_queue(&req->i915->gpu_error.wait_queue, &reset);
Chris Wilson05235c52016-07-20 09:21:08 +0100999 __set_current_state(TASK_RUNNING);
Chris Wilson22dd3bb2016-09-09 14:11:50 +01001000
Chris Wilson05235c52016-07-20 09:21:08 +01001001complete:
1002 trace_i915_gem_request_wait_end(req);
1003
Chris Wilsone95433c2016-10-28 13:58:27 +01001004 return timeout;
Chris Wilson05235c52016-07-20 09:21:08 +01001005}
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001006
Chris Wilson28176ef2016-10-28 13:58:56 +01001007static void engine_retire_requests(struct intel_engine_cs *engine)
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001008{
1009 struct drm_i915_gem_request *request, *next;
1010
Chris Wilson73cb9702016-10-28 13:58:46 +01001011 list_for_each_entry_safe(request, next,
1012 &engine->timeline->requests, link) {
Chris Wilson80b204b2016-10-28 13:58:58 +01001013 if (!__i915_gem_request_completed(request))
Chris Wilson28176ef2016-10-28 13:58:56 +01001014 return;
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001015
1016 i915_gem_request_retire(request);
1017 }
1018}
1019
1020void i915_gem_retire_requests(struct drm_i915_private *dev_priv)
1021{
1022 struct intel_engine_cs *engine;
Chris Wilson28176ef2016-10-28 13:58:56 +01001023 enum intel_engine_id id;
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001024
1025 lockdep_assert_held(&dev_priv->drm.struct_mutex);
1026
Chris Wilson28176ef2016-10-28 13:58:56 +01001027 if (!dev_priv->gt.active_requests)
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001028 return;
1029
1030 GEM_BUG_ON(!dev_priv->gt.awake);
1031
Chris Wilson28176ef2016-10-28 13:58:56 +01001032 for_each_engine(engine, dev_priv, id)
1033 engine_retire_requests(engine);
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001034
Chris Wilson28176ef2016-10-28 13:58:56 +01001035 if (!dev_priv->gt.active_requests)
Imre Deak5bd11a32016-11-07 11:20:02 +02001036 mod_delayed_work(dev_priv->wq,
1037 &dev_priv->gt.idle_work,
1038 msecs_to_jiffies(100));
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001039}