blob: d34a3e5800b730eeca4c7afe4c3858fb9764967f [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 Wilsone61e0f52018-02-21 09:56:36 +000040 /*
41 * The timeline struct (as part of the ppgtt underneath a context)
Chris Wilson05506b52017-03-30 12:16:14 +010042 * may be freed when the request is no longer in use by the GPU.
43 * We could extend the life of a context to beyond that of all
44 * fences, possibly keeping the hw resource around indefinitely,
45 * or we just give them a false name. Since
46 * dma_fence_ops.get_timeline_name is a debug feature, the occasional
47 * lie seems justifiable.
48 */
49 if (test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &fence->flags))
50 return "signaled";
51
Chris Wilson73cb9702016-10-28 13:58:46 +010052 return to_request(fence)->timeline->common->name;
Chris Wilson04769652016-07-20 09:21:11 +010053}
54
Chris Wilsonf54d1862016-10-25 13:00:45 +010055static bool i915_fence_signaled(struct dma_fence *fence)
Chris Wilson04769652016-07-20 09:21:11 +010056{
Chris Wilsone61e0f52018-02-21 09:56:36 +000057 return i915_request_completed(to_request(fence));
Chris Wilson04769652016-07-20 09:21:11 +010058}
59
Chris Wilsonf54d1862016-10-25 13:00:45 +010060static bool i915_fence_enable_signaling(struct dma_fence *fence)
Chris Wilson04769652016-07-20 09:21:11 +010061{
62 if (i915_fence_signaled(fence))
63 return false;
64
Chris Wilsonf7b02a52017-04-26 09:06:59 +010065 intel_engine_enable_signaling(to_request(fence), true);
Chris Wilson9f90ff32017-06-08 12:14:02 +010066 return !i915_fence_signaled(fence);
Chris Wilson04769652016-07-20 09:21:11 +010067}
68
Chris Wilsonf54d1862016-10-25 13:00:45 +010069static signed long i915_fence_wait(struct dma_fence *fence,
Chris Wilson04769652016-07-20 09:21:11 +010070 bool interruptible,
Chris Wilsone95433c2016-10-28 13:58:27 +010071 signed long timeout)
Chris Wilson04769652016-07-20 09:21:11 +010072{
Chris Wilsone61e0f52018-02-21 09:56:36 +000073 return i915_request_wait(to_request(fence), interruptible, timeout);
Chris Wilson04769652016-07-20 09:21:11 +010074}
75
Chris Wilsonf54d1862016-10-25 13:00:45 +010076static void i915_fence_release(struct dma_fence *fence)
Chris Wilson04769652016-07-20 09:21:11 +010077{
Chris Wilsone61e0f52018-02-21 09:56:36 +000078 struct i915_request *rq = to_request(fence);
Chris Wilson04769652016-07-20 09:21:11 +010079
Chris Wilsone61e0f52018-02-21 09:56:36 +000080 /*
81 * The request is put onto a RCU freelist (i.e. the address
Chris Wilsonfc158402016-11-25 13:17:18 +000082 * is immediately reused), mark the fences as being freed now.
83 * Otherwise the debugobjects for the fences are only marked as
84 * freed when the slab cache itself is freed, and so we would get
85 * caught trying to reuse dead objects.
86 */
Chris Wilsone61e0f52018-02-21 09:56:36 +000087 i915_sw_fence_fini(&rq->submit);
Chris Wilsonfc158402016-11-25 13:17:18 +000088
Chris Wilsone61e0f52018-02-21 09:56:36 +000089 kmem_cache_free(rq->i915->requests, rq);
Chris Wilson04769652016-07-20 09:21:11 +010090}
91
Chris Wilsonf54d1862016-10-25 13:00:45 +010092const struct dma_fence_ops i915_fence_ops = {
Chris Wilson04769652016-07-20 09:21:11 +010093 .get_driver_name = i915_fence_get_driver_name,
94 .get_timeline_name = i915_fence_get_timeline_name,
95 .enable_signaling = i915_fence_enable_signaling,
96 .signaled = i915_fence_signaled,
97 .wait = i915_fence_wait,
98 .release = i915_fence_release,
Chris Wilson04769652016-07-20 09:21:11 +010099};
100
Chris Wilson05235c52016-07-20 09:21:08 +0100101static inline void
Chris Wilsone61e0f52018-02-21 09:56:36 +0000102i915_request_remove_from_client(struct i915_request *request)
Chris Wilson05235c52016-07-20 09:21:08 +0100103{
Chris Wilsonc8659ef2017-03-02 12:25:25 +0000104 struct drm_i915_file_private *file_priv;
Chris Wilson05235c52016-07-20 09:21:08 +0100105
Chris Wilsonc8659ef2017-03-02 12:25:25 +0000106 file_priv = request->file_priv;
Chris Wilson05235c52016-07-20 09:21:08 +0100107 if (!file_priv)
108 return;
109
110 spin_lock(&file_priv->mm.lock);
Chris Wilsonc8659ef2017-03-02 12:25:25 +0000111 if (request->file_priv) {
112 list_del(&request->client_link);
113 request->file_priv = NULL;
114 }
Chris Wilson05235c52016-07-20 09:21:08 +0100115 spin_unlock(&file_priv->mm.lock);
Chris Wilson05235c52016-07-20 09:21:08 +0100116}
117
Chris Wilson52e54202016-11-14 20:41:02 +0000118static struct i915_dependency *
119i915_dependency_alloc(struct drm_i915_private *i915)
120{
121 return kmem_cache_alloc(i915->dependencies, GFP_KERNEL);
122}
123
124static void
125i915_dependency_free(struct drm_i915_private *i915,
126 struct i915_dependency *dep)
127{
128 kmem_cache_free(i915->dependencies, dep);
129}
130
131static void
132__i915_priotree_add_dependency(struct i915_priotree *pt,
133 struct i915_priotree *signal,
134 struct i915_dependency *dep,
135 unsigned long flags)
136{
Chris Wilson20311bd2016-11-14 20:41:03 +0000137 INIT_LIST_HEAD(&dep->dfs_link);
Chris Wilson52e54202016-11-14 20:41:02 +0000138 list_add(&dep->wait_link, &signal->waiters_list);
139 list_add(&dep->signal_link, &pt->signalers_list);
140 dep->signaler = signal;
141 dep->flags = flags;
142}
143
144static int
145i915_priotree_add_dependency(struct drm_i915_private *i915,
146 struct i915_priotree *pt,
147 struct i915_priotree *signal)
148{
149 struct i915_dependency *dep;
150
151 dep = i915_dependency_alloc(i915);
152 if (!dep)
153 return -ENOMEM;
154
155 __i915_priotree_add_dependency(pt, signal, dep, I915_DEPENDENCY_ALLOC);
156 return 0;
157}
158
159static void
160i915_priotree_fini(struct drm_i915_private *i915, struct i915_priotree *pt)
161{
162 struct i915_dependency *dep, *next;
163
Chris Wilson6c067572017-05-17 13:10:03 +0100164 GEM_BUG_ON(!list_empty(&pt->link));
Chris Wilson20311bd2016-11-14 20:41:03 +0000165
Chris Wilson83cc84c2018-01-02 15:12:25 +0000166 /*
167 * Everyone we depended upon (the fences we wait to be signaled)
Chris Wilson52e54202016-11-14 20:41:02 +0000168 * should retire before us and remove themselves from our list.
169 * However, retirement is run independently on each timeline and
170 * so we may be called out-of-order.
171 */
172 list_for_each_entry_safe(dep, next, &pt->signalers_list, signal_link) {
Chris Wilson83cc84c2018-01-02 15:12:25 +0000173 GEM_BUG_ON(!i915_priotree_signaled(dep->signaler));
174 GEM_BUG_ON(!list_empty(&dep->dfs_link));
175
Chris Wilson52e54202016-11-14 20:41:02 +0000176 list_del(&dep->wait_link);
177 if (dep->flags & I915_DEPENDENCY_ALLOC)
178 i915_dependency_free(i915, dep);
179 }
180
181 /* Remove ourselves from everyone who depends upon us */
182 list_for_each_entry_safe(dep, next, &pt->waiters_list, wait_link) {
Chris Wilson83cc84c2018-01-02 15:12:25 +0000183 GEM_BUG_ON(dep->signaler != pt);
184 GEM_BUG_ON(!list_empty(&dep->dfs_link));
185
Chris Wilson52e54202016-11-14 20:41:02 +0000186 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 Wilson6c067572017-05-17 13:10:03 +0100197 INIT_LIST_HEAD(&pt->link);
Chris Wilson7d1ea602017-09-28 20:39:00 +0100198 pt->priority = I915_PRIORITY_INVALID;
Chris Wilson52e54202016-11-14 20:41:02 +0000199}
200
Chris Wilson12d31732017-02-23 07:44:09 +0000201static int reset_all_global_seqno(struct drm_i915_private *i915, u32 seqno)
202{
Chris Wilson12d31732017-02-23 07:44:09 +0000203 struct intel_engine_cs *engine;
204 enum intel_engine_id id;
205 int ret;
206
207 /* Carefully retire all requests without writing to the rings */
208 ret = i915_gem_wait_for_idle(i915,
209 I915_WAIT_INTERRUPTIBLE |
210 I915_WAIT_LOCKED);
211 if (ret)
212 return ret;
213
Chris Wilson12d31732017-02-23 07:44:09 +0000214 /* If the seqno wraps around, we need to clear the breadcrumb rbtree */
215 for_each_engine(engine, i915, id) {
Chris Wilsonae351be2017-03-30 15:50:41 +0100216 struct i915_gem_timeline *timeline;
217 struct intel_timeline *tl = engine->timeline;
Chris Wilson12d31732017-02-23 07:44:09 +0000218
219 if (!i915_seqno_passed(seqno, tl->seqno)) {
220 /* spin until threads are complete */
221 while (intel_breadcrumbs_busy(engine))
222 cond_resched();
Chris Wilson93eef7d2018-03-06 13:01:42 +0000223
224 GEM_BUG_ON(!list_empty(&engine->breadcrumbs.signals));
Chris Wilson12d31732017-02-23 07:44:09 +0000225 }
226
Chris Wilson4d535682017-07-21 13:32:26 +0100227 /* Check we are idle before we fiddle with hw state! */
228 GEM_BUG_ON(!intel_engine_is_idle(engine));
229 GEM_BUG_ON(i915_gem_active_isset(&engine->timeline->last_request));
230
Chris Wilson12d31732017-02-23 07:44:09 +0000231 /* Finally reset hw state */
Chris Wilson12d31732017-02-23 07:44:09 +0000232 intel_engine_init_global_seqno(engine, seqno);
Chris Wilson2ca9faa2017-04-05 16:30:54 +0100233 tl->seqno = seqno;
Chris Wilson12d31732017-02-23 07:44:09 +0000234
Chris Wilsonae351be2017-03-30 15:50:41 +0100235 list_for_each_entry(timeline, &i915->gt.timelines, link)
Chris Wilson7e8894e2017-05-03 10:39:22 +0100236 memset(timeline->engine[id].global_sync, 0,
237 sizeof(timeline->engine[id].global_sync));
Chris Wilson12d31732017-02-23 07:44:09 +0000238 }
239
240 return 0;
241}
242
243int i915_gem_set_global_seqno(struct drm_device *dev, u32 seqno)
244{
Chris Wilsone61e0f52018-02-21 09:56:36 +0000245 struct drm_i915_private *i915 = to_i915(dev);
Chris Wilson12d31732017-02-23 07:44:09 +0000246
Chris Wilsone61e0f52018-02-21 09:56:36 +0000247 lockdep_assert_held(&i915->drm.struct_mutex);
Chris Wilson12d31732017-02-23 07:44:09 +0000248
249 if (seqno == 0)
250 return -EINVAL;
251
Chris Wilsone61e0f52018-02-21 09:56:36 +0000252 /* HWS page needs to be set less than what we will inject to ring */
253 return reset_all_global_seqno(i915, seqno - 1);
Chris Wilson12d31732017-02-23 07:44:09 +0000254}
255
Chris Wilson636918f2017-08-17 15:47:19 +0100256static void mark_busy(struct drm_i915_private *i915)
Chris Wilson12d31732017-02-23 07:44:09 +0000257{
Chris Wilson636918f2017-08-17 15:47:19 +0100258 if (i915->gt.awake)
259 return;
260
261 GEM_BUG_ON(!i915->gt.active_requests);
262
263 intel_runtime_pm_get_noresume(i915);
Tvrtko Ursulinb6876372017-12-05 13:28:54 +0000264
265 /*
266 * It seems that the DMC likes to transition between the DC states a lot
267 * when there are no connected displays (no active power domains) during
268 * command submission.
269 *
270 * This activity has negative impact on the performance of the chip with
271 * huge latencies observed in the interrupt handler and elsewhere.
272 *
273 * Work around it by grabbing a GT IRQ power domain whilst there is any
274 * GT activity, preventing any DC state transitions.
275 */
276 intel_display_power_get(i915, POWER_DOMAIN_GT_IRQ);
277
Chris Wilson636918f2017-08-17 15:47:19 +0100278 i915->gt.awake = true;
Chris Wilson6f561032018-01-24 11:36:07 +0000279 if (unlikely(++i915->gt.epoch == 0)) /* keep 0 as invalid */
280 i915->gt.epoch = 1;
Chris Wilson636918f2017-08-17 15:47:19 +0100281
282 intel_enable_gt_powersave(i915);
283 i915_update_gfx_val(i915);
284 if (INTEL_GEN(i915) >= 6)
285 gen6_rps_busy(i915);
Tvrtko Ursulinfeff0dc2017-11-21 18:18:46 +0000286 i915_pmu_gt_unparked(i915);
Chris Wilson636918f2017-08-17 15:47:19 +0100287
Chris Wilsonaba5e272017-10-25 15:39:41 +0100288 intel_engines_unpark(i915);
289
Chris Wilson88923042018-01-29 14:41:04 +0000290 i915_queue_hangcheck(i915);
291
Chris Wilson636918f2017-08-17 15:47:19 +0100292 queue_delayed_work(i915->wq,
293 &i915->gt.retire_work,
294 round_jiffies_up_relative(HZ));
295}
296
297static int reserve_engine(struct intel_engine_cs *engine)
298{
299 struct drm_i915_private *i915 = engine->i915;
Chris Wilson12d31732017-02-23 07:44:09 +0000300 u32 active = ++engine->timeline->inflight_seqnos;
301 u32 seqno = engine->timeline->seqno;
302 int ret;
303
304 /* Reservation is fine until we need to wrap around */
Chris Wilson636918f2017-08-17 15:47:19 +0100305 if (unlikely(add_overflows(seqno, active))) {
306 ret = reset_all_global_seqno(i915, 0);
307 if (ret) {
308 engine->timeline->inflight_seqnos--;
309 return ret;
310 }
Chris Wilson12d31732017-02-23 07:44:09 +0000311 }
312
Chris Wilson636918f2017-08-17 15:47:19 +0100313 if (!i915->gt.active_requests++)
314 mark_busy(i915);
315
Chris Wilson12d31732017-02-23 07:44:09 +0000316 return 0;
317}
318
Chris Wilson636918f2017-08-17 15:47:19 +0100319static void unreserve_engine(struct intel_engine_cs *engine)
Chris Wilson9b6586a2017-02-23 07:44:08 +0000320{
Chris Wilson636918f2017-08-17 15:47:19 +0100321 struct drm_i915_private *i915 = engine->i915;
322
323 if (!--i915->gt.active_requests) {
324 /* Cancel the mark_busy() from our reserve_engine() */
325 GEM_BUG_ON(!i915->gt.awake);
326 mod_delayed_work(i915->wq,
327 &i915->gt.idle_work,
328 msecs_to_jiffies(100));
329 }
330
Chris Wilson9b6586a2017-02-23 07:44:08 +0000331 GEM_BUG_ON(!engine->timeline->inflight_seqnos);
332 engine->timeline->inflight_seqnos--;
333}
334
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100335void i915_gem_retire_noop(struct i915_gem_active *active,
Chris Wilsone61e0f52018-02-21 09:56:36 +0000336 struct i915_request *request)
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100337{
338 /* Space left intentionally blank */
339}
340
Chris Wilsone61e0f52018-02-21 09:56:36 +0000341static void advance_ring(struct i915_request *request)
Chris Wilsoncbb60b42017-04-06 18:00:28 +0100342{
343 unsigned int tail;
344
Chris Wilsone61e0f52018-02-21 09:56:36 +0000345 /*
346 * We know the GPU must have read the request to have
Chris Wilsoncbb60b42017-04-06 18:00:28 +0100347 * sent us the seqno + interrupt, so use the position
348 * of tail of the request to update the last known position
349 * of the GPU head.
350 *
351 * Note this requires that we are always called in request
352 * completion order.
353 */
Chris Wilsone6ba9992017-04-25 14:00:49 +0100354 if (list_is_last(&request->ring_link, &request->ring->request_list)) {
Chris Wilsone61e0f52018-02-21 09:56:36 +0000355 /*
356 * We may race here with execlists resubmitting this request
Chris Wilsone6ba9992017-04-25 14:00:49 +0100357 * as we retire it. The resubmission will move the ring->tail
358 * forwards (to request->wa_tail). We either read the
359 * current value that was written to hw, or the value that
360 * is just about to be. Either works, if we miss the last two
361 * noops - they are safe to be replayed on a reset.
362 */
363 tail = READ_ONCE(request->ring->tail);
364 } else {
Chris Wilsoncbb60b42017-04-06 18:00:28 +0100365 tail = request->postfix;
Chris Wilsone6ba9992017-04-25 14:00:49 +0100366 }
Chris Wilsoncbb60b42017-04-06 18:00:28 +0100367 list_del(&request->ring_link);
368
369 request->ring->head = tail;
370}
371
Chris Wilsone61e0f52018-02-21 09:56:36 +0000372static void free_capture_list(struct i915_request *request)
Chris Wilsonb0fd47a2017-04-15 10:39:02 +0100373{
Chris Wilsone61e0f52018-02-21 09:56:36 +0000374 struct i915_capture_list *capture;
Chris Wilsonb0fd47a2017-04-15 10:39:02 +0100375
376 capture = request->capture_list;
377 while (capture) {
Chris Wilsone61e0f52018-02-21 09:56:36 +0000378 struct i915_capture_list *next = capture->next;
Chris Wilsonb0fd47a2017-04-15 10:39:02 +0100379
380 kfree(capture);
381 capture = next;
382 }
383}
384
Chris Wilsone61e0f52018-02-21 09:56:36 +0000385static void i915_request_retire(struct i915_request *request)
Chris Wilson05235c52016-07-20 09:21:08 +0100386{
Chris Wilsone8a9c582016-12-18 15:37:20 +0000387 struct intel_engine_cs *engine = request->engine;
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100388 struct i915_gem_active *active, *next;
389
Chris Wilson4c7d62c2016-10-28 13:58:32 +0100390 lockdep_assert_held(&request->i915->drm.struct_mutex);
Chris Wilson48bc2a42016-11-25 13:17:17 +0000391 GEM_BUG_ON(!i915_sw_fence_signaled(&request->submit));
Chris Wilsone61e0f52018-02-21 09:56:36 +0000392 GEM_BUG_ON(!i915_request_completed(request));
Chris Wilson43020552016-11-15 16:46:20 +0000393 GEM_BUG_ON(!request->i915->gt.active_requests);
Chris Wilson4c7d62c2016-10-28 13:58:32 +0100394
Chris Wilsone61e0f52018-02-21 09:56:36 +0000395 trace_i915_request_retire(request);
Chris Wilson80b204b2016-10-28 13:58:58 +0100396
Chris Wilsone8a9c582016-12-18 15:37:20 +0000397 spin_lock_irq(&engine->timeline->lock);
Chris Wilsone95433c2016-10-28 13:58:27 +0100398 list_del_init(&request->link);
Chris Wilsone8a9c582016-12-18 15:37:20 +0000399 spin_unlock_irq(&engine->timeline->lock);
Chris Wilson05235c52016-07-20 09:21:08 +0100400
Chris Wilson636918f2017-08-17 15:47:19 +0100401 unreserve_engine(request->engine);
Chris Wilsoncbb60b42017-04-06 18:00:28 +0100402 advance_ring(request);
Chris Wilson05235c52016-07-20 09:21:08 +0100403
Chris Wilsonb0fd47a2017-04-15 10:39:02 +0100404 free_capture_list(request);
405
Chris Wilsone61e0f52018-02-21 09:56:36 +0000406 /*
407 * Walk through the active list, calling retire on each. This allows
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100408 * objects to track their GPU activity and mark themselves as idle
409 * when their *last* active request is completed (updating state
410 * tracking lists for eviction, active references for GEM, etc).
411 *
412 * As the ->retire() may free the node, we decouple it first and
413 * pass along the auxiliary information (to avoid dereferencing
414 * the node after the callback).
415 */
416 list_for_each_entry_safe(active, next, &request->active_list, link) {
Chris Wilsone61e0f52018-02-21 09:56:36 +0000417 /*
418 * In microbenchmarks or focusing upon time inside the kernel,
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100419 * we may spend an inordinate amount of time simply handling
420 * the retirement of requests and processing their callbacks.
421 * Of which, this loop itself is particularly hot due to the
422 * cache misses when jumping around the list of i915_gem_active.
423 * So we try to keep this loop as streamlined as possible and
424 * also prefetch the next i915_gem_active to try and hide
425 * the likely cache miss.
426 */
427 prefetchw(next);
428
429 INIT_LIST_HEAD(&active->link);
Chris Wilson0eafec62016-08-04 16:32:41 +0100430 RCU_INIT_POINTER(active->request, NULL);
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100431
432 active->retire(active, request);
433 }
434
Chris Wilsone61e0f52018-02-21 09:56:36 +0000435 i915_request_remove_from_client(request);
Chris Wilson05235c52016-07-20 09:21:08 +0100436
Mika Kuoppalae5e1fc42016-11-16 17:20:31 +0200437 /* Retirement decays the ban score as it is a sign of ctx progress */
Chris Wilson77b25a92017-07-21 13:32:30 +0100438 atomic_dec_if_positive(&request->ctx->ban_score);
Mika Kuoppalae5e1fc42016-11-16 17:20:31 +0200439
Chris Wilsone61e0f52018-02-21 09:56:36 +0000440 /*
441 * The backing object for the context is done after switching to the
Chris Wilsone8a9c582016-12-18 15:37:20 +0000442 * *next* context. Therefore we cannot retire the previous context until
443 * the next context has already started running. However, since we
Chris Wilsone61e0f52018-02-21 09:56:36 +0000444 * cannot take the required locks at i915_request_submit() we
Chris Wilsone8a9c582016-12-18 15:37:20 +0000445 * defer the unpinning of the active context to now, retirement of
446 * the subsequent request.
447 */
448 if (engine->last_retired_context)
449 engine->context_unpin(engine, engine->last_retired_context);
450 engine->last_retired_context = request->ctx;
Chris Wilsond07f0e52016-10-28 13:58:44 +0100451
Chris Wilson7b92c1b2017-06-28 13:35:48 +0100452 spin_lock_irq(&request->lock);
Chris Wilsonb7a3f332018-02-03 10:19:14 +0000453 if (!test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &request->fence.flags))
454 dma_fence_signal_locked(&request->fence);
455 if (test_bit(DMA_FENCE_FLAG_ENABLE_SIGNAL_BIT, &request->fence.flags))
456 intel_engine_cancel_signaling(request);
Chris Wilson253a2812018-02-06 14:31:37 +0000457 if (request->waitboost) {
458 GEM_BUG_ON(!atomic_read(&request->i915->gt_pm.rps.num_waiters));
459 atomic_dec(&request->i915->gt_pm.rps.num_waiters);
460 }
Chris Wilson7b92c1b2017-06-28 13:35:48 +0100461 spin_unlock_irq(&request->lock);
Chris Wilson52e54202016-11-14 20:41:02 +0000462
463 i915_priotree_fini(request->i915, &request->priotree);
Chris Wilsone61e0f52018-02-21 09:56:36 +0000464 i915_request_put(request);
Chris Wilson05235c52016-07-20 09:21:08 +0100465}
466
Chris Wilsone61e0f52018-02-21 09:56:36 +0000467void i915_request_retire_upto(struct i915_request *rq)
Chris Wilson05235c52016-07-20 09:21:08 +0100468{
Chris Wilsone61e0f52018-02-21 09:56:36 +0000469 struct intel_engine_cs *engine = rq->engine;
470 struct i915_request *tmp;
Chris Wilson05235c52016-07-20 09:21:08 +0100471
Chris Wilsone61e0f52018-02-21 09:56:36 +0000472 lockdep_assert_held(&rq->i915->drm.struct_mutex);
473 GEM_BUG_ON(!i915_request_completed(rq));
Chris Wilson4ffd6e02016-11-25 13:17:15 +0000474
Chris Wilsone61e0f52018-02-21 09:56:36 +0000475 if (list_empty(&rq->link))
Chris Wilsone95433c2016-10-28 13:58:27 +0100476 return;
Chris Wilson05235c52016-07-20 09:21:08 +0100477
478 do {
Chris Wilson73cb9702016-10-28 13:58:46 +0100479 tmp = list_first_entry(&engine->timeline->requests,
Chris Wilsonefdf7c02016-08-04 07:52:33 +0100480 typeof(*tmp), link);
Chris Wilson05235c52016-07-20 09:21:08 +0100481
Chris Wilsone61e0f52018-02-21 09:56:36 +0000482 i915_request_retire(tmp);
483 } while (tmp != rq);
Chris Wilson05235c52016-07-20 09:21:08 +0100484}
485
Chris Wilson9b6586a2017-02-23 07:44:08 +0000486static u32 timeline_get_seqno(struct intel_timeline *tl)
Chris Wilson05235c52016-07-20 09:21:08 +0100487{
Chris Wilson9b6586a2017-02-23 07:44:08 +0000488 return ++tl->seqno;
Chris Wilson05235c52016-07-20 09:21:08 +0100489}
490
Chris Wilsone61e0f52018-02-21 09:56:36 +0000491void __i915_request_submit(struct i915_request *request)
Chris Wilson5590af32016-09-09 14:11:54 +0100492{
Chris Wilson73cb9702016-10-28 13:58:46 +0100493 struct intel_engine_cs *engine = request->engine;
Chris Wilsonf2d13292016-10-28 13:58:57 +0100494 struct intel_timeline *timeline;
495 u32 seqno;
Chris Wilson5590af32016-09-09 14:11:54 +0100496
Chris Wilsone60a8702017-03-02 11:51:30 +0000497 GEM_BUG_ON(!irqs_disabled());
Chris Wilson67520412017-03-02 13:28:01 +0000498 lockdep_assert_held(&engine->timeline->lock);
Chris Wilsone60a8702017-03-02 11:51:30 +0000499
Chris Wilson80b204b2016-10-28 13:58:58 +0100500 /* Transfer from per-context onto the global per-engine timeline */
501 timeline = engine->timeline;
502 GEM_BUG_ON(timeline == request->timeline);
Chris Wilson2d453c72017-12-22 14:19:59 +0000503 GEM_BUG_ON(request->global_seqno);
Chris Wilson5590af32016-09-09 14:11:54 +0100504
Chris Wilson9b6586a2017-02-23 07:44:08 +0000505 seqno = timeline_get_seqno(timeline);
Chris Wilsonf2d13292016-10-28 13:58:57 +0100506 GEM_BUG_ON(!seqno);
507 GEM_BUG_ON(i915_seqno_passed(intel_engine_get_seqno(engine), seqno));
508
Chris Wilsonf2d13292016-10-28 13:58:57 +0100509 /* We may be recursing from the signal callback of another i915 fence */
510 spin_lock_nested(&request->lock, SINGLE_DEPTH_NESTING);
511 request->global_seqno = seqno;
512 if (test_bit(DMA_FENCE_FLAG_ENABLE_SIGNAL_BIT, &request->fence.flags))
Chris Wilsonf7b02a52017-04-26 09:06:59 +0100513 intel_engine_enable_signaling(request, false);
Chris Wilsonf2d13292016-10-28 13:58:57 +0100514 spin_unlock(&request->lock);
515
Chris Wilsoncaddfe72016-10-28 13:58:52 +0100516 engine->emit_breadcrumb(request,
517 request->ring->vaddr + request->postfix);
Chris Wilson5590af32016-09-09 14:11:54 +0100518
Chris Wilsonbb894852016-11-14 20:40:57 +0000519 spin_lock(&request->timeline->lock);
Chris Wilson80b204b2016-10-28 13:58:58 +0100520 list_move_tail(&request->link, &timeline->requests);
521 spin_unlock(&request->timeline->lock);
522
Chris Wilsone61e0f52018-02-21 09:56:36 +0000523 trace_i915_request_execute(request);
Tvrtko Ursulin158863f2018-02-20 10:47:42 +0000524
Chris Wilsonfe497892017-02-23 07:44:13 +0000525 wake_up_all(&request->execute);
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000526}
Chris Wilson23902e42016-11-14 20:40:58 +0000527
Chris Wilsone61e0f52018-02-21 09:56:36 +0000528void i915_request_submit(struct i915_request *request)
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000529{
530 struct intel_engine_cs *engine = request->engine;
531 unsigned long flags;
532
533 /* Will be called from irq-context when using foreign fences. */
534 spin_lock_irqsave(&engine->timeline->lock, flags);
535
Chris Wilsone61e0f52018-02-21 09:56:36 +0000536 __i915_request_submit(request);
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000537
538 spin_unlock_irqrestore(&engine->timeline->lock, flags);
539}
540
Chris Wilsone61e0f52018-02-21 09:56:36 +0000541void __i915_request_unsubmit(struct i915_request *request)
Chris Wilsond6a22892017-02-23 07:44:17 +0000542{
543 struct intel_engine_cs *engine = request->engine;
544 struct intel_timeline *timeline;
545
Chris Wilsone60a8702017-03-02 11:51:30 +0000546 GEM_BUG_ON(!irqs_disabled());
Chris Wilson67520412017-03-02 13:28:01 +0000547 lockdep_assert_held(&engine->timeline->lock);
Chris Wilsond6a22892017-02-23 07:44:17 +0000548
Chris Wilsone61e0f52018-02-21 09:56:36 +0000549 /*
550 * Only unwind in reverse order, required so that the per-context list
Chris Wilsond6a22892017-02-23 07:44:17 +0000551 * is kept in seqno/ring order.
552 */
Chris Wilson2d453c72017-12-22 14:19:59 +0000553 GEM_BUG_ON(!request->global_seqno);
Chris Wilsond6a22892017-02-23 07:44:17 +0000554 GEM_BUG_ON(request->global_seqno != engine->timeline->seqno);
Chris Wilsonc7cc1442018-01-29 09:49:12 +0000555 GEM_BUG_ON(i915_seqno_passed(intel_engine_get_seqno(engine),
556 request->global_seqno));
Chris Wilsond6a22892017-02-23 07:44:17 +0000557 engine->timeline->seqno--;
558
559 /* We may be recursing from the signal callback of another i915 fence */
560 spin_lock_nested(&request->lock, SINGLE_DEPTH_NESTING);
561 request->global_seqno = 0;
562 if (test_bit(DMA_FENCE_FLAG_ENABLE_SIGNAL_BIT, &request->fence.flags))
563 intel_engine_cancel_signaling(request);
564 spin_unlock(&request->lock);
565
566 /* Transfer back from the global per-engine timeline to per-context */
567 timeline = request->timeline;
568 GEM_BUG_ON(timeline == engine->timeline);
569
570 spin_lock(&timeline->lock);
571 list_move(&request->link, &timeline->requests);
572 spin_unlock(&timeline->lock);
573
Chris Wilsone61e0f52018-02-21 09:56:36 +0000574 /*
575 * We don't need to wake_up any waiters on request->execute, they
Chris Wilsond6a22892017-02-23 07:44:17 +0000576 * will get woken by any other event or us re-adding this request
Chris Wilsone61e0f52018-02-21 09:56:36 +0000577 * to the engine timeline (__i915_request_submit()). The waiters
Chris Wilsond6a22892017-02-23 07:44:17 +0000578 * should be quite adapt at finding that the request now has a new
579 * global_seqno to the one they went to sleep on.
580 */
581}
582
Chris Wilsone61e0f52018-02-21 09:56:36 +0000583void i915_request_unsubmit(struct i915_request *request)
Chris Wilsond6a22892017-02-23 07:44:17 +0000584{
585 struct intel_engine_cs *engine = request->engine;
586 unsigned long flags;
587
588 /* Will be called from irq-context when using foreign fences. */
589 spin_lock_irqsave(&engine->timeline->lock, flags);
590
Chris Wilsone61e0f52018-02-21 09:56:36 +0000591 __i915_request_unsubmit(request);
Chris Wilsond6a22892017-02-23 07:44:17 +0000592
593 spin_unlock_irqrestore(&engine->timeline->lock, flags);
594}
595
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000596static int __i915_sw_fence_call
597submit_notify(struct i915_sw_fence *fence, enum i915_sw_fence_notify state)
598{
Chris Wilsone61e0f52018-02-21 09:56:36 +0000599 struct i915_request *request =
Chris Wilson48bc2a42016-11-25 13:17:17 +0000600 container_of(fence, typeof(*request), submit);
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000601
Chris Wilson48bc2a42016-11-25 13:17:17 +0000602 switch (state) {
603 case FENCE_COMPLETE:
Chris Wilsone61e0f52018-02-21 09:56:36 +0000604 trace_i915_request_submit(request);
Daniel Vetteraf7a8ff2017-10-11 11:10:19 +0200605 /*
Chris Wilsone61e0f52018-02-21 09:56:36 +0000606 * We need to serialize use of the submit_request() callback
607 * with its hotplugging performed during an emergency
608 * i915_gem_set_wedged(). We use the RCU mechanism to mark the
609 * critical section in order to force i915_gem_set_wedged() to
610 * wait until the submit_request() is completed before
611 * proceeding.
Daniel Vetteraf7a8ff2017-10-11 11:10:19 +0200612 */
613 rcu_read_lock();
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000614 request->engine->submit_request(request);
Daniel Vetteraf7a8ff2017-10-11 11:10:19 +0200615 rcu_read_unlock();
Chris Wilson48bc2a42016-11-25 13:17:17 +0000616 break;
617
618 case FENCE_FREE:
Chris Wilsone61e0f52018-02-21 09:56:36 +0000619 i915_request_put(request);
Chris Wilson48bc2a42016-11-25 13:17:17 +0000620 break;
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000621 }
Chris Wilson80b204b2016-10-28 13:58:58 +0100622
Chris Wilson5590af32016-09-09 14:11:54 +0100623 return NOTIFY_DONE;
624}
625
Chris Wilson8e637172016-08-02 22:50:26 +0100626/**
Chris Wilsone61e0f52018-02-21 09:56:36 +0000627 * i915_request_alloc - allocate a request structure
Chris Wilson8e637172016-08-02 22:50:26 +0100628 *
629 * @engine: engine that we wish to issue the request on.
630 * @ctx: context that the request will be associated with.
Chris Wilson8e637172016-08-02 22:50:26 +0100631 *
632 * Returns a pointer to the allocated request if successful,
633 * or an error code if not.
634 */
Chris Wilsone61e0f52018-02-21 09:56:36 +0000635struct i915_request *
636i915_request_alloc(struct intel_engine_cs *engine, struct i915_gem_context *ctx)
Chris Wilson05235c52016-07-20 09:21:08 +0100637{
Chris Wilsone61e0f52018-02-21 09:56:36 +0000638 struct drm_i915_private *i915 = engine->i915;
639 struct i915_request *rq;
Chris Wilson266a2402017-05-04 10:33:08 +0100640 struct intel_ring *ring;
Chris Wilson05235c52016-07-20 09:21:08 +0100641 int ret;
642
Chris Wilsone61e0f52018-02-21 09:56:36 +0000643 lockdep_assert_held(&i915->drm.struct_mutex);
Chris Wilson28176ef2016-10-28 13:58:56 +0100644
Chris Wilsone7af3112017-10-03 21:34:48 +0100645 /*
646 * Preempt contexts are reserved for exclusive use to inject a
647 * preemption context switch. They are never to be used for any trivial
648 * request!
649 */
Chris Wilsone61e0f52018-02-21 09:56:36 +0000650 GEM_BUG_ON(ctx == i915->preempt_context);
Chris Wilsone7af3112017-10-03 21:34:48 +0100651
Chris Wilsone61e0f52018-02-21 09:56:36 +0000652 /*
653 * ABI: Before userspace accesses the GPU (e.g. execbuffer), report
Chris Wilson6ffb7d02017-01-14 16:23:33 +0000654 * EIO if the GPU is already wedged.
Chris Wilson05235c52016-07-20 09:21:08 +0100655 */
Chris Wilsone61e0f52018-02-21 09:56:36 +0000656 if (i915_terminally_wedged(&i915->gpu_error))
Chris Wilson6ffb7d02017-01-14 16:23:33 +0000657 return ERR_PTR(-EIO);
Chris Wilson05235c52016-07-20 09:21:08 +0100658
Chris Wilsone61e0f52018-02-21 09:56:36 +0000659 /*
660 * Pinning the contexts may generate requests in order to acquire
Chris Wilsone8a9c582016-12-18 15:37:20 +0000661 * GGTT space, so do this first before we reserve a seqno for
662 * ourselves.
663 */
Chris Wilson266a2402017-05-04 10:33:08 +0100664 ring = engine->context_pin(engine, ctx);
665 if (IS_ERR(ring))
666 return ERR_CAST(ring);
667 GEM_BUG_ON(!ring);
Chris Wilson28176ef2016-10-28 13:58:56 +0100668
Chris Wilson636918f2017-08-17 15:47:19 +0100669 ret = reserve_engine(engine);
Chris Wilsone8a9c582016-12-18 15:37:20 +0000670 if (ret)
671 goto err_unpin;
672
Chris Wilson3fef5cd2017-11-20 10:20:02 +0000673 ret = intel_ring_wait_for_space(ring, MIN_SPACE_FOR_ADD_REQUEST);
674 if (ret)
675 goto err_unreserve;
676
Chris Wilson9b5f4e52016-07-20 09:21:09 +0100677 /* Move the oldest request to the slab-cache (if not in use!) */
Chris Wilsone61e0f52018-02-21 09:56:36 +0000678 rq = list_first_entry_or_null(&engine->timeline->requests,
679 typeof(*rq), link);
680 if (rq && i915_request_completed(rq))
681 i915_request_retire(rq);
Chris Wilson9b5f4e52016-07-20 09:21:09 +0100682
Chris Wilsone61e0f52018-02-21 09:56:36 +0000683 /*
684 * Beware: Dragons be flying overhead.
Chris Wilson5a198b82016-08-09 09:23:34 +0100685 *
686 * We use RCU to look up requests in flight. The lookups may
687 * race with the request being allocated from the slab freelist.
688 * That is the request we are writing to here, may be in the process
Chris Wilson1426f712016-08-09 17:03:22 +0100689 * of being read by __i915_gem_active_get_rcu(). As such,
Chris Wilson5a198b82016-08-09 09:23:34 +0100690 * we have to be very careful when overwriting the contents. During
691 * the RCU lookup, we change chase the request->engine pointer,
Chris Wilson65e47602016-10-28 13:58:49 +0100692 * read the request->global_seqno and increment the reference count.
Chris Wilson5a198b82016-08-09 09:23:34 +0100693 *
694 * The reference count is incremented atomically. If it is zero,
695 * the lookup knows the request is unallocated and complete. Otherwise,
696 * it is either still in use, or has been reallocated and reset
Chris Wilsonf54d1862016-10-25 13:00:45 +0100697 * with dma_fence_init(). This increment is safe for release as we
698 * check that the request we have a reference to and matches the active
Chris Wilson5a198b82016-08-09 09:23:34 +0100699 * request.
700 *
701 * Before we increment the refcount, we chase the request->engine
702 * pointer. We must not call kmem_cache_zalloc() or else we set
703 * that pointer to NULL and cause a crash during the lookup. If
704 * we see the request is completed (based on the value of the
705 * old engine and seqno), the lookup is complete and reports NULL.
706 * If we decide the request is not completed (new engine or seqno),
707 * then we grab a reference and double check that it is still the
708 * active request - which it won't be and restart the lookup.
709 *
710 * Do not use kmem_cache_zalloc() here!
711 */
Chris Wilsone61e0f52018-02-21 09:56:36 +0000712 rq = kmem_cache_alloc(i915->requests,
713 GFP_KERNEL | __GFP_RETRY_MAYFAIL | __GFP_NOWARN);
714 if (unlikely(!rq)) {
Chris Wilson31c70f92017-12-12 18:06:52 +0000715 /* Ratelimit ourselves to prevent oom from malicious clients */
Chris Wilsone61e0f52018-02-21 09:56:36 +0000716 ret = i915_gem_wait_for_idle(i915,
Chris Wilson31c70f92017-12-12 18:06:52 +0000717 I915_WAIT_LOCKED |
718 I915_WAIT_INTERRUPTIBLE);
719 if (ret)
720 goto err_unreserve;
721
Chris Wilsonf0111b02018-01-19 14:46:57 +0000722 /*
723 * We've forced the client to stall and catch up with whatever
724 * backlog there might have been. As we are assuming that we
725 * caused the mempressure, now is an opportune time to
726 * recover as much memory from the request pool as is possible.
727 * Having already penalized the client to stall, we spend
728 * a little extra time to re-optimise page allocation.
729 */
Chris Wilsone61e0f52018-02-21 09:56:36 +0000730 kmem_cache_shrink(i915->requests);
Chris Wilsonf0111b02018-01-19 14:46:57 +0000731 rcu_barrier(); /* Recover the TYPESAFE_BY_RCU pages */
732
Chris Wilsone61e0f52018-02-21 09:56:36 +0000733 rq = kmem_cache_alloc(i915->requests, GFP_KERNEL);
734 if (!rq) {
Chris Wilson31c70f92017-12-12 18:06:52 +0000735 ret = -ENOMEM;
736 goto err_unreserve;
737 }
Chris Wilson28176ef2016-10-28 13:58:56 +0100738 }
Chris Wilson05235c52016-07-20 09:21:08 +0100739
Chris Wilsone61e0f52018-02-21 09:56:36 +0000740 rq->timeline = i915_gem_context_lookup_timeline(ctx, engine);
741 GEM_BUG_ON(rq->timeline == engine->timeline);
Chris Wilson73cb9702016-10-28 13:58:46 +0100742
Chris Wilsone61e0f52018-02-21 09:56:36 +0000743 spin_lock_init(&rq->lock);
744 dma_fence_init(&rq->fence,
Chris Wilsonf54d1862016-10-25 13:00:45 +0100745 &i915_fence_ops,
Chris Wilsone61e0f52018-02-21 09:56:36 +0000746 &rq->lock,
747 rq->timeline->fence_context,
748 timeline_get_seqno(rq->timeline));
Chris Wilson04769652016-07-20 09:21:11 +0100749
Chris Wilson48bc2a42016-11-25 13:17:17 +0000750 /* We bump the ref for the fence chain */
Chris Wilsone61e0f52018-02-21 09:56:36 +0000751 i915_sw_fence_init(&i915_request_get(rq)->submit, submit_notify);
752 init_waitqueue_head(&rq->execute);
Chris Wilson5590af32016-09-09 14:11:54 +0100753
Chris Wilsone61e0f52018-02-21 09:56:36 +0000754 i915_priotree_init(&rq->priotree);
Chris Wilson52e54202016-11-14 20:41:02 +0000755
Chris Wilsone61e0f52018-02-21 09:56:36 +0000756 INIT_LIST_HEAD(&rq->active_list);
757 rq->i915 = i915;
758 rq->engine = engine;
759 rq->ctx = ctx;
760 rq->ring = ring;
Chris Wilson05235c52016-07-20 09:21:08 +0100761
Chris Wilson5a198b82016-08-09 09:23:34 +0100762 /* No zalloc, must clear what we need by hand */
Chris Wilsone61e0f52018-02-21 09:56:36 +0000763 rq->global_seqno = 0;
764 rq->signaling.wait.seqno = 0;
765 rq->file_priv = NULL;
766 rq->batch = NULL;
767 rq->capture_list = NULL;
768 rq->waitboost = false;
Chris Wilson5a198b82016-08-09 09:23:34 +0100769
Chris Wilson05235c52016-07-20 09:21:08 +0100770 /*
771 * Reserve space in the ring buffer for all the commands required to
772 * eventually emit this request. This is to guarantee that the
Chris Wilsone61e0f52018-02-21 09:56:36 +0000773 * i915_request_add() call can't fail. Note that the reserve may need
Chris Wilson05235c52016-07-20 09:21:08 +0100774 * to be redone if the request is not actually submitted straight
775 * away, e.g. because a GPU scheduler has deferred it.
776 */
Chris Wilsone61e0f52018-02-21 09:56:36 +0000777 rq->reserved_space = MIN_SPACE_FOR_ADD_REQUEST;
778 GEM_BUG_ON(rq->reserved_space < engine->emit_breadcrumb_sz);
Chris Wilson05235c52016-07-20 09:21:08 +0100779
Chris Wilson21131842017-11-20 10:20:01 +0000780 /*
781 * Record the position of the start of the request so that
Chris Wilsond0454462016-08-15 10:48:40 +0100782 * should we detect the updated seqno part-way through the
783 * GPU processing the request, we never over-estimate the
784 * position of the head.
785 */
Chris Wilsone61e0f52018-02-21 09:56:36 +0000786 rq->head = rq->ring->emit;
Chris Wilsond0454462016-08-15 10:48:40 +0100787
Chris Wilson21131842017-11-20 10:20:01 +0000788 /* Unconditionally invalidate GPU caches and TLBs. */
Chris Wilsone61e0f52018-02-21 09:56:36 +0000789 ret = engine->emit_flush(rq, EMIT_INVALIDATE);
Chris Wilson21131842017-11-20 10:20:01 +0000790 if (ret)
Chris Wilsonb1c24a62017-11-23 15:26:30 +0000791 goto err_unwind;
Chris Wilson21131842017-11-20 10:20:01 +0000792
Chris Wilsone61e0f52018-02-21 09:56:36 +0000793 ret = engine->request_alloc(rq);
Chris Wilsonb1c24a62017-11-23 15:26:30 +0000794 if (ret)
795 goto err_unwind;
Chris Wilson21131842017-11-20 10:20:01 +0000796
Chris Wilson9b6586a2017-02-23 07:44:08 +0000797 /* Check that we didn't interrupt ourselves with a new request */
Chris Wilsone61e0f52018-02-21 09:56:36 +0000798 GEM_BUG_ON(rq->timeline->seqno != rq->fence.seqno);
799 return rq;
Chris Wilson05235c52016-07-20 09:21:08 +0100800
Chris Wilsonb1c24a62017-11-23 15:26:30 +0000801err_unwind:
Chris Wilsone61e0f52018-02-21 09:56:36 +0000802 rq->ring->emit = rq->head;
Chris Wilsonb1c24a62017-11-23 15:26:30 +0000803
Chris Wilson1618bdb2016-11-25 13:17:16 +0000804 /* Make sure we didn't add ourselves to external state before freeing */
Chris Wilsone61e0f52018-02-21 09:56:36 +0000805 GEM_BUG_ON(!list_empty(&rq->active_list));
806 GEM_BUG_ON(!list_empty(&rq->priotree.signalers_list));
807 GEM_BUG_ON(!list_empty(&rq->priotree.waiters_list));
Chris Wilson1618bdb2016-11-25 13:17:16 +0000808
Chris Wilsone61e0f52018-02-21 09:56:36 +0000809 kmem_cache_free(i915->requests, rq);
Chris Wilson28176ef2016-10-28 13:58:56 +0100810err_unreserve:
Chris Wilson636918f2017-08-17 15:47:19 +0100811 unreserve_engine(engine);
Chris Wilsone8a9c582016-12-18 15:37:20 +0000812err_unpin:
813 engine->context_unpin(engine, ctx);
Chris Wilson8e637172016-08-02 22:50:26 +0100814 return ERR_PTR(ret);
Chris Wilson05235c52016-07-20 09:21:08 +0100815}
816
Chris Wilsona2bc4692016-09-09 14:11:56 +0100817static int
Chris Wilsone61e0f52018-02-21 09:56:36 +0000818i915_request_await_request(struct i915_request *to, struct i915_request *from)
Chris Wilsona2bc4692016-09-09 14:11:56 +0100819{
Chris Wilson85e17f52016-10-28 13:58:53 +0100820 int ret;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100821
822 GEM_BUG_ON(to == from);
Chris Wilsonceae14b2017-05-03 10:39:20 +0100823 GEM_BUG_ON(to->timeline == from->timeline);
Chris Wilsona2bc4692016-09-09 14:11:56 +0100824
Chris Wilsone61e0f52018-02-21 09:56:36 +0000825 if (i915_request_completed(from))
Chris Wilsonade0b0c2017-04-22 09:15:37 +0100826 return 0;
827
Chris Wilson52e54202016-11-14 20:41:02 +0000828 if (to->engine->schedule) {
829 ret = i915_priotree_add_dependency(to->i915,
830 &to->priotree,
831 &from->priotree);
832 if (ret < 0)
833 return ret;
834 }
835
Chris Wilson73cb9702016-10-28 13:58:46 +0100836 if (to->engine == from->engine) {
837 ret = i915_sw_fence_await_sw_fence_gfp(&to->submit,
838 &from->submit,
Chris Wilson2abe2f82017-12-12 18:06:51 +0000839 I915_FENCE_GFP);
Chris Wilson73cb9702016-10-28 13:58:46 +0100840 return ret < 0 ? ret : 0;
841 }
842
Chris Wilson6b567082017-06-08 12:14:05 +0100843 if (to->engine->semaphore.sync_to) {
844 u32 seqno;
Chris Wilson65e47602016-10-28 13:58:49 +0100845
Chris Wilson49f08592017-05-03 10:39:24 +0100846 GEM_BUG_ON(!from->engine->semaphore.signal);
847
Chris Wilsone61e0f52018-02-21 09:56:36 +0000848 seqno = i915_request_global_seqno(from);
Chris Wilson6b567082017-06-08 12:14:05 +0100849 if (!seqno)
850 goto await_dma_fence;
851
Chris Wilsonfc9d4d22017-05-03 10:39:23 +0100852 if (seqno <= to->timeline->global_sync[from->engine->id])
853 return 0;
854
855 trace_i915_gem_ring_sync_to(to, from);
Chris Wilsona2bc4692016-09-09 14:11:56 +0100856 ret = to->engine->semaphore.sync_to(to, from);
857 if (ret)
858 return ret;
Chris Wilsonfc9d4d22017-05-03 10:39:23 +0100859
860 to->timeline->global_sync[from->engine->id] = seqno;
Chris Wilson6b567082017-06-08 12:14:05 +0100861 return 0;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100862 }
863
Chris Wilsonfc9d4d22017-05-03 10:39:23 +0100864await_dma_fence:
865 ret = i915_sw_fence_await_dma_fence(&to->submit,
866 &from->fence, 0,
Chris Wilson2abe2f82017-12-12 18:06:51 +0000867 I915_FENCE_GFP);
Chris Wilsonfc9d4d22017-05-03 10:39:23 +0100868 return ret < 0 ? ret : 0;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100869}
870
Chris Wilsonb52992c2016-10-28 13:58:24 +0100871int
Chris Wilsone61e0f52018-02-21 09:56:36 +0000872i915_request_await_dma_fence(struct i915_request *rq, struct dma_fence *fence)
Chris Wilsonb52992c2016-10-28 13:58:24 +0100873{
Chris Wilson29ef3fa2017-05-03 10:39:19 +0100874 struct dma_fence **child = &fence;
875 unsigned int nchild = 1;
Chris Wilsonb52992c2016-10-28 13:58:24 +0100876 int ret;
Chris Wilsonb52992c2016-10-28 13:58:24 +0100877
Chris Wilsone61e0f52018-02-21 09:56:36 +0000878 /*
879 * Note that if the fence-array was created in signal-on-any mode,
Chris Wilsonb52992c2016-10-28 13:58:24 +0100880 * we should *not* decompose it into its individual fences. However,
881 * we don't currently store which mode the fence-array is operating
882 * in. Fortunately, the only user of signal-on-any is private to
883 * amdgpu and we should not see any incoming fence-array from
884 * sync-file being in signal-on-any mode.
885 */
Chris Wilson29ef3fa2017-05-03 10:39:19 +0100886 if (dma_fence_is_array(fence)) {
887 struct dma_fence_array *array = to_dma_fence_array(fence);
Chris Wilsonb52992c2016-10-28 13:58:24 +0100888
Chris Wilson29ef3fa2017-05-03 10:39:19 +0100889 child = array->fences;
890 nchild = array->num_fences;
891 GEM_BUG_ON(!nchild);
892 }
Chris Wilsonb52992c2016-10-28 13:58:24 +0100893
Chris Wilson29ef3fa2017-05-03 10:39:19 +0100894 do {
895 fence = *child++;
896 if (test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &fence->flags))
897 continue;
898
Chris Wilsonceae14b2017-05-03 10:39:20 +0100899 /*
900 * Requests on the same timeline are explicitly ordered, along
Chris Wilsone61e0f52018-02-21 09:56:36 +0000901 * with their dependencies, by i915_request_add() which ensures
Chris Wilsonceae14b2017-05-03 10:39:20 +0100902 * that requests are submitted in-order through each ring.
903 */
Chris Wilsone61e0f52018-02-21 09:56:36 +0000904 if (fence->context == rq->fence.context)
Chris Wilsonceae14b2017-05-03 10:39:20 +0100905 continue;
906
Chris Wilson47979482017-05-03 10:39:21 +0100907 /* Squash repeated waits to the same timelines */
Chris Wilsone61e0f52018-02-21 09:56:36 +0000908 if (fence->context != rq->i915->mm.unordered_timeline &&
909 intel_timeline_sync_is_later(rq->timeline, fence))
Chris Wilson47979482017-05-03 10:39:21 +0100910 continue;
911
Chris Wilson29ef3fa2017-05-03 10:39:19 +0100912 if (dma_fence_is_i915(fence))
Chris Wilsone61e0f52018-02-21 09:56:36 +0000913 ret = i915_request_await_request(rq, to_request(fence));
Chris Wilsonb52992c2016-10-28 13:58:24 +0100914 else
Chris Wilsone61e0f52018-02-21 09:56:36 +0000915 ret = i915_sw_fence_await_dma_fence(&rq->submit, fence,
Chris Wilson29ef3fa2017-05-03 10:39:19 +0100916 I915_FENCE_TIMEOUT,
Chris Wilson2abe2f82017-12-12 18:06:51 +0000917 I915_FENCE_GFP);
Chris Wilsonb52992c2016-10-28 13:58:24 +0100918 if (ret < 0)
919 return ret;
Chris Wilson47979482017-05-03 10:39:21 +0100920
921 /* Record the latest fence used against each timeline */
Chris Wilsone61e0f52018-02-21 09:56:36 +0000922 if (fence->context != rq->i915->mm.unordered_timeline)
923 intel_timeline_sync_set(rq->timeline, fence);
Chris Wilson29ef3fa2017-05-03 10:39:19 +0100924 } while (--nchild);
Chris Wilsonb52992c2016-10-28 13:58:24 +0100925
926 return 0;
927}
928
Chris Wilsona2bc4692016-09-09 14:11:56 +0100929/**
Chris Wilsone61e0f52018-02-21 09:56:36 +0000930 * i915_request_await_object - set this request to (async) wait upon a bo
Chris Wilsona2bc4692016-09-09 14:11:56 +0100931 * @to: request we are wishing to use
932 * @obj: object which may be in use on another ring.
Chris Wilsond8802122018-02-08 11:14:53 +0000933 * @write: whether the wait is on behalf of a writer
Chris Wilsona2bc4692016-09-09 14:11:56 +0100934 *
935 * This code is meant to abstract object synchronization with the GPU.
936 * Conceptually we serialise writes between engines inside the GPU.
937 * We only allow one engine to write into a buffer at any time, but
938 * multiple readers. To ensure each has a coherent view of memory, we must:
939 *
940 * - If there is an outstanding write request to the object, the new
941 * request must wait for it to complete (either CPU or in hw, requests
942 * on the same ring will be naturally ordered).
943 *
944 * - If we are a write request (pending_write_domain is set), the new
945 * request must wait for outstanding read requests to complete.
946 *
947 * Returns 0 if successful, else propagates up the lower layer error.
948 */
949int
Chris Wilsone61e0f52018-02-21 09:56:36 +0000950i915_request_await_object(struct i915_request *to,
951 struct drm_i915_gem_object *obj,
952 bool write)
Chris Wilsona2bc4692016-09-09 14:11:56 +0100953{
Chris Wilsond07f0e52016-10-28 13:58:44 +0100954 struct dma_fence *excl;
955 int ret = 0;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100956
957 if (write) {
Chris Wilsond07f0e52016-10-28 13:58:44 +0100958 struct dma_fence **shared;
959 unsigned int count, i;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100960
Chris Wilsond07f0e52016-10-28 13:58:44 +0100961 ret = reservation_object_get_fences_rcu(obj->resv,
962 &excl, &count, &shared);
Chris Wilsona2bc4692016-09-09 14:11:56 +0100963 if (ret)
964 return ret;
Chris Wilsond07f0e52016-10-28 13:58:44 +0100965
966 for (i = 0; i < count; i++) {
Chris Wilsone61e0f52018-02-21 09:56:36 +0000967 ret = i915_request_await_dma_fence(to, shared[i]);
Chris Wilsond07f0e52016-10-28 13:58:44 +0100968 if (ret)
969 break;
970
971 dma_fence_put(shared[i]);
972 }
973
974 for (; i < count; i++)
975 dma_fence_put(shared[i]);
976 kfree(shared);
977 } else {
978 excl = reservation_object_get_excl_rcu(obj->resv);
Chris Wilsona2bc4692016-09-09 14:11:56 +0100979 }
980
Chris Wilsond07f0e52016-10-28 13:58:44 +0100981 if (excl) {
982 if (ret == 0)
Chris Wilsone61e0f52018-02-21 09:56:36 +0000983 ret = i915_request_await_dma_fence(to, excl);
Chris Wilsond07f0e52016-10-28 13:58:44 +0100984
985 dma_fence_put(excl);
986 }
987
988 return ret;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100989}
990
Chris Wilson05235c52016-07-20 09:21:08 +0100991/*
992 * NB: This function is not allowed to fail. Doing so would mean the the
993 * request is not being tracked for completion but the work itself is
994 * going to happen on the hardware. This would be a Bad Thing(tm).
995 */
Chris Wilsone61e0f52018-02-21 09:56:36 +0000996void __i915_request_add(struct i915_request *request, bool flush_caches)
Chris Wilson05235c52016-07-20 09:21:08 +0100997{
Chris Wilson95b2ab52016-08-15 10:48:46 +0100998 struct intel_engine_cs *engine = request->engine;
999 struct intel_ring *ring = request->ring;
Chris Wilson73cb9702016-10-28 13:58:46 +01001000 struct intel_timeline *timeline = request->timeline;
Chris Wilsone61e0f52018-02-21 09:56:36 +00001001 struct i915_request *prev;
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001002 u32 *cs;
Chris Wilsoncaddfe72016-10-28 13:58:52 +01001003 int err;
Chris Wilson05235c52016-07-20 09:21:08 +01001004
Chris Wilson4c7d62c2016-10-28 13:58:32 +01001005 lockdep_assert_held(&request->i915->drm.struct_mutex);
Chris Wilsone61e0f52018-02-21 09:56:36 +00001006 trace_i915_request_add(request);
Chris Wilson0f25dff2016-09-09 14:11:55 +01001007
Chris Wilson8ac71d12018-02-07 08:43:50 +00001008 /*
1009 * Make sure that no request gazumped us - if it was allocated after
Chris Wilsone61e0f52018-02-21 09:56:36 +00001010 * our i915_request_alloc() and called __i915_request_add() before
Chris Wilsonc781c972017-01-11 14:08:58 +00001011 * us, the timeline will hold its seqno which is later than ours.
1012 */
Chris Wilson9b6586a2017-02-23 07:44:08 +00001013 GEM_BUG_ON(timeline->seqno != request->fence.seqno);
Chris Wilsonc781c972017-01-11 14:08:58 +00001014
Chris Wilson05235c52016-07-20 09:21:08 +01001015 /*
1016 * To ensure that this call will not fail, space for its emissions
1017 * should already have been reserved in the ring buffer. Let the ring
1018 * know that it is time to use that space up.
1019 */
Chris Wilson05235c52016-07-20 09:21:08 +01001020 request->reserved_space = 0;
1021
1022 /*
1023 * Emit any outstanding flushes - execbuf can fail to emit the flush
1024 * after having emitted the batchbuffer command. Hence we need to fix
1025 * things up similar to emitting the lazy request. The difference here
1026 * is that the flush _must_ happen before the next request, no matter
1027 * what.
1028 */
1029 if (flush_caches) {
Chris Wilsoncaddfe72016-10-28 13:58:52 +01001030 err = engine->emit_flush(request, EMIT_FLUSH);
Chris Wilsonc7fe7d22016-08-02 22:50:24 +01001031
Chris Wilson05235c52016-07-20 09:21:08 +01001032 /* Not allowed to fail! */
Chris Wilsoncaddfe72016-10-28 13:58:52 +01001033 WARN(err, "engine->emit_flush() failed: %d!\n", err);
Chris Wilson05235c52016-07-20 09:21:08 +01001034 }
1035
Chris Wilson8ac71d12018-02-07 08:43:50 +00001036 /*
1037 * Record the position of the start of the breadcrumb so that
Chris Wilson05235c52016-07-20 09:21:08 +01001038 * should we detect the updated seqno part-way through the
1039 * GPU processing the request, we never over-estimate the
Chris Wilsond0454462016-08-15 10:48:40 +01001040 * position of the ring's HEAD.
Chris Wilson05235c52016-07-20 09:21:08 +01001041 */
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001042 cs = intel_ring_begin(request, engine->emit_breadcrumb_sz);
1043 GEM_BUG_ON(IS_ERR(cs));
1044 request->postfix = intel_ring_offset(request, cs);
Chris Wilson05235c52016-07-20 09:21:08 +01001045
Chris Wilson8ac71d12018-02-07 08:43:50 +00001046 /*
1047 * Seal the request and mark it as pending execution. Note that
Chris Wilson0f25dff2016-09-09 14:11:55 +01001048 * we may inspect this state, without holding any locks, during
1049 * hangcheck. Hence we apply the barrier to ensure that we do not
1050 * see a more recent value in the hws than we are tracking.
1051 */
Chris Wilson0a046a02016-09-09 14:12:00 +01001052
Chris Wilson73cb9702016-10-28 13:58:46 +01001053 prev = i915_gem_active_raw(&timeline->last_request,
Chris Wilson0a046a02016-09-09 14:12:00 +01001054 &request->i915->drm.struct_mutex);
Chris Wilsone61e0f52018-02-21 09:56:36 +00001055 if (prev && !i915_request_completed(prev)) {
Chris Wilson0a046a02016-09-09 14:12:00 +01001056 i915_sw_fence_await_sw_fence(&request->submit, &prev->submit,
1057 &request->submitq);
Chris Wilson52e54202016-11-14 20:41:02 +00001058 if (engine->schedule)
1059 __i915_priotree_add_dependency(&request->priotree,
1060 &prev->priotree,
1061 &request->dep,
1062 0);
1063 }
Chris Wilson0a046a02016-09-09 14:12:00 +01001064
Chris Wilson80b204b2016-10-28 13:58:58 +01001065 spin_lock_irq(&timeline->lock);
Chris Wilsonf2d13292016-10-28 13:58:57 +01001066 list_add_tail(&request->link, &timeline->requests);
Chris Wilson80b204b2016-10-28 13:58:58 +01001067 spin_unlock_irq(&timeline->lock);
Chris Wilson28176ef2016-10-28 13:58:56 +01001068
Chris Wilson9b6586a2017-02-23 07:44:08 +00001069 GEM_BUG_ON(timeline->seqno != request->fence.seqno);
Chris Wilson73cb9702016-10-28 13:58:46 +01001070 i915_gem_active_set(&timeline->last_request, request);
Chris Wilsonf2d13292016-10-28 13:58:57 +01001071
Chris Wilson0f25dff2016-09-09 14:11:55 +01001072 list_add_tail(&request->ring_link, &ring->request_list);
Chris Wilsonf2d13292016-10-28 13:58:57 +01001073 request->emitted_jiffies = jiffies;
Chris Wilson0f25dff2016-09-09 14:11:55 +01001074
Chris Wilson8ac71d12018-02-07 08:43:50 +00001075 /*
1076 * Let the backend know a new request has arrived that may need
Chris Wilson0de91362016-11-14 20:41:01 +00001077 * to adjust the existing execution schedule due to a high priority
1078 * request - i.e. we may want to preempt the current request in order
1079 * to run a high priority dependency chain *before* we can execute this
1080 * request.
1081 *
1082 * This is called before the request is ready to run so that we can
1083 * decide whether to preempt the entire chain so that it is ready to
1084 * run at the earliest possible convenience.
1085 */
1086 if (engine->schedule)
Chris Wilson9f792eb2016-11-14 20:41:04 +00001087 engine->schedule(request, request->ctx->priority);
Chris Wilson0de91362016-11-14 20:41:01 +00001088
Chris Wilson5590af32016-09-09 14:11:54 +01001089 local_bh_disable();
1090 i915_sw_fence_commit(&request->submit);
1091 local_bh_enable(); /* Kick the execlists tasklet if just scheduled */
Chris Wilsonc22b3552018-02-07 08:43:49 +00001092
1093 /*
1094 * In typical scenarios, we do not expect the previous request on
1095 * the timeline to be still tracked by timeline->last_request if it
1096 * has been completed. If the completed request is still here, that
1097 * implies that request retirement is a long way behind submission,
1098 * suggesting that we haven't been retiring frequently enough from
1099 * the combination of retire-before-alloc, waiters and the background
1100 * retirement worker. So if the last request on this timeline was
1101 * already completed, do a catch up pass, flushing the retirement queue
1102 * up to this client. Since we have now moved the heaviest operations
1103 * during retirement onto secondary workers, such as freeing objects
1104 * or contexts, retiring a bunch of requests is mostly list management
1105 * (and cache misses), and so we should not be overly penalizing this
1106 * client by performing excess work, though we may still performing
1107 * work on behalf of others -- but instead we should benefit from
1108 * improved resource management. (Well, that's the theory at least.)
1109 */
Chris Wilsone61e0f52018-02-21 09:56:36 +00001110 if (prev && i915_request_completed(prev))
1111 i915_request_retire_upto(prev);
Chris Wilson05235c52016-07-20 09:21:08 +01001112}
1113
1114static unsigned long local_clock_us(unsigned int *cpu)
1115{
1116 unsigned long t;
1117
Chris Wilsone61e0f52018-02-21 09:56:36 +00001118 /*
1119 * Cheaply and approximately convert from nanoseconds to microseconds.
Chris Wilson05235c52016-07-20 09:21:08 +01001120 * The result and subsequent calculations are also defined in the same
1121 * approximate microseconds units. The principal source of timing
1122 * error here is from the simple truncation.
1123 *
1124 * Note that local_clock() is only defined wrt to the current CPU;
1125 * the comparisons are no longer valid if we switch CPUs. Instead of
1126 * blocking preemption for the entire busywait, we can detect the CPU
1127 * switch and use that as indicator of system load and a reason to
1128 * stop busywaiting, see busywait_stop().
1129 */
1130 *cpu = get_cpu();
1131 t = local_clock() >> 10;
1132 put_cpu();
1133
1134 return t;
1135}
1136
1137static bool busywait_stop(unsigned long timeout, unsigned int cpu)
1138{
1139 unsigned int this_cpu;
1140
1141 if (time_after(local_clock_us(&this_cpu), timeout))
1142 return true;
1143
1144 return this_cpu != cpu;
1145}
1146
Chris Wilsone61e0f52018-02-21 09:56:36 +00001147static bool __i915_spin_request(const struct i915_request *rq,
Chris Wilsonb2f2f0f2017-09-22 13:03:33 +01001148 u32 seqno, int state, unsigned long timeout_us)
Chris Wilson05235c52016-07-20 09:21:08 +01001149{
Chris Wilsone61e0f52018-02-21 09:56:36 +00001150 struct intel_engine_cs *engine = rq->engine;
Chris Wilsonc33ed062017-02-17 15:13:01 +00001151 unsigned int irq, cpu;
Chris Wilson05235c52016-07-20 09:21:08 +01001152
Chris Wilsonb2f2f0f2017-09-22 13:03:33 +01001153 GEM_BUG_ON(!seqno);
1154
1155 /*
1156 * Only wait for the request if we know it is likely to complete.
1157 *
1158 * We don't track the timestamps around requests, nor the average
1159 * request length, so we do not have a good indicator that this
1160 * request will complete within the timeout. What we do know is the
1161 * order in which requests are executed by the engine and so we can
1162 * tell if the request has started. If the request hasn't started yet,
1163 * it is a fair assumption that it will not complete within our
1164 * relatively short timeout.
1165 */
1166 if (!i915_seqno_passed(intel_engine_get_seqno(engine), seqno - 1))
1167 return false;
1168
Chris Wilsone61e0f52018-02-21 09:56:36 +00001169 /*
1170 * When waiting for high frequency requests, e.g. during synchronous
Chris Wilson05235c52016-07-20 09:21:08 +01001171 * rendering split between the CPU and GPU, the finite amount of time
1172 * required to set up the irq and wait upon it limits the response
1173 * rate. By busywaiting on the request completion for a short while we
1174 * can service the high frequency waits as quick as possible. However,
1175 * if it is a slow request, we want to sleep as quickly as possible.
1176 * The tradeoff between waiting and sleeping is roughly the time it
1177 * takes to sleep on a request, on the order of a microsecond.
1178 */
1179
Chris Wilsonc33ed062017-02-17 15:13:01 +00001180 irq = atomic_read(&engine->irq_count);
Chris Wilson05235c52016-07-20 09:21:08 +01001181 timeout_us += local_clock_us(&cpu);
1182 do {
Chris Wilsonb2f2f0f2017-09-22 13:03:33 +01001183 if (i915_seqno_passed(intel_engine_get_seqno(engine), seqno))
Chris Wilsone61e0f52018-02-21 09:56:36 +00001184 return seqno == i915_request_global_seqno(rq);
Chris Wilson05235c52016-07-20 09:21:08 +01001185
Chris Wilsone61e0f52018-02-21 09:56:36 +00001186 /*
1187 * Seqno are meant to be ordered *before* the interrupt. If
Chris Wilsonc33ed062017-02-17 15:13:01 +00001188 * we see an interrupt without a corresponding seqno advance,
1189 * assume we won't see one in the near future but require
1190 * the engine->seqno_barrier() to fixup coherency.
1191 */
1192 if (atomic_read(&engine->irq_count) != irq)
1193 break;
1194
Chris Wilson05235c52016-07-20 09:21:08 +01001195 if (signal_pending_state(state, current))
1196 break;
1197
1198 if (busywait_stop(timeout_us, cpu))
1199 break;
1200
Christian Borntraegerf2f09a42016-10-25 11:03:14 +02001201 cpu_relax();
Chris Wilson05235c52016-07-20 09:21:08 +01001202 } while (!need_resched());
1203
1204 return false;
1205}
1206
Chris Wilsone61e0f52018-02-21 09:56:36 +00001207static bool __i915_wait_request_check_and_reset(struct i915_request *request)
Chris Wilson4680816b2016-10-28 13:58:48 +01001208{
Chris Wilson8c185ec2017-03-16 17:13:02 +00001209 if (likely(!i915_reset_handoff(&request->i915->gpu_error)))
Chris Wilsone0705112017-02-23 07:44:20 +00001210 return false;
Chris Wilson4680816b2016-10-28 13:58:48 +01001211
Chris Wilsone0705112017-02-23 07:44:20 +00001212 __set_current_state(TASK_RUNNING);
Chris Wilson535275d2017-07-21 13:32:37 +01001213 i915_reset(request->i915, 0);
Chris Wilsone0705112017-02-23 07:44:20 +00001214 return true;
Chris Wilson4680816b2016-10-28 13:58:48 +01001215}
1216
Chris Wilson05235c52016-07-20 09:21:08 +01001217/**
Michel Thierrye532be82018-02-22 09:24:05 -08001218 * i915_request_wait - wait until execution of request has finished
Chris Wilsone61e0f52018-02-21 09:56:36 +00001219 * @rq: the request to wait upon
Chris Wilsonea746f32016-09-09 14:11:49 +01001220 * @flags: how to wait
Chris Wilsone95433c2016-10-28 13:58:27 +01001221 * @timeout: how long to wait in jiffies
Chris Wilson05235c52016-07-20 09:21:08 +01001222 *
Michel Thierrye532be82018-02-22 09:24:05 -08001223 * i915_request_wait() waits for the request to be completed, for a
Chris Wilsone95433c2016-10-28 13:58:27 +01001224 * maximum of @timeout jiffies (with MAX_SCHEDULE_TIMEOUT implying an
1225 * unbounded wait).
Chris Wilson05235c52016-07-20 09:21:08 +01001226 *
Chris Wilsone95433c2016-10-28 13:58:27 +01001227 * If the caller holds the struct_mutex, the caller must pass I915_WAIT_LOCKED
1228 * in via the flags, and vice versa if the struct_mutex is not held, the caller
1229 * must not specify that the wait is locked.
1230 *
1231 * Returns the remaining time (in jiffies) if the request completed, which may
1232 * be zero or -ETIME if the request is unfinished after the timeout expires.
1233 * May return -EINTR is called with I915_WAIT_INTERRUPTIBLE and a signal is
1234 * pending before the request completes.
Chris Wilson05235c52016-07-20 09:21:08 +01001235 */
Chris Wilsone61e0f52018-02-21 09:56:36 +00001236long i915_request_wait(struct i915_request *rq,
Chris Wilsone95433c2016-10-28 13:58:27 +01001237 unsigned int flags,
1238 long timeout)
Chris Wilson05235c52016-07-20 09:21:08 +01001239{
Chris Wilsonea746f32016-09-09 14:11:49 +01001240 const int state = flags & I915_WAIT_INTERRUPTIBLE ?
1241 TASK_INTERRUPTIBLE : TASK_UNINTERRUPTIBLE;
Chris Wilsone61e0f52018-02-21 09:56:36 +00001242 wait_queue_head_t *errq = &rq->i915->gpu_error.wait_queue;
Chris Wilsona49625f2017-02-23 07:44:19 +00001243 DEFINE_WAIT_FUNC(reset, default_wake_function);
1244 DEFINE_WAIT_FUNC(exec, default_wake_function);
Chris Wilson05235c52016-07-20 09:21:08 +01001245 struct intel_wait wait;
Chris Wilson05235c52016-07-20 09:21:08 +01001246
1247 might_sleep();
Chris Wilson22dd3bb2016-09-09 14:11:50 +01001248#if IS_ENABLED(CONFIG_LOCKDEP)
Chris Wilsone95433c2016-10-28 13:58:27 +01001249 GEM_BUG_ON(debug_locks &&
Chris Wilsone61e0f52018-02-21 09:56:36 +00001250 !!lockdep_is_held(&rq->i915->drm.struct_mutex) !=
Chris Wilson22dd3bb2016-09-09 14:11:50 +01001251 !!(flags & I915_WAIT_LOCKED));
1252#endif
Chris Wilsone95433c2016-10-28 13:58:27 +01001253 GEM_BUG_ON(timeout < 0);
Chris Wilson05235c52016-07-20 09:21:08 +01001254
Chris Wilsone61e0f52018-02-21 09:56:36 +00001255 if (i915_request_completed(rq))
Chris Wilsone95433c2016-10-28 13:58:27 +01001256 return timeout;
Chris Wilson05235c52016-07-20 09:21:08 +01001257
Chris Wilsone95433c2016-10-28 13:58:27 +01001258 if (!timeout)
1259 return -ETIME;
Chris Wilson05235c52016-07-20 09:21:08 +01001260
Chris Wilsone61e0f52018-02-21 09:56:36 +00001261 trace_i915_request_wait_begin(rq, flags);
Chris Wilson05235c52016-07-20 09:21:08 +01001262
Chris Wilsone61e0f52018-02-21 09:56:36 +00001263 add_wait_queue(&rq->execute, &exec);
Chris Wilson7de53bf2017-02-23 07:44:11 +00001264 if (flags & I915_WAIT_LOCKED)
1265 add_wait_queue(errq, &reset);
1266
Chris Wilsone61e0f52018-02-21 09:56:36 +00001267 intel_wait_init(&wait, rq);
Chris Wilson754c9fd2017-02-23 07:44:14 +00001268
Chris Wilsond6a22892017-02-23 07:44:17 +00001269restart:
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001270 do {
1271 set_current_state(state);
Chris Wilsone61e0f52018-02-21 09:56:36 +00001272 if (intel_wait_update_request(&wait, rq))
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001273 break;
Chris Wilson754c9fd2017-02-23 07:44:14 +00001274
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001275 if (flags & I915_WAIT_LOCKED &&
Chris Wilsone61e0f52018-02-21 09:56:36 +00001276 __i915_wait_request_check_and_reset(rq))
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001277 continue;
Chris Wilson541ca6e2017-02-23 07:44:12 +00001278
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001279 if (signal_pending_state(state, current)) {
1280 timeout = -ERESTARTSYS;
Chris Wilson4680816b2016-10-28 13:58:48 +01001281 goto complete;
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001282 }
Chris Wilson4680816b2016-10-28 13:58:48 +01001283
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001284 if (!timeout) {
1285 timeout = -ETIME;
1286 goto complete;
1287 }
Chris Wilson541ca6e2017-02-23 07:44:12 +00001288
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001289 timeout = io_schedule_timeout(timeout);
1290 } while (1);
Chris Wilson541ca6e2017-02-23 07:44:12 +00001291
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001292 GEM_BUG_ON(!intel_wait_has_seqno(&wait));
Chris Wilsone61e0f52018-02-21 09:56:36 +00001293 GEM_BUG_ON(!i915_sw_fence_signaled(&rq->submit));
Chris Wilson4680816b2016-10-28 13:58:48 +01001294
Daniel Vetter437c3082016-08-05 18:11:24 +02001295 /* Optimistic short spin before touching IRQs */
Chris Wilsone61e0f52018-02-21 09:56:36 +00001296 if (__i915_spin_request(rq, wait.seqno, state, 5))
Chris Wilson05235c52016-07-20 09:21:08 +01001297 goto complete;
1298
1299 set_current_state(state);
Chris Wilsone61e0f52018-02-21 09:56:36 +00001300 if (intel_engine_add_wait(rq->engine, &wait))
1301 /*
1302 * In order to check that we haven't missed the interrupt
Chris Wilson05235c52016-07-20 09:21:08 +01001303 * as we enabled it, we need to kick ourselves to do a
1304 * coherent check on the seqno before we sleep.
1305 */
1306 goto wakeup;
1307
Chris Wilson24f417e2017-02-23 07:44:21 +00001308 if (flags & I915_WAIT_LOCKED)
Chris Wilsone61e0f52018-02-21 09:56:36 +00001309 __i915_wait_request_check_and_reset(rq);
Chris Wilson24f417e2017-02-23 07:44:21 +00001310
Chris Wilson05235c52016-07-20 09:21:08 +01001311 for (;;) {
1312 if (signal_pending_state(state, current)) {
Chris Wilsone95433c2016-10-28 13:58:27 +01001313 timeout = -ERESTARTSYS;
Chris Wilson05235c52016-07-20 09:21:08 +01001314 break;
1315 }
1316
Chris Wilsone95433c2016-10-28 13:58:27 +01001317 if (!timeout) {
1318 timeout = -ETIME;
Chris Wilson05235c52016-07-20 09:21:08 +01001319 break;
1320 }
1321
Chris Wilsone95433c2016-10-28 13:58:27 +01001322 timeout = io_schedule_timeout(timeout);
1323
Chris Wilson754c9fd2017-02-23 07:44:14 +00001324 if (intel_wait_complete(&wait) &&
Chris Wilsone61e0f52018-02-21 09:56:36 +00001325 intel_wait_check_request(&wait, rq))
Chris Wilson05235c52016-07-20 09:21:08 +01001326 break;
1327
1328 set_current_state(state);
1329
1330wakeup:
Chris Wilsone61e0f52018-02-21 09:56:36 +00001331 /*
1332 * Carefully check if the request is complete, giving time
Chris Wilson05235c52016-07-20 09:21:08 +01001333 * for the seqno to be visible following the interrupt.
1334 * We also have to check in case we are kicked by the GPU
1335 * reset in order to drop the struct_mutex.
1336 */
Chris Wilsone61e0f52018-02-21 09:56:36 +00001337 if (__i915_request_irq_complete(rq))
Chris Wilson05235c52016-07-20 09:21:08 +01001338 break;
1339
Chris Wilsone61e0f52018-02-21 09:56:36 +00001340 /*
1341 * If the GPU is hung, and we hold the lock, reset the GPU
Chris Wilson221fe792016-09-09 14:11:51 +01001342 * and then check for completion. On a full reset, the engine's
1343 * HW seqno will be advanced passed us and we are complete.
1344 * If we do a partial reset, we have to wait for the GPU to
1345 * resume and update the breadcrumb.
1346 *
1347 * If we don't hold the mutex, we can just wait for the worker
1348 * to come along and update the breadcrumb (either directly
1349 * itself, or indirectly by recovering the GPU).
1350 */
1351 if (flags & I915_WAIT_LOCKED &&
Chris Wilsone61e0f52018-02-21 09:56:36 +00001352 __i915_wait_request_check_and_reset(rq))
Chris Wilson221fe792016-09-09 14:11:51 +01001353 continue;
Chris Wilson221fe792016-09-09 14:11:51 +01001354
Chris Wilson05235c52016-07-20 09:21:08 +01001355 /* Only spin if we know the GPU is processing this request */
Chris Wilsone61e0f52018-02-21 09:56:36 +00001356 if (__i915_spin_request(rq, wait.seqno, state, 2))
Chris Wilson05235c52016-07-20 09:21:08 +01001357 break;
Chris Wilsond6a22892017-02-23 07:44:17 +00001358
Chris Wilsone61e0f52018-02-21 09:56:36 +00001359 if (!intel_wait_check_request(&wait, rq)) {
1360 intel_engine_remove_wait(rq->engine, &wait);
Chris Wilsond6a22892017-02-23 07:44:17 +00001361 goto restart;
1362 }
Chris Wilson05235c52016-07-20 09:21:08 +01001363 }
Chris Wilson05235c52016-07-20 09:21:08 +01001364
Chris Wilsone61e0f52018-02-21 09:56:36 +00001365 intel_engine_remove_wait(rq->engine, &wait);
Chris Wilson05235c52016-07-20 09:21:08 +01001366complete:
Chris Wilsona49625f2017-02-23 07:44:19 +00001367 __set_current_state(TASK_RUNNING);
Chris Wilson7de53bf2017-02-23 07:44:11 +00001368 if (flags & I915_WAIT_LOCKED)
1369 remove_wait_queue(errq, &reset);
Chris Wilsone61e0f52018-02-21 09:56:36 +00001370 remove_wait_queue(&rq->execute, &exec);
1371 trace_i915_request_wait_end(rq);
Chris Wilson05235c52016-07-20 09:21:08 +01001372
Chris Wilsone95433c2016-10-28 13:58:27 +01001373 return timeout;
Chris Wilson05235c52016-07-20 09:21:08 +01001374}
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001375
Chris Wilson28176ef2016-10-28 13:58:56 +01001376static void engine_retire_requests(struct intel_engine_cs *engine)
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001377{
Chris Wilsone61e0f52018-02-21 09:56:36 +00001378 struct i915_request *request, *next;
Chris Wilson754c9fd2017-02-23 07:44:14 +00001379 u32 seqno = intel_engine_get_seqno(engine);
1380 LIST_HEAD(retire);
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001381
Chris Wilson754c9fd2017-02-23 07:44:14 +00001382 spin_lock_irq(&engine->timeline->lock);
Chris Wilson73cb9702016-10-28 13:58:46 +01001383 list_for_each_entry_safe(request, next,
1384 &engine->timeline->requests, link) {
Chris Wilson754c9fd2017-02-23 07:44:14 +00001385 if (!i915_seqno_passed(seqno, request->global_seqno))
1386 break;
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001387
Chris Wilson754c9fd2017-02-23 07:44:14 +00001388 list_move_tail(&request->link, &retire);
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001389 }
Chris Wilson754c9fd2017-02-23 07:44:14 +00001390 spin_unlock_irq(&engine->timeline->lock);
1391
1392 list_for_each_entry_safe(request, next, &retire, link)
Chris Wilsone61e0f52018-02-21 09:56:36 +00001393 i915_request_retire(request);
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001394}
1395
Chris Wilsone61e0f52018-02-21 09:56:36 +00001396void i915_retire_requests(struct drm_i915_private *i915)
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001397{
1398 struct intel_engine_cs *engine;
Chris Wilson28176ef2016-10-28 13:58:56 +01001399 enum intel_engine_id id;
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001400
Chris Wilsone61e0f52018-02-21 09:56:36 +00001401 lockdep_assert_held(&i915->drm.struct_mutex);
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001402
Chris Wilsone61e0f52018-02-21 09:56:36 +00001403 if (!i915->gt.active_requests)
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001404 return;
1405
Chris Wilsone61e0f52018-02-21 09:56:36 +00001406 for_each_engine(engine, i915, id)
Chris Wilson28176ef2016-10-28 13:58:56 +01001407 engine_retire_requests(engine);
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001408}
Chris Wilsonc835c552017-02-13 17:15:21 +00001409
1410#if IS_ENABLED(CONFIG_DRM_I915_SELFTEST)
1411#include "selftests/mock_request.c"
Chris Wilsone61e0f52018-02-21 09:56:36 +00001412#include "selftests/i915_request.c"
Chris Wilsonc835c552017-02-13 17:15:21 +00001413#endif