blob: b68935d056c50480c50388c76fcbd42163944f4e [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>
Ingo Molnare6017572017-02-01 16:36:40 +010027#include <linux/sched.h>
28#include <linux/sched/clock.h>
Ingo Molnarf361bf42017-02-03 23:47:37 +010029#include <linux/sched/signal.h>
Chris Wilsonfa545cb2016-08-04 07:52:35 +010030
Chris Wilson05235c52016-07-20 09:21:08 +010031#include "i915_drv.h"
32
Chris Wilsonf54d1862016-10-25 13:00:45 +010033static const char *i915_fence_get_driver_name(struct dma_fence *fence)
Chris Wilson04769652016-07-20 09:21:11 +010034{
35 return "i915";
36}
37
Chris Wilsonf54d1862016-10-25 13:00:45 +010038static const char *i915_fence_get_timeline_name(struct dma_fence *fence)
Chris Wilson04769652016-07-20 09:21:11 +010039{
Chris Wilson05506b52017-03-30 12:16:14 +010040 /* The timeline struct (as part of the ppgtt underneath a context)
41 * may be freed when the request is no longer in use by the GPU.
42 * We could extend the life of a context to beyond that of all
43 * fences, possibly keeping the hw resource around indefinitely,
44 * or we just give them a false name. Since
45 * dma_fence_ops.get_timeline_name is a debug feature, the occasional
46 * lie seems justifiable.
47 */
48 if (test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &fence->flags))
49 return "signaled";
50
Chris Wilson73cb9702016-10-28 13:58:46 +010051 return to_request(fence)->timeline->common->name;
Chris Wilson04769652016-07-20 09:21:11 +010052}
53
Chris Wilsonf54d1862016-10-25 13:00:45 +010054static bool i915_fence_signaled(struct dma_fence *fence)
Chris Wilson04769652016-07-20 09:21:11 +010055{
56 return i915_gem_request_completed(to_request(fence));
57}
58
Chris Wilsonf54d1862016-10-25 13:00:45 +010059static bool i915_fence_enable_signaling(struct dma_fence *fence)
Chris Wilson04769652016-07-20 09:21:11 +010060{
61 if (i915_fence_signaled(fence))
62 return false;
63
Chris Wilsonf7b02a52017-04-26 09:06:59 +010064 intel_engine_enable_signaling(to_request(fence), true);
Chris Wilson04769652016-07-20 09:21:11 +010065 return true;
66}
67
Chris Wilsonf54d1862016-10-25 13:00:45 +010068static signed long i915_fence_wait(struct dma_fence *fence,
Chris Wilson04769652016-07-20 09:21:11 +010069 bool interruptible,
Chris Wilsone95433c2016-10-28 13:58:27 +010070 signed long timeout)
Chris Wilson04769652016-07-20 09:21:11 +010071{
Chris Wilsone95433c2016-10-28 13:58:27 +010072 return i915_wait_request(to_request(fence), interruptible, timeout);
Chris Wilson04769652016-07-20 09:21:11 +010073}
74
Chris Wilsonf54d1862016-10-25 13:00:45 +010075static void i915_fence_release(struct dma_fence *fence)
Chris Wilson04769652016-07-20 09:21:11 +010076{
77 struct drm_i915_gem_request *req = to_request(fence);
78
Chris Wilsonfc158402016-11-25 13:17:18 +000079 /* The request is put onto a RCU freelist (i.e. the address
80 * is immediately reused), mark the fences as being freed now.
81 * Otherwise the debugobjects for the fences are only marked as
82 * freed when the slab cache itself is freed, and so we would get
83 * caught trying to reuse dead objects.
84 */
85 i915_sw_fence_fini(&req->submit);
Chris Wilsonfc158402016-11-25 13:17:18 +000086
Chris Wilson04769652016-07-20 09:21:11 +010087 kmem_cache_free(req->i915->requests, req);
88}
89
Chris Wilsonf54d1862016-10-25 13:00:45 +010090const struct dma_fence_ops i915_fence_ops = {
Chris Wilson04769652016-07-20 09:21:11 +010091 .get_driver_name = i915_fence_get_driver_name,
92 .get_timeline_name = i915_fence_get_timeline_name,
93 .enable_signaling = i915_fence_enable_signaling,
94 .signaled = i915_fence_signaled,
95 .wait = i915_fence_wait,
96 .release = i915_fence_release,
Chris Wilson04769652016-07-20 09:21:11 +010097};
98
Chris Wilson05235c52016-07-20 09:21:08 +010099static inline void
100i915_gem_request_remove_from_client(struct drm_i915_gem_request *request)
101{
Chris Wilsonc8659ef2017-03-02 12:25:25 +0000102 struct drm_i915_file_private *file_priv;
Chris Wilson05235c52016-07-20 09:21:08 +0100103
Chris Wilsonc8659ef2017-03-02 12:25:25 +0000104 file_priv = request->file_priv;
Chris Wilson05235c52016-07-20 09:21:08 +0100105 if (!file_priv)
106 return;
107
108 spin_lock(&file_priv->mm.lock);
Chris Wilsonc8659ef2017-03-02 12:25:25 +0000109 if (request->file_priv) {
110 list_del(&request->client_link);
111 request->file_priv = NULL;
112 }
Chris Wilson05235c52016-07-20 09:21:08 +0100113 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 Wilson12d31732017-02-23 07:44:09 +0000192static int reset_all_global_seqno(struct drm_i915_private *i915, u32 seqno)
193{
Chris Wilson12d31732017-02-23 07:44:09 +0000194 struct intel_engine_cs *engine;
195 enum intel_engine_id id;
196 int ret;
197
198 /* Carefully retire all requests without writing to the rings */
199 ret = i915_gem_wait_for_idle(i915,
200 I915_WAIT_INTERRUPTIBLE |
201 I915_WAIT_LOCKED);
202 if (ret)
203 return ret;
204
Chris Wilson12d31732017-02-23 07:44:09 +0000205 /* If the seqno wraps around, we need to clear the breadcrumb rbtree */
206 for_each_engine(engine, i915, id) {
Chris Wilsonae351be2017-03-30 15:50:41 +0100207 struct i915_gem_timeline *timeline;
208 struct intel_timeline *tl = engine->timeline;
Chris Wilson12d31732017-02-23 07:44:09 +0000209
210 if (!i915_seqno_passed(seqno, tl->seqno)) {
211 /* spin until threads are complete */
212 while (intel_breadcrumbs_busy(engine))
213 cond_resched();
214 }
215
216 /* Finally reset hw state */
Chris Wilson12d31732017-02-23 07:44:09 +0000217 intel_engine_init_global_seqno(engine, seqno);
Chris Wilson2ca9faa2017-04-05 16:30:54 +0100218 tl->seqno = seqno;
Chris Wilson12d31732017-02-23 07:44:09 +0000219
Chris Wilsonae351be2017-03-30 15:50:41 +0100220 list_for_each_entry(timeline, &i915->gt.timelines, link)
221 memset(timeline->engine[id].sync_seqno, 0,
222 sizeof(timeline->engine[id].sync_seqno));
Chris Wilson12d31732017-02-23 07:44:09 +0000223 }
224
225 return 0;
226}
227
228int i915_gem_set_global_seqno(struct drm_device *dev, u32 seqno)
229{
230 struct drm_i915_private *dev_priv = to_i915(dev);
231
232 lockdep_assert_held(&dev_priv->drm.struct_mutex);
233
234 if (seqno == 0)
235 return -EINVAL;
236
237 /* HWS page needs to be set less than what we
238 * will inject to ring
239 */
240 return reset_all_global_seqno(dev_priv, seqno - 1);
241}
242
243static int reserve_seqno(struct intel_engine_cs *engine)
244{
245 u32 active = ++engine->timeline->inflight_seqnos;
246 u32 seqno = engine->timeline->seqno;
247 int ret;
248
249 /* Reservation is fine until we need to wrap around */
250 if (likely(!add_overflows(seqno, active)))
251 return 0;
252
253 ret = reset_all_global_seqno(engine->i915, 0);
254 if (ret) {
255 engine->timeline->inflight_seqnos--;
256 return ret;
257 }
258
259 return 0;
260}
261
Chris Wilson9b6586a2017-02-23 07:44:08 +0000262static void unreserve_seqno(struct intel_engine_cs *engine)
263{
264 GEM_BUG_ON(!engine->timeline->inflight_seqnos);
265 engine->timeline->inflight_seqnos--;
266}
267
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100268void i915_gem_retire_noop(struct i915_gem_active *active,
269 struct drm_i915_gem_request *request)
270{
271 /* Space left intentionally blank */
272}
273
Chris Wilsoncbb60b42017-04-06 18:00:28 +0100274static void advance_ring(struct drm_i915_gem_request *request)
275{
276 unsigned int tail;
277
278 /* We know the GPU must have read the request to have
279 * sent us the seqno + interrupt, so use the position
280 * of tail of the request to update the last known position
281 * of the GPU head.
282 *
283 * Note this requires that we are always called in request
284 * completion order.
285 */
Chris Wilsone6ba9992017-04-25 14:00:49 +0100286 if (list_is_last(&request->ring_link, &request->ring->request_list)) {
287 /* We may race here with execlists resubmitting this request
288 * as we retire it. The resubmission will move the ring->tail
289 * forwards (to request->wa_tail). We either read the
290 * current value that was written to hw, or the value that
291 * is just about to be. Either works, if we miss the last two
292 * noops - they are safe to be replayed on a reset.
293 */
294 tail = READ_ONCE(request->ring->tail);
295 } else {
Chris Wilsoncbb60b42017-04-06 18:00:28 +0100296 tail = request->postfix;
Chris Wilsone6ba9992017-04-25 14:00:49 +0100297 }
Chris Wilsoncbb60b42017-04-06 18:00:28 +0100298 list_del(&request->ring_link);
299
300 request->ring->head = tail;
301}
302
Chris Wilsonb0fd47a2017-04-15 10:39:02 +0100303static void free_capture_list(struct drm_i915_gem_request *request)
304{
305 struct i915_gem_capture_list *capture;
306
307 capture = request->capture_list;
308 while (capture) {
309 struct i915_gem_capture_list *next = capture->next;
310
311 kfree(capture);
312 capture = next;
313 }
314}
315
Chris Wilson05235c52016-07-20 09:21:08 +0100316static void i915_gem_request_retire(struct drm_i915_gem_request *request)
317{
Chris Wilsone8a9c582016-12-18 15:37:20 +0000318 struct intel_engine_cs *engine = request->engine;
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100319 struct i915_gem_active *active, *next;
320
Chris Wilson4c7d62c2016-10-28 13:58:32 +0100321 lockdep_assert_held(&request->i915->drm.struct_mutex);
Chris Wilson48bc2a42016-11-25 13:17:17 +0000322 GEM_BUG_ON(!i915_sw_fence_signaled(&request->submit));
Chris Wilson4c7d62c2016-10-28 13:58:32 +0100323 GEM_BUG_ON(!i915_gem_request_completed(request));
Chris Wilson43020552016-11-15 16:46:20 +0000324 GEM_BUG_ON(!request->i915->gt.active_requests);
Chris Wilson4c7d62c2016-10-28 13:58:32 +0100325
Chris Wilson05235c52016-07-20 09:21:08 +0100326 trace_i915_gem_request_retire(request);
Chris Wilson80b204b2016-10-28 13:58:58 +0100327
Chris Wilsone8a9c582016-12-18 15:37:20 +0000328 spin_lock_irq(&engine->timeline->lock);
Chris Wilsone95433c2016-10-28 13:58:27 +0100329 list_del_init(&request->link);
Chris Wilsone8a9c582016-12-18 15:37:20 +0000330 spin_unlock_irq(&engine->timeline->lock);
Chris Wilson05235c52016-07-20 09:21:08 +0100331
Chris Wilson43020552016-11-15 16:46:20 +0000332 if (!--request->i915->gt.active_requests) {
333 GEM_BUG_ON(!request->i915->gt.awake);
334 mod_delayed_work(request->i915->wq,
335 &request->i915->gt.idle_work,
336 msecs_to_jiffies(100));
337 }
Chris Wilson9b6586a2017-02-23 07:44:08 +0000338 unreserve_seqno(request->engine);
Chris Wilsoncbb60b42017-04-06 18:00:28 +0100339 advance_ring(request);
Chris Wilson05235c52016-07-20 09:21:08 +0100340
Chris Wilsonb0fd47a2017-04-15 10:39:02 +0100341 free_capture_list(request);
342
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100343 /* Walk through the active list, calling retire on each. This allows
344 * objects to track their GPU activity and mark themselves as idle
345 * when their *last* active request is completed (updating state
346 * tracking lists for eviction, active references for GEM, etc).
347 *
348 * As the ->retire() may free the node, we decouple it first and
349 * pass along the auxiliary information (to avoid dereferencing
350 * the node after the callback).
351 */
352 list_for_each_entry_safe(active, next, &request->active_list, link) {
353 /* In microbenchmarks or focusing upon time inside the kernel,
354 * we may spend an inordinate amount of time simply handling
355 * the retirement of requests and processing their callbacks.
356 * Of which, this loop itself is particularly hot due to the
357 * cache misses when jumping around the list of i915_gem_active.
358 * So we try to keep this loop as streamlined as possible and
359 * also prefetch the next i915_gem_active to try and hide
360 * the likely cache miss.
361 */
362 prefetchw(next);
363
364 INIT_LIST_HEAD(&active->link);
Chris Wilson0eafec62016-08-04 16:32:41 +0100365 RCU_INIT_POINTER(active->request, NULL);
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100366
367 active->retire(active, request);
368 }
369
Chris Wilson05235c52016-07-20 09:21:08 +0100370 i915_gem_request_remove_from_client(request);
371
Mika Kuoppalae5e1fc42016-11-16 17:20:31 +0200372 /* Retirement decays the ban score as it is a sign of ctx progress */
Mika Kuoppalabc1d53c2016-11-16 17:20:34 +0200373 if (request->ctx->ban_score > 0)
374 request->ctx->ban_score--;
Mika Kuoppalae5e1fc42016-11-16 17:20:31 +0200375
Chris Wilsone8a9c582016-12-18 15:37:20 +0000376 /* The backing object for the context is done after switching to the
377 * *next* context. Therefore we cannot retire the previous context until
378 * the next context has already started running. However, since we
379 * cannot take the required locks at i915_gem_request_submit() we
380 * defer the unpinning of the active context to now, retirement of
381 * the subsequent request.
382 */
383 if (engine->last_retired_context)
384 engine->context_unpin(engine, engine->last_retired_context);
385 engine->last_retired_context = request->ctx;
Chris Wilsond07f0e52016-10-28 13:58:44 +0100386
387 dma_fence_signal(&request->fence);
Chris Wilson52e54202016-11-14 20:41:02 +0000388
389 i915_priotree_fini(request->i915, &request->priotree);
Chris Wilsone8a261e2016-07-20 13:31:49 +0100390 i915_gem_request_put(request);
Chris Wilson05235c52016-07-20 09:21:08 +0100391}
392
393void i915_gem_request_retire_upto(struct drm_i915_gem_request *req)
394{
395 struct intel_engine_cs *engine = req->engine;
396 struct drm_i915_gem_request *tmp;
397
398 lockdep_assert_held(&req->i915->drm.struct_mutex);
Chris Wilson4ffd6e02016-11-25 13:17:15 +0000399 GEM_BUG_ON(!i915_gem_request_completed(req));
400
Chris Wilsone95433c2016-10-28 13:58:27 +0100401 if (list_empty(&req->link))
402 return;
Chris Wilson05235c52016-07-20 09:21:08 +0100403
404 do {
Chris Wilson73cb9702016-10-28 13:58:46 +0100405 tmp = list_first_entry(&engine->timeline->requests,
Chris Wilsonefdf7c02016-08-04 07:52:33 +0100406 typeof(*tmp), link);
Chris Wilson05235c52016-07-20 09:21:08 +0100407
408 i915_gem_request_retire(tmp);
409 } while (tmp != req);
Chris Wilson05235c52016-07-20 09:21:08 +0100410}
411
Chris Wilson9b6586a2017-02-23 07:44:08 +0000412static u32 timeline_get_seqno(struct intel_timeline *tl)
Chris Wilson05235c52016-07-20 09:21:08 +0100413{
Chris Wilson9b6586a2017-02-23 07:44:08 +0000414 return ++tl->seqno;
Chris Wilson05235c52016-07-20 09:21:08 +0100415}
416
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000417void __i915_gem_request_submit(struct drm_i915_gem_request *request)
Chris Wilson5590af32016-09-09 14:11:54 +0100418{
Chris Wilson73cb9702016-10-28 13:58:46 +0100419 struct intel_engine_cs *engine = request->engine;
Chris Wilsonf2d13292016-10-28 13:58:57 +0100420 struct intel_timeline *timeline;
421 u32 seqno;
Chris Wilson5590af32016-09-09 14:11:54 +0100422
Chris Wilsone60a8702017-03-02 11:51:30 +0000423 GEM_BUG_ON(!irqs_disabled());
Chris Wilson67520412017-03-02 13:28:01 +0000424 lockdep_assert_held(&engine->timeline->lock);
Chris Wilsone60a8702017-03-02 11:51:30 +0000425
Chris Wilsonfe497892017-02-23 07:44:13 +0000426 trace_i915_gem_request_execute(request);
427
Chris Wilson80b204b2016-10-28 13:58:58 +0100428 /* Transfer from per-context onto the global per-engine timeline */
429 timeline = engine->timeline;
430 GEM_BUG_ON(timeline == request->timeline);
Chris Wilson5590af32016-09-09 14:11:54 +0100431
Chris Wilson9b6586a2017-02-23 07:44:08 +0000432 seqno = timeline_get_seqno(timeline);
Chris Wilsonf2d13292016-10-28 13:58:57 +0100433 GEM_BUG_ON(!seqno);
434 GEM_BUG_ON(i915_seqno_passed(intel_engine_get_seqno(engine), seqno));
435
Chris Wilsonf2d13292016-10-28 13:58:57 +0100436 /* We may be recursing from the signal callback of another i915 fence */
437 spin_lock_nested(&request->lock, SINGLE_DEPTH_NESTING);
438 request->global_seqno = seqno;
439 if (test_bit(DMA_FENCE_FLAG_ENABLE_SIGNAL_BIT, &request->fence.flags))
Chris Wilsonf7b02a52017-04-26 09:06:59 +0100440 intel_engine_enable_signaling(request, false);
Chris Wilsonf2d13292016-10-28 13:58:57 +0100441 spin_unlock(&request->lock);
442
Chris Wilsoncaddfe72016-10-28 13:58:52 +0100443 engine->emit_breadcrumb(request,
444 request->ring->vaddr + request->postfix);
Chris Wilson5590af32016-09-09 14:11:54 +0100445
Chris Wilsonbb894852016-11-14 20:40:57 +0000446 spin_lock(&request->timeline->lock);
Chris Wilson80b204b2016-10-28 13:58:58 +0100447 list_move_tail(&request->link, &timeline->requests);
448 spin_unlock(&request->timeline->lock);
449
Chris Wilsonfe497892017-02-23 07:44:13 +0000450 wake_up_all(&request->execute);
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000451}
Chris Wilson23902e42016-11-14 20:40:58 +0000452
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000453void i915_gem_request_submit(struct drm_i915_gem_request *request)
454{
455 struct intel_engine_cs *engine = request->engine;
456 unsigned long flags;
457
458 /* Will be called from irq-context when using foreign fences. */
459 spin_lock_irqsave(&engine->timeline->lock, flags);
460
461 __i915_gem_request_submit(request);
462
463 spin_unlock_irqrestore(&engine->timeline->lock, flags);
464}
465
Chris Wilsond6a22892017-02-23 07:44:17 +0000466void __i915_gem_request_unsubmit(struct drm_i915_gem_request *request)
467{
468 struct intel_engine_cs *engine = request->engine;
469 struct intel_timeline *timeline;
470
Chris Wilsone60a8702017-03-02 11:51:30 +0000471 GEM_BUG_ON(!irqs_disabled());
Chris Wilson67520412017-03-02 13:28:01 +0000472 lockdep_assert_held(&engine->timeline->lock);
Chris Wilsond6a22892017-02-23 07:44:17 +0000473
474 /* Only unwind in reverse order, required so that the per-context list
475 * is kept in seqno/ring order.
476 */
477 GEM_BUG_ON(request->global_seqno != engine->timeline->seqno);
478 engine->timeline->seqno--;
479
480 /* We may be recursing from the signal callback of another i915 fence */
481 spin_lock_nested(&request->lock, SINGLE_DEPTH_NESTING);
482 request->global_seqno = 0;
483 if (test_bit(DMA_FENCE_FLAG_ENABLE_SIGNAL_BIT, &request->fence.flags))
484 intel_engine_cancel_signaling(request);
485 spin_unlock(&request->lock);
486
487 /* Transfer back from the global per-engine timeline to per-context */
488 timeline = request->timeline;
489 GEM_BUG_ON(timeline == engine->timeline);
490
491 spin_lock(&timeline->lock);
492 list_move(&request->link, &timeline->requests);
493 spin_unlock(&timeline->lock);
494
495 /* We don't need to wake_up any waiters on request->execute, they
496 * will get woken by any other event or us re-adding this request
497 * to the engine timeline (__i915_gem_request_submit()). The waiters
498 * should be quite adapt at finding that the request now has a new
499 * global_seqno to the one they went to sleep on.
500 */
501}
502
503void i915_gem_request_unsubmit(struct drm_i915_gem_request *request)
504{
505 struct intel_engine_cs *engine = request->engine;
506 unsigned long flags;
507
508 /* Will be called from irq-context when using foreign fences. */
509 spin_lock_irqsave(&engine->timeline->lock, flags);
510
511 __i915_gem_request_unsubmit(request);
512
513 spin_unlock_irqrestore(&engine->timeline->lock, flags);
514}
515
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000516static int __i915_sw_fence_call
517submit_notify(struct i915_sw_fence *fence, enum i915_sw_fence_notify state)
518{
Chris Wilson48bc2a42016-11-25 13:17:17 +0000519 struct drm_i915_gem_request *request =
520 container_of(fence, typeof(*request), submit);
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000521
Chris Wilson48bc2a42016-11-25 13:17:17 +0000522 switch (state) {
523 case FENCE_COMPLETE:
Tvrtko Ursulin354d0362017-02-21 11:01:42 +0000524 trace_i915_gem_request_submit(request);
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000525 request->engine->submit_request(request);
Chris Wilson48bc2a42016-11-25 13:17:17 +0000526 break;
527
528 case FENCE_FREE:
529 i915_gem_request_put(request);
530 break;
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000531 }
Chris Wilson80b204b2016-10-28 13:58:58 +0100532
Chris Wilson5590af32016-09-09 14:11:54 +0100533 return NOTIFY_DONE;
534}
535
Chris Wilson8e637172016-08-02 22:50:26 +0100536/**
537 * i915_gem_request_alloc - allocate a request structure
538 *
539 * @engine: engine that we wish to issue the request on.
540 * @ctx: context that the request will be associated with.
541 * This can be NULL if the request is not directly related to
542 * any specific user context, in which case this function will
543 * choose an appropriate context to use.
544 *
545 * Returns a pointer to the allocated request if successful,
546 * or an error code if not.
547 */
548struct drm_i915_gem_request *
549i915_gem_request_alloc(struct intel_engine_cs *engine,
550 struct i915_gem_context *ctx)
Chris Wilson05235c52016-07-20 09:21:08 +0100551{
552 struct drm_i915_private *dev_priv = engine->i915;
Chris Wilson05235c52016-07-20 09:21:08 +0100553 struct drm_i915_gem_request *req;
554 int ret;
555
Chris Wilson28176ef2016-10-28 13:58:56 +0100556 lockdep_assert_held(&dev_priv->drm.struct_mutex);
557
Chris Wilson05235c52016-07-20 09:21:08 +0100558 /* ABI: Before userspace accesses the GPU (e.g. execbuffer), report
Chris Wilson6ffb7d02017-01-14 16:23:33 +0000559 * EIO if the GPU is already wedged.
Chris Wilson05235c52016-07-20 09:21:08 +0100560 */
Chris Wilson6ffb7d02017-01-14 16:23:33 +0000561 if (i915_terminally_wedged(&dev_priv->gpu_error))
562 return ERR_PTR(-EIO);
Chris Wilson05235c52016-07-20 09:21:08 +0100563
Chris Wilsone8a9c582016-12-18 15:37:20 +0000564 /* Pinning the contexts may generate requests in order to acquire
565 * GGTT space, so do this first before we reserve a seqno for
566 * ourselves.
567 */
568 ret = engine->context_pin(engine, ctx);
Chris Wilson28176ef2016-10-28 13:58:56 +0100569 if (ret)
570 return ERR_PTR(ret);
571
Chris Wilson9b6586a2017-02-23 07:44:08 +0000572 ret = reserve_seqno(engine);
Chris Wilsone8a9c582016-12-18 15:37:20 +0000573 if (ret)
574 goto err_unpin;
575
Chris Wilson9b5f4e52016-07-20 09:21:09 +0100576 /* Move the oldest request to the slab-cache (if not in use!) */
Chris Wilson73cb9702016-10-28 13:58:46 +0100577 req = list_first_entry_or_null(&engine->timeline->requests,
Chris Wilsonefdf7c02016-08-04 07:52:33 +0100578 typeof(*req), link);
Chris Wilson754c9fd2017-02-23 07:44:14 +0000579 if (req && i915_gem_request_completed(req))
Chris Wilson2a1d7752016-07-26 12:01:51 +0100580 i915_gem_request_retire(req);
Chris Wilson9b5f4e52016-07-20 09:21:09 +0100581
Chris Wilson5a198b82016-08-09 09:23:34 +0100582 /* Beware: Dragons be flying overhead.
583 *
584 * We use RCU to look up requests in flight. The lookups may
585 * race with the request being allocated from the slab freelist.
586 * That is the request we are writing to here, may be in the process
Chris Wilson1426f712016-08-09 17:03:22 +0100587 * of being read by __i915_gem_active_get_rcu(). As such,
Chris Wilson5a198b82016-08-09 09:23:34 +0100588 * we have to be very careful when overwriting the contents. During
589 * the RCU lookup, we change chase the request->engine pointer,
Chris Wilson65e47602016-10-28 13:58:49 +0100590 * read the request->global_seqno and increment the reference count.
Chris Wilson5a198b82016-08-09 09:23:34 +0100591 *
592 * The reference count is incremented atomically. If it is zero,
593 * the lookup knows the request is unallocated and complete. Otherwise,
594 * it is either still in use, or has been reallocated and reset
Chris Wilsonf54d1862016-10-25 13:00:45 +0100595 * with dma_fence_init(). This increment is safe for release as we
596 * check that the request we have a reference to and matches the active
Chris Wilson5a198b82016-08-09 09:23:34 +0100597 * request.
598 *
599 * Before we increment the refcount, we chase the request->engine
600 * pointer. We must not call kmem_cache_zalloc() or else we set
601 * that pointer to NULL and cause a crash during the lookup. If
602 * we see the request is completed (based on the value of the
603 * old engine and seqno), the lookup is complete and reports NULL.
604 * If we decide the request is not completed (new engine or seqno),
605 * then we grab a reference and double check that it is still the
606 * active request - which it won't be and restart the lookup.
607 *
608 * Do not use kmem_cache_zalloc() here!
609 */
610 req = kmem_cache_alloc(dev_priv->requests, GFP_KERNEL);
Chris Wilson28176ef2016-10-28 13:58:56 +0100611 if (!req) {
612 ret = -ENOMEM;
613 goto err_unreserve;
614 }
Chris Wilson05235c52016-07-20 09:21:08 +0100615
Chris Wilson80b204b2016-10-28 13:58:58 +0100616 req->timeline = i915_gem_context_lookup_timeline(ctx, engine);
617 GEM_BUG_ON(req->timeline == engine->timeline);
Chris Wilson73cb9702016-10-28 13:58:46 +0100618
Chris Wilson04769652016-07-20 09:21:11 +0100619 spin_lock_init(&req->lock);
Chris Wilsonf54d1862016-10-25 13:00:45 +0100620 dma_fence_init(&req->fence,
621 &i915_fence_ops,
622 &req->lock,
Chris Wilson73cb9702016-10-28 13:58:46 +0100623 req->timeline->fence_context,
Chris Wilson9b6586a2017-02-23 07:44:08 +0000624 timeline_get_seqno(req->timeline));
Chris Wilson04769652016-07-20 09:21:11 +0100625
Chris Wilson48bc2a42016-11-25 13:17:17 +0000626 /* We bump the ref for the fence chain */
627 i915_sw_fence_init(&i915_gem_request_get(req)->submit, submit_notify);
Chris Wilsonfe497892017-02-23 07:44:13 +0000628 init_waitqueue_head(&req->execute);
Chris Wilson5590af32016-09-09 14:11:54 +0100629
Chris Wilson52e54202016-11-14 20:41:02 +0000630 i915_priotree_init(&req->priotree);
631
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100632 INIT_LIST_HEAD(&req->active_list);
Chris Wilson05235c52016-07-20 09:21:08 +0100633 req->i915 = dev_priv;
634 req->engine = engine;
Chris Wilsone8a9c582016-12-18 15:37:20 +0000635 req->ctx = ctx;
Chris Wilson05235c52016-07-20 09:21:08 +0100636
Chris Wilson5a198b82016-08-09 09:23:34 +0100637 /* No zalloc, must clear what we need by hand */
Chris Wilsonf2d13292016-10-28 13:58:57 +0100638 req->global_seqno = 0;
Chris Wilson5a198b82016-08-09 09:23:34 +0100639 req->file_priv = NULL;
Chris Wilson058d88c2016-08-15 10:49:06 +0100640 req->batch = NULL;
Chris Wilsonb0fd47a2017-04-15 10:39:02 +0100641 req->capture_list = NULL;
Chris Wilson5a198b82016-08-09 09:23:34 +0100642
Chris Wilson05235c52016-07-20 09:21:08 +0100643 /*
644 * Reserve space in the ring buffer for all the commands required to
645 * eventually emit this request. This is to guarantee that the
646 * i915_add_request() call can't fail. Note that the reserve may need
647 * to be redone if the request is not actually submitted straight
648 * away, e.g. because a GPU scheduler has deferred it.
649 */
650 req->reserved_space = MIN_SPACE_FOR_ADD_REQUEST;
Chris Wilson98f29e82016-10-28 13:58:51 +0100651 GEM_BUG_ON(req->reserved_space < engine->emit_breadcrumb_sz);
Chris Wilson05235c52016-07-20 09:21:08 +0100652
Chris Wilsonf73e7392016-12-18 15:37:24 +0000653 ret = engine->request_alloc(req);
Chris Wilson05235c52016-07-20 09:21:08 +0100654 if (ret)
655 goto err_ctx;
656
Chris Wilsond0454462016-08-15 10:48:40 +0100657 /* Record the position of the start of the request so that
658 * should we detect the updated seqno part-way through the
659 * GPU processing the request, we never over-estimate the
660 * position of the head.
661 */
Chris Wilsone6ba9992017-04-25 14:00:49 +0100662 req->head = req->ring->emit;
Chris Wilsond0454462016-08-15 10:48:40 +0100663
Chris Wilson9b6586a2017-02-23 07:44:08 +0000664 /* Check that we didn't interrupt ourselves with a new request */
665 GEM_BUG_ON(req->timeline->seqno != req->fence.seqno);
Chris Wilson8e637172016-08-02 22:50:26 +0100666 return req;
Chris Wilson05235c52016-07-20 09:21:08 +0100667
668err_ctx:
Chris Wilson1618bdb2016-11-25 13:17:16 +0000669 /* Make sure we didn't add ourselves to external state before freeing */
670 GEM_BUG_ON(!list_empty(&req->active_list));
671 GEM_BUG_ON(!list_empty(&req->priotree.signalers_list));
672 GEM_BUG_ON(!list_empty(&req->priotree.waiters_list));
673
Chris Wilson05235c52016-07-20 09:21:08 +0100674 kmem_cache_free(dev_priv->requests, req);
Chris Wilson28176ef2016-10-28 13:58:56 +0100675err_unreserve:
Chris Wilson9b6586a2017-02-23 07:44:08 +0000676 unreserve_seqno(engine);
Chris Wilsone8a9c582016-12-18 15:37:20 +0000677err_unpin:
678 engine->context_unpin(engine, ctx);
Chris Wilson8e637172016-08-02 22:50:26 +0100679 return ERR_PTR(ret);
Chris Wilson05235c52016-07-20 09:21:08 +0100680}
681
Chris Wilsona2bc4692016-09-09 14:11:56 +0100682static int
683i915_gem_request_await_request(struct drm_i915_gem_request *to,
684 struct drm_i915_gem_request *from)
685{
Chris Wilson754c9fd2017-02-23 07:44:14 +0000686 u32 seqno;
Chris Wilson85e17f52016-10-28 13:58:53 +0100687 int ret;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100688
689 GEM_BUG_ON(to == from);
690
Chris Wilsonade0b0c2017-04-22 09:15:37 +0100691 if (i915_gem_request_completed(from))
692 return 0;
693
Chris Wilson52e54202016-11-14 20:41:02 +0000694 if (to->engine->schedule) {
695 ret = i915_priotree_add_dependency(to->i915,
696 &to->priotree,
697 &from->priotree);
698 if (ret < 0)
699 return ret;
700 }
701
Chris Wilson73cb9702016-10-28 13:58:46 +0100702 if (to->timeline == from->timeline)
Chris Wilsona2bc4692016-09-09 14:11:56 +0100703 return 0;
704
Chris Wilson73cb9702016-10-28 13:58:46 +0100705 if (to->engine == from->engine) {
706 ret = i915_sw_fence_await_sw_fence_gfp(&to->submit,
707 &from->submit,
708 GFP_KERNEL);
709 return ret < 0 ? ret : 0;
710 }
711
Chris Wilson754c9fd2017-02-23 07:44:14 +0000712 seqno = i915_gem_request_global_seqno(from);
713 if (!seqno) {
Chris Wilson65e47602016-10-28 13:58:49 +0100714 ret = i915_sw_fence_await_dma_fence(&to->submit,
715 &from->fence, 0,
716 GFP_KERNEL);
717 return ret < 0 ? ret : 0;
718 }
719
Chris Wilson754c9fd2017-02-23 07:44:14 +0000720 if (seqno <= to->timeline->sync_seqno[from->engine->id])
Chris Wilsona2bc4692016-09-09 14:11:56 +0100721 return 0;
722
723 trace_i915_gem_ring_sync_to(to, from);
724 if (!i915.semaphores) {
Chris Wilson0a046a02016-09-09 14:12:00 +0100725 if (!i915_spin_request(from, TASK_INTERRUPTIBLE, 2)) {
726 ret = i915_sw_fence_await_dma_fence(&to->submit,
727 &from->fence, 0,
728 GFP_KERNEL);
729 if (ret < 0)
730 return ret;
731 }
Chris Wilsona2bc4692016-09-09 14:11:56 +0100732 } else {
733 ret = to->engine->semaphore.sync_to(to, from);
734 if (ret)
735 return ret;
736 }
737
Chris Wilson754c9fd2017-02-23 07:44:14 +0000738 to->timeline->sync_seqno[from->engine->id] = seqno;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100739 return 0;
740}
741
Chris Wilsonb52992c2016-10-28 13:58:24 +0100742int
743i915_gem_request_await_dma_fence(struct drm_i915_gem_request *req,
744 struct dma_fence *fence)
745{
Chris Wilson29ef3fa2017-05-03 10:39:19 +0100746 struct dma_fence **child = &fence;
747 unsigned int nchild = 1;
Chris Wilsonb52992c2016-10-28 13:58:24 +0100748 int ret;
Chris Wilsonb52992c2016-10-28 13:58:24 +0100749
750 /* Note that if the fence-array was created in signal-on-any mode,
751 * we should *not* decompose it into its individual fences. However,
752 * we don't currently store which mode the fence-array is operating
753 * in. Fortunately, the only user of signal-on-any is private to
754 * amdgpu and we should not see any incoming fence-array from
755 * sync-file being in signal-on-any mode.
756 */
Chris Wilson29ef3fa2017-05-03 10:39:19 +0100757 if (dma_fence_is_array(fence)) {
758 struct dma_fence_array *array = to_dma_fence_array(fence);
Chris Wilsonb52992c2016-10-28 13:58:24 +0100759
Chris Wilson29ef3fa2017-05-03 10:39:19 +0100760 child = array->fences;
761 nchild = array->num_fences;
762 GEM_BUG_ON(!nchild);
763 }
Chris Wilsonb52992c2016-10-28 13:58:24 +0100764
Chris Wilson29ef3fa2017-05-03 10:39:19 +0100765 do {
766 fence = *child++;
767 if (test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &fence->flags))
768 continue;
769
770 if (dma_fence_is_i915(fence))
Chris Wilsonb52992c2016-10-28 13:58:24 +0100771 ret = i915_gem_request_await_request(req,
Chris Wilson29ef3fa2017-05-03 10:39:19 +0100772 to_request(fence));
Chris Wilsonb52992c2016-10-28 13:58:24 +0100773 else
Chris Wilson29ef3fa2017-05-03 10:39:19 +0100774 ret = i915_sw_fence_await_dma_fence(&req->submit, fence,
775 I915_FENCE_TIMEOUT,
Chris Wilsonb52992c2016-10-28 13:58:24 +0100776 GFP_KERNEL);
777 if (ret < 0)
778 return ret;
Chris Wilson29ef3fa2017-05-03 10:39:19 +0100779 } while (--nchild);
Chris Wilsonb52992c2016-10-28 13:58:24 +0100780
781 return 0;
782}
783
Chris Wilsona2bc4692016-09-09 14:11:56 +0100784/**
785 * i915_gem_request_await_object - set this request to (async) wait upon a bo
786 *
787 * @to: request we are wishing to use
788 * @obj: object which may be in use on another ring.
789 *
790 * This code is meant to abstract object synchronization with the GPU.
791 * Conceptually we serialise writes between engines inside the GPU.
792 * We only allow one engine to write into a buffer at any time, but
793 * multiple readers. To ensure each has a coherent view of memory, we must:
794 *
795 * - If there is an outstanding write request to the object, the new
796 * request must wait for it to complete (either CPU or in hw, requests
797 * on the same ring will be naturally ordered).
798 *
799 * - If we are a write request (pending_write_domain is set), the new
800 * request must wait for outstanding read requests to complete.
801 *
802 * Returns 0 if successful, else propagates up the lower layer error.
803 */
804int
805i915_gem_request_await_object(struct drm_i915_gem_request *to,
806 struct drm_i915_gem_object *obj,
807 bool write)
808{
Chris Wilsond07f0e52016-10-28 13:58:44 +0100809 struct dma_fence *excl;
810 int ret = 0;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100811
812 if (write) {
Chris Wilsond07f0e52016-10-28 13:58:44 +0100813 struct dma_fence **shared;
814 unsigned int count, i;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100815
Chris Wilsond07f0e52016-10-28 13:58:44 +0100816 ret = reservation_object_get_fences_rcu(obj->resv,
817 &excl, &count, &shared);
Chris Wilsona2bc4692016-09-09 14:11:56 +0100818 if (ret)
819 return ret;
Chris Wilsond07f0e52016-10-28 13:58:44 +0100820
821 for (i = 0; i < count; i++) {
822 ret = i915_gem_request_await_dma_fence(to, shared[i]);
823 if (ret)
824 break;
825
826 dma_fence_put(shared[i]);
827 }
828
829 for (; i < count; i++)
830 dma_fence_put(shared[i]);
831 kfree(shared);
832 } else {
833 excl = reservation_object_get_excl_rcu(obj->resv);
Chris Wilsona2bc4692016-09-09 14:11:56 +0100834 }
835
Chris Wilsond07f0e52016-10-28 13:58:44 +0100836 if (excl) {
837 if (ret == 0)
838 ret = i915_gem_request_await_dma_fence(to, excl);
839
840 dma_fence_put(excl);
841 }
842
843 return ret;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100844}
845
Chris Wilson05235c52016-07-20 09:21:08 +0100846static void i915_gem_mark_busy(const struct intel_engine_cs *engine)
847{
848 struct drm_i915_private *dev_priv = engine->i915;
849
Chris Wilson05235c52016-07-20 09:21:08 +0100850 if (dev_priv->gt.awake)
851 return;
852
Chris Wilson43020552016-11-15 16:46:20 +0000853 GEM_BUG_ON(!dev_priv->gt.active_requests);
854
Chris Wilson05235c52016-07-20 09:21:08 +0100855 intel_runtime_pm_get_noresume(dev_priv);
856 dev_priv->gt.awake = true;
857
Chris Wilson54b4f682016-07-21 21:16:19 +0100858 intel_enable_gt_powersave(dev_priv);
Chris Wilson05235c52016-07-20 09:21:08 +0100859 i915_update_gfx_val(dev_priv);
860 if (INTEL_GEN(dev_priv) >= 6)
861 gen6_rps_busy(dev_priv);
862
863 queue_delayed_work(dev_priv->wq,
864 &dev_priv->gt.retire_work,
865 round_jiffies_up_relative(HZ));
866}
867
868/*
869 * NB: This function is not allowed to fail. Doing so would mean the the
870 * request is not being tracked for completion but the work itself is
871 * going to happen on the hardware. This would be a Bad Thing(tm).
872 */
Chris Wilson17f298cf2016-08-10 13:41:46 +0100873void __i915_add_request(struct drm_i915_gem_request *request, bool flush_caches)
Chris Wilson05235c52016-07-20 09:21:08 +0100874{
Chris Wilson95b2ab52016-08-15 10:48:46 +0100875 struct intel_engine_cs *engine = request->engine;
876 struct intel_ring *ring = request->ring;
Chris Wilson73cb9702016-10-28 13:58:46 +0100877 struct intel_timeline *timeline = request->timeline;
Chris Wilson0a046a02016-09-09 14:12:00 +0100878 struct drm_i915_gem_request *prev;
Tvrtko Ursulin73dec952017-02-14 11:32:42 +0000879 u32 *cs;
Chris Wilsoncaddfe72016-10-28 13:58:52 +0100880 int err;
Chris Wilson05235c52016-07-20 09:21:08 +0100881
Chris Wilson4c7d62c2016-10-28 13:58:32 +0100882 lockdep_assert_held(&request->i915->drm.struct_mutex);
Chris Wilson0f25dff2016-09-09 14:11:55 +0100883 trace_i915_gem_request_add(request);
884
Chris Wilsonc781c972017-01-11 14:08:58 +0000885 /* Make sure that no request gazumped us - if it was allocated after
886 * our i915_gem_request_alloc() and called __i915_add_request() before
887 * us, the timeline will hold its seqno which is later than ours.
888 */
Chris Wilson9b6586a2017-02-23 07:44:08 +0000889 GEM_BUG_ON(timeline->seqno != request->fence.seqno);
Chris Wilsonc781c972017-01-11 14:08:58 +0000890
Chris Wilson05235c52016-07-20 09:21:08 +0100891 /*
892 * To ensure that this call will not fail, space for its emissions
893 * should already have been reserved in the ring buffer. Let the ring
894 * know that it is time to use that space up.
895 */
Chris Wilson05235c52016-07-20 09:21:08 +0100896 request->reserved_space = 0;
897
898 /*
899 * Emit any outstanding flushes - execbuf can fail to emit the flush
900 * after having emitted the batchbuffer command. Hence we need to fix
901 * things up similar to emitting the lazy request. The difference here
902 * is that the flush _must_ happen before the next request, no matter
903 * what.
904 */
905 if (flush_caches) {
Chris Wilsoncaddfe72016-10-28 13:58:52 +0100906 err = engine->emit_flush(request, EMIT_FLUSH);
Chris Wilsonc7fe7d22016-08-02 22:50:24 +0100907
Chris Wilson05235c52016-07-20 09:21:08 +0100908 /* Not allowed to fail! */
Chris Wilsoncaddfe72016-10-28 13:58:52 +0100909 WARN(err, "engine->emit_flush() failed: %d!\n", err);
Chris Wilson05235c52016-07-20 09:21:08 +0100910 }
911
Chris Wilsond0454462016-08-15 10:48:40 +0100912 /* Record the position of the start of the breadcrumb so that
Chris Wilson05235c52016-07-20 09:21:08 +0100913 * should we detect the updated seqno part-way through the
914 * GPU processing the request, we never over-estimate the
Chris Wilsond0454462016-08-15 10:48:40 +0100915 * position of the ring's HEAD.
Chris Wilson05235c52016-07-20 09:21:08 +0100916 */
Tvrtko Ursulin73dec952017-02-14 11:32:42 +0000917 cs = intel_ring_begin(request, engine->emit_breadcrumb_sz);
918 GEM_BUG_ON(IS_ERR(cs));
919 request->postfix = intel_ring_offset(request, cs);
Chris Wilson05235c52016-07-20 09:21:08 +0100920
Chris Wilson0f25dff2016-09-09 14:11:55 +0100921 /* Seal the request and mark it as pending execution. Note that
922 * we may inspect this state, without holding any locks, during
923 * hangcheck. Hence we apply the barrier to ensure that we do not
924 * see a more recent value in the hws than we are tracking.
925 */
Chris Wilson0a046a02016-09-09 14:12:00 +0100926
Chris Wilson73cb9702016-10-28 13:58:46 +0100927 prev = i915_gem_active_raw(&timeline->last_request,
Chris Wilson0a046a02016-09-09 14:12:00 +0100928 &request->i915->drm.struct_mutex);
Chris Wilson52e54202016-11-14 20:41:02 +0000929 if (prev) {
Chris Wilson0a046a02016-09-09 14:12:00 +0100930 i915_sw_fence_await_sw_fence(&request->submit, &prev->submit,
931 &request->submitq);
Chris Wilson52e54202016-11-14 20:41:02 +0000932 if (engine->schedule)
933 __i915_priotree_add_dependency(&request->priotree,
934 &prev->priotree,
935 &request->dep,
936 0);
937 }
Chris Wilson0a046a02016-09-09 14:12:00 +0100938
Chris Wilson80b204b2016-10-28 13:58:58 +0100939 spin_lock_irq(&timeline->lock);
Chris Wilsonf2d13292016-10-28 13:58:57 +0100940 list_add_tail(&request->link, &timeline->requests);
Chris Wilson80b204b2016-10-28 13:58:58 +0100941 spin_unlock_irq(&timeline->lock);
Chris Wilson28176ef2016-10-28 13:58:56 +0100942
Chris Wilson9b6586a2017-02-23 07:44:08 +0000943 GEM_BUG_ON(timeline->seqno != request->fence.seqno);
Chris Wilson73cb9702016-10-28 13:58:46 +0100944 i915_gem_active_set(&timeline->last_request, request);
Chris Wilsonf2d13292016-10-28 13:58:57 +0100945
Chris Wilson0f25dff2016-09-09 14:11:55 +0100946 list_add_tail(&request->ring_link, &ring->request_list);
Chris Wilsonf2d13292016-10-28 13:58:57 +0100947 request->emitted_jiffies = jiffies;
Chris Wilson0f25dff2016-09-09 14:11:55 +0100948
Chris Wilson9b6586a2017-02-23 07:44:08 +0000949 if (!request->i915->gt.active_requests++)
950 i915_gem_mark_busy(engine);
Chris Wilson5590af32016-09-09 14:11:54 +0100951
Chris Wilson0de91362016-11-14 20:41:01 +0000952 /* Let the backend know a new request has arrived that may need
953 * to adjust the existing execution schedule due to a high priority
954 * request - i.e. we may want to preempt the current request in order
955 * to run a high priority dependency chain *before* we can execute this
956 * request.
957 *
958 * This is called before the request is ready to run so that we can
959 * decide whether to preempt the entire chain so that it is ready to
960 * run at the earliest possible convenience.
961 */
962 if (engine->schedule)
Chris Wilson9f792eb2016-11-14 20:41:04 +0000963 engine->schedule(request, request->ctx->priority);
Chris Wilson0de91362016-11-14 20:41:01 +0000964
Chris Wilson5590af32016-09-09 14:11:54 +0100965 local_bh_disable();
966 i915_sw_fence_commit(&request->submit);
967 local_bh_enable(); /* Kick the execlists tasklet if just scheduled */
Chris Wilson05235c52016-07-20 09:21:08 +0100968}
969
970static unsigned long local_clock_us(unsigned int *cpu)
971{
972 unsigned long t;
973
974 /* Cheaply and approximately convert from nanoseconds to microseconds.
975 * The result and subsequent calculations are also defined in the same
976 * approximate microseconds units. The principal source of timing
977 * error here is from the simple truncation.
978 *
979 * Note that local_clock() is only defined wrt to the current CPU;
980 * the comparisons are no longer valid if we switch CPUs. Instead of
981 * blocking preemption for the entire busywait, we can detect the CPU
982 * switch and use that as indicator of system load and a reason to
983 * stop busywaiting, see busywait_stop().
984 */
985 *cpu = get_cpu();
986 t = local_clock() >> 10;
987 put_cpu();
988
989 return t;
990}
991
992static bool busywait_stop(unsigned long timeout, unsigned int cpu)
993{
994 unsigned int this_cpu;
995
996 if (time_after(local_clock_us(&this_cpu), timeout))
997 return true;
998
999 return this_cpu != cpu;
1000}
1001
1002bool __i915_spin_request(const struct drm_i915_gem_request *req,
Chris Wilson754c9fd2017-02-23 07:44:14 +00001003 u32 seqno, int state, unsigned long timeout_us)
Chris Wilson05235c52016-07-20 09:21:08 +01001004{
Chris Wilsonc33ed062017-02-17 15:13:01 +00001005 struct intel_engine_cs *engine = req->engine;
1006 unsigned int irq, cpu;
Chris Wilson05235c52016-07-20 09:21:08 +01001007
1008 /* When waiting for high frequency requests, e.g. during synchronous
1009 * rendering split between the CPU and GPU, the finite amount of time
1010 * required to set up the irq and wait upon it limits the response
1011 * rate. By busywaiting on the request completion for a short while we
1012 * can service the high frequency waits as quick as possible. However,
1013 * if it is a slow request, we want to sleep as quickly as possible.
1014 * The tradeoff between waiting and sleeping is roughly the time it
1015 * takes to sleep on a request, on the order of a microsecond.
1016 */
1017
Chris Wilsonc33ed062017-02-17 15:13:01 +00001018 irq = atomic_read(&engine->irq_count);
Chris Wilson05235c52016-07-20 09:21:08 +01001019 timeout_us += local_clock_us(&cpu);
1020 do {
Chris Wilson754c9fd2017-02-23 07:44:14 +00001021 if (seqno != i915_gem_request_global_seqno(req))
1022 break;
1023
1024 if (i915_seqno_passed(intel_engine_get_seqno(req->engine),
1025 seqno))
Chris Wilson05235c52016-07-20 09:21:08 +01001026 return true;
1027
Chris Wilsonc33ed062017-02-17 15:13:01 +00001028 /* Seqno are meant to be ordered *before* the interrupt. If
1029 * we see an interrupt without a corresponding seqno advance,
1030 * assume we won't see one in the near future but require
1031 * the engine->seqno_barrier() to fixup coherency.
1032 */
1033 if (atomic_read(&engine->irq_count) != irq)
1034 break;
1035
Chris Wilson05235c52016-07-20 09:21:08 +01001036 if (signal_pending_state(state, current))
1037 break;
1038
1039 if (busywait_stop(timeout_us, cpu))
1040 break;
1041
Christian Borntraegerf2f09a42016-10-25 11:03:14 +02001042 cpu_relax();
Chris Wilson05235c52016-07-20 09:21:08 +01001043 } while (!need_resched());
1044
1045 return false;
1046}
1047
Chris Wilsone0705112017-02-23 07:44:20 +00001048static bool __i915_wait_request_check_and_reset(struct drm_i915_gem_request *request)
Chris Wilson4680816b2016-10-28 13:58:48 +01001049{
Chris Wilson8c185ec2017-03-16 17:13:02 +00001050 if (likely(!i915_reset_handoff(&request->i915->gpu_error)))
Chris Wilsone0705112017-02-23 07:44:20 +00001051 return false;
Chris Wilson4680816b2016-10-28 13:58:48 +01001052
Chris Wilsone0705112017-02-23 07:44:20 +00001053 __set_current_state(TASK_RUNNING);
1054 i915_reset(request->i915);
1055 return true;
Chris Wilson4680816b2016-10-28 13:58:48 +01001056}
1057
Chris Wilson05235c52016-07-20 09:21:08 +01001058/**
Chris Wilson776f3232016-08-04 07:52:40 +01001059 * i915_wait_request - wait until execution of request has finished
Chris Wilsone95433c2016-10-28 13:58:27 +01001060 * @req: the request to wait upon
Chris Wilsonea746f32016-09-09 14:11:49 +01001061 * @flags: how to wait
Chris Wilsone95433c2016-10-28 13:58:27 +01001062 * @timeout: how long to wait in jiffies
Chris Wilson05235c52016-07-20 09:21:08 +01001063 *
Chris Wilsone95433c2016-10-28 13:58:27 +01001064 * i915_wait_request() waits for the request to be completed, for a
1065 * maximum of @timeout jiffies (with MAX_SCHEDULE_TIMEOUT implying an
1066 * unbounded wait).
Chris Wilson05235c52016-07-20 09:21:08 +01001067 *
Chris Wilsone95433c2016-10-28 13:58:27 +01001068 * If the caller holds the struct_mutex, the caller must pass I915_WAIT_LOCKED
1069 * in via the flags, and vice versa if the struct_mutex is not held, the caller
1070 * must not specify that the wait is locked.
1071 *
1072 * Returns the remaining time (in jiffies) if the request completed, which may
1073 * be zero or -ETIME if the request is unfinished after the timeout expires.
1074 * May return -EINTR is called with I915_WAIT_INTERRUPTIBLE and a signal is
1075 * pending before the request completes.
Chris Wilson05235c52016-07-20 09:21:08 +01001076 */
Chris Wilsone95433c2016-10-28 13:58:27 +01001077long i915_wait_request(struct drm_i915_gem_request *req,
1078 unsigned int flags,
1079 long timeout)
Chris Wilson05235c52016-07-20 09:21:08 +01001080{
Chris Wilsonea746f32016-09-09 14:11:49 +01001081 const int state = flags & I915_WAIT_INTERRUPTIBLE ?
1082 TASK_INTERRUPTIBLE : TASK_UNINTERRUPTIBLE;
Chris Wilson4b36b2e2017-02-23 07:44:10 +00001083 wait_queue_head_t *errq = &req->i915->gpu_error.wait_queue;
Chris Wilsona49625f2017-02-23 07:44:19 +00001084 DEFINE_WAIT_FUNC(reset, default_wake_function);
1085 DEFINE_WAIT_FUNC(exec, default_wake_function);
Chris Wilson05235c52016-07-20 09:21:08 +01001086 struct intel_wait wait;
Chris Wilson05235c52016-07-20 09:21:08 +01001087
1088 might_sleep();
Chris Wilson22dd3bb2016-09-09 14:11:50 +01001089#if IS_ENABLED(CONFIG_LOCKDEP)
Chris Wilsone95433c2016-10-28 13:58:27 +01001090 GEM_BUG_ON(debug_locks &&
1091 !!lockdep_is_held(&req->i915->drm.struct_mutex) !=
Chris Wilson22dd3bb2016-09-09 14:11:50 +01001092 !!(flags & I915_WAIT_LOCKED));
1093#endif
Chris Wilsone95433c2016-10-28 13:58:27 +01001094 GEM_BUG_ON(timeout < 0);
Chris Wilson05235c52016-07-20 09:21:08 +01001095
Chris Wilson05235c52016-07-20 09:21:08 +01001096 if (i915_gem_request_completed(req))
Chris Wilsone95433c2016-10-28 13:58:27 +01001097 return timeout;
Chris Wilson05235c52016-07-20 09:21:08 +01001098
Chris Wilsone95433c2016-10-28 13:58:27 +01001099 if (!timeout)
1100 return -ETIME;
Chris Wilson05235c52016-07-20 09:21:08 +01001101
Tvrtko Ursulin93692502017-02-21 11:00:24 +00001102 trace_i915_gem_request_wait_begin(req, flags);
Chris Wilson05235c52016-07-20 09:21:08 +01001103
Chris Wilsona49625f2017-02-23 07:44:19 +00001104 add_wait_queue(&req->execute, &exec);
Chris Wilson7de53bf2017-02-23 07:44:11 +00001105 if (flags & I915_WAIT_LOCKED)
1106 add_wait_queue(errq, &reset);
1107
Chris Wilson56299fb2017-02-27 20:58:48 +00001108 intel_wait_init(&wait, req);
Chris Wilson754c9fd2017-02-23 07:44:14 +00001109
Chris Wilsond6a22892017-02-23 07:44:17 +00001110restart:
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001111 do {
1112 set_current_state(state);
1113 if (intel_wait_update_request(&wait, req))
1114 break;
Chris Wilson754c9fd2017-02-23 07:44:14 +00001115
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001116 if (flags & I915_WAIT_LOCKED &&
1117 __i915_wait_request_check_and_reset(req))
1118 continue;
Chris Wilson541ca6e2017-02-23 07:44:12 +00001119
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001120 if (signal_pending_state(state, current)) {
1121 timeout = -ERESTARTSYS;
Chris Wilson4680816b2016-10-28 13:58:48 +01001122 goto complete;
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001123 }
Chris Wilson4680816b2016-10-28 13:58:48 +01001124
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001125 if (!timeout) {
1126 timeout = -ETIME;
1127 goto complete;
1128 }
Chris Wilson541ca6e2017-02-23 07:44:12 +00001129
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001130 timeout = io_schedule_timeout(timeout);
1131 } while (1);
Chris Wilson541ca6e2017-02-23 07:44:12 +00001132
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001133 GEM_BUG_ON(!intel_wait_has_seqno(&wait));
Chris Wilsonfe497892017-02-23 07:44:13 +00001134 GEM_BUG_ON(!i915_sw_fence_signaled(&req->submit));
Chris Wilson4680816b2016-10-28 13:58:48 +01001135
Daniel Vetter437c3082016-08-05 18:11:24 +02001136 /* Optimistic short spin before touching IRQs */
Chris Wilson05235c52016-07-20 09:21:08 +01001137 if (i915_spin_request(req, state, 5))
1138 goto complete;
1139
1140 set_current_state(state);
Chris Wilson05235c52016-07-20 09:21:08 +01001141 if (intel_engine_add_wait(req->engine, &wait))
1142 /* In order to check that we haven't missed the interrupt
1143 * as we enabled it, we need to kick ourselves to do a
1144 * coherent check on the seqno before we sleep.
1145 */
1146 goto wakeup;
1147
Chris Wilson24f417e2017-02-23 07:44:21 +00001148 if (flags & I915_WAIT_LOCKED)
1149 __i915_wait_request_check_and_reset(req);
1150
Chris Wilson05235c52016-07-20 09:21:08 +01001151 for (;;) {
1152 if (signal_pending_state(state, current)) {
Chris Wilsone95433c2016-10-28 13:58:27 +01001153 timeout = -ERESTARTSYS;
Chris Wilson05235c52016-07-20 09:21:08 +01001154 break;
1155 }
1156
Chris Wilsone95433c2016-10-28 13:58:27 +01001157 if (!timeout) {
1158 timeout = -ETIME;
Chris Wilson05235c52016-07-20 09:21:08 +01001159 break;
1160 }
1161
Chris Wilsone95433c2016-10-28 13:58:27 +01001162 timeout = io_schedule_timeout(timeout);
1163
Chris Wilson754c9fd2017-02-23 07:44:14 +00001164 if (intel_wait_complete(&wait) &&
1165 intel_wait_check_request(&wait, req))
Chris Wilson05235c52016-07-20 09:21:08 +01001166 break;
1167
1168 set_current_state(state);
1169
1170wakeup:
1171 /* Carefully check if the request is complete, giving time
1172 * for the seqno to be visible following the interrupt.
1173 * We also have to check in case we are kicked by the GPU
1174 * reset in order to drop the struct_mutex.
1175 */
1176 if (__i915_request_irq_complete(req))
1177 break;
1178
Chris Wilson221fe792016-09-09 14:11:51 +01001179 /* If the GPU is hung, and we hold the lock, reset the GPU
1180 * and then check for completion. On a full reset, the engine's
1181 * HW seqno will be advanced passed us and we are complete.
1182 * If we do a partial reset, we have to wait for the GPU to
1183 * resume and update the breadcrumb.
1184 *
1185 * If we don't hold the mutex, we can just wait for the worker
1186 * to come along and update the breadcrumb (either directly
1187 * itself, or indirectly by recovering the GPU).
1188 */
1189 if (flags & I915_WAIT_LOCKED &&
Chris Wilsone0705112017-02-23 07:44:20 +00001190 __i915_wait_request_check_and_reset(req))
Chris Wilson221fe792016-09-09 14:11:51 +01001191 continue;
Chris Wilson221fe792016-09-09 14:11:51 +01001192
Chris Wilson05235c52016-07-20 09:21:08 +01001193 /* Only spin if we know the GPU is processing this request */
1194 if (i915_spin_request(req, state, 2))
1195 break;
Chris Wilsond6a22892017-02-23 07:44:17 +00001196
1197 if (!intel_wait_check_request(&wait, req)) {
1198 intel_engine_remove_wait(req->engine, &wait);
1199 goto restart;
1200 }
Chris Wilson05235c52016-07-20 09:21:08 +01001201 }
Chris Wilson05235c52016-07-20 09:21:08 +01001202
1203 intel_engine_remove_wait(req->engine, &wait);
Chris Wilson05235c52016-07-20 09:21:08 +01001204complete:
Chris Wilsona49625f2017-02-23 07:44:19 +00001205 __set_current_state(TASK_RUNNING);
Chris Wilson7de53bf2017-02-23 07:44:11 +00001206 if (flags & I915_WAIT_LOCKED)
1207 remove_wait_queue(errq, &reset);
Chris Wilsona49625f2017-02-23 07:44:19 +00001208 remove_wait_queue(&req->execute, &exec);
Chris Wilson05235c52016-07-20 09:21:08 +01001209 trace_i915_gem_request_wait_end(req);
1210
Chris Wilsone95433c2016-10-28 13:58:27 +01001211 return timeout;
Chris Wilson05235c52016-07-20 09:21:08 +01001212}
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001213
Chris Wilson28176ef2016-10-28 13:58:56 +01001214static void engine_retire_requests(struct intel_engine_cs *engine)
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001215{
1216 struct drm_i915_gem_request *request, *next;
Chris Wilson754c9fd2017-02-23 07:44:14 +00001217 u32 seqno = intel_engine_get_seqno(engine);
1218 LIST_HEAD(retire);
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001219
Chris Wilson754c9fd2017-02-23 07:44:14 +00001220 spin_lock_irq(&engine->timeline->lock);
Chris Wilson73cb9702016-10-28 13:58:46 +01001221 list_for_each_entry_safe(request, next,
1222 &engine->timeline->requests, link) {
Chris Wilson754c9fd2017-02-23 07:44:14 +00001223 if (!i915_seqno_passed(seqno, request->global_seqno))
1224 break;
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001225
Chris Wilson754c9fd2017-02-23 07:44:14 +00001226 list_move_tail(&request->link, &retire);
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001227 }
Chris Wilson754c9fd2017-02-23 07:44:14 +00001228 spin_unlock_irq(&engine->timeline->lock);
1229
1230 list_for_each_entry_safe(request, next, &retire, link)
1231 i915_gem_request_retire(request);
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001232}
1233
1234void i915_gem_retire_requests(struct drm_i915_private *dev_priv)
1235{
1236 struct intel_engine_cs *engine;
Chris Wilson28176ef2016-10-28 13:58:56 +01001237 enum intel_engine_id id;
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001238
1239 lockdep_assert_held(&dev_priv->drm.struct_mutex);
1240
Chris Wilson28176ef2016-10-28 13:58:56 +01001241 if (!dev_priv->gt.active_requests)
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001242 return;
1243
Chris Wilson28176ef2016-10-28 13:58:56 +01001244 for_each_engine(engine, dev_priv, id)
1245 engine_retire_requests(engine);
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001246}
Chris Wilsonc835c552017-02-13 17:15:21 +00001247
1248#if IS_ENABLED(CONFIG_DRM_I915_SELFTEST)
1249#include "selftests/mock_request.c"
1250#include "selftests/i915_gem_request.c"
1251#endif