blob: 99056b948edabe5d1945573a192727fd56af5454 [file] [log] [blame]
Chris Wilson05235c52016-07-20 09:21:08 +01001/*
2 * Copyright © 2008-2015 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 */
24
Chris Wilsonfa545cb2016-08-04 07:52:35 +010025#include <linux/prefetch.h>
Chris Wilsonb52992c2016-10-28 13:58:24 +010026#include <linux/dma-fence-array.h>
Chris Wilsonfa545cb2016-08-04 07:52:35 +010027
Chris Wilson05235c52016-07-20 09:21:08 +010028#include "i915_drv.h"
29
Chris Wilsonf54d1862016-10-25 13:00:45 +010030static const char *i915_fence_get_driver_name(struct dma_fence *fence)
Chris Wilson04769652016-07-20 09:21:11 +010031{
32 return "i915";
33}
34
Chris Wilsonf54d1862016-10-25 13:00:45 +010035static const char *i915_fence_get_timeline_name(struct dma_fence *fence)
Chris Wilson04769652016-07-20 09:21:11 +010036{
Chris Wilson73cb9702016-10-28 13:58:46 +010037 return to_request(fence)->timeline->common->name;
Chris Wilson04769652016-07-20 09:21:11 +010038}
39
Chris Wilsonf54d1862016-10-25 13:00:45 +010040static bool i915_fence_signaled(struct dma_fence *fence)
Chris Wilson04769652016-07-20 09:21:11 +010041{
42 return i915_gem_request_completed(to_request(fence));
43}
44
Chris Wilsonf54d1862016-10-25 13:00:45 +010045static bool i915_fence_enable_signaling(struct dma_fence *fence)
Chris Wilson04769652016-07-20 09:21:11 +010046{
47 if (i915_fence_signaled(fence))
48 return false;
49
50 intel_engine_enable_signaling(to_request(fence));
51 return true;
52}
53
Chris Wilsonf54d1862016-10-25 13:00:45 +010054static signed long i915_fence_wait(struct dma_fence *fence,
Chris Wilson04769652016-07-20 09:21:11 +010055 bool interruptible,
Chris Wilsone95433c2016-10-28 13:58:27 +010056 signed long timeout)
Chris Wilson04769652016-07-20 09:21:11 +010057{
Chris Wilsone95433c2016-10-28 13:58:27 +010058 return i915_wait_request(to_request(fence), interruptible, timeout);
Chris Wilson04769652016-07-20 09:21:11 +010059}
60
Chris Wilsonf54d1862016-10-25 13:00:45 +010061static void i915_fence_release(struct dma_fence *fence)
Chris Wilson04769652016-07-20 09:21:11 +010062{
63 struct drm_i915_gem_request *req = to_request(fence);
64
Chris Wilsonfc158402016-11-25 13:17:18 +000065 /* The request is put onto a RCU freelist (i.e. the address
66 * is immediately reused), mark the fences as being freed now.
67 * Otherwise the debugobjects for the fences are only marked as
68 * freed when the slab cache itself is freed, and so we would get
69 * caught trying to reuse dead objects.
70 */
71 i915_sw_fence_fini(&req->submit);
72 i915_sw_fence_fini(&req->execute);
73
Chris Wilson04769652016-07-20 09:21:11 +010074 kmem_cache_free(req->i915->requests, req);
75}
76
Chris Wilsonf54d1862016-10-25 13:00:45 +010077const struct dma_fence_ops i915_fence_ops = {
Chris Wilson04769652016-07-20 09:21:11 +010078 .get_driver_name = i915_fence_get_driver_name,
79 .get_timeline_name = i915_fence_get_timeline_name,
80 .enable_signaling = i915_fence_enable_signaling,
81 .signaled = i915_fence_signaled,
82 .wait = i915_fence_wait,
83 .release = i915_fence_release,
Chris Wilson04769652016-07-20 09:21:11 +010084};
85
Chris Wilson05235c52016-07-20 09:21:08 +010086int i915_gem_request_add_to_client(struct drm_i915_gem_request *req,
87 struct drm_file *file)
88{
89 struct drm_i915_private *dev_private;
90 struct drm_i915_file_private *file_priv;
91
92 WARN_ON(!req || !file || req->file_priv);
93
94 if (!req || !file)
95 return -EINVAL;
96
97 if (req->file_priv)
98 return -EINVAL;
99
100 dev_private = req->i915;
101 file_priv = file->driver_priv;
102
103 spin_lock(&file_priv->mm.lock);
104 req->file_priv = file_priv;
105 list_add_tail(&req->client_list, &file_priv->mm.request_list);
106 spin_unlock(&file_priv->mm.lock);
107
Chris Wilson05235c52016-07-20 09:21:08 +0100108 return 0;
109}
110
111static inline void
112i915_gem_request_remove_from_client(struct drm_i915_gem_request *request)
113{
114 struct drm_i915_file_private *file_priv = request->file_priv;
115
116 if (!file_priv)
117 return;
118
119 spin_lock(&file_priv->mm.lock);
120 list_del(&request->client_list);
121 request->file_priv = NULL;
122 spin_unlock(&file_priv->mm.lock);
Chris Wilson05235c52016-07-20 09:21:08 +0100123}
124
Chris Wilson52e54202016-11-14 20:41:02 +0000125static struct i915_dependency *
126i915_dependency_alloc(struct drm_i915_private *i915)
127{
128 return kmem_cache_alloc(i915->dependencies, GFP_KERNEL);
129}
130
131static void
132i915_dependency_free(struct drm_i915_private *i915,
133 struct i915_dependency *dep)
134{
135 kmem_cache_free(i915->dependencies, dep);
136}
137
138static void
139__i915_priotree_add_dependency(struct i915_priotree *pt,
140 struct i915_priotree *signal,
141 struct i915_dependency *dep,
142 unsigned long flags)
143{
Chris Wilson20311bd2016-11-14 20:41:03 +0000144 INIT_LIST_HEAD(&dep->dfs_link);
Chris Wilson52e54202016-11-14 20:41:02 +0000145 list_add(&dep->wait_link, &signal->waiters_list);
146 list_add(&dep->signal_link, &pt->signalers_list);
147 dep->signaler = signal;
148 dep->flags = flags;
149}
150
151static int
152i915_priotree_add_dependency(struct drm_i915_private *i915,
153 struct i915_priotree *pt,
154 struct i915_priotree *signal)
155{
156 struct i915_dependency *dep;
157
158 dep = i915_dependency_alloc(i915);
159 if (!dep)
160 return -ENOMEM;
161
162 __i915_priotree_add_dependency(pt, signal, dep, I915_DEPENDENCY_ALLOC);
163 return 0;
164}
165
166static void
167i915_priotree_fini(struct drm_i915_private *i915, struct i915_priotree *pt)
168{
169 struct i915_dependency *dep, *next;
170
Chris Wilson20311bd2016-11-14 20:41:03 +0000171 GEM_BUG_ON(!RB_EMPTY_NODE(&pt->node));
172
Chris Wilson52e54202016-11-14 20:41:02 +0000173 /* Everyone we depended upon (the fences we wait to be signaled)
174 * should retire before us and remove themselves from our list.
175 * However, retirement is run independently on each timeline and
176 * so we may be called out-of-order.
177 */
178 list_for_each_entry_safe(dep, next, &pt->signalers_list, signal_link) {
179 list_del(&dep->wait_link);
180 if (dep->flags & I915_DEPENDENCY_ALLOC)
181 i915_dependency_free(i915, dep);
182 }
183
184 /* Remove ourselves from everyone who depends upon us */
185 list_for_each_entry_safe(dep, next, &pt->waiters_list, wait_link) {
186 list_del(&dep->signal_link);
187 if (dep->flags & I915_DEPENDENCY_ALLOC)
188 i915_dependency_free(i915, dep);
189 }
190}
191
192static void
193i915_priotree_init(struct i915_priotree *pt)
194{
195 INIT_LIST_HEAD(&pt->signalers_list);
196 INIT_LIST_HEAD(&pt->waiters_list);
Chris Wilson20311bd2016-11-14 20:41:03 +0000197 RB_CLEAR_NODE(&pt->node);
198 pt->priority = INT_MIN;
Chris Wilson52e54202016-11-14 20:41:02 +0000199}
200
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100201void i915_gem_retire_noop(struct i915_gem_active *active,
202 struct drm_i915_gem_request *request)
203{
204 /* Space left intentionally blank */
205}
206
Chris Wilson05235c52016-07-20 09:21:08 +0100207static void i915_gem_request_retire(struct drm_i915_gem_request *request)
208{
Chris Wilsone8a9c582016-12-18 15:37:20 +0000209 struct intel_engine_cs *engine = request->engine;
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100210 struct i915_gem_active *active, *next;
211
Chris Wilson4c7d62c2016-10-28 13:58:32 +0100212 lockdep_assert_held(&request->i915->drm.struct_mutex);
Chris Wilson48bc2a42016-11-25 13:17:17 +0000213 GEM_BUG_ON(!i915_sw_fence_signaled(&request->submit));
214 GEM_BUG_ON(!i915_sw_fence_signaled(&request->execute));
Chris Wilson4c7d62c2016-10-28 13:58:32 +0100215 GEM_BUG_ON(!i915_gem_request_completed(request));
Chris Wilson43020552016-11-15 16:46:20 +0000216 GEM_BUG_ON(!request->i915->gt.active_requests);
Chris Wilson4c7d62c2016-10-28 13:58:32 +0100217
Chris Wilson05235c52016-07-20 09:21:08 +0100218 trace_i915_gem_request_retire(request);
Chris Wilson80b204b2016-10-28 13:58:58 +0100219
Chris Wilsone8a9c582016-12-18 15:37:20 +0000220 spin_lock_irq(&engine->timeline->lock);
Chris Wilsone95433c2016-10-28 13:58:27 +0100221 list_del_init(&request->link);
Chris Wilsone8a9c582016-12-18 15:37:20 +0000222 spin_unlock_irq(&engine->timeline->lock);
Chris Wilson05235c52016-07-20 09:21:08 +0100223
224 /* We know the GPU must have read the request to have
225 * sent us the seqno + interrupt, so use the position
226 * of tail of the request to update the last known position
227 * of the GPU head.
228 *
229 * Note this requires that we are always called in request
230 * completion order.
231 */
Chris Wilson675d9ad2016-08-04 07:52:36 +0100232 list_del(&request->ring_link);
Chris Wilson1dae2df2016-08-02 22:50:19 +0100233 request->ring->last_retired_head = request->postfix;
Chris Wilson43020552016-11-15 16:46:20 +0000234 if (!--request->i915->gt.active_requests) {
235 GEM_BUG_ON(!request->i915->gt.awake);
236 mod_delayed_work(request->i915->wq,
237 &request->i915->gt.idle_work,
238 msecs_to_jiffies(100));
239 }
Chris Wilson05235c52016-07-20 09:21:08 +0100240
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100241 /* Walk through the active list, calling retire on each. This allows
242 * objects to track their GPU activity and mark themselves as idle
243 * when their *last* active request is completed (updating state
244 * tracking lists for eviction, active references for GEM, etc).
245 *
246 * As the ->retire() may free the node, we decouple it first and
247 * pass along the auxiliary information (to avoid dereferencing
248 * the node after the callback).
249 */
250 list_for_each_entry_safe(active, next, &request->active_list, link) {
251 /* In microbenchmarks or focusing upon time inside the kernel,
252 * we may spend an inordinate amount of time simply handling
253 * the retirement of requests and processing their callbacks.
254 * Of which, this loop itself is particularly hot due to the
255 * cache misses when jumping around the list of i915_gem_active.
256 * So we try to keep this loop as streamlined as possible and
257 * also prefetch the next i915_gem_active to try and hide
258 * the likely cache miss.
259 */
260 prefetchw(next);
261
262 INIT_LIST_HEAD(&active->link);
Chris Wilson0eafec62016-08-04 16:32:41 +0100263 RCU_INIT_POINTER(active->request, NULL);
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100264
265 active->retire(active, request);
266 }
267
Chris Wilson05235c52016-07-20 09:21:08 +0100268 i915_gem_request_remove_from_client(request);
269
Mika Kuoppalae5e1fc42016-11-16 17:20:31 +0200270 /* Retirement decays the ban score as it is a sign of ctx progress */
Mika Kuoppalabc1d53c2016-11-16 17:20:34 +0200271 if (request->ctx->ban_score > 0)
272 request->ctx->ban_score--;
Mika Kuoppalae5e1fc42016-11-16 17:20:31 +0200273
Chris Wilsone8a9c582016-12-18 15:37:20 +0000274 /* The backing object for the context is done after switching to the
275 * *next* context. Therefore we cannot retire the previous context until
276 * the next context has already started running. However, since we
277 * cannot take the required locks at i915_gem_request_submit() we
278 * defer the unpinning of the active context to now, retirement of
279 * the subsequent request.
280 */
281 if (engine->last_retired_context)
282 engine->context_unpin(engine, engine->last_retired_context);
283 engine->last_retired_context = request->ctx;
Chris Wilsond07f0e52016-10-28 13:58:44 +0100284
285 dma_fence_signal(&request->fence);
Chris Wilson52e54202016-11-14 20:41:02 +0000286
287 i915_priotree_fini(request->i915, &request->priotree);
Chris Wilsone8a261e2016-07-20 13:31:49 +0100288 i915_gem_request_put(request);
Chris Wilson05235c52016-07-20 09:21:08 +0100289}
290
291void i915_gem_request_retire_upto(struct drm_i915_gem_request *req)
292{
293 struct intel_engine_cs *engine = req->engine;
294 struct drm_i915_gem_request *tmp;
295
296 lockdep_assert_held(&req->i915->drm.struct_mutex);
Chris Wilson4ffd6e02016-11-25 13:17:15 +0000297 GEM_BUG_ON(!i915_gem_request_completed(req));
298
Chris Wilsone95433c2016-10-28 13:58:27 +0100299 if (list_empty(&req->link))
300 return;
Chris Wilson05235c52016-07-20 09:21:08 +0100301
302 do {
Chris Wilson73cb9702016-10-28 13:58:46 +0100303 tmp = list_first_entry(&engine->timeline->requests,
Chris Wilsonefdf7c02016-08-04 07:52:33 +0100304 typeof(*tmp), link);
Chris Wilson05235c52016-07-20 09:21:08 +0100305
306 i915_gem_request_retire(tmp);
307 } while (tmp != req);
Chris Wilson05235c52016-07-20 09:21:08 +0100308}
309
Chris Wilson8af29b02016-09-09 14:11:47 +0100310static int i915_gem_check_wedge(struct drm_i915_private *dev_priv)
Chris Wilson05235c52016-07-20 09:21:08 +0100311{
Chris Wilson8af29b02016-09-09 14:11:47 +0100312 struct i915_gpu_error *error = &dev_priv->gpu_error;
313
314 if (i915_terminally_wedged(error))
Chris Wilson05235c52016-07-20 09:21:08 +0100315 return -EIO;
316
Chris Wilson8af29b02016-09-09 14:11:47 +0100317 if (i915_reset_in_progress(error)) {
Chris Wilson05235c52016-07-20 09:21:08 +0100318 /* Non-interruptible callers can't handle -EAGAIN, hence return
319 * -EIO unconditionally for these.
320 */
Chris Wilson8af29b02016-09-09 14:11:47 +0100321 if (!dev_priv->mm.interruptible)
Chris Wilson05235c52016-07-20 09:21:08 +0100322 return -EIO;
323
324 return -EAGAIN;
325 }
326
327 return 0;
328}
329
Chris Wilson85e17f52016-10-28 13:58:53 +0100330static int i915_gem_init_global_seqno(struct drm_i915_private *i915, u32 seqno)
Chris Wilson05235c52016-07-20 09:21:08 +0100331{
Chris Wilson85e17f52016-10-28 13:58:53 +0100332 struct i915_gem_timeline *timeline = &i915->gt.global_timeline;
Chris Wilson05235c52016-07-20 09:21:08 +0100333 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +0530334 enum intel_engine_id id;
Chris Wilson05235c52016-07-20 09:21:08 +0100335 int ret;
336
337 /* Carefully retire all requests without writing to the rings */
Chris Wilson85e17f52016-10-28 13:58:53 +0100338 ret = i915_gem_wait_for_idle(i915,
Chris Wilson73cb9702016-10-28 13:58:46 +0100339 I915_WAIT_INTERRUPTIBLE |
340 I915_WAIT_LOCKED);
341 if (ret)
342 return ret;
343
Chris Wilson85e17f52016-10-28 13:58:53 +0100344 i915_gem_retire_requests(i915);
Chris Wilson28176ef2016-10-28 13:58:56 +0100345 GEM_BUG_ON(i915->gt.active_requests > 1);
Chris Wilson05235c52016-07-20 09:21:08 +0100346
347 /* If the seqno wraps around, we need to clear the breadcrumb rbtree */
Joonas Lahtinen4c266ed2016-11-24 14:47:49 +0000348 if (!i915_seqno_passed(seqno, atomic_read(&timeline->seqno))) {
Chris Wilson6a5d1db2016-11-08 14:37:19 +0000349 while (intel_breadcrumbs_busy(i915))
350 cond_resched(); /* spin until threads are complete */
Chris Wilson05235c52016-07-20 09:21:08 +0100351 }
Joonas Lahtinen4c266ed2016-11-24 14:47:49 +0000352 atomic_set(&timeline->seqno, seqno);
Chris Wilson05235c52016-07-20 09:21:08 +0100353
354 /* Finally reset hw state */
Chris Wilson85e17f52016-10-28 13:58:53 +0100355 for_each_engine(engine, i915, id)
Chris Wilson73cb9702016-10-28 13:58:46 +0100356 intel_engine_init_global_seqno(engine, seqno);
Chris Wilson05235c52016-07-20 09:21:08 +0100357
Chris Wilson85e17f52016-10-28 13:58:53 +0100358 list_for_each_entry(timeline, &i915->gt.timelines, link) {
359 for_each_engine(engine, i915, id) {
360 struct intel_timeline *tl = &timeline->engine[id];
361
362 memset(tl->sync_seqno, 0, sizeof(tl->sync_seqno));
363 }
364 }
365
Chris Wilson05235c52016-07-20 09:21:08 +0100366 return 0;
367}
368
Chris Wilson73cb9702016-10-28 13:58:46 +0100369int i915_gem_set_global_seqno(struct drm_device *dev, u32 seqno)
Chris Wilson05235c52016-07-20 09:21:08 +0100370{
371 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilson05235c52016-07-20 09:21:08 +0100372
Chris Wilson4c7d62c2016-10-28 13:58:32 +0100373 lockdep_assert_held(&dev_priv->drm.struct_mutex);
374
Chris Wilson05235c52016-07-20 09:21:08 +0100375 if (seqno == 0)
376 return -EINVAL;
377
378 /* HWS page needs to be set less than what we
379 * will inject to ring
380 */
Chris Wilson28176ef2016-10-28 13:58:56 +0100381 return i915_gem_init_global_seqno(dev_priv, seqno - 1);
382}
Chris Wilson05235c52016-07-20 09:21:08 +0100383
Chris Wilson28176ef2016-10-28 13:58:56 +0100384static int reserve_global_seqno(struct drm_i915_private *i915)
385{
386 u32 active_requests = ++i915->gt.active_requests;
Joonas Lahtinen4c266ed2016-11-24 14:47:49 +0000387 u32 seqno = atomic_read(&i915->gt.global_timeline.seqno);
Chris Wilson28176ef2016-10-28 13:58:56 +0100388 int ret;
389
390 /* Reservation is fine until we need to wrap around */
Joonas Lahtinen4c266ed2016-11-24 14:47:49 +0000391 if (likely(seqno + active_requests > seqno))
Chris Wilson28176ef2016-10-28 13:58:56 +0100392 return 0;
393
394 ret = i915_gem_init_global_seqno(i915, 0);
395 if (ret) {
396 i915->gt.active_requests--;
397 return ret;
398 }
399
Chris Wilson05235c52016-07-20 09:21:08 +0100400 return 0;
401}
402
Chris Wilson80b204b2016-10-28 13:58:58 +0100403static u32 __timeline_get_seqno(struct i915_gem_timeline *tl)
404{
Joonas Lahtinen4c266ed2016-11-24 14:47:49 +0000405 /* seqno only incremented under a mutex */
406 return ++tl->seqno.counter;
Chris Wilson80b204b2016-10-28 13:58:58 +0100407}
408
Chris Wilson28176ef2016-10-28 13:58:56 +0100409static u32 timeline_get_seqno(struct i915_gem_timeline *tl)
Chris Wilson05235c52016-07-20 09:21:08 +0100410{
Joonas Lahtinen4c266ed2016-11-24 14:47:49 +0000411 return atomic_inc_return(&tl->seqno);
Chris Wilson05235c52016-07-20 09:21:08 +0100412}
413
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000414void __i915_gem_request_submit(struct drm_i915_gem_request *request)
Chris Wilson5590af32016-09-09 14:11:54 +0100415{
Chris Wilson73cb9702016-10-28 13:58:46 +0100416 struct intel_engine_cs *engine = request->engine;
Chris Wilsonf2d13292016-10-28 13:58:57 +0100417 struct intel_timeline *timeline;
418 u32 seqno;
Chris Wilson5590af32016-09-09 14:11:54 +0100419
Chris Wilson80b204b2016-10-28 13:58:58 +0100420 /* Transfer from per-context onto the global per-engine timeline */
421 timeline = engine->timeline;
422 GEM_BUG_ON(timeline == request->timeline);
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000423 assert_spin_locked(&timeline->lock);
Chris Wilson5590af32016-09-09 14:11:54 +0100424
Chris Wilson80b204b2016-10-28 13:58:58 +0100425 seqno = timeline_get_seqno(timeline->common);
Chris Wilsonf2d13292016-10-28 13:58:57 +0100426 GEM_BUG_ON(!seqno);
427 GEM_BUG_ON(i915_seqno_passed(intel_engine_get_seqno(engine), seqno));
428
429 GEM_BUG_ON(i915_seqno_passed(timeline->last_submitted_seqno, seqno));
430 request->previous_seqno = timeline->last_submitted_seqno;
431 timeline->last_submitted_seqno = seqno;
432
433 /* We may be recursing from the signal callback of another i915 fence */
434 spin_lock_nested(&request->lock, SINGLE_DEPTH_NESTING);
435 request->global_seqno = seqno;
436 if (test_bit(DMA_FENCE_FLAG_ENABLE_SIGNAL_BIT, &request->fence.flags))
437 intel_engine_enable_signaling(request);
438 spin_unlock(&request->lock);
439
440 GEM_BUG_ON(!request->global_seqno);
Chris Wilsoncaddfe72016-10-28 13:58:52 +0100441 engine->emit_breadcrumb(request,
442 request->ring->vaddr + request->postfix);
Chris Wilson5590af32016-09-09 14:11:54 +0100443
Chris Wilsonbb894852016-11-14 20:40:57 +0000444 spin_lock(&request->timeline->lock);
Chris Wilson80b204b2016-10-28 13:58:58 +0100445 list_move_tail(&request->link, &timeline->requests);
446 spin_unlock(&request->timeline->lock);
447
Chris Wilson23902e42016-11-14 20:40:58 +0000448 i915_sw_fence_commit(&request->execute);
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000449}
Chris Wilson23902e42016-11-14 20:40:58 +0000450
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000451void i915_gem_request_submit(struct drm_i915_gem_request *request)
452{
453 struct intel_engine_cs *engine = request->engine;
454 unsigned long flags;
455
456 /* Will be called from irq-context when using foreign fences. */
457 spin_lock_irqsave(&engine->timeline->lock, flags);
458
459 __i915_gem_request_submit(request);
460
461 spin_unlock_irqrestore(&engine->timeline->lock, flags);
462}
463
464static int __i915_sw_fence_call
465submit_notify(struct i915_sw_fence *fence, enum i915_sw_fence_notify state)
466{
Chris Wilson48bc2a42016-11-25 13:17:17 +0000467 struct drm_i915_gem_request *request =
468 container_of(fence, typeof(*request), submit);
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000469
Chris Wilson48bc2a42016-11-25 13:17:17 +0000470 switch (state) {
471 case FENCE_COMPLETE:
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000472 request->engine->submit_request(request);
Chris Wilson48bc2a42016-11-25 13:17:17 +0000473 break;
474
475 case FENCE_FREE:
476 i915_gem_request_put(request);
477 break;
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000478 }
Chris Wilson80b204b2016-10-28 13:58:58 +0100479
Chris Wilson5590af32016-09-09 14:11:54 +0100480 return NOTIFY_DONE;
481}
482
Chris Wilson23902e42016-11-14 20:40:58 +0000483static int __i915_sw_fence_call
484execute_notify(struct i915_sw_fence *fence, enum i915_sw_fence_notify state)
485{
Chris Wilson48bc2a42016-11-25 13:17:17 +0000486 struct drm_i915_gem_request *request =
487 container_of(fence, typeof(*request), execute);
488
489 switch (state) {
490 case FENCE_COMPLETE:
491 break;
492
493 case FENCE_FREE:
494 i915_gem_request_put(request);
495 break;
496 }
497
Chris Wilson23902e42016-11-14 20:40:58 +0000498 return NOTIFY_DONE;
499}
500
Chris Wilson8e637172016-08-02 22:50:26 +0100501/**
502 * i915_gem_request_alloc - allocate a request structure
503 *
504 * @engine: engine that we wish to issue the request on.
505 * @ctx: context that the request will be associated with.
506 * This can be NULL if the request is not directly related to
507 * any specific user context, in which case this function will
508 * choose an appropriate context to use.
509 *
510 * Returns a pointer to the allocated request if successful,
511 * or an error code if not.
512 */
513struct drm_i915_gem_request *
514i915_gem_request_alloc(struct intel_engine_cs *engine,
515 struct i915_gem_context *ctx)
Chris Wilson05235c52016-07-20 09:21:08 +0100516{
517 struct drm_i915_private *dev_priv = engine->i915;
Chris Wilson05235c52016-07-20 09:21:08 +0100518 struct drm_i915_gem_request *req;
519 int ret;
520
Chris Wilson28176ef2016-10-28 13:58:56 +0100521 lockdep_assert_held(&dev_priv->drm.struct_mutex);
522
Chris Wilson05235c52016-07-20 09:21:08 +0100523 /* ABI: Before userspace accesses the GPU (e.g. execbuffer), report
524 * EIO if the GPU is already wedged, or EAGAIN to drop the struct_mutex
525 * and restart.
526 */
Chris Wilson8af29b02016-09-09 14:11:47 +0100527 ret = i915_gem_check_wedge(dev_priv);
Chris Wilson05235c52016-07-20 09:21:08 +0100528 if (ret)
Chris Wilson8e637172016-08-02 22:50:26 +0100529 return ERR_PTR(ret);
Chris Wilson05235c52016-07-20 09:21:08 +0100530
Chris Wilsone8a9c582016-12-18 15:37:20 +0000531 /* Pinning the contexts may generate requests in order to acquire
532 * GGTT space, so do this first before we reserve a seqno for
533 * ourselves.
534 */
535 ret = engine->context_pin(engine, ctx);
Chris Wilson28176ef2016-10-28 13:58:56 +0100536 if (ret)
537 return ERR_PTR(ret);
538
Chris Wilsone8a9c582016-12-18 15:37:20 +0000539 ret = reserve_global_seqno(dev_priv);
540 if (ret)
541 goto err_unpin;
542
Chris Wilson9b5f4e52016-07-20 09:21:09 +0100543 /* Move the oldest request to the slab-cache (if not in use!) */
Chris Wilson73cb9702016-10-28 13:58:46 +0100544 req = list_first_entry_or_null(&engine->timeline->requests,
Chris Wilsonefdf7c02016-08-04 07:52:33 +0100545 typeof(*req), link);
Chris Wilson80b204b2016-10-28 13:58:58 +0100546 if (req && __i915_gem_request_completed(req))
Chris Wilson2a1d7752016-07-26 12:01:51 +0100547 i915_gem_request_retire(req);
Chris Wilson9b5f4e52016-07-20 09:21:09 +0100548
Chris Wilson5a198b82016-08-09 09:23:34 +0100549 /* Beware: Dragons be flying overhead.
550 *
551 * We use RCU to look up requests in flight. The lookups may
552 * race with the request being allocated from the slab freelist.
553 * That is the request we are writing to here, may be in the process
Chris Wilson1426f712016-08-09 17:03:22 +0100554 * of being read by __i915_gem_active_get_rcu(). As such,
Chris Wilson5a198b82016-08-09 09:23:34 +0100555 * we have to be very careful when overwriting the contents. During
556 * the RCU lookup, we change chase the request->engine pointer,
Chris Wilson65e47602016-10-28 13:58:49 +0100557 * read the request->global_seqno and increment the reference count.
Chris Wilson5a198b82016-08-09 09:23:34 +0100558 *
559 * The reference count is incremented atomically. If it is zero,
560 * the lookup knows the request is unallocated and complete. Otherwise,
561 * it is either still in use, or has been reallocated and reset
Chris Wilsonf54d1862016-10-25 13:00:45 +0100562 * with dma_fence_init(). This increment is safe for release as we
563 * check that the request we have a reference to and matches the active
Chris Wilson5a198b82016-08-09 09:23:34 +0100564 * request.
565 *
566 * Before we increment the refcount, we chase the request->engine
567 * pointer. We must not call kmem_cache_zalloc() or else we set
568 * that pointer to NULL and cause a crash during the lookup. If
569 * we see the request is completed (based on the value of the
570 * old engine and seqno), the lookup is complete and reports NULL.
571 * If we decide the request is not completed (new engine or seqno),
572 * then we grab a reference and double check that it is still the
573 * active request - which it won't be and restart the lookup.
574 *
575 * Do not use kmem_cache_zalloc() here!
576 */
577 req = kmem_cache_alloc(dev_priv->requests, GFP_KERNEL);
Chris Wilson28176ef2016-10-28 13:58:56 +0100578 if (!req) {
579 ret = -ENOMEM;
580 goto err_unreserve;
581 }
Chris Wilson05235c52016-07-20 09:21:08 +0100582
Chris Wilson80b204b2016-10-28 13:58:58 +0100583 req->timeline = i915_gem_context_lookup_timeline(ctx, engine);
584 GEM_BUG_ON(req->timeline == engine->timeline);
Chris Wilson73cb9702016-10-28 13:58:46 +0100585
Chris Wilson04769652016-07-20 09:21:11 +0100586 spin_lock_init(&req->lock);
Chris Wilsonf54d1862016-10-25 13:00:45 +0100587 dma_fence_init(&req->fence,
588 &i915_fence_ops,
589 &req->lock,
Chris Wilson73cb9702016-10-28 13:58:46 +0100590 req->timeline->fence_context,
Chris Wilson80b204b2016-10-28 13:58:58 +0100591 __timeline_get_seqno(req->timeline->common));
Chris Wilson04769652016-07-20 09:21:11 +0100592
Chris Wilson48bc2a42016-11-25 13:17:17 +0000593 /* We bump the ref for the fence chain */
594 i915_sw_fence_init(&i915_gem_request_get(req)->submit, submit_notify);
595 i915_sw_fence_init(&i915_gem_request_get(req)->execute, execute_notify);
596
Chris Wilson23902e42016-11-14 20:40:58 +0000597 /* Ensure that the execute fence completes after the submit fence -
598 * as we complete the execute fence from within the submit fence
599 * callback, its completion would otherwise be visible first.
600 */
601 i915_sw_fence_await_sw_fence(&req->execute, &req->submit, &req->execq);
Chris Wilson5590af32016-09-09 14:11:54 +0100602
Chris Wilson52e54202016-11-14 20:41:02 +0000603 i915_priotree_init(&req->priotree);
604
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100605 INIT_LIST_HEAD(&req->active_list);
Chris Wilson05235c52016-07-20 09:21:08 +0100606 req->i915 = dev_priv;
607 req->engine = engine;
Chris Wilsone8a9c582016-12-18 15:37:20 +0000608 req->ctx = ctx;
Chris Wilson05235c52016-07-20 09:21:08 +0100609
Chris Wilson5a198b82016-08-09 09:23:34 +0100610 /* No zalloc, must clear what we need by hand */
Chris Wilsonf2d13292016-10-28 13:58:57 +0100611 req->global_seqno = 0;
Chris Wilson5a198b82016-08-09 09:23:34 +0100612 req->file_priv = NULL;
Chris Wilson058d88c2016-08-15 10:49:06 +0100613 req->batch = NULL;
Chris Wilson5a198b82016-08-09 09:23:34 +0100614
Chris Wilson05235c52016-07-20 09:21:08 +0100615 /*
616 * Reserve space in the ring buffer for all the commands required to
617 * eventually emit this request. This is to guarantee that the
618 * i915_add_request() call can't fail. Note that the reserve may need
619 * to be redone if the request is not actually submitted straight
620 * away, e.g. because a GPU scheduler has deferred it.
621 */
622 req->reserved_space = MIN_SPACE_FOR_ADD_REQUEST;
Chris Wilson98f29e82016-10-28 13:58:51 +0100623 GEM_BUG_ON(req->reserved_space < engine->emit_breadcrumb_sz);
Chris Wilson05235c52016-07-20 09:21:08 +0100624
Chris Wilsonf73e7392016-12-18 15:37:24 +0000625 ret = engine->request_alloc(req);
Chris Wilson05235c52016-07-20 09:21:08 +0100626 if (ret)
627 goto err_ctx;
628
Chris Wilsond0454462016-08-15 10:48:40 +0100629 /* Record the position of the start of the request so that
630 * should we detect the updated seqno part-way through the
631 * GPU processing the request, we never over-estimate the
632 * position of the head.
633 */
634 req->head = req->ring->tail;
635
Chris Wilson8e637172016-08-02 22:50:26 +0100636 return req;
Chris Wilson05235c52016-07-20 09:21:08 +0100637
638err_ctx:
Chris Wilson1618bdb2016-11-25 13:17:16 +0000639 /* Make sure we didn't add ourselves to external state before freeing */
640 GEM_BUG_ON(!list_empty(&req->active_list));
641 GEM_BUG_ON(!list_empty(&req->priotree.signalers_list));
642 GEM_BUG_ON(!list_empty(&req->priotree.waiters_list));
643
Chris Wilson05235c52016-07-20 09:21:08 +0100644 kmem_cache_free(dev_priv->requests, req);
Chris Wilson28176ef2016-10-28 13:58:56 +0100645err_unreserve:
646 dev_priv->gt.active_requests--;
Chris Wilsone8a9c582016-12-18 15:37:20 +0000647err_unpin:
648 engine->context_unpin(engine, ctx);
Chris Wilson8e637172016-08-02 22:50:26 +0100649 return ERR_PTR(ret);
Chris Wilson05235c52016-07-20 09:21:08 +0100650}
651
Chris Wilsona2bc4692016-09-09 14:11:56 +0100652static int
653i915_gem_request_await_request(struct drm_i915_gem_request *to,
654 struct drm_i915_gem_request *from)
655{
Chris Wilson85e17f52016-10-28 13:58:53 +0100656 int ret;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100657
658 GEM_BUG_ON(to == from);
659
Chris Wilson52e54202016-11-14 20:41:02 +0000660 if (to->engine->schedule) {
661 ret = i915_priotree_add_dependency(to->i915,
662 &to->priotree,
663 &from->priotree);
664 if (ret < 0)
665 return ret;
666 }
667
Chris Wilson73cb9702016-10-28 13:58:46 +0100668 if (to->timeline == from->timeline)
Chris Wilsona2bc4692016-09-09 14:11:56 +0100669 return 0;
670
Chris Wilson73cb9702016-10-28 13:58:46 +0100671 if (to->engine == from->engine) {
672 ret = i915_sw_fence_await_sw_fence_gfp(&to->submit,
673 &from->submit,
674 GFP_KERNEL);
675 return ret < 0 ? ret : 0;
676 }
677
Chris Wilson65e47602016-10-28 13:58:49 +0100678 if (!from->global_seqno) {
679 ret = i915_sw_fence_await_dma_fence(&to->submit,
680 &from->fence, 0,
681 GFP_KERNEL);
682 return ret < 0 ? ret : 0;
683 }
684
Chris Wilson85e17f52016-10-28 13:58:53 +0100685 if (from->global_seqno <= to->timeline->sync_seqno[from->engine->id])
Chris Wilsona2bc4692016-09-09 14:11:56 +0100686 return 0;
687
688 trace_i915_gem_ring_sync_to(to, from);
689 if (!i915.semaphores) {
Chris Wilson0a046a02016-09-09 14:12:00 +0100690 if (!i915_spin_request(from, TASK_INTERRUPTIBLE, 2)) {
691 ret = i915_sw_fence_await_dma_fence(&to->submit,
692 &from->fence, 0,
693 GFP_KERNEL);
694 if (ret < 0)
695 return ret;
696 }
Chris Wilsona2bc4692016-09-09 14:11:56 +0100697 } else {
698 ret = to->engine->semaphore.sync_to(to, from);
699 if (ret)
700 return ret;
701 }
702
Chris Wilson85e17f52016-10-28 13:58:53 +0100703 to->timeline->sync_seqno[from->engine->id] = from->global_seqno;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100704 return 0;
705}
706
Chris Wilsonb52992c2016-10-28 13:58:24 +0100707int
708i915_gem_request_await_dma_fence(struct drm_i915_gem_request *req,
709 struct dma_fence *fence)
710{
711 struct dma_fence_array *array;
712 int ret;
713 int i;
714
715 if (test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &fence->flags))
716 return 0;
717
718 if (dma_fence_is_i915(fence))
719 return i915_gem_request_await_request(req, to_request(fence));
720
721 if (!dma_fence_is_array(fence)) {
722 ret = i915_sw_fence_await_dma_fence(&req->submit,
723 fence, I915_FENCE_TIMEOUT,
724 GFP_KERNEL);
725 return ret < 0 ? ret : 0;
726 }
727
728 /* Note that if the fence-array was created in signal-on-any mode,
729 * we should *not* decompose it into its individual fences. However,
730 * we don't currently store which mode the fence-array is operating
731 * in. Fortunately, the only user of signal-on-any is private to
732 * amdgpu and we should not see any incoming fence-array from
733 * sync-file being in signal-on-any mode.
734 */
735
736 array = to_dma_fence_array(fence);
737 for (i = 0; i < array->num_fences; i++) {
738 struct dma_fence *child = array->fences[i];
739
740 if (dma_fence_is_i915(child))
741 ret = i915_gem_request_await_request(req,
742 to_request(child));
743 else
744 ret = i915_sw_fence_await_dma_fence(&req->submit,
745 child, I915_FENCE_TIMEOUT,
746 GFP_KERNEL);
747 if (ret < 0)
748 return ret;
749 }
750
751 return 0;
752}
753
Chris Wilsona2bc4692016-09-09 14:11:56 +0100754/**
755 * i915_gem_request_await_object - set this request to (async) wait upon a bo
756 *
757 * @to: request we are wishing to use
758 * @obj: object which may be in use on another ring.
759 *
760 * This code is meant to abstract object synchronization with the GPU.
761 * Conceptually we serialise writes between engines inside the GPU.
762 * We only allow one engine to write into a buffer at any time, but
763 * multiple readers. To ensure each has a coherent view of memory, we must:
764 *
765 * - If there is an outstanding write request to the object, the new
766 * request must wait for it to complete (either CPU or in hw, requests
767 * on the same ring will be naturally ordered).
768 *
769 * - If we are a write request (pending_write_domain is set), the new
770 * request must wait for outstanding read requests to complete.
771 *
772 * Returns 0 if successful, else propagates up the lower layer error.
773 */
774int
775i915_gem_request_await_object(struct drm_i915_gem_request *to,
776 struct drm_i915_gem_object *obj,
777 bool write)
778{
Chris Wilsond07f0e52016-10-28 13:58:44 +0100779 struct dma_fence *excl;
780 int ret = 0;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100781
782 if (write) {
Chris Wilsond07f0e52016-10-28 13:58:44 +0100783 struct dma_fence **shared;
784 unsigned int count, i;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100785
Chris Wilsond07f0e52016-10-28 13:58:44 +0100786 ret = reservation_object_get_fences_rcu(obj->resv,
787 &excl, &count, &shared);
Chris Wilsona2bc4692016-09-09 14:11:56 +0100788 if (ret)
789 return ret;
Chris Wilsond07f0e52016-10-28 13:58:44 +0100790
791 for (i = 0; i < count; i++) {
792 ret = i915_gem_request_await_dma_fence(to, shared[i]);
793 if (ret)
794 break;
795
796 dma_fence_put(shared[i]);
797 }
798
799 for (; i < count; i++)
800 dma_fence_put(shared[i]);
801 kfree(shared);
802 } else {
803 excl = reservation_object_get_excl_rcu(obj->resv);
Chris Wilsona2bc4692016-09-09 14:11:56 +0100804 }
805
Chris Wilsond07f0e52016-10-28 13:58:44 +0100806 if (excl) {
807 if (ret == 0)
808 ret = i915_gem_request_await_dma_fence(to, excl);
809
810 dma_fence_put(excl);
811 }
812
813 return ret;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100814}
815
Chris Wilson05235c52016-07-20 09:21:08 +0100816static void i915_gem_mark_busy(const struct intel_engine_cs *engine)
817{
818 struct drm_i915_private *dev_priv = engine->i915;
819
Chris Wilson05235c52016-07-20 09:21:08 +0100820 if (dev_priv->gt.awake)
821 return;
822
Chris Wilson43020552016-11-15 16:46:20 +0000823 GEM_BUG_ON(!dev_priv->gt.active_requests);
824
Chris Wilson05235c52016-07-20 09:21:08 +0100825 intel_runtime_pm_get_noresume(dev_priv);
826 dev_priv->gt.awake = true;
827
Chris Wilson54b4f682016-07-21 21:16:19 +0100828 intel_enable_gt_powersave(dev_priv);
Chris Wilson05235c52016-07-20 09:21:08 +0100829 i915_update_gfx_val(dev_priv);
830 if (INTEL_GEN(dev_priv) >= 6)
831 gen6_rps_busy(dev_priv);
832
833 queue_delayed_work(dev_priv->wq,
834 &dev_priv->gt.retire_work,
835 round_jiffies_up_relative(HZ));
836}
837
838/*
839 * NB: This function is not allowed to fail. Doing so would mean the the
840 * request is not being tracked for completion but the work itself is
841 * going to happen on the hardware. This would be a Bad Thing(tm).
842 */
Chris Wilson17f298cf2016-08-10 13:41:46 +0100843void __i915_add_request(struct drm_i915_gem_request *request, bool flush_caches)
Chris Wilson05235c52016-07-20 09:21:08 +0100844{
Chris Wilson95b2ab52016-08-15 10:48:46 +0100845 struct intel_engine_cs *engine = request->engine;
846 struct intel_ring *ring = request->ring;
Chris Wilson73cb9702016-10-28 13:58:46 +0100847 struct intel_timeline *timeline = request->timeline;
Chris Wilson0a046a02016-09-09 14:12:00 +0100848 struct drm_i915_gem_request *prev;
Chris Wilsoncaddfe72016-10-28 13:58:52 +0100849 int err;
Chris Wilson05235c52016-07-20 09:21:08 +0100850
Chris Wilson4c7d62c2016-10-28 13:58:32 +0100851 lockdep_assert_held(&request->i915->drm.struct_mutex);
Chris Wilson0f25dff2016-09-09 14:11:55 +0100852 trace_i915_gem_request_add(request);
853
Chris Wilson05235c52016-07-20 09:21:08 +0100854 /*
855 * To ensure that this call will not fail, space for its emissions
856 * should already have been reserved in the ring buffer. Let the ring
857 * know that it is time to use that space up.
858 */
Chris Wilson05235c52016-07-20 09:21:08 +0100859 request->reserved_space = 0;
860
861 /*
862 * Emit any outstanding flushes - execbuf can fail to emit the flush
863 * after having emitted the batchbuffer command. Hence we need to fix
864 * things up similar to emitting the lazy request. The difference here
865 * is that the flush _must_ happen before the next request, no matter
866 * what.
867 */
868 if (flush_caches) {
Chris Wilsoncaddfe72016-10-28 13:58:52 +0100869 err = engine->emit_flush(request, EMIT_FLUSH);
Chris Wilsonc7fe7d22016-08-02 22:50:24 +0100870
Chris Wilson05235c52016-07-20 09:21:08 +0100871 /* Not allowed to fail! */
Chris Wilsoncaddfe72016-10-28 13:58:52 +0100872 WARN(err, "engine->emit_flush() failed: %d!\n", err);
Chris Wilson05235c52016-07-20 09:21:08 +0100873 }
874
Chris Wilsond0454462016-08-15 10:48:40 +0100875 /* Record the position of the start of the breadcrumb so that
Chris Wilson05235c52016-07-20 09:21:08 +0100876 * should we detect the updated seqno part-way through the
877 * GPU processing the request, we never over-estimate the
Chris Wilsond0454462016-08-15 10:48:40 +0100878 * position of the ring's HEAD.
Chris Wilson05235c52016-07-20 09:21:08 +0100879 */
Chris Wilsoncaddfe72016-10-28 13:58:52 +0100880 err = intel_ring_begin(request, engine->emit_breadcrumb_sz);
881 GEM_BUG_ON(err);
Chris Wilsonba76d912016-08-02 22:50:28 +0100882 request->postfix = ring->tail;
Chris Wilsoncaddfe72016-10-28 13:58:52 +0100883 ring->tail += engine->emit_breadcrumb_sz * sizeof(u32);
Chris Wilson05235c52016-07-20 09:21:08 +0100884
Chris Wilson0f25dff2016-09-09 14:11:55 +0100885 /* Seal the request and mark it as pending execution. Note that
886 * we may inspect this state, without holding any locks, during
887 * hangcheck. Hence we apply the barrier to ensure that we do not
888 * see a more recent value in the hws than we are tracking.
889 */
Chris Wilson0a046a02016-09-09 14:12:00 +0100890
Chris Wilson73cb9702016-10-28 13:58:46 +0100891 prev = i915_gem_active_raw(&timeline->last_request,
Chris Wilson0a046a02016-09-09 14:12:00 +0100892 &request->i915->drm.struct_mutex);
Chris Wilson52e54202016-11-14 20:41:02 +0000893 if (prev) {
Chris Wilson0a046a02016-09-09 14:12:00 +0100894 i915_sw_fence_await_sw_fence(&request->submit, &prev->submit,
895 &request->submitq);
Chris Wilson52e54202016-11-14 20:41:02 +0000896 if (engine->schedule)
897 __i915_priotree_add_dependency(&request->priotree,
898 &prev->priotree,
899 &request->dep,
900 0);
901 }
Chris Wilson0a046a02016-09-09 14:12:00 +0100902
Chris Wilson80b204b2016-10-28 13:58:58 +0100903 spin_lock_irq(&timeline->lock);
Chris Wilsonf2d13292016-10-28 13:58:57 +0100904 list_add_tail(&request->link, &timeline->requests);
Chris Wilson80b204b2016-10-28 13:58:58 +0100905 spin_unlock_irq(&timeline->lock);
Chris Wilson28176ef2016-10-28 13:58:56 +0100906
Chris Wilson80b204b2016-10-28 13:58:58 +0100907 GEM_BUG_ON(i915_seqno_passed(timeline->last_submitted_seqno,
908 request->fence.seqno));
909
910 timeline->last_submitted_seqno = request->fence.seqno;
Chris Wilson73cb9702016-10-28 13:58:46 +0100911 i915_gem_active_set(&timeline->last_request, request);
Chris Wilsonf2d13292016-10-28 13:58:57 +0100912
Chris Wilson0f25dff2016-09-09 14:11:55 +0100913 list_add_tail(&request->ring_link, &ring->request_list);
Chris Wilsonf2d13292016-10-28 13:58:57 +0100914 request->emitted_jiffies = jiffies;
Chris Wilson0f25dff2016-09-09 14:11:55 +0100915
Chris Wilson05235c52016-07-20 09:21:08 +0100916 i915_gem_mark_busy(engine);
Chris Wilson5590af32016-09-09 14:11:54 +0100917
Chris Wilson0de91362016-11-14 20:41:01 +0000918 /* Let the backend know a new request has arrived that may need
919 * to adjust the existing execution schedule due to a high priority
920 * request - i.e. we may want to preempt the current request in order
921 * to run a high priority dependency chain *before* we can execute this
922 * request.
923 *
924 * This is called before the request is ready to run so that we can
925 * decide whether to preempt the entire chain so that it is ready to
926 * run at the earliest possible convenience.
927 */
928 if (engine->schedule)
Chris Wilson9f792eb2016-11-14 20:41:04 +0000929 engine->schedule(request, request->ctx->priority);
Chris Wilson0de91362016-11-14 20:41:01 +0000930
Chris Wilson5590af32016-09-09 14:11:54 +0100931 local_bh_disable();
932 i915_sw_fence_commit(&request->submit);
933 local_bh_enable(); /* Kick the execlists tasklet if just scheduled */
Chris Wilson05235c52016-07-20 09:21:08 +0100934}
935
Chris Wilson221fe792016-09-09 14:11:51 +0100936static void reset_wait_queue(wait_queue_head_t *q, wait_queue_t *wait)
937{
938 unsigned long flags;
939
940 spin_lock_irqsave(&q->lock, flags);
941 if (list_empty(&wait->task_list))
942 __add_wait_queue(q, wait);
943 spin_unlock_irqrestore(&q->lock, flags);
944}
945
Chris Wilson05235c52016-07-20 09:21:08 +0100946static unsigned long local_clock_us(unsigned int *cpu)
947{
948 unsigned long t;
949
950 /* Cheaply and approximately convert from nanoseconds to microseconds.
951 * The result and subsequent calculations are also defined in the same
952 * approximate microseconds units. The principal source of timing
953 * error here is from the simple truncation.
954 *
955 * Note that local_clock() is only defined wrt to the current CPU;
956 * the comparisons are no longer valid if we switch CPUs. Instead of
957 * blocking preemption for the entire busywait, we can detect the CPU
958 * switch and use that as indicator of system load and a reason to
959 * stop busywaiting, see busywait_stop().
960 */
961 *cpu = get_cpu();
962 t = local_clock() >> 10;
963 put_cpu();
964
965 return t;
966}
967
968static bool busywait_stop(unsigned long timeout, unsigned int cpu)
969{
970 unsigned int this_cpu;
971
972 if (time_after(local_clock_us(&this_cpu), timeout))
973 return true;
974
975 return this_cpu != cpu;
976}
977
978bool __i915_spin_request(const struct drm_i915_gem_request *req,
979 int state, unsigned long timeout_us)
980{
981 unsigned int cpu;
982
983 /* When waiting for high frequency requests, e.g. during synchronous
984 * rendering split between the CPU and GPU, the finite amount of time
985 * required to set up the irq and wait upon it limits the response
986 * rate. By busywaiting on the request completion for a short while we
987 * can service the high frequency waits as quick as possible. However,
988 * if it is a slow request, we want to sleep as quickly as possible.
989 * The tradeoff between waiting and sleeping is roughly the time it
990 * takes to sleep on a request, on the order of a microsecond.
991 */
992
993 timeout_us += local_clock_us(&cpu);
994 do {
Chris Wilson65e47602016-10-28 13:58:49 +0100995 if (__i915_gem_request_completed(req))
Chris Wilson05235c52016-07-20 09:21:08 +0100996 return true;
997
998 if (signal_pending_state(state, current))
999 break;
1000
1001 if (busywait_stop(timeout_us, cpu))
1002 break;
1003
Christian Borntraegerf2f09a42016-10-25 11:03:14 +02001004 cpu_relax();
Chris Wilson05235c52016-07-20 09:21:08 +01001005 } while (!need_resched());
1006
1007 return false;
1008}
1009
Chris Wilson4680816b2016-10-28 13:58:48 +01001010static long
Chris Wilson23902e42016-11-14 20:40:58 +00001011__i915_request_wait_for_execute(struct drm_i915_gem_request *request,
1012 unsigned int flags,
1013 long timeout)
Chris Wilson4680816b2016-10-28 13:58:48 +01001014{
1015 const int state = flags & I915_WAIT_INTERRUPTIBLE ?
1016 TASK_INTERRUPTIBLE : TASK_UNINTERRUPTIBLE;
1017 wait_queue_head_t *q = &request->i915->gpu_error.wait_queue;
1018 DEFINE_WAIT(reset);
1019 DEFINE_WAIT(wait);
1020
1021 if (flags & I915_WAIT_LOCKED)
1022 add_wait_queue(q, &reset);
1023
1024 do {
Chris Wilson23902e42016-11-14 20:40:58 +00001025 prepare_to_wait(&request->execute.wait, &wait, state);
Chris Wilson4680816b2016-10-28 13:58:48 +01001026
Chris Wilson23902e42016-11-14 20:40:58 +00001027 if (i915_sw_fence_done(&request->execute))
Chris Wilson4680816b2016-10-28 13:58:48 +01001028 break;
1029
1030 if (flags & I915_WAIT_LOCKED &&
1031 i915_reset_in_progress(&request->i915->gpu_error)) {
1032 __set_current_state(TASK_RUNNING);
1033 i915_reset(request->i915);
1034 reset_wait_queue(q, &reset);
1035 continue;
1036 }
1037
1038 if (signal_pending_state(state, current)) {
1039 timeout = -ERESTARTSYS;
1040 break;
1041 }
1042
1043 timeout = io_schedule_timeout(timeout);
1044 } while (timeout);
Chris Wilson23902e42016-11-14 20:40:58 +00001045 finish_wait(&request->execute.wait, &wait);
Chris Wilson4680816b2016-10-28 13:58:48 +01001046
1047 if (flags & I915_WAIT_LOCKED)
1048 remove_wait_queue(q, &reset);
1049
1050 return timeout;
1051}
1052
Chris Wilson05235c52016-07-20 09:21:08 +01001053/**
Chris Wilson776f3232016-08-04 07:52:40 +01001054 * i915_wait_request - wait until execution of request has finished
Chris Wilsone95433c2016-10-28 13:58:27 +01001055 * @req: the request to wait upon
Chris Wilsonea746f32016-09-09 14:11:49 +01001056 * @flags: how to wait
Chris Wilsone95433c2016-10-28 13:58:27 +01001057 * @timeout: how long to wait in jiffies
Chris Wilson05235c52016-07-20 09:21:08 +01001058 *
Chris Wilsone95433c2016-10-28 13:58:27 +01001059 * i915_wait_request() waits for the request to be completed, for a
1060 * maximum of @timeout jiffies (with MAX_SCHEDULE_TIMEOUT implying an
1061 * unbounded wait).
Chris Wilson05235c52016-07-20 09:21:08 +01001062 *
Chris Wilsone95433c2016-10-28 13:58:27 +01001063 * If the caller holds the struct_mutex, the caller must pass I915_WAIT_LOCKED
1064 * in via the flags, and vice versa if the struct_mutex is not held, the caller
1065 * must not specify that the wait is locked.
1066 *
1067 * Returns the remaining time (in jiffies) if the request completed, which may
1068 * be zero or -ETIME if the request is unfinished after the timeout expires.
1069 * May return -EINTR is called with I915_WAIT_INTERRUPTIBLE and a signal is
1070 * pending before the request completes.
Chris Wilson05235c52016-07-20 09:21:08 +01001071 */
Chris Wilsone95433c2016-10-28 13:58:27 +01001072long i915_wait_request(struct drm_i915_gem_request *req,
1073 unsigned int flags,
1074 long timeout)
Chris Wilson05235c52016-07-20 09:21:08 +01001075{
Chris Wilsonea746f32016-09-09 14:11:49 +01001076 const int state = flags & I915_WAIT_INTERRUPTIBLE ?
1077 TASK_INTERRUPTIBLE : TASK_UNINTERRUPTIBLE;
Chris Wilson05235c52016-07-20 09:21:08 +01001078 DEFINE_WAIT(reset);
1079 struct intel_wait wait;
Chris Wilson05235c52016-07-20 09:21:08 +01001080
1081 might_sleep();
Chris Wilson22dd3bb2016-09-09 14:11:50 +01001082#if IS_ENABLED(CONFIG_LOCKDEP)
Chris Wilsone95433c2016-10-28 13:58:27 +01001083 GEM_BUG_ON(debug_locks &&
1084 !!lockdep_is_held(&req->i915->drm.struct_mutex) !=
Chris Wilson22dd3bb2016-09-09 14:11:50 +01001085 !!(flags & I915_WAIT_LOCKED));
1086#endif
Chris Wilsone95433c2016-10-28 13:58:27 +01001087 GEM_BUG_ON(timeout < 0);
Chris Wilson05235c52016-07-20 09:21:08 +01001088
Chris Wilson05235c52016-07-20 09:21:08 +01001089 if (i915_gem_request_completed(req))
Chris Wilsone95433c2016-10-28 13:58:27 +01001090 return timeout;
Chris Wilson05235c52016-07-20 09:21:08 +01001091
Chris Wilsone95433c2016-10-28 13:58:27 +01001092 if (!timeout)
1093 return -ETIME;
Chris Wilson05235c52016-07-20 09:21:08 +01001094
1095 trace_i915_gem_request_wait_begin(req);
1096
Chris Wilson23902e42016-11-14 20:40:58 +00001097 if (!i915_sw_fence_done(&req->execute)) {
1098 timeout = __i915_request_wait_for_execute(req, flags, timeout);
Chris Wilson4680816b2016-10-28 13:58:48 +01001099 if (timeout < 0)
1100 goto complete;
1101
Chris Wilson23902e42016-11-14 20:40:58 +00001102 GEM_BUG_ON(!i915_sw_fence_done(&req->execute));
Chris Wilson4680816b2016-10-28 13:58:48 +01001103 }
Chris Wilson23902e42016-11-14 20:40:58 +00001104 GEM_BUG_ON(!i915_sw_fence_done(&req->submit));
Chris Wilson65e47602016-10-28 13:58:49 +01001105 GEM_BUG_ON(!req->global_seqno);
Chris Wilson4680816b2016-10-28 13:58:48 +01001106
Daniel Vetter437c3082016-08-05 18:11:24 +02001107 /* Optimistic short spin before touching IRQs */
Chris Wilson05235c52016-07-20 09:21:08 +01001108 if (i915_spin_request(req, state, 5))
1109 goto complete;
1110
1111 set_current_state(state);
Chris Wilson22dd3bb2016-09-09 14:11:50 +01001112 if (flags & I915_WAIT_LOCKED)
1113 add_wait_queue(&req->i915->gpu_error.wait_queue, &reset);
Chris Wilson05235c52016-07-20 09:21:08 +01001114
Chris Wilson65e47602016-10-28 13:58:49 +01001115 intel_wait_init(&wait, req->global_seqno);
Chris Wilson05235c52016-07-20 09:21:08 +01001116 if (intel_engine_add_wait(req->engine, &wait))
1117 /* In order to check that we haven't missed the interrupt
1118 * as we enabled it, we need to kick ourselves to do a
1119 * coherent check on the seqno before we sleep.
1120 */
1121 goto wakeup;
1122
1123 for (;;) {
1124 if (signal_pending_state(state, current)) {
Chris Wilsone95433c2016-10-28 13:58:27 +01001125 timeout = -ERESTARTSYS;
Chris Wilson05235c52016-07-20 09:21:08 +01001126 break;
1127 }
1128
Chris Wilsone95433c2016-10-28 13:58:27 +01001129 if (!timeout) {
1130 timeout = -ETIME;
Chris Wilson05235c52016-07-20 09:21:08 +01001131 break;
1132 }
1133
Chris Wilsone95433c2016-10-28 13:58:27 +01001134 timeout = io_schedule_timeout(timeout);
1135
Chris Wilson05235c52016-07-20 09:21:08 +01001136 if (intel_wait_complete(&wait))
1137 break;
1138
1139 set_current_state(state);
1140
1141wakeup:
1142 /* Carefully check if the request is complete, giving time
1143 * for the seqno to be visible following the interrupt.
1144 * We also have to check in case we are kicked by the GPU
1145 * reset in order to drop the struct_mutex.
1146 */
1147 if (__i915_request_irq_complete(req))
1148 break;
1149
Chris Wilson221fe792016-09-09 14:11:51 +01001150 /* If the GPU is hung, and we hold the lock, reset the GPU
1151 * and then check for completion. On a full reset, the engine's
1152 * HW seqno will be advanced passed us and we are complete.
1153 * If we do a partial reset, we have to wait for the GPU to
1154 * resume and update the breadcrumb.
1155 *
1156 * If we don't hold the mutex, we can just wait for the worker
1157 * to come along and update the breadcrumb (either directly
1158 * itself, or indirectly by recovering the GPU).
1159 */
1160 if (flags & I915_WAIT_LOCKED &&
1161 i915_reset_in_progress(&req->i915->gpu_error)) {
1162 __set_current_state(TASK_RUNNING);
1163 i915_reset(req->i915);
1164 reset_wait_queue(&req->i915->gpu_error.wait_queue,
1165 &reset);
1166 continue;
1167 }
1168
Chris Wilson05235c52016-07-20 09:21:08 +01001169 /* Only spin if we know the GPU is processing this request */
1170 if (i915_spin_request(req, state, 2))
1171 break;
1172 }
Chris Wilson05235c52016-07-20 09:21:08 +01001173
1174 intel_engine_remove_wait(req->engine, &wait);
Chris Wilson22dd3bb2016-09-09 14:11:50 +01001175 if (flags & I915_WAIT_LOCKED)
1176 remove_wait_queue(&req->i915->gpu_error.wait_queue, &reset);
Chris Wilson05235c52016-07-20 09:21:08 +01001177 __set_current_state(TASK_RUNNING);
Chris Wilson22dd3bb2016-09-09 14:11:50 +01001178
Chris Wilson05235c52016-07-20 09:21:08 +01001179complete:
1180 trace_i915_gem_request_wait_end(req);
1181
Chris Wilsone95433c2016-10-28 13:58:27 +01001182 return timeout;
Chris Wilson05235c52016-07-20 09:21:08 +01001183}
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001184
Chris Wilson28176ef2016-10-28 13:58:56 +01001185static void engine_retire_requests(struct intel_engine_cs *engine)
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001186{
1187 struct drm_i915_gem_request *request, *next;
1188
Chris Wilson73cb9702016-10-28 13:58:46 +01001189 list_for_each_entry_safe(request, next,
1190 &engine->timeline->requests, link) {
Chris Wilson80b204b2016-10-28 13:58:58 +01001191 if (!__i915_gem_request_completed(request))
Chris Wilson28176ef2016-10-28 13:58:56 +01001192 return;
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001193
1194 i915_gem_request_retire(request);
1195 }
1196}
1197
1198void i915_gem_retire_requests(struct drm_i915_private *dev_priv)
1199{
1200 struct intel_engine_cs *engine;
Chris Wilson28176ef2016-10-28 13:58:56 +01001201 enum intel_engine_id id;
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001202
1203 lockdep_assert_held(&dev_priv->drm.struct_mutex);
1204
Chris Wilson28176ef2016-10-28 13:58:56 +01001205 if (!dev_priv->gt.active_requests)
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001206 return;
1207
Chris Wilson28176ef2016-10-28 13:58:56 +01001208 for_each_engine(engine, dev_priv, id)
1209 engine_retire_requests(engine);
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001210}