blob: b9b5253cf3cd4fb6ebf4b4900cb07f8912c2b151 [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 Wilson52e54202016-11-14 20:41:02 +0000116static struct i915_dependency *
117i915_dependency_alloc(struct drm_i915_private *i915)
118{
119 return kmem_cache_alloc(i915->dependencies, GFP_KERNEL);
120}
121
122static void
123i915_dependency_free(struct drm_i915_private *i915,
124 struct i915_dependency *dep)
125{
126 kmem_cache_free(i915->dependencies, dep);
127}
128
129static void
130__i915_priotree_add_dependency(struct i915_priotree *pt,
131 struct i915_priotree *signal,
132 struct i915_dependency *dep,
133 unsigned long flags)
134{
Chris Wilson20311bd2016-11-14 20:41:03 +0000135 INIT_LIST_HEAD(&dep->dfs_link);
Chris Wilson52e54202016-11-14 20:41:02 +0000136 list_add(&dep->wait_link, &signal->waiters_list);
137 list_add(&dep->signal_link, &pt->signalers_list);
138 dep->signaler = signal;
139 dep->flags = flags;
140}
141
142static int
143i915_priotree_add_dependency(struct drm_i915_private *i915,
144 struct i915_priotree *pt,
145 struct i915_priotree *signal)
146{
147 struct i915_dependency *dep;
148
149 dep = i915_dependency_alloc(i915);
150 if (!dep)
151 return -ENOMEM;
152
153 __i915_priotree_add_dependency(pt, signal, dep, I915_DEPENDENCY_ALLOC);
154 return 0;
155}
156
157static void
158i915_priotree_fini(struct drm_i915_private *i915, struct i915_priotree *pt)
159{
160 struct i915_dependency *dep, *next;
161
Chris Wilson20311bd2016-11-14 20:41:03 +0000162 GEM_BUG_ON(!RB_EMPTY_NODE(&pt->node));
163
Chris Wilson52e54202016-11-14 20:41:02 +0000164 /* Everyone we depended upon (the fences we wait to be signaled)
165 * should retire before us and remove themselves from our list.
166 * However, retirement is run independently on each timeline and
167 * so we may be called out-of-order.
168 */
169 list_for_each_entry_safe(dep, next, &pt->signalers_list, signal_link) {
170 list_del(&dep->wait_link);
171 if (dep->flags & I915_DEPENDENCY_ALLOC)
172 i915_dependency_free(i915, dep);
173 }
174
175 /* Remove ourselves from everyone who depends upon us */
176 list_for_each_entry_safe(dep, next, &pt->waiters_list, wait_link) {
177 list_del(&dep->signal_link);
178 if (dep->flags & I915_DEPENDENCY_ALLOC)
179 i915_dependency_free(i915, dep);
180 }
181}
182
183static void
184i915_priotree_init(struct i915_priotree *pt)
185{
186 INIT_LIST_HEAD(&pt->signalers_list);
187 INIT_LIST_HEAD(&pt->waiters_list);
Chris Wilson20311bd2016-11-14 20:41:03 +0000188 RB_CLEAR_NODE(&pt->node);
189 pt->priority = INT_MIN;
Chris Wilson52e54202016-11-14 20:41:02 +0000190}
191
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100192void i915_gem_retire_noop(struct i915_gem_active *active,
193 struct drm_i915_gem_request *request)
194{
195 /* Space left intentionally blank */
196}
197
Chris Wilson05235c52016-07-20 09:21:08 +0100198static void i915_gem_request_retire(struct drm_i915_gem_request *request)
199{
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100200 struct i915_gem_active *active, *next;
201
Chris Wilson4c7d62c2016-10-28 13:58:32 +0100202 lockdep_assert_held(&request->i915->drm.struct_mutex);
203 GEM_BUG_ON(!i915_gem_request_completed(request));
204
Chris Wilson05235c52016-07-20 09:21:08 +0100205 trace_i915_gem_request_retire(request);
Chris Wilson80b204b2016-10-28 13:58:58 +0100206
207 spin_lock_irq(&request->engine->timeline->lock);
Chris Wilsone95433c2016-10-28 13:58:27 +0100208 list_del_init(&request->link);
Chris Wilson80b204b2016-10-28 13:58:58 +0100209 spin_unlock_irq(&request->engine->timeline->lock);
Chris Wilson05235c52016-07-20 09:21:08 +0100210
211 /* We know the GPU must have read the request to have
212 * sent us the seqno + interrupt, so use the position
213 * of tail of the request to update the last known position
214 * of the GPU head.
215 *
216 * Note this requires that we are always called in request
217 * completion order.
218 */
Chris Wilson675d9ad2016-08-04 07:52:36 +0100219 list_del(&request->ring_link);
Chris Wilson1dae2df2016-08-02 22:50:19 +0100220 request->ring->last_retired_head = request->postfix;
Chris Wilson28176ef2016-10-28 13:58:56 +0100221 request->i915->gt.active_requests--;
Chris Wilson05235c52016-07-20 09:21:08 +0100222
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100223 /* Walk through the active list, calling retire on each. This allows
224 * objects to track their GPU activity and mark themselves as idle
225 * when their *last* active request is completed (updating state
226 * tracking lists for eviction, active references for GEM, etc).
227 *
228 * As the ->retire() may free the node, we decouple it first and
229 * pass along the auxiliary information (to avoid dereferencing
230 * the node after the callback).
231 */
232 list_for_each_entry_safe(active, next, &request->active_list, link) {
233 /* In microbenchmarks or focusing upon time inside the kernel,
234 * we may spend an inordinate amount of time simply handling
235 * the retirement of requests and processing their callbacks.
236 * Of which, this loop itself is particularly hot due to the
237 * cache misses when jumping around the list of i915_gem_active.
238 * So we try to keep this loop as streamlined as possible and
239 * also prefetch the next i915_gem_active to try and hide
240 * the likely cache miss.
241 */
242 prefetchw(next);
243
244 INIT_LIST_HEAD(&active->link);
Chris Wilson0eafec62016-08-04 16:32:41 +0100245 RCU_INIT_POINTER(active->request, NULL);
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100246
247 active->retire(active, request);
248 }
249
Chris Wilson05235c52016-07-20 09:21:08 +0100250 i915_gem_request_remove_from_client(request);
251
252 if (request->previous_context) {
253 if (i915.enable_execlists)
254 intel_lr_context_unpin(request->previous_context,
255 request->engine);
256 }
257
Chris Wilson9a6feaf2016-07-20 13:31:50 +0100258 i915_gem_context_put(request->ctx);
Chris Wilsond07f0e52016-10-28 13:58:44 +0100259
260 dma_fence_signal(&request->fence);
Chris Wilson52e54202016-11-14 20:41:02 +0000261
262 i915_priotree_fini(request->i915, &request->priotree);
Chris Wilsone8a261e2016-07-20 13:31:49 +0100263 i915_gem_request_put(request);
Chris Wilson05235c52016-07-20 09:21:08 +0100264}
265
266void i915_gem_request_retire_upto(struct drm_i915_gem_request *req)
267{
268 struct intel_engine_cs *engine = req->engine;
269 struct drm_i915_gem_request *tmp;
270
271 lockdep_assert_held(&req->i915->drm.struct_mutex);
Chris Wilsone95433c2016-10-28 13:58:27 +0100272 if (list_empty(&req->link))
273 return;
Chris Wilson05235c52016-07-20 09:21:08 +0100274
275 do {
Chris Wilson73cb9702016-10-28 13:58:46 +0100276 tmp = list_first_entry(&engine->timeline->requests,
Chris Wilsonefdf7c02016-08-04 07:52:33 +0100277 typeof(*tmp), link);
Chris Wilson05235c52016-07-20 09:21:08 +0100278
279 i915_gem_request_retire(tmp);
280 } while (tmp != req);
Chris Wilson05235c52016-07-20 09:21:08 +0100281}
282
Chris Wilson8af29b02016-09-09 14:11:47 +0100283static int i915_gem_check_wedge(struct drm_i915_private *dev_priv)
Chris Wilson05235c52016-07-20 09:21:08 +0100284{
Chris Wilson8af29b02016-09-09 14:11:47 +0100285 struct i915_gpu_error *error = &dev_priv->gpu_error;
286
287 if (i915_terminally_wedged(error))
Chris Wilson05235c52016-07-20 09:21:08 +0100288 return -EIO;
289
Chris Wilson8af29b02016-09-09 14:11:47 +0100290 if (i915_reset_in_progress(error)) {
Chris Wilson05235c52016-07-20 09:21:08 +0100291 /* Non-interruptible callers can't handle -EAGAIN, hence return
292 * -EIO unconditionally for these.
293 */
Chris Wilson8af29b02016-09-09 14:11:47 +0100294 if (!dev_priv->mm.interruptible)
Chris Wilson05235c52016-07-20 09:21:08 +0100295 return -EIO;
296
297 return -EAGAIN;
298 }
299
300 return 0;
301}
302
Chris Wilson85e17f52016-10-28 13:58:53 +0100303static int i915_gem_init_global_seqno(struct drm_i915_private *i915, u32 seqno)
Chris Wilson05235c52016-07-20 09:21:08 +0100304{
Chris Wilson85e17f52016-10-28 13:58:53 +0100305 struct i915_gem_timeline *timeline = &i915->gt.global_timeline;
Chris Wilson05235c52016-07-20 09:21:08 +0100306 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +0530307 enum intel_engine_id id;
Chris Wilson05235c52016-07-20 09:21:08 +0100308 int ret;
309
310 /* Carefully retire all requests without writing to the rings */
Chris Wilson85e17f52016-10-28 13:58:53 +0100311 ret = i915_gem_wait_for_idle(i915,
Chris Wilson73cb9702016-10-28 13:58:46 +0100312 I915_WAIT_INTERRUPTIBLE |
313 I915_WAIT_LOCKED);
314 if (ret)
315 return ret;
316
Chris Wilson85e17f52016-10-28 13:58:53 +0100317 i915_gem_retire_requests(i915);
Chris Wilson28176ef2016-10-28 13:58:56 +0100318 GEM_BUG_ON(i915->gt.active_requests > 1);
Chris Wilson05235c52016-07-20 09:21:08 +0100319
320 /* If the seqno wraps around, we need to clear the breadcrumb rbtree */
Chris Wilson28176ef2016-10-28 13:58:56 +0100321 if (!i915_seqno_passed(seqno, atomic_read(&timeline->next_seqno))) {
Chris Wilson6a5d1db2016-11-08 14:37:19 +0000322 while (intel_breadcrumbs_busy(i915))
323 cond_resched(); /* spin until threads are complete */
Chris Wilson05235c52016-07-20 09:21:08 +0100324 }
Chris Wilson28176ef2016-10-28 13:58:56 +0100325 atomic_set(&timeline->next_seqno, seqno);
Chris Wilson05235c52016-07-20 09:21:08 +0100326
327 /* Finally reset hw state */
Chris Wilson85e17f52016-10-28 13:58:53 +0100328 for_each_engine(engine, i915, id)
Chris Wilson73cb9702016-10-28 13:58:46 +0100329 intel_engine_init_global_seqno(engine, seqno);
Chris Wilson05235c52016-07-20 09:21:08 +0100330
Chris Wilson85e17f52016-10-28 13:58:53 +0100331 list_for_each_entry(timeline, &i915->gt.timelines, link) {
332 for_each_engine(engine, i915, id) {
333 struct intel_timeline *tl = &timeline->engine[id];
334
335 memset(tl->sync_seqno, 0, sizeof(tl->sync_seqno));
336 }
337 }
338
Chris Wilson05235c52016-07-20 09:21:08 +0100339 return 0;
340}
341
Chris Wilson73cb9702016-10-28 13:58:46 +0100342int i915_gem_set_global_seqno(struct drm_device *dev, u32 seqno)
Chris Wilson05235c52016-07-20 09:21:08 +0100343{
344 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilson05235c52016-07-20 09:21:08 +0100345
Chris Wilson4c7d62c2016-10-28 13:58:32 +0100346 lockdep_assert_held(&dev_priv->drm.struct_mutex);
347
Chris Wilson05235c52016-07-20 09:21:08 +0100348 if (seqno == 0)
349 return -EINVAL;
350
351 /* HWS page needs to be set less than what we
352 * will inject to ring
353 */
Chris Wilson28176ef2016-10-28 13:58:56 +0100354 return i915_gem_init_global_seqno(dev_priv, seqno - 1);
355}
Chris Wilson05235c52016-07-20 09:21:08 +0100356
Chris Wilson28176ef2016-10-28 13:58:56 +0100357static int reserve_global_seqno(struct drm_i915_private *i915)
358{
359 u32 active_requests = ++i915->gt.active_requests;
360 u32 next_seqno = atomic_read(&i915->gt.global_timeline.next_seqno);
361 int ret;
362
363 /* Reservation is fine until we need to wrap around */
364 if (likely(next_seqno + active_requests > next_seqno))
365 return 0;
366
367 ret = i915_gem_init_global_seqno(i915, 0);
368 if (ret) {
369 i915->gt.active_requests--;
370 return ret;
371 }
372
Chris Wilson05235c52016-07-20 09:21:08 +0100373 return 0;
374}
375
Chris Wilson80b204b2016-10-28 13:58:58 +0100376static u32 __timeline_get_seqno(struct i915_gem_timeline *tl)
377{
378 /* next_seqno only incremented under a mutex */
379 return ++tl->next_seqno.counter;
380}
381
Chris Wilson28176ef2016-10-28 13:58:56 +0100382static u32 timeline_get_seqno(struct i915_gem_timeline *tl)
Chris Wilson05235c52016-07-20 09:21:08 +0100383{
Chris Wilson28176ef2016-10-28 13:58:56 +0100384 return atomic_inc_return(&tl->next_seqno);
Chris Wilson05235c52016-07-20 09:21:08 +0100385}
386
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000387void __i915_gem_request_submit(struct drm_i915_gem_request *request)
Chris Wilson5590af32016-09-09 14:11:54 +0100388{
Chris Wilson73cb9702016-10-28 13:58:46 +0100389 struct intel_engine_cs *engine = request->engine;
Chris Wilsonf2d13292016-10-28 13:58:57 +0100390 struct intel_timeline *timeline;
391 u32 seqno;
Chris Wilson5590af32016-09-09 14:11:54 +0100392
Chris Wilson80b204b2016-10-28 13:58:58 +0100393 /* Transfer from per-context onto the global per-engine timeline */
394 timeline = engine->timeline;
395 GEM_BUG_ON(timeline == request->timeline);
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000396 assert_spin_locked(&timeline->lock);
Chris Wilson5590af32016-09-09 14:11:54 +0100397
Chris Wilson80b204b2016-10-28 13:58:58 +0100398 seqno = timeline_get_seqno(timeline->common);
Chris Wilsonf2d13292016-10-28 13:58:57 +0100399 GEM_BUG_ON(!seqno);
400 GEM_BUG_ON(i915_seqno_passed(intel_engine_get_seqno(engine), seqno));
401
402 GEM_BUG_ON(i915_seqno_passed(timeline->last_submitted_seqno, seqno));
403 request->previous_seqno = timeline->last_submitted_seqno;
404 timeline->last_submitted_seqno = seqno;
405
406 /* We may be recursing from the signal callback of another i915 fence */
407 spin_lock_nested(&request->lock, SINGLE_DEPTH_NESTING);
408 request->global_seqno = seqno;
409 if (test_bit(DMA_FENCE_FLAG_ENABLE_SIGNAL_BIT, &request->fence.flags))
410 intel_engine_enable_signaling(request);
411 spin_unlock(&request->lock);
412
413 GEM_BUG_ON(!request->global_seqno);
Chris Wilsoncaddfe72016-10-28 13:58:52 +0100414 engine->emit_breadcrumb(request,
415 request->ring->vaddr + request->postfix);
Chris Wilson5590af32016-09-09 14:11:54 +0100416
Chris Wilsonbb894852016-11-14 20:40:57 +0000417 spin_lock(&request->timeline->lock);
Chris Wilson80b204b2016-10-28 13:58:58 +0100418 list_move_tail(&request->link, &timeline->requests);
419 spin_unlock(&request->timeline->lock);
420
Chris Wilson23902e42016-11-14 20:40:58 +0000421 i915_sw_fence_commit(&request->execute);
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000422}
Chris Wilson23902e42016-11-14 20:40:58 +0000423
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000424void i915_gem_request_submit(struct drm_i915_gem_request *request)
425{
426 struct intel_engine_cs *engine = request->engine;
427 unsigned long flags;
428
429 /* Will be called from irq-context when using foreign fences. */
430 spin_lock_irqsave(&engine->timeline->lock, flags);
431
432 __i915_gem_request_submit(request);
433
434 spin_unlock_irqrestore(&engine->timeline->lock, flags);
435}
436
437static int __i915_sw_fence_call
438submit_notify(struct i915_sw_fence *fence, enum i915_sw_fence_notify state)
439{
440 if (state == FENCE_COMPLETE) {
441 struct drm_i915_gem_request *request =
442 container_of(fence, typeof(*request), submit);
443
444 request->engine->submit_request(request);
445 }
Chris Wilson80b204b2016-10-28 13:58:58 +0100446
Chris Wilson5590af32016-09-09 14:11:54 +0100447 return NOTIFY_DONE;
448}
449
Chris Wilson23902e42016-11-14 20:40:58 +0000450static int __i915_sw_fence_call
451execute_notify(struct i915_sw_fence *fence, enum i915_sw_fence_notify state)
452{
453 return NOTIFY_DONE;
454}
455
Chris Wilson8e637172016-08-02 22:50:26 +0100456/**
457 * i915_gem_request_alloc - allocate a request structure
458 *
459 * @engine: engine that we wish to issue the request on.
460 * @ctx: context that the request will be associated with.
461 * This can be NULL if the request is not directly related to
462 * any specific user context, in which case this function will
463 * choose an appropriate context to use.
464 *
465 * Returns a pointer to the allocated request if successful,
466 * or an error code if not.
467 */
468struct drm_i915_gem_request *
469i915_gem_request_alloc(struct intel_engine_cs *engine,
470 struct i915_gem_context *ctx)
Chris Wilson05235c52016-07-20 09:21:08 +0100471{
472 struct drm_i915_private *dev_priv = engine->i915;
Chris Wilson05235c52016-07-20 09:21:08 +0100473 struct drm_i915_gem_request *req;
474 int ret;
475
Chris Wilson28176ef2016-10-28 13:58:56 +0100476 lockdep_assert_held(&dev_priv->drm.struct_mutex);
477
Chris Wilson05235c52016-07-20 09:21:08 +0100478 /* ABI: Before userspace accesses the GPU (e.g. execbuffer), report
479 * EIO if the GPU is already wedged, or EAGAIN to drop the struct_mutex
480 * and restart.
481 */
Chris Wilson8af29b02016-09-09 14:11:47 +0100482 ret = i915_gem_check_wedge(dev_priv);
Chris Wilson05235c52016-07-20 09:21:08 +0100483 if (ret)
Chris Wilson8e637172016-08-02 22:50:26 +0100484 return ERR_PTR(ret);
Chris Wilson05235c52016-07-20 09:21:08 +0100485
Chris Wilson28176ef2016-10-28 13:58:56 +0100486 ret = reserve_global_seqno(dev_priv);
487 if (ret)
488 return ERR_PTR(ret);
489
Chris Wilson9b5f4e52016-07-20 09:21:09 +0100490 /* Move the oldest request to the slab-cache (if not in use!) */
Chris Wilson73cb9702016-10-28 13:58:46 +0100491 req = list_first_entry_or_null(&engine->timeline->requests,
Chris Wilsonefdf7c02016-08-04 07:52:33 +0100492 typeof(*req), link);
Chris Wilson80b204b2016-10-28 13:58:58 +0100493 if (req && __i915_gem_request_completed(req))
Chris Wilson2a1d7752016-07-26 12:01:51 +0100494 i915_gem_request_retire(req);
Chris Wilson9b5f4e52016-07-20 09:21:09 +0100495
Chris Wilson5a198b82016-08-09 09:23:34 +0100496 /* Beware: Dragons be flying overhead.
497 *
498 * We use RCU to look up requests in flight. The lookups may
499 * race with the request being allocated from the slab freelist.
500 * That is the request we are writing to here, may be in the process
Chris Wilson1426f712016-08-09 17:03:22 +0100501 * of being read by __i915_gem_active_get_rcu(). As such,
Chris Wilson5a198b82016-08-09 09:23:34 +0100502 * we have to be very careful when overwriting the contents. During
503 * the RCU lookup, we change chase the request->engine pointer,
Chris Wilson65e47602016-10-28 13:58:49 +0100504 * read the request->global_seqno and increment the reference count.
Chris Wilson5a198b82016-08-09 09:23:34 +0100505 *
506 * The reference count is incremented atomically. If it is zero,
507 * the lookup knows the request is unallocated and complete. Otherwise,
508 * it is either still in use, or has been reallocated and reset
Chris Wilsonf54d1862016-10-25 13:00:45 +0100509 * with dma_fence_init(). This increment is safe for release as we
510 * check that the request we have a reference to and matches the active
Chris Wilson5a198b82016-08-09 09:23:34 +0100511 * request.
512 *
513 * Before we increment the refcount, we chase the request->engine
514 * pointer. We must not call kmem_cache_zalloc() or else we set
515 * that pointer to NULL and cause a crash during the lookup. If
516 * we see the request is completed (based on the value of the
517 * old engine and seqno), the lookup is complete and reports NULL.
518 * If we decide the request is not completed (new engine or seqno),
519 * then we grab a reference and double check that it is still the
520 * active request - which it won't be and restart the lookup.
521 *
522 * Do not use kmem_cache_zalloc() here!
523 */
524 req = kmem_cache_alloc(dev_priv->requests, GFP_KERNEL);
Chris Wilson28176ef2016-10-28 13:58:56 +0100525 if (!req) {
526 ret = -ENOMEM;
527 goto err_unreserve;
528 }
Chris Wilson05235c52016-07-20 09:21:08 +0100529
Chris Wilson80b204b2016-10-28 13:58:58 +0100530 req->timeline = i915_gem_context_lookup_timeline(ctx, engine);
531 GEM_BUG_ON(req->timeline == engine->timeline);
Chris Wilson73cb9702016-10-28 13:58:46 +0100532
Chris Wilson04769652016-07-20 09:21:11 +0100533 spin_lock_init(&req->lock);
Chris Wilsonf54d1862016-10-25 13:00:45 +0100534 dma_fence_init(&req->fence,
535 &i915_fence_ops,
536 &req->lock,
Chris Wilson73cb9702016-10-28 13:58:46 +0100537 req->timeline->fence_context,
Chris Wilson80b204b2016-10-28 13:58:58 +0100538 __timeline_get_seqno(req->timeline->common));
Chris Wilson04769652016-07-20 09:21:11 +0100539
Chris Wilson5590af32016-09-09 14:11:54 +0100540 i915_sw_fence_init(&req->submit, submit_notify);
Chris Wilson23902e42016-11-14 20:40:58 +0000541 i915_sw_fence_init(&req->execute, execute_notify);
542 /* Ensure that the execute fence completes after the submit fence -
543 * as we complete the execute fence from within the submit fence
544 * callback, its completion would otherwise be visible first.
545 */
546 i915_sw_fence_await_sw_fence(&req->execute, &req->submit, &req->execq);
Chris Wilson5590af32016-09-09 14:11:54 +0100547
Chris Wilson52e54202016-11-14 20:41:02 +0000548 i915_priotree_init(&req->priotree);
549
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100550 INIT_LIST_HEAD(&req->active_list);
Chris Wilson05235c52016-07-20 09:21:08 +0100551 req->i915 = dev_priv;
552 req->engine = engine;
Chris Wilson9a6feaf2016-07-20 13:31:50 +0100553 req->ctx = i915_gem_context_get(ctx);
Chris Wilson05235c52016-07-20 09:21:08 +0100554
Chris Wilson5a198b82016-08-09 09:23:34 +0100555 /* No zalloc, must clear what we need by hand */
Chris Wilsonf2d13292016-10-28 13:58:57 +0100556 req->global_seqno = 0;
Chris Wilson5a198b82016-08-09 09:23:34 +0100557 req->previous_context = NULL;
558 req->file_priv = NULL;
Chris Wilson058d88c2016-08-15 10:49:06 +0100559 req->batch = NULL;
Chris Wilson5a198b82016-08-09 09:23:34 +0100560
Chris Wilson05235c52016-07-20 09:21:08 +0100561 /*
562 * Reserve space in the ring buffer for all the commands required to
563 * eventually emit this request. This is to guarantee that the
564 * i915_add_request() call can't fail. Note that the reserve may need
565 * to be redone if the request is not actually submitted straight
566 * away, e.g. because a GPU scheduler has deferred it.
567 */
568 req->reserved_space = MIN_SPACE_FOR_ADD_REQUEST;
Chris Wilson98f29e82016-10-28 13:58:51 +0100569 GEM_BUG_ON(req->reserved_space < engine->emit_breadcrumb_sz);
Chris Wilson05235c52016-07-20 09:21:08 +0100570
571 if (i915.enable_execlists)
572 ret = intel_logical_ring_alloc_request_extras(req);
573 else
574 ret = intel_ring_alloc_request_extras(req);
575 if (ret)
576 goto err_ctx;
577
Chris Wilsond0454462016-08-15 10:48:40 +0100578 /* Record the position of the start of the request so that
579 * should we detect the updated seqno part-way through the
580 * GPU processing the request, we never over-estimate the
581 * position of the head.
582 */
583 req->head = req->ring->tail;
584
Chris Wilson8e637172016-08-02 22:50:26 +0100585 return req;
Chris Wilson05235c52016-07-20 09:21:08 +0100586
587err_ctx:
Chris Wilson9a6feaf2016-07-20 13:31:50 +0100588 i915_gem_context_put(ctx);
Chris Wilson05235c52016-07-20 09:21:08 +0100589 kmem_cache_free(dev_priv->requests, req);
Chris Wilson28176ef2016-10-28 13:58:56 +0100590err_unreserve:
591 dev_priv->gt.active_requests--;
Chris Wilson8e637172016-08-02 22:50:26 +0100592 return ERR_PTR(ret);
Chris Wilson05235c52016-07-20 09:21:08 +0100593}
594
Chris Wilsona2bc4692016-09-09 14:11:56 +0100595static int
596i915_gem_request_await_request(struct drm_i915_gem_request *to,
597 struct drm_i915_gem_request *from)
598{
Chris Wilson85e17f52016-10-28 13:58:53 +0100599 int ret;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100600
601 GEM_BUG_ON(to == from);
602
Chris Wilson52e54202016-11-14 20:41:02 +0000603 if (to->engine->schedule) {
604 ret = i915_priotree_add_dependency(to->i915,
605 &to->priotree,
606 &from->priotree);
607 if (ret < 0)
608 return ret;
609 }
610
Chris Wilson73cb9702016-10-28 13:58:46 +0100611 if (to->timeline == from->timeline)
Chris Wilsona2bc4692016-09-09 14:11:56 +0100612 return 0;
613
Chris Wilson73cb9702016-10-28 13:58:46 +0100614 if (to->engine == from->engine) {
615 ret = i915_sw_fence_await_sw_fence_gfp(&to->submit,
616 &from->submit,
617 GFP_KERNEL);
618 return ret < 0 ? ret : 0;
619 }
620
Chris Wilson65e47602016-10-28 13:58:49 +0100621 if (!from->global_seqno) {
622 ret = i915_sw_fence_await_dma_fence(&to->submit,
623 &from->fence, 0,
624 GFP_KERNEL);
625 return ret < 0 ? ret : 0;
626 }
627
Chris Wilson85e17f52016-10-28 13:58:53 +0100628 if (from->global_seqno <= to->timeline->sync_seqno[from->engine->id])
Chris Wilsona2bc4692016-09-09 14:11:56 +0100629 return 0;
630
631 trace_i915_gem_ring_sync_to(to, from);
632 if (!i915.semaphores) {
Chris Wilson0a046a02016-09-09 14:12:00 +0100633 if (!i915_spin_request(from, TASK_INTERRUPTIBLE, 2)) {
634 ret = i915_sw_fence_await_dma_fence(&to->submit,
635 &from->fence, 0,
636 GFP_KERNEL);
637 if (ret < 0)
638 return ret;
639 }
Chris Wilsona2bc4692016-09-09 14:11:56 +0100640 } else {
641 ret = to->engine->semaphore.sync_to(to, from);
642 if (ret)
643 return ret;
644 }
645
Chris Wilson85e17f52016-10-28 13:58:53 +0100646 to->timeline->sync_seqno[from->engine->id] = from->global_seqno;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100647 return 0;
648}
649
Chris Wilsonb52992c2016-10-28 13:58:24 +0100650int
651i915_gem_request_await_dma_fence(struct drm_i915_gem_request *req,
652 struct dma_fence *fence)
653{
654 struct dma_fence_array *array;
655 int ret;
656 int i;
657
658 if (test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &fence->flags))
659 return 0;
660
661 if (dma_fence_is_i915(fence))
662 return i915_gem_request_await_request(req, to_request(fence));
663
664 if (!dma_fence_is_array(fence)) {
665 ret = i915_sw_fence_await_dma_fence(&req->submit,
666 fence, I915_FENCE_TIMEOUT,
667 GFP_KERNEL);
668 return ret < 0 ? ret : 0;
669 }
670
671 /* Note that if the fence-array was created in signal-on-any mode,
672 * we should *not* decompose it into its individual fences. However,
673 * we don't currently store which mode the fence-array is operating
674 * in. Fortunately, the only user of signal-on-any is private to
675 * amdgpu and we should not see any incoming fence-array from
676 * sync-file being in signal-on-any mode.
677 */
678
679 array = to_dma_fence_array(fence);
680 for (i = 0; i < array->num_fences; i++) {
681 struct dma_fence *child = array->fences[i];
682
683 if (dma_fence_is_i915(child))
684 ret = i915_gem_request_await_request(req,
685 to_request(child));
686 else
687 ret = i915_sw_fence_await_dma_fence(&req->submit,
688 child, I915_FENCE_TIMEOUT,
689 GFP_KERNEL);
690 if (ret < 0)
691 return ret;
692 }
693
694 return 0;
695}
696
Chris Wilsona2bc4692016-09-09 14:11:56 +0100697/**
698 * i915_gem_request_await_object - set this request to (async) wait upon a bo
699 *
700 * @to: request we are wishing to use
701 * @obj: object which may be in use on another ring.
702 *
703 * This code is meant to abstract object synchronization with the GPU.
704 * Conceptually we serialise writes between engines inside the GPU.
705 * We only allow one engine to write into a buffer at any time, but
706 * multiple readers. To ensure each has a coherent view of memory, we must:
707 *
708 * - If there is an outstanding write request to the object, the new
709 * request must wait for it to complete (either CPU or in hw, requests
710 * on the same ring will be naturally ordered).
711 *
712 * - If we are a write request (pending_write_domain is set), the new
713 * request must wait for outstanding read requests to complete.
714 *
715 * Returns 0 if successful, else propagates up the lower layer error.
716 */
717int
718i915_gem_request_await_object(struct drm_i915_gem_request *to,
719 struct drm_i915_gem_object *obj,
720 bool write)
721{
Chris Wilsond07f0e52016-10-28 13:58:44 +0100722 struct dma_fence *excl;
723 int ret = 0;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100724
725 if (write) {
Chris Wilsond07f0e52016-10-28 13:58:44 +0100726 struct dma_fence **shared;
727 unsigned int count, i;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100728
Chris Wilsond07f0e52016-10-28 13:58:44 +0100729 ret = reservation_object_get_fences_rcu(obj->resv,
730 &excl, &count, &shared);
Chris Wilsona2bc4692016-09-09 14:11:56 +0100731 if (ret)
732 return ret;
Chris Wilsond07f0e52016-10-28 13:58:44 +0100733
734 for (i = 0; i < count; i++) {
735 ret = i915_gem_request_await_dma_fence(to, shared[i]);
736 if (ret)
737 break;
738
739 dma_fence_put(shared[i]);
740 }
741
742 for (; i < count; i++)
743 dma_fence_put(shared[i]);
744 kfree(shared);
745 } else {
746 excl = reservation_object_get_excl_rcu(obj->resv);
Chris Wilsona2bc4692016-09-09 14:11:56 +0100747 }
748
Chris Wilsond07f0e52016-10-28 13:58:44 +0100749 if (excl) {
750 if (ret == 0)
751 ret = i915_gem_request_await_dma_fence(to, excl);
752
753 dma_fence_put(excl);
754 }
755
756 return ret;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100757}
758
Chris Wilson05235c52016-07-20 09:21:08 +0100759static void i915_gem_mark_busy(const struct intel_engine_cs *engine)
760{
761 struct drm_i915_private *dev_priv = engine->i915;
762
Chris Wilson05235c52016-07-20 09:21:08 +0100763 if (dev_priv->gt.awake)
764 return;
765
766 intel_runtime_pm_get_noresume(dev_priv);
767 dev_priv->gt.awake = true;
768
Chris Wilson54b4f682016-07-21 21:16:19 +0100769 intel_enable_gt_powersave(dev_priv);
Chris Wilson05235c52016-07-20 09:21:08 +0100770 i915_update_gfx_val(dev_priv);
771 if (INTEL_GEN(dev_priv) >= 6)
772 gen6_rps_busy(dev_priv);
773
774 queue_delayed_work(dev_priv->wq,
775 &dev_priv->gt.retire_work,
776 round_jiffies_up_relative(HZ));
777}
778
779/*
780 * NB: This function is not allowed to fail. Doing so would mean the the
781 * request is not being tracked for completion but the work itself is
782 * going to happen on the hardware. This would be a Bad Thing(tm).
783 */
Chris Wilson17f298cf2016-08-10 13:41:46 +0100784void __i915_add_request(struct drm_i915_gem_request *request, bool flush_caches)
Chris Wilson05235c52016-07-20 09:21:08 +0100785{
Chris Wilson95b2ab52016-08-15 10:48:46 +0100786 struct intel_engine_cs *engine = request->engine;
787 struct intel_ring *ring = request->ring;
Chris Wilson73cb9702016-10-28 13:58:46 +0100788 struct intel_timeline *timeline = request->timeline;
Chris Wilson0a046a02016-09-09 14:12:00 +0100789 struct drm_i915_gem_request *prev;
Chris Wilsoncaddfe72016-10-28 13:58:52 +0100790 int err;
Chris Wilson05235c52016-07-20 09:21:08 +0100791
Chris Wilson4c7d62c2016-10-28 13:58:32 +0100792 lockdep_assert_held(&request->i915->drm.struct_mutex);
Chris Wilson0f25dff2016-09-09 14:11:55 +0100793 trace_i915_gem_request_add(request);
794
Chris Wilson05235c52016-07-20 09:21:08 +0100795 /*
796 * To ensure that this call will not fail, space for its emissions
797 * should already have been reserved in the ring buffer. Let the ring
798 * know that it is time to use that space up.
799 */
Chris Wilson05235c52016-07-20 09:21:08 +0100800 request->reserved_space = 0;
801
802 /*
803 * Emit any outstanding flushes - execbuf can fail to emit the flush
804 * after having emitted the batchbuffer command. Hence we need to fix
805 * things up similar to emitting the lazy request. The difference here
806 * is that the flush _must_ happen before the next request, no matter
807 * what.
808 */
809 if (flush_caches) {
Chris Wilsoncaddfe72016-10-28 13:58:52 +0100810 err = engine->emit_flush(request, EMIT_FLUSH);
Chris Wilsonc7fe7d22016-08-02 22:50:24 +0100811
Chris Wilson05235c52016-07-20 09:21:08 +0100812 /* Not allowed to fail! */
Chris Wilsoncaddfe72016-10-28 13:58:52 +0100813 WARN(err, "engine->emit_flush() failed: %d!\n", err);
Chris Wilson05235c52016-07-20 09:21:08 +0100814 }
815
Chris Wilsond0454462016-08-15 10:48:40 +0100816 /* Record the position of the start of the breadcrumb so that
Chris Wilson05235c52016-07-20 09:21:08 +0100817 * should we detect the updated seqno part-way through the
818 * GPU processing the request, we never over-estimate the
Chris Wilsond0454462016-08-15 10:48:40 +0100819 * position of the ring's HEAD.
Chris Wilson05235c52016-07-20 09:21:08 +0100820 */
Chris Wilsoncaddfe72016-10-28 13:58:52 +0100821 err = intel_ring_begin(request, engine->emit_breadcrumb_sz);
822 GEM_BUG_ON(err);
Chris Wilsonba76d912016-08-02 22:50:28 +0100823 request->postfix = ring->tail;
Chris Wilsoncaddfe72016-10-28 13:58:52 +0100824 ring->tail += engine->emit_breadcrumb_sz * sizeof(u32);
Chris Wilson05235c52016-07-20 09:21:08 +0100825
Chris Wilson0f25dff2016-09-09 14:11:55 +0100826 /* Seal the request and mark it as pending execution. Note that
827 * we may inspect this state, without holding any locks, during
828 * hangcheck. Hence we apply the barrier to ensure that we do not
829 * see a more recent value in the hws than we are tracking.
830 */
Chris Wilson0a046a02016-09-09 14:12:00 +0100831
Chris Wilson73cb9702016-10-28 13:58:46 +0100832 prev = i915_gem_active_raw(&timeline->last_request,
Chris Wilson0a046a02016-09-09 14:12:00 +0100833 &request->i915->drm.struct_mutex);
Chris Wilson52e54202016-11-14 20:41:02 +0000834 if (prev) {
Chris Wilson0a046a02016-09-09 14:12:00 +0100835 i915_sw_fence_await_sw_fence(&request->submit, &prev->submit,
836 &request->submitq);
Chris Wilson52e54202016-11-14 20:41:02 +0000837 if (engine->schedule)
838 __i915_priotree_add_dependency(&request->priotree,
839 &prev->priotree,
840 &request->dep,
841 0);
842 }
Chris Wilson0a046a02016-09-09 14:12:00 +0100843
Chris Wilson80b204b2016-10-28 13:58:58 +0100844 spin_lock_irq(&timeline->lock);
Chris Wilsonf2d13292016-10-28 13:58:57 +0100845 list_add_tail(&request->link, &timeline->requests);
Chris Wilson80b204b2016-10-28 13:58:58 +0100846 spin_unlock_irq(&timeline->lock);
Chris Wilson28176ef2016-10-28 13:58:56 +0100847
Chris Wilson80b204b2016-10-28 13:58:58 +0100848 GEM_BUG_ON(i915_seqno_passed(timeline->last_submitted_seqno,
849 request->fence.seqno));
850
851 timeline->last_submitted_seqno = request->fence.seqno;
Chris Wilson73cb9702016-10-28 13:58:46 +0100852 i915_gem_active_set(&timeline->last_request, request);
Chris Wilsonf2d13292016-10-28 13:58:57 +0100853
Chris Wilson0f25dff2016-09-09 14:11:55 +0100854 list_add_tail(&request->ring_link, &ring->request_list);
Chris Wilsonf2d13292016-10-28 13:58:57 +0100855 request->emitted_jiffies = jiffies;
Chris Wilson0f25dff2016-09-09 14:11:55 +0100856
Chris Wilson05235c52016-07-20 09:21:08 +0100857 i915_gem_mark_busy(engine);
Chris Wilson5590af32016-09-09 14:11:54 +0100858
Chris Wilson0de91362016-11-14 20:41:01 +0000859 /* Let the backend know a new request has arrived that may need
860 * to adjust the existing execution schedule due to a high priority
861 * request - i.e. we may want to preempt the current request in order
862 * to run a high priority dependency chain *before* we can execute this
863 * request.
864 *
865 * This is called before the request is ready to run so that we can
866 * decide whether to preempt the entire chain so that it is ready to
867 * run at the earliest possible convenience.
868 */
869 if (engine->schedule)
Chris Wilson9f792eb2016-11-14 20:41:04 +0000870 engine->schedule(request, request->ctx->priority);
Chris Wilson0de91362016-11-14 20:41:01 +0000871
Chris Wilson5590af32016-09-09 14:11:54 +0100872 local_bh_disable();
873 i915_sw_fence_commit(&request->submit);
874 local_bh_enable(); /* Kick the execlists tasklet if just scheduled */
Chris Wilson05235c52016-07-20 09:21:08 +0100875}
876
Chris Wilson221fe792016-09-09 14:11:51 +0100877static void reset_wait_queue(wait_queue_head_t *q, wait_queue_t *wait)
878{
879 unsigned long flags;
880
881 spin_lock_irqsave(&q->lock, flags);
882 if (list_empty(&wait->task_list))
883 __add_wait_queue(q, wait);
884 spin_unlock_irqrestore(&q->lock, flags);
885}
886
Chris Wilson05235c52016-07-20 09:21:08 +0100887static unsigned long local_clock_us(unsigned int *cpu)
888{
889 unsigned long t;
890
891 /* Cheaply and approximately convert from nanoseconds to microseconds.
892 * The result and subsequent calculations are also defined in the same
893 * approximate microseconds units. The principal source of timing
894 * error here is from the simple truncation.
895 *
896 * Note that local_clock() is only defined wrt to the current CPU;
897 * the comparisons are no longer valid if we switch CPUs. Instead of
898 * blocking preemption for the entire busywait, we can detect the CPU
899 * switch and use that as indicator of system load and a reason to
900 * stop busywaiting, see busywait_stop().
901 */
902 *cpu = get_cpu();
903 t = local_clock() >> 10;
904 put_cpu();
905
906 return t;
907}
908
909static bool busywait_stop(unsigned long timeout, unsigned int cpu)
910{
911 unsigned int this_cpu;
912
913 if (time_after(local_clock_us(&this_cpu), timeout))
914 return true;
915
916 return this_cpu != cpu;
917}
918
919bool __i915_spin_request(const struct drm_i915_gem_request *req,
920 int state, unsigned long timeout_us)
921{
922 unsigned int cpu;
923
924 /* When waiting for high frequency requests, e.g. during synchronous
925 * rendering split between the CPU and GPU, the finite amount of time
926 * required to set up the irq and wait upon it limits the response
927 * rate. By busywaiting on the request completion for a short while we
928 * can service the high frequency waits as quick as possible. However,
929 * if it is a slow request, we want to sleep as quickly as possible.
930 * The tradeoff between waiting and sleeping is roughly the time it
931 * takes to sleep on a request, on the order of a microsecond.
932 */
933
934 timeout_us += local_clock_us(&cpu);
935 do {
Chris Wilson65e47602016-10-28 13:58:49 +0100936 if (__i915_gem_request_completed(req))
Chris Wilson05235c52016-07-20 09:21:08 +0100937 return true;
938
939 if (signal_pending_state(state, current))
940 break;
941
942 if (busywait_stop(timeout_us, cpu))
943 break;
944
945 cpu_relax_lowlatency();
946 } while (!need_resched());
947
948 return false;
949}
950
Chris Wilson4680816b2016-10-28 13:58:48 +0100951static long
Chris Wilson23902e42016-11-14 20:40:58 +0000952__i915_request_wait_for_execute(struct drm_i915_gem_request *request,
953 unsigned int flags,
954 long timeout)
Chris Wilson4680816b2016-10-28 13:58:48 +0100955{
956 const int state = flags & I915_WAIT_INTERRUPTIBLE ?
957 TASK_INTERRUPTIBLE : TASK_UNINTERRUPTIBLE;
958 wait_queue_head_t *q = &request->i915->gpu_error.wait_queue;
959 DEFINE_WAIT(reset);
960 DEFINE_WAIT(wait);
961
962 if (flags & I915_WAIT_LOCKED)
963 add_wait_queue(q, &reset);
964
965 do {
Chris Wilson23902e42016-11-14 20:40:58 +0000966 prepare_to_wait(&request->execute.wait, &wait, state);
Chris Wilson4680816b2016-10-28 13:58:48 +0100967
Chris Wilson23902e42016-11-14 20:40:58 +0000968 if (i915_sw_fence_done(&request->execute))
Chris Wilson4680816b2016-10-28 13:58:48 +0100969 break;
970
971 if (flags & I915_WAIT_LOCKED &&
972 i915_reset_in_progress(&request->i915->gpu_error)) {
973 __set_current_state(TASK_RUNNING);
974 i915_reset(request->i915);
975 reset_wait_queue(q, &reset);
976 continue;
977 }
978
979 if (signal_pending_state(state, current)) {
980 timeout = -ERESTARTSYS;
981 break;
982 }
983
984 timeout = io_schedule_timeout(timeout);
985 } while (timeout);
Chris Wilson23902e42016-11-14 20:40:58 +0000986 finish_wait(&request->execute.wait, &wait);
Chris Wilson4680816b2016-10-28 13:58:48 +0100987
988 if (flags & I915_WAIT_LOCKED)
989 remove_wait_queue(q, &reset);
990
991 return timeout;
992}
993
Chris Wilson05235c52016-07-20 09:21:08 +0100994/**
Chris Wilson776f3232016-08-04 07:52:40 +0100995 * i915_wait_request - wait until execution of request has finished
Chris Wilsone95433c2016-10-28 13:58:27 +0100996 * @req: the request to wait upon
Chris Wilsonea746f32016-09-09 14:11:49 +0100997 * @flags: how to wait
Chris Wilsone95433c2016-10-28 13:58:27 +0100998 * @timeout: how long to wait in jiffies
Chris Wilson05235c52016-07-20 09:21:08 +0100999 *
Chris Wilsone95433c2016-10-28 13:58:27 +01001000 * i915_wait_request() waits for the request to be completed, for a
1001 * maximum of @timeout jiffies (with MAX_SCHEDULE_TIMEOUT implying an
1002 * unbounded wait).
Chris Wilson05235c52016-07-20 09:21:08 +01001003 *
Chris Wilsone95433c2016-10-28 13:58:27 +01001004 * If the caller holds the struct_mutex, the caller must pass I915_WAIT_LOCKED
1005 * in via the flags, and vice versa if the struct_mutex is not held, the caller
1006 * must not specify that the wait is locked.
1007 *
1008 * Returns the remaining time (in jiffies) if the request completed, which may
1009 * be zero or -ETIME if the request is unfinished after the timeout expires.
1010 * May return -EINTR is called with I915_WAIT_INTERRUPTIBLE and a signal is
1011 * pending before the request completes.
Chris Wilson05235c52016-07-20 09:21:08 +01001012 */
Chris Wilsone95433c2016-10-28 13:58:27 +01001013long i915_wait_request(struct drm_i915_gem_request *req,
1014 unsigned int flags,
1015 long timeout)
Chris Wilson05235c52016-07-20 09:21:08 +01001016{
Chris Wilsonea746f32016-09-09 14:11:49 +01001017 const int state = flags & I915_WAIT_INTERRUPTIBLE ?
1018 TASK_INTERRUPTIBLE : TASK_UNINTERRUPTIBLE;
Chris Wilson05235c52016-07-20 09:21:08 +01001019 DEFINE_WAIT(reset);
1020 struct intel_wait wait;
Chris Wilson05235c52016-07-20 09:21:08 +01001021
1022 might_sleep();
Chris Wilson22dd3bb2016-09-09 14:11:50 +01001023#if IS_ENABLED(CONFIG_LOCKDEP)
Chris Wilsone95433c2016-10-28 13:58:27 +01001024 GEM_BUG_ON(debug_locks &&
1025 !!lockdep_is_held(&req->i915->drm.struct_mutex) !=
Chris Wilson22dd3bb2016-09-09 14:11:50 +01001026 !!(flags & I915_WAIT_LOCKED));
1027#endif
Chris Wilsone95433c2016-10-28 13:58:27 +01001028 GEM_BUG_ON(timeout < 0);
Chris Wilson05235c52016-07-20 09:21:08 +01001029
Chris Wilson05235c52016-07-20 09:21:08 +01001030 if (i915_gem_request_completed(req))
Chris Wilsone95433c2016-10-28 13:58:27 +01001031 return timeout;
Chris Wilson05235c52016-07-20 09:21:08 +01001032
Chris Wilsone95433c2016-10-28 13:58:27 +01001033 if (!timeout)
1034 return -ETIME;
Chris Wilson05235c52016-07-20 09:21:08 +01001035
1036 trace_i915_gem_request_wait_begin(req);
1037
Chris Wilson23902e42016-11-14 20:40:58 +00001038 if (!i915_sw_fence_done(&req->execute)) {
1039 timeout = __i915_request_wait_for_execute(req, flags, timeout);
Chris Wilson4680816b2016-10-28 13:58:48 +01001040 if (timeout < 0)
1041 goto complete;
1042
Chris Wilson23902e42016-11-14 20:40:58 +00001043 GEM_BUG_ON(!i915_sw_fence_done(&req->execute));
Chris Wilson4680816b2016-10-28 13:58:48 +01001044 }
Chris Wilson23902e42016-11-14 20:40:58 +00001045 GEM_BUG_ON(!i915_sw_fence_done(&req->submit));
Chris Wilson65e47602016-10-28 13:58:49 +01001046 GEM_BUG_ON(!req->global_seqno);
Chris Wilson4680816b2016-10-28 13:58:48 +01001047
Daniel Vetter437c3082016-08-05 18:11:24 +02001048 /* Optimistic short spin before touching IRQs */
Chris Wilson05235c52016-07-20 09:21:08 +01001049 if (i915_spin_request(req, state, 5))
1050 goto complete;
1051
1052 set_current_state(state);
Chris Wilson22dd3bb2016-09-09 14:11:50 +01001053 if (flags & I915_WAIT_LOCKED)
1054 add_wait_queue(&req->i915->gpu_error.wait_queue, &reset);
Chris Wilson05235c52016-07-20 09:21:08 +01001055
Chris Wilson65e47602016-10-28 13:58:49 +01001056 intel_wait_init(&wait, req->global_seqno);
Chris Wilson05235c52016-07-20 09:21:08 +01001057 if (intel_engine_add_wait(req->engine, &wait))
1058 /* In order to check that we haven't missed the interrupt
1059 * as we enabled it, we need to kick ourselves to do a
1060 * coherent check on the seqno before we sleep.
1061 */
1062 goto wakeup;
1063
1064 for (;;) {
1065 if (signal_pending_state(state, current)) {
Chris Wilsone95433c2016-10-28 13:58:27 +01001066 timeout = -ERESTARTSYS;
Chris Wilson05235c52016-07-20 09:21:08 +01001067 break;
1068 }
1069
Chris Wilsone95433c2016-10-28 13:58:27 +01001070 if (!timeout) {
1071 timeout = -ETIME;
Chris Wilson05235c52016-07-20 09:21:08 +01001072 break;
1073 }
1074
Chris Wilsone95433c2016-10-28 13:58:27 +01001075 timeout = io_schedule_timeout(timeout);
1076
Chris Wilson05235c52016-07-20 09:21:08 +01001077 if (intel_wait_complete(&wait))
1078 break;
1079
1080 set_current_state(state);
1081
1082wakeup:
1083 /* Carefully check if the request is complete, giving time
1084 * for the seqno to be visible following the interrupt.
1085 * We also have to check in case we are kicked by the GPU
1086 * reset in order to drop the struct_mutex.
1087 */
1088 if (__i915_request_irq_complete(req))
1089 break;
1090
Chris Wilson221fe792016-09-09 14:11:51 +01001091 /* If the GPU is hung, and we hold the lock, reset the GPU
1092 * and then check for completion. On a full reset, the engine's
1093 * HW seqno will be advanced passed us and we are complete.
1094 * If we do a partial reset, we have to wait for the GPU to
1095 * resume and update the breadcrumb.
1096 *
1097 * If we don't hold the mutex, we can just wait for the worker
1098 * to come along and update the breadcrumb (either directly
1099 * itself, or indirectly by recovering the GPU).
1100 */
1101 if (flags & I915_WAIT_LOCKED &&
1102 i915_reset_in_progress(&req->i915->gpu_error)) {
1103 __set_current_state(TASK_RUNNING);
1104 i915_reset(req->i915);
1105 reset_wait_queue(&req->i915->gpu_error.wait_queue,
1106 &reset);
1107 continue;
1108 }
1109
Chris Wilson05235c52016-07-20 09:21:08 +01001110 /* Only spin if we know the GPU is processing this request */
1111 if (i915_spin_request(req, state, 2))
1112 break;
1113 }
Chris Wilson05235c52016-07-20 09:21:08 +01001114
1115 intel_engine_remove_wait(req->engine, &wait);
Chris Wilson22dd3bb2016-09-09 14:11:50 +01001116 if (flags & I915_WAIT_LOCKED)
1117 remove_wait_queue(&req->i915->gpu_error.wait_queue, &reset);
Chris Wilson05235c52016-07-20 09:21:08 +01001118 __set_current_state(TASK_RUNNING);
Chris Wilson22dd3bb2016-09-09 14:11:50 +01001119
Chris Wilson05235c52016-07-20 09:21:08 +01001120complete:
1121 trace_i915_gem_request_wait_end(req);
1122
Chris Wilsone95433c2016-10-28 13:58:27 +01001123 return timeout;
Chris Wilson05235c52016-07-20 09:21:08 +01001124}
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001125
Chris Wilson28176ef2016-10-28 13:58:56 +01001126static void engine_retire_requests(struct intel_engine_cs *engine)
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001127{
1128 struct drm_i915_gem_request *request, *next;
1129
Chris Wilson73cb9702016-10-28 13:58:46 +01001130 list_for_each_entry_safe(request, next,
1131 &engine->timeline->requests, link) {
Chris Wilson80b204b2016-10-28 13:58:58 +01001132 if (!__i915_gem_request_completed(request))
Chris Wilson28176ef2016-10-28 13:58:56 +01001133 return;
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001134
1135 i915_gem_request_retire(request);
1136 }
1137}
1138
1139void i915_gem_retire_requests(struct drm_i915_private *dev_priv)
1140{
1141 struct intel_engine_cs *engine;
Chris Wilson28176ef2016-10-28 13:58:56 +01001142 enum intel_engine_id id;
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001143
1144 lockdep_assert_held(&dev_priv->drm.struct_mutex);
1145
Chris Wilson28176ef2016-10-28 13:58:56 +01001146 if (!dev_priv->gt.active_requests)
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001147 return;
1148
1149 GEM_BUG_ON(!dev_priv->gt.awake);
1150
Chris Wilson28176ef2016-10-28 13:58:56 +01001151 for_each_engine(engine, dev_priv, id)
1152 engine_retire_requests(engine);
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001153
Chris Wilson28176ef2016-10-28 13:58:56 +01001154 if (!dev_priv->gt.active_requests)
Imre Deak5bd11a32016-11-07 11:20:02 +02001155 mod_delayed_work(dev_priv->wq,
1156 &dev_priv->gt.idle_work,
1157 msecs_to_jiffies(100));
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001158}