blob: b692a9f7c3576f703415bfd6caed795d559d9120 [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{
Chris Wilson6f9ec412018-03-08 14:07:32 +000062 return intel_engine_enable_signaling(to_request(fence), true);
Chris Wilson04769652016-07-20 09:21:11 +010063}
64
Chris Wilsonf54d1862016-10-25 13:00:45 +010065static signed long i915_fence_wait(struct dma_fence *fence,
Chris Wilson04769652016-07-20 09:21:11 +010066 bool interruptible,
Chris Wilsone95433c2016-10-28 13:58:27 +010067 signed long timeout)
Chris Wilson04769652016-07-20 09:21:11 +010068{
Chris Wilsone61e0f52018-02-21 09:56:36 +000069 return i915_request_wait(to_request(fence), interruptible, timeout);
Chris Wilson04769652016-07-20 09:21:11 +010070}
71
Chris Wilsonf54d1862016-10-25 13:00:45 +010072static void i915_fence_release(struct dma_fence *fence)
Chris Wilson04769652016-07-20 09:21:11 +010073{
Chris Wilsone61e0f52018-02-21 09:56:36 +000074 struct i915_request *rq = to_request(fence);
Chris Wilson04769652016-07-20 09:21:11 +010075
Chris Wilsone61e0f52018-02-21 09:56:36 +000076 /*
77 * The request is put onto a RCU freelist (i.e. the address
Chris Wilsonfc158402016-11-25 13:17:18 +000078 * is immediately reused), mark the fences as being freed now.
79 * Otherwise the debugobjects for the fences are only marked as
80 * freed when the slab cache itself is freed, and so we would get
81 * caught trying to reuse dead objects.
82 */
Chris Wilsone61e0f52018-02-21 09:56:36 +000083 i915_sw_fence_fini(&rq->submit);
Chris Wilsonfc158402016-11-25 13:17:18 +000084
Chris Wilsone61e0f52018-02-21 09:56:36 +000085 kmem_cache_free(rq->i915->requests, rq);
Chris Wilson04769652016-07-20 09:21:11 +010086}
87
Chris Wilsonf54d1862016-10-25 13:00:45 +010088const struct dma_fence_ops i915_fence_ops = {
Chris Wilson04769652016-07-20 09:21:11 +010089 .get_driver_name = i915_fence_get_driver_name,
90 .get_timeline_name = i915_fence_get_timeline_name,
91 .enable_signaling = i915_fence_enable_signaling,
92 .signaled = i915_fence_signaled,
93 .wait = i915_fence_wait,
94 .release = i915_fence_release,
Chris Wilson04769652016-07-20 09:21:11 +010095};
96
Chris Wilson05235c52016-07-20 09:21:08 +010097static inline void
Chris Wilsone61e0f52018-02-21 09:56:36 +000098i915_request_remove_from_client(struct i915_request *request)
Chris Wilson05235c52016-07-20 09:21:08 +010099{
Chris Wilsonc8659ef2017-03-02 12:25:25 +0000100 struct drm_i915_file_private *file_priv;
Chris Wilson05235c52016-07-20 09:21:08 +0100101
Chris Wilsonc8659ef2017-03-02 12:25:25 +0000102 file_priv = request->file_priv;
Chris Wilson05235c52016-07-20 09:21:08 +0100103 if (!file_priv)
104 return;
105
106 spin_lock(&file_priv->mm.lock);
Chris Wilsonc8659ef2017-03-02 12:25:25 +0000107 if (request->file_priv) {
108 list_del(&request->client_link);
109 request->file_priv = NULL;
110 }
Chris Wilson05235c52016-07-20 09:21:08 +0100111 spin_unlock(&file_priv->mm.lock);
Chris Wilson05235c52016-07-20 09:21:08 +0100112}
113
Chris Wilson52e54202016-11-14 20:41:02 +0000114static struct i915_dependency *
115i915_dependency_alloc(struct drm_i915_private *i915)
116{
117 return kmem_cache_alloc(i915->dependencies, GFP_KERNEL);
118}
119
120static void
121i915_dependency_free(struct drm_i915_private *i915,
122 struct i915_dependency *dep)
123{
124 kmem_cache_free(i915->dependencies, dep);
125}
126
127static void
Chris Wilson0c7112a2018-04-18 19:40:51 +0100128__i915_sched_node_add_dependency(struct i915_sched_node *node,
129 struct i915_sched_node *signal,
130 struct i915_dependency *dep,
131 unsigned long flags)
Chris Wilson52e54202016-11-14 20:41:02 +0000132{
Chris Wilson20311bd2016-11-14 20:41:03 +0000133 INIT_LIST_HEAD(&dep->dfs_link);
Chris Wilson52e54202016-11-14 20:41:02 +0000134 list_add(&dep->wait_link, &signal->waiters_list);
Chris Wilson0c7112a2018-04-18 19:40:51 +0100135 list_add(&dep->signal_link, &node->signalers_list);
Chris Wilson52e54202016-11-14 20:41:02 +0000136 dep->signaler = signal;
137 dep->flags = flags;
138}
139
140static int
Chris Wilson0c7112a2018-04-18 19:40:51 +0100141i915_sched_node_add_dependency(struct drm_i915_private *i915,
142 struct i915_sched_node *node,
143 struct i915_sched_node *signal)
Chris Wilson52e54202016-11-14 20:41:02 +0000144{
145 struct i915_dependency *dep;
146
147 dep = i915_dependency_alloc(i915);
148 if (!dep)
149 return -ENOMEM;
150
Chris Wilson0c7112a2018-04-18 19:40:51 +0100151 __i915_sched_node_add_dependency(node, signal, dep,
152 I915_DEPENDENCY_ALLOC);
Chris Wilson52e54202016-11-14 20:41:02 +0000153 return 0;
154}
155
156static void
Chris Wilson0c7112a2018-04-18 19:40:51 +0100157i915_sched_node_fini(struct drm_i915_private *i915,
158 struct i915_sched_node *node)
Chris Wilson52e54202016-11-14 20:41:02 +0000159{
Chris Wilson0c7112a2018-04-18 19:40:51 +0100160 struct i915_dependency *dep, *tmp;
Chris Wilson52e54202016-11-14 20:41:02 +0000161
Chris Wilson0c7112a2018-04-18 19:40:51 +0100162 GEM_BUG_ON(!list_empty(&node->link));
Chris Wilson20311bd2016-11-14 20:41:03 +0000163
Chris Wilson83cc84c2018-01-02 15:12:25 +0000164 /*
165 * Everyone we depended upon (the fences we wait to be signaled)
Chris Wilson52e54202016-11-14 20:41:02 +0000166 * should retire before us and remove themselves from our list.
167 * However, retirement is run independently on each timeline and
168 * so we may be called out-of-order.
169 */
Chris Wilson0c7112a2018-04-18 19:40:51 +0100170 list_for_each_entry_safe(dep, tmp, &node->signalers_list, signal_link) {
171 GEM_BUG_ON(!i915_sched_node_signaled(dep->signaler));
Chris Wilson83cc84c2018-01-02 15:12:25 +0000172 GEM_BUG_ON(!list_empty(&dep->dfs_link));
173
Chris Wilson52e54202016-11-14 20:41:02 +0000174 list_del(&dep->wait_link);
175 if (dep->flags & I915_DEPENDENCY_ALLOC)
176 i915_dependency_free(i915, dep);
177 }
178
179 /* Remove ourselves from everyone who depends upon us */
Chris Wilson0c7112a2018-04-18 19:40:51 +0100180 list_for_each_entry_safe(dep, tmp, &node->waiters_list, wait_link) {
181 GEM_BUG_ON(dep->signaler != node);
Chris Wilson83cc84c2018-01-02 15:12:25 +0000182 GEM_BUG_ON(!list_empty(&dep->dfs_link));
183
Chris Wilson52e54202016-11-14 20:41:02 +0000184 list_del(&dep->signal_link);
185 if (dep->flags & I915_DEPENDENCY_ALLOC)
186 i915_dependency_free(i915, dep);
187 }
188}
189
190static void
Chris Wilson0c7112a2018-04-18 19:40:51 +0100191i915_sched_node_init(struct i915_sched_node *node)
Chris Wilson52e54202016-11-14 20:41:02 +0000192{
Chris Wilson0c7112a2018-04-18 19:40:51 +0100193 INIT_LIST_HEAD(&node->signalers_list);
194 INIT_LIST_HEAD(&node->waiters_list);
195 INIT_LIST_HEAD(&node->link);
Chris Wilsonb7268c52018-04-18 19:40:52 +0100196 node->attr.priority = I915_PRIORITY_INVALID;
Chris Wilson52e54202016-11-14 20:41:02 +0000197}
198
Chris Wilson12d31732017-02-23 07:44:09 +0000199static int reset_all_global_seqno(struct drm_i915_private *i915, u32 seqno)
200{
Chris Wilson12d31732017-02-23 07:44:09 +0000201 struct intel_engine_cs *engine;
202 enum intel_engine_id id;
203 int ret;
204
205 /* Carefully retire all requests without writing to the rings */
206 ret = i915_gem_wait_for_idle(i915,
207 I915_WAIT_INTERRUPTIBLE |
208 I915_WAIT_LOCKED);
209 if (ret)
210 return ret;
211
Chris Wilsond9b13c42018-03-15 13:14:50 +0000212 GEM_BUG_ON(i915->gt.active_requests);
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
Chris Wilsone7702762018-03-27 22:01:57 +0100219 GEM_TRACE("%s seqno %d (current %d) -> %d\n",
220 engine->name,
221 tl->seqno,
222 intel_engine_get_seqno(engine),
223 seqno);
Chris Wilsond9b13c42018-03-15 13:14:50 +0000224
Chris Wilson12d31732017-02-23 07:44:09 +0000225 if (!i915_seqno_passed(seqno, tl->seqno)) {
Chris Wilsonf41d19b2018-03-06 13:01:43 +0000226 /* Flush any waiters before we reuse the seqno */
227 intel_engine_disarm_breadcrumbs(engine);
Chris Wilson93eef7d2018-03-06 13:01:42 +0000228 GEM_BUG_ON(!list_empty(&engine->breadcrumbs.signals));
Chris Wilson12d31732017-02-23 07:44:09 +0000229 }
230
Chris Wilson4d535682017-07-21 13:32:26 +0100231 /* Check we are idle before we fiddle with hw state! */
232 GEM_BUG_ON(!intel_engine_is_idle(engine));
233 GEM_BUG_ON(i915_gem_active_isset(&engine->timeline->last_request));
234
Chris Wilson12d31732017-02-23 07:44:09 +0000235 /* Finally reset hw state */
Chris Wilson12d31732017-02-23 07:44:09 +0000236 intel_engine_init_global_seqno(engine, seqno);
Chris Wilson2ca9faa2017-04-05 16:30:54 +0100237 tl->seqno = seqno;
Chris Wilson12d31732017-02-23 07:44:09 +0000238
Chris Wilsonae351be2017-03-30 15:50:41 +0100239 list_for_each_entry(timeline, &i915->gt.timelines, link)
Chris Wilson7e8894e2017-05-03 10:39:22 +0100240 memset(timeline->engine[id].global_sync, 0,
241 sizeof(timeline->engine[id].global_sync));
Chris Wilson12d31732017-02-23 07:44:09 +0000242 }
243
244 return 0;
245}
246
247int i915_gem_set_global_seqno(struct drm_device *dev, u32 seqno)
248{
Chris Wilsone61e0f52018-02-21 09:56:36 +0000249 struct drm_i915_private *i915 = to_i915(dev);
Chris Wilson12d31732017-02-23 07:44:09 +0000250
Chris Wilsone61e0f52018-02-21 09:56:36 +0000251 lockdep_assert_held(&i915->drm.struct_mutex);
Chris Wilson12d31732017-02-23 07:44:09 +0000252
253 if (seqno == 0)
254 return -EINVAL;
255
Chris Wilsone61e0f52018-02-21 09:56:36 +0000256 /* HWS page needs to be set less than what we will inject to ring */
257 return reset_all_global_seqno(i915, seqno - 1);
Chris Wilson12d31732017-02-23 07:44:09 +0000258}
259
Chris Wilson636918f2017-08-17 15:47:19 +0100260static int reserve_engine(struct intel_engine_cs *engine)
261{
262 struct drm_i915_private *i915 = engine->i915;
Chris Wilson12d31732017-02-23 07:44:09 +0000263 u32 active = ++engine->timeline->inflight_seqnos;
264 u32 seqno = engine->timeline->seqno;
265 int ret;
266
267 /* Reservation is fine until we need to wrap around */
Chris Wilson636918f2017-08-17 15:47:19 +0100268 if (unlikely(add_overflows(seqno, active))) {
269 ret = reset_all_global_seqno(i915, 0);
270 if (ret) {
271 engine->timeline->inflight_seqnos--;
272 return ret;
273 }
Chris Wilson12d31732017-02-23 07:44:09 +0000274 }
275
Chris Wilson636918f2017-08-17 15:47:19 +0100276 if (!i915->gt.active_requests++)
Chris Wilsone4d20062018-04-06 16:51:44 +0100277 i915_gem_unpark(i915);
Chris Wilson636918f2017-08-17 15:47:19 +0100278
Chris Wilson12d31732017-02-23 07:44:09 +0000279 return 0;
280}
281
Chris Wilson636918f2017-08-17 15:47:19 +0100282static void unreserve_engine(struct intel_engine_cs *engine)
Chris Wilson9b6586a2017-02-23 07:44:08 +0000283{
Chris Wilson636918f2017-08-17 15:47:19 +0100284 struct drm_i915_private *i915 = engine->i915;
285
Chris Wilsone4d20062018-04-06 16:51:44 +0100286 if (!--i915->gt.active_requests)
287 i915_gem_park(i915);
Chris Wilson636918f2017-08-17 15:47:19 +0100288
Chris Wilson9b6586a2017-02-23 07:44:08 +0000289 GEM_BUG_ON(!engine->timeline->inflight_seqnos);
290 engine->timeline->inflight_seqnos--;
291}
292
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100293void i915_gem_retire_noop(struct i915_gem_active *active,
Chris Wilsone61e0f52018-02-21 09:56:36 +0000294 struct i915_request *request)
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100295{
296 /* Space left intentionally blank */
297}
298
Chris Wilsone61e0f52018-02-21 09:56:36 +0000299static void advance_ring(struct i915_request *request)
Chris Wilsoncbb60b42017-04-06 18:00:28 +0100300{
301 unsigned int tail;
302
Chris Wilsone61e0f52018-02-21 09:56:36 +0000303 /*
304 * We know the GPU must have read the request to have
Chris Wilsoncbb60b42017-04-06 18:00:28 +0100305 * sent us the seqno + interrupt, so use the position
306 * of tail of the request to update the last known position
307 * of the GPU head.
308 *
309 * Note this requires that we are always called in request
310 * completion order.
311 */
Chris Wilsone6ba9992017-04-25 14:00:49 +0100312 if (list_is_last(&request->ring_link, &request->ring->request_list)) {
Chris Wilsone61e0f52018-02-21 09:56:36 +0000313 /*
314 * We may race here with execlists resubmitting this request
Chris Wilsone6ba9992017-04-25 14:00:49 +0100315 * as we retire it. The resubmission will move the ring->tail
316 * forwards (to request->wa_tail). We either read the
317 * current value that was written to hw, or the value that
318 * is just about to be. Either works, if we miss the last two
319 * noops - they are safe to be replayed on a reset.
320 */
Chris Wilson36620032018-03-07 13:42:23 +0000321 tail = READ_ONCE(request->tail);
Chris Wilsone6ba9992017-04-25 14:00:49 +0100322 } else {
Chris Wilsoncbb60b42017-04-06 18:00:28 +0100323 tail = request->postfix;
Chris Wilsone6ba9992017-04-25 14:00:49 +0100324 }
Chris Wilsoncbb60b42017-04-06 18:00:28 +0100325 list_del(&request->ring_link);
326
327 request->ring->head = tail;
328}
329
Chris Wilsone61e0f52018-02-21 09:56:36 +0000330static void free_capture_list(struct i915_request *request)
Chris Wilsonb0fd47a2017-04-15 10:39:02 +0100331{
Chris Wilsone61e0f52018-02-21 09:56:36 +0000332 struct i915_capture_list *capture;
Chris Wilsonb0fd47a2017-04-15 10:39:02 +0100333
334 capture = request->capture_list;
335 while (capture) {
Chris Wilsone61e0f52018-02-21 09:56:36 +0000336 struct i915_capture_list *next = capture->next;
Chris Wilsonb0fd47a2017-04-15 10:39:02 +0100337
338 kfree(capture);
339 capture = next;
340 }
341}
342
Chris Wilsone61e0f52018-02-21 09:56:36 +0000343static void i915_request_retire(struct i915_request *request)
Chris Wilson05235c52016-07-20 09:21:08 +0100344{
Chris Wilsone8a9c582016-12-18 15:37:20 +0000345 struct intel_engine_cs *engine = request->engine;
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100346 struct i915_gem_active *active, *next;
347
Tvrtko Ursulin0c5c7df2018-04-06 13:35:14 +0100348 GEM_TRACE("%s fence %llx:%d, global=%d, current %d\n",
Chris Wilsone7702762018-03-27 22:01:57 +0100349 engine->name,
Chris Wilsond9b13c42018-03-15 13:14:50 +0000350 request->fence.context, request->fence.seqno,
Chris Wilsone7702762018-03-27 22:01:57 +0100351 request->global_seqno,
352 intel_engine_get_seqno(engine));
Chris Wilsond9b13c42018-03-15 13:14:50 +0000353
Chris Wilson4c7d62c2016-10-28 13:58:32 +0100354 lockdep_assert_held(&request->i915->drm.struct_mutex);
Chris Wilson48bc2a42016-11-25 13:17:17 +0000355 GEM_BUG_ON(!i915_sw_fence_signaled(&request->submit));
Chris Wilsone61e0f52018-02-21 09:56:36 +0000356 GEM_BUG_ON(!i915_request_completed(request));
Chris Wilson43020552016-11-15 16:46:20 +0000357 GEM_BUG_ON(!request->i915->gt.active_requests);
Chris Wilson4c7d62c2016-10-28 13:58:32 +0100358
Chris Wilsone61e0f52018-02-21 09:56:36 +0000359 trace_i915_request_retire(request);
Chris Wilson80b204b2016-10-28 13:58:58 +0100360
Chris Wilsone8a9c582016-12-18 15:37:20 +0000361 spin_lock_irq(&engine->timeline->lock);
Chris Wilsone95433c2016-10-28 13:58:27 +0100362 list_del_init(&request->link);
Chris Wilsone8a9c582016-12-18 15:37:20 +0000363 spin_unlock_irq(&engine->timeline->lock);
Chris Wilson05235c52016-07-20 09:21:08 +0100364
Chris Wilson636918f2017-08-17 15:47:19 +0100365 unreserve_engine(request->engine);
Chris Wilsoncbb60b42017-04-06 18:00:28 +0100366 advance_ring(request);
Chris Wilson05235c52016-07-20 09:21:08 +0100367
Chris Wilsonb0fd47a2017-04-15 10:39:02 +0100368 free_capture_list(request);
369
Chris Wilsone61e0f52018-02-21 09:56:36 +0000370 /*
371 * Walk through the active list, calling retire on each. This allows
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100372 * objects to track their GPU activity and mark themselves as idle
373 * when their *last* active request is completed (updating state
374 * tracking lists for eviction, active references for GEM, etc).
375 *
376 * As the ->retire() may free the node, we decouple it first and
377 * pass along the auxiliary information (to avoid dereferencing
378 * the node after the callback).
379 */
380 list_for_each_entry_safe(active, next, &request->active_list, link) {
Chris Wilsone61e0f52018-02-21 09:56:36 +0000381 /*
382 * In microbenchmarks or focusing upon time inside the kernel,
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100383 * we may spend an inordinate amount of time simply handling
384 * the retirement of requests and processing their callbacks.
385 * Of which, this loop itself is particularly hot due to the
386 * cache misses when jumping around the list of i915_gem_active.
387 * So we try to keep this loop as streamlined as possible and
388 * also prefetch the next i915_gem_active to try and hide
389 * the likely cache miss.
390 */
391 prefetchw(next);
392
393 INIT_LIST_HEAD(&active->link);
Chris Wilson0eafec62016-08-04 16:32:41 +0100394 RCU_INIT_POINTER(active->request, NULL);
Chris Wilsonfa545cb2016-08-04 07:52:35 +0100395
396 active->retire(active, request);
397 }
398
Chris Wilsone61e0f52018-02-21 09:56:36 +0000399 i915_request_remove_from_client(request);
Chris Wilson05235c52016-07-20 09:21:08 +0100400
Mika Kuoppalae5e1fc42016-11-16 17:20:31 +0200401 /* Retirement decays the ban score as it is a sign of ctx progress */
Chris Wilson77b25a92017-07-21 13:32:30 +0100402 atomic_dec_if_positive(&request->ctx->ban_score);
Mika Kuoppalae5e1fc42016-11-16 17:20:31 +0200403
Chris Wilsone61e0f52018-02-21 09:56:36 +0000404 /*
405 * The backing object for the context is done after switching to the
Chris Wilsone8a9c582016-12-18 15:37:20 +0000406 * *next* context. Therefore we cannot retire the previous context until
407 * the next context has already started running. However, since we
Chris Wilsone61e0f52018-02-21 09:56:36 +0000408 * cannot take the required locks at i915_request_submit() we
Chris Wilsone8a9c582016-12-18 15:37:20 +0000409 * defer the unpinning of the active context to now, retirement of
410 * the subsequent request.
411 */
412 if (engine->last_retired_context)
413 engine->context_unpin(engine, engine->last_retired_context);
414 engine->last_retired_context = request->ctx;
Chris Wilsond07f0e52016-10-28 13:58:44 +0100415
Chris Wilson7b92c1b2017-06-28 13:35:48 +0100416 spin_lock_irq(&request->lock);
Chris Wilsonb7a3f332018-02-03 10:19:14 +0000417 if (!test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &request->fence.flags))
418 dma_fence_signal_locked(&request->fence);
419 if (test_bit(DMA_FENCE_FLAG_ENABLE_SIGNAL_BIT, &request->fence.flags))
420 intel_engine_cancel_signaling(request);
Chris Wilson253a2812018-02-06 14:31:37 +0000421 if (request->waitboost) {
422 GEM_BUG_ON(!atomic_read(&request->i915->gt_pm.rps.num_waiters));
423 atomic_dec(&request->i915->gt_pm.rps.num_waiters);
424 }
Chris Wilson7b92c1b2017-06-28 13:35:48 +0100425 spin_unlock_irq(&request->lock);
Chris Wilson52e54202016-11-14 20:41:02 +0000426
Chris Wilson0c7112a2018-04-18 19:40:51 +0100427 i915_sched_node_fini(request->i915, &request->sched);
Chris Wilsone61e0f52018-02-21 09:56:36 +0000428 i915_request_put(request);
Chris Wilson05235c52016-07-20 09:21:08 +0100429}
430
Chris Wilsone61e0f52018-02-21 09:56:36 +0000431void i915_request_retire_upto(struct i915_request *rq)
Chris Wilson05235c52016-07-20 09:21:08 +0100432{
Chris Wilsone61e0f52018-02-21 09:56:36 +0000433 struct intel_engine_cs *engine = rq->engine;
434 struct i915_request *tmp;
Chris Wilson05235c52016-07-20 09:21:08 +0100435
Chris Wilsone61e0f52018-02-21 09:56:36 +0000436 lockdep_assert_held(&rq->i915->drm.struct_mutex);
437 GEM_BUG_ON(!i915_request_completed(rq));
Chris Wilson4ffd6e02016-11-25 13:17:15 +0000438
Chris Wilsone61e0f52018-02-21 09:56:36 +0000439 if (list_empty(&rq->link))
Chris Wilsone95433c2016-10-28 13:58:27 +0100440 return;
Chris Wilson05235c52016-07-20 09:21:08 +0100441
442 do {
Chris Wilson73cb9702016-10-28 13:58:46 +0100443 tmp = list_first_entry(&engine->timeline->requests,
Chris Wilsonefdf7c02016-08-04 07:52:33 +0100444 typeof(*tmp), link);
Chris Wilson05235c52016-07-20 09:21:08 +0100445
Chris Wilsone61e0f52018-02-21 09:56:36 +0000446 i915_request_retire(tmp);
447 } while (tmp != rq);
Chris Wilson05235c52016-07-20 09:21:08 +0100448}
449
Chris Wilson9b6586a2017-02-23 07:44:08 +0000450static u32 timeline_get_seqno(struct intel_timeline *tl)
Chris Wilson05235c52016-07-20 09:21:08 +0100451{
Chris Wilson9b6586a2017-02-23 07:44:08 +0000452 return ++tl->seqno;
Chris Wilson05235c52016-07-20 09:21:08 +0100453}
454
Chris Wilson4ccfee92018-03-22 13:10:34 +0000455static void move_to_timeline(struct i915_request *request,
456 struct intel_timeline *timeline)
457{
458 GEM_BUG_ON(request->timeline == request->engine->timeline);
459 lockdep_assert_held(&request->engine->timeline->lock);
460
461 spin_lock(&request->timeline->lock);
462 list_move_tail(&request->link, &timeline->requests);
463 spin_unlock(&request->timeline->lock);
464}
465
Chris Wilsone61e0f52018-02-21 09:56:36 +0000466void __i915_request_submit(struct i915_request *request)
Chris Wilson5590af32016-09-09 14:11:54 +0100467{
Chris Wilson73cb9702016-10-28 13:58:46 +0100468 struct intel_engine_cs *engine = request->engine;
Chris Wilsonf2d13292016-10-28 13:58:57 +0100469 u32 seqno;
Chris Wilson5590af32016-09-09 14:11:54 +0100470
Tvrtko Ursulin0c5c7df2018-04-06 13:35:14 +0100471 GEM_TRACE("%s fence %llx:%d -> global=%d, current %d\n",
Chris Wilsone7702762018-03-27 22:01:57 +0100472 engine->name,
Chris Wilsond9b13c42018-03-15 13:14:50 +0000473 request->fence.context, request->fence.seqno,
Chris Wilsone7702762018-03-27 22:01:57 +0100474 engine->timeline->seqno + 1,
475 intel_engine_get_seqno(engine));
Chris Wilsond9b13c42018-03-15 13:14:50 +0000476
Chris Wilsone60a8702017-03-02 11:51:30 +0000477 GEM_BUG_ON(!irqs_disabled());
Chris Wilson67520412017-03-02 13:28:01 +0000478 lockdep_assert_held(&engine->timeline->lock);
Chris Wilsone60a8702017-03-02 11:51:30 +0000479
Chris Wilson2d453c72017-12-22 14:19:59 +0000480 GEM_BUG_ON(request->global_seqno);
Chris Wilson5590af32016-09-09 14:11:54 +0100481
Chris Wilson4ccfee92018-03-22 13:10:34 +0000482 seqno = timeline_get_seqno(engine->timeline);
Chris Wilsonf2d13292016-10-28 13:58:57 +0100483 GEM_BUG_ON(!seqno);
484 GEM_BUG_ON(i915_seqno_passed(intel_engine_get_seqno(engine), seqno));
485
Chris Wilsonf2d13292016-10-28 13:58:57 +0100486 /* We may be recursing from the signal callback of another i915 fence */
487 spin_lock_nested(&request->lock, SINGLE_DEPTH_NESTING);
488 request->global_seqno = seqno;
489 if (test_bit(DMA_FENCE_FLAG_ENABLE_SIGNAL_BIT, &request->fence.flags))
Chris Wilsonf7b02a52017-04-26 09:06:59 +0100490 intel_engine_enable_signaling(request, false);
Chris Wilsonf2d13292016-10-28 13:58:57 +0100491 spin_unlock(&request->lock);
492
Chris Wilsoncaddfe72016-10-28 13:58:52 +0100493 engine->emit_breadcrumb(request,
494 request->ring->vaddr + request->postfix);
Chris Wilson5590af32016-09-09 14:11:54 +0100495
Chris Wilson4ccfee92018-03-22 13:10:34 +0000496 /* Transfer from per-context onto the global per-engine timeline */
497 move_to_timeline(request, engine->timeline);
Chris Wilson80b204b2016-10-28 13:58:58 +0100498
Chris Wilsone61e0f52018-02-21 09:56:36 +0000499 trace_i915_request_execute(request);
Tvrtko Ursulin158863f2018-02-20 10:47:42 +0000500
Chris Wilsonfe497892017-02-23 07:44:13 +0000501 wake_up_all(&request->execute);
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000502}
Chris Wilson23902e42016-11-14 20:40:58 +0000503
Chris Wilsone61e0f52018-02-21 09:56:36 +0000504void i915_request_submit(struct i915_request *request)
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000505{
506 struct intel_engine_cs *engine = request->engine;
507 unsigned long flags;
508
509 /* Will be called from irq-context when using foreign fences. */
510 spin_lock_irqsave(&engine->timeline->lock, flags);
511
Chris Wilsone61e0f52018-02-21 09:56:36 +0000512 __i915_request_submit(request);
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000513
514 spin_unlock_irqrestore(&engine->timeline->lock, flags);
515}
516
Chris Wilsone61e0f52018-02-21 09:56:36 +0000517void __i915_request_unsubmit(struct i915_request *request)
Chris Wilsond6a22892017-02-23 07:44:17 +0000518{
519 struct intel_engine_cs *engine = request->engine;
Chris Wilsond6a22892017-02-23 07:44:17 +0000520
Tvrtko Ursulin0c5c7df2018-04-06 13:35:14 +0100521 GEM_TRACE("%s fence %llx:%d <- global=%d, current %d\n",
Chris Wilsone7702762018-03-27 22:01:57 +0100522 engine->name,
Chris Wilsond9b13c42018-03-15 13:14:50 +0000523 request->fence.context, request->fence.seqno,
Chris Wilsone7702762018-03-27 22:01:57 +0100524 request->global_seqno,
525 intel_engine_get_seqno(engine));
Chris Wilsond9b13c42018-03-15 13:14:50 +0000526
Chris Wilsone60a8702017-03-02 11:51:30 +0000527 GEM_BUG_ON(!irqs_disabled());
Chris Wilson67520412017-03-02 13:28:01 +0000528 lockdep_assert_held(&engine->timeline->lock);
Chris Wilsond6a22892017-02-23 07:44:17 +0000529
Chris Wilsone61e0f52018-02-21 09:56:36 +0000530 /*
531 * Only unwind in reverse order, required so that the per-context list
Chris Wilsond6a22892017-02-23 07:44:17 +0000532 * is kept in seqno/ring order.
533 */
Chris Wilson2d453c72017-12-22 14:19:59 +0000534 GEM_BUG_ON(!request->global_seqno);
Chris Wilsond6a22892017-02-23 07:44:17 +0000535 GEM_BUG_ON(request->global_seqno != engine->timeline->seqno);
Chris Wilsonc7cc1442018-01-29 09:49:12 +0000536 GEM_BUG_ON(i915_seqno_passed(intel_engine_get_seqno(engine),
537 request->global_seqno));
Chris Wilsond6a22892017-02-23 07:44:17 +0000538 engine->timeline->seqno--;
539
540 /* We may be recursing from the signal callback of another i915 fence */
541 spin_lock_nested(&request->lock, SINGLE_DEPTH_NESTING);
542 request->global_seqno = 0;
543 if (test_bit(DMA_FENCE_FLAG_ENABLE_SIGNAL_BIT, &request->fence.flags))
544 intel_engine_cancel_signaling(request);
545 spin_unlock(&request->lock);
546
547 /* Transfer back from the global per-engine timeline to per-context */
Chris Wilson4ccfee92018-03-22 13:10:34 +0000548 move_to_timeline(request, request->timeline);
Chris Wilsond6a22892017-02-23 07:44:17 +0000549
Chris Wilsone61e0f52018-02-21 09:56:36 +0000550 /*
551 * We don't need to wake_up any waiters on request->execute, they
Chris Wilsond6a22892017-02-23 07:44:17 +0000552 * will get woken by any other event or us re-adding this request
Chris Wilsone61e0f52018-02-21 09:56:36 +0000553 * to the engine timeline (__i915_request_submit()). The waiters
Chris Wilsond6a22892017-02-23 07:44:17 +0000554 * should be quite adapt at finding that the request now has a new
555 * global_seqno to the one they went to sleep on.
556 */
557}
558
Chris Wilsone61e0f52018-02-21 09:56:36 +0000559void i915_request_unsubmit(struct i915_request *request)
Chris Wilsond6a22892017-02-23 07:44:17 +0000560{
561 struct intel_engine_cs *engine = request->engine;
562 unsigned long flags;
563
564 /* Will be called from irq-context when using foreign fences. */
565 spin_lock_irqsave(&engine->timeline->lock, flags);
566
Chris Wilsone61e0f52018-02-21 09:56:36 +0000567 __i915_request_unsubmit(request);
Chris Wilsond6a22892017-02-23 07:44:17 +0000568
569 spin_unlock_irqrestore(&engine->timeline->lock, flags);
570}
571
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000572static int __i915_sw_fence_call
573submit_notify(struct i915_sw_fence *fence, enum i915_sw_fence_notify state)
574{
Chris Wilsone61e0f52018-02-21 09:56:36 +0000575 struct i915_request *request =
Chris Wilson48bc2a42016-11-25 13:17:17 +0000576 container_of(fence, typeof(*request), submit);
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000577
Chris Wilson48bc2a42016-11-25 13:17:17 +0000578 switch (state) {
579 case FENCE_COMPLETE:
Chris Wilsone61e0f52018-02-21 09:56:36 +0000580 trace_i915_request_submit(request);
Daniel Vetteraf7a8ff2017-10-11 11:10:19 +0200581 /*
Chris Wilsone61e0f52018-02-21 09:56:36 +0000582 * We need to serialize use of the submit_request() callback
583 * with its hotplugging performed during an emergency
584 * i915_gem_set_wedged(). We use the RCU mechanism to mark the
585 * critical section in order to force i915_gem_set_wedged() to
586 * wait until the submit_request() is completed before
587 * proceeding.
Daniel Vetteraf7a8ff2017-10-11 11:10:19 +0200588 */
589 rcu_read_lock();
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000590 request->engine->submit_request(request);
Daniel Vetteraf7a8ff2017-10-11 11:10:19 +0200591 rcu_read_unlock();
Chris Wilson48bc2a42016-11-25 13:17:17 +0000592 break;
593
594 case FENCE_FREE:
Chris Wilsone61e0f52018-02-21 09:56:36 +0000595 i915_request_put(request);
Chris Wilson48bc2a42016-11-25 13:17:17 +0000596 break;
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000597 }
Chris Wilson80b204b2016-10-28 13:58:58 +0100598
Chris Wilson5590af32016-09-09 14:11:54 +0100599 return NOTIFY_DONE;
600}
601
Chris Wilson8e637172016-08-02 22:50:26 +0100602/**
Chris Wilsone61e0f52018-02-21 09:56:36 +0000603 * i915_request_alloc - allocate a request structure
Chris Wilson8e637172016-08-02 22:50:26 +0100604 *
605 * @engine: engine that we wish to issue the request on.
606 * @ctx: context that the request will be associated with.
Chris Wilson8e637172016-08-02 22:50:26 +0100607 *
608 * Returns a pointer to the allocated request if successful,
609 * or an error code if not.
610 */
Chris Wilsone61e0f52018-02-21 09:56:36 +0000611struct i915_request *
612i915_request_alloc(struct intel_engine_cs *engine, struct i915_gem_context *ctx)
Chris Wilson05235c52016-07-20 09:21:08 +0100613{
Chris Wilsone61e0f52018-02-21 09:56:36 +0000614 struct drm_i915_private *i915 = engine->i915;
615 struct i915_request *rq;
Chris Wilson266a2402017-05-04 10:33:08 +0100616 struct intel_ring *ring;
Chris Wilson05235c52016-07-20 09:21:08 +0100617 int ret;
618
Chris Wilsone61e0f52018-02-21 09:56:36 +0000619 lockdep_assert_held(&i915->drm.struct_mutex);
Chris Wilson28176ef2016-10-28 13:58:56 +0100620
Chris Wilsone7af3112017-10-03 21:34:48 +0100621 /*
622 * Preempt contexts are reserved for exclusive use to inject a
623 * preemption context switch. They are never to be used for any trivial
624 * request!
625 */
Chris Wilsone61e0f52018-02-21 09:56:36 +0000626 GEM_BUG_ON(ctx == i915->preempt_context);
Chris Wilsone7af3112017-10-03 21:34:48 +0100627
Chris Wilsone61e0f52018-02-21 09:56:36 +0000628 /*
629 * ABI: Before userspace accesses the GPU (e.g. execbuffer), report
Chris Wilson6ffb7d02017-01-14 16:23:33 +0000630 * EIO if the GPU is already wedged.
Chris Wilson05235c52016-07-20 09:21:08 +0100631 */
Chris Wilsone61e0f52018-02-21 09:56:36 +0000632 if (i915_terminally_wedged(&i915->gpu_error))
Chris Wilson6ffb7d02017-01-14 16:23:33 +0000633 return ERR_PTR(-EIO);
Chris Wilson05235c52016-07-20 09:21:08 +0100634
Chris Wilsone61e0f52018-02-21 09:56:36 +0000635 /*
636 * Pinning the contexts may generate requests in order to acquire
Chris Wilsone8a9c582016-12-18 15:37:20 +0000637 * GGTT space, so do this first before we reserve a seqno for
638 * ourselves.
639 */
Chris Wilson266a2402017-05-04 10:33:08 +0100640 ring = engine->context_pin(engine, ctx);
641 if (IS_ERR(ring))
642 return ERR_CAST(ring);
643 GEM_BUG_ON(!ring);
Chris Wilson28176ef2016-10-28 13:58:56 +0100644
Chris Wilson636918f2017-08-17 15:47:19 +0100645 ret = reserve_engine(engine);
Chris Wilsone8a9c582016-12-18 15:37:20 +0000646 if (ret)
647 goto err_unpin;
648
Chris Wilson3fef5cd2017-11-20 10:20:02 +0000649 ret = intel_ring_wait_for_space(ring, MIN_SPACE_FOR_ADD_REQUEST);
650 if (ret)
651 goto err_unreserve;
652
Chris Wilson9b5f4e52016-07-20 09:21:09 +0100653 /* Move the oldest request to the slab-cache (if not in use!) */
Chris Wilsone61e0f52018-02-21 09:56:36 +0000654 rq = list_first_entry_or_null(&engine->timeline->requests,
655 typeof(*rq), link);
656 if (rq && i915_request_completed(rq))
657 i915_request_retire(rq);
Chris Wilson9b5f4e52016-07-20 09:21:09 +0100658
Chris Wilsone61e0f52018-02-21 09:56:36 +0000659 /*
660 * Beware: Dragons be flying overhead.
Chris Wilson5a198b82016-08-09 09:23:34 +0100661 *
662 * We use RCU to look up requests in flight. The lookups may
663 * race with the request being allocated from the slab freelist.
664 * That is the request we are writing to here, may be in the process
Chris Wilson1426f712016-08-09 17:03:22 +0100665 * of being read by __i915_gem_active_get_rcu(). As such,
Chris Wilson5a198b82016-08-09 09:23:34 +0100666 * we have to be very careful when overwriting the contents. During
667 * the RCU lookup, we change chase the request->engine pointer,
Chris Wilson65e47602016-10-28 13:58:49 +0100668 * read the request->global_seqno and increment the reference count.
Chris Wilson5a198b82016-08-09 09:23:34 +0100669 *
670 * The reference count is incremented atomically. If it is zero,
671 * the lookup knows the request is unallocated and complete. Otherwise,
672 * it is either still in use, or has been reallocated and reset
Chris Wilsonf54d1862016-10-25 13:00:45 +0100673 * with dma_fence_init(). This increment is safe for release as we
674 * check that the request we have a reference to and matches the active
Chris Wilson5a198b82016-08-09 09:23:34 +0100675 * request.
676 *
677 * Before we increment the refcount, we chase the request->engine
678 * pointer. We must not call kmem_cache_zalloc() or else we set
679 * that pointer to NULL and cause a crash during the lookup. If
680 * we see the request is completed (based on the value of the
681 * old engine and seqno), the lookup is complete and reports NULL.
682 * If we decide the request is not completed (new engine or seqno),
683 * then we grab a reference and double check that it is still the
684 * active request - which it won't be and restart the lookup.
685 *
686 * Do not use kmem_cache_zalloc() here!
687 */
Chris Wilsone61e0f52018-02-21 09:56:36 +0000688 rq = kmem_cache_alloc(i915->requests,
689 GFP_KERNEL | __GFP_RETRY_MAYFAIL | __GFP_NOWARN);
690 if (unlikely(!rq)) {
Chris Wilson31c70f92017-12-12 18:06:52 +0000691 /* Ratelimit ourselves to prevent oom from malicious clients */
Chris Wilsone61e0f52018-02-21 09:56:36 +0000692 ret = i915_gem_wait_for_idle(i915,
Chris Wilson31c70f92017-12-12 18:06:52 +0000693 I915_WAIT_LOCKED |
694 I915_WAIT_INTERRUPTIBLE);
695 if (ret)
696 goto err_unreserve;
697
Chris Wilsonf0111b02018-01-19 14:46:57 +0000698 /*
699 * We've forced the client to stall and catch up with whatever
700 * backlog there might have been. As we are assuming that we
701 * caused the mempressure, now is an opportune time to
702 * recover as much memory from the request pool as is possible.
703 * Having already penalized the client to stall, we spend
704 * a little extra time to re-optimise page allocation.
705 */
Chris Wilsone61e0f52018-02-21 09:56:36 +0000706 kmem_cache_shrink(i915->requests);
Chris Wilsonf0111b02018-01-19 14:46:57 +0000707 rcu_barrier(); /* Recover the TYPESAFE_BY_RCU pages */
708
Chris Wilsone61e0f52018-02-21 09:56:36 +0000709 rq = kmem_cache_alloc(i915->requests, GFP_KERNEL);
710 if (!rq) {
Chris Wilson31c70f92017-12-12 18:06:52 +0000711 ret = -ENOMEM;
712 goto err_unreserve;
713 }
Chris Wilson28176ef2016-10-28 13:58:56 +0100714 }
Chris Wilson05235c52016-07-20 09:21:08 +0100715
Chris Wilsone61e0f52018-02-21 09:56:36 +0000716 rq->timeline = i915_gem_context_lookup_timeline(ctx, engine);
717 GEM_BUG_ON(rq->timeline == engine->timeline);
Chris Wilson73cb9702016-10-28 13:58:46 +0100718
Chris Wilsone61e0f52018-02-21 09:56:36 +0000719 spin_lock_init(&rq->lock);
720 dma_fence_init(&rq->fence,
Chris Wilsonf54d1862016-10-25 13:00:45 +0100721 &i915_fence_ops,
Chris Wilsone61e0f52018-02-21 09:56:36 +0000722 &rq->lock,
723 rq->timeline->fence_context,
724 timeline_get_seqno(rq->timeline));
Chris Wilson04769652016-07-20 09:21:11 +0100725
Chris Wilson48bc2a42016-11-25 13:17:17 +0000726 /* We bump the ref for the fence chain */
Chris Wilsone61e0f52018-02-21 09:56:36 +0000727 i915_sw_fence_init(&i915_request_get(rq)->submit, submit_notify);
728 init_waitqueue_head(&rq->execute);
Chris Wilson5590af32016-09-09 14:11:54 +0100729
Chris Wilson0c7112a2018-04-18 19:40:51 +0100730 i915_sched_node_init(&rq->sched);
Chris Wilson52e54202016-11-14 20:41:02 +0000731
Chris Wilsone61e0f52018-02-21 09:56:36 +0000732 INIT_LIST_HEAD(&rq->active_list);
733 rq->i915 = i915;
734 rq->engine = engine;
735 rq->ctx = ctx;
736 rq->ring = ring;
Chris Wilson05235c52016-07-20 09:21:08 +0100737
Chris Wilson5a198b82016-08-09 09:23:34 +0100738 /* No zalloc, must clear what we need by hand */
Chris Wilsone61e0f52018-02-21 09:56:36 +0000739 rq->global_seqno = 0;
740 rq->signaling.wait.seqno = 0;
741 rq->file_priv = NULL;
742 rq->batch = NULL;
743 rq->capture_list = NULL;
744 rq->waitboost = false;
Chris Wilson5a198b82016-08-09 09:23:34 +0100745
Chris Wilson05235c52016-07-20 09:21:08 +0100746 /*
747 * Reserve space in the ring buffer for all the commands required to
748 * eventually emit this request. This is to guarantee that the
Chris Wilsone61e0f52018-02-21 09:56:36 +0000749 * i915_request_add() call can't fail. Note that the reserve may need
Chris Wilson05235c52016-07-20 09:21:08 +0100750 * to be redone if the request is not actually submitted straight
751 * away, e.g. because a GPU scheduler has deferred it.
752 */
Chris Wilsone61e0f52018-02-21 09:56:36 +0000753 rq->reserved_space = MIN_SPACE_FOR_ADD_REQUEST;
754 GEM_BUG_ON(rq->reserved_space < engine->emit_breadcrumb_sz);
Chris Wilson05235c52016-07-20 09:21:08 +0100755
Chris Wilson21131842017-11-20 10:20:01 +0000756 /*
757 * Record the position of the start of the request so that
Chris Wilsond0454462016-08-15 10:48:40 +0100758 * should we detect the updated seqno part-way through the
759 * GPU processing the request, we never over-estimate the
760 * position of the head.
761 */
Chris Wilsone61e0f52018-02-21 09:56:36 +0000762 rq->head = rq->ring->emit;
Chris Wilsond0454462016-08-15 10:48:40 +0100763
Chris Wilson21131842017-11-20 10:20:01 +0000764 /* Unconditionally invalidate GPU caches and TLBs. */
Chris Wilsone61e0f52018-02-21 09:56:36 +0000765 ret = engine->emit_flush(rq, EMIT_INVALIDATE);
Chris Wilson21131842017-11-20 10:20:01 +0000766 if (ret)
Chris Wilsonb1c24a62017-11-23 15:26:30 +0000767 goto err_unwind;
Chris Wilson21131842017-11-20 10:20:01 +0000768
Chris Wilsone61e0f52018-02-21 09:56:36 +0000769 ret = engine->request_alloc(rq);
Chris Wilsonb1c24a62017-11-23 15:26:30 +0000770 if (ret)
771 goto err_unwind;
Chris Wilson21131842017-11-20 10:20:01 +0000772
Chris Wilson9b6586a2017-02-23 07:44:08 +0000773 /* Check that we didn't interrupt ourselves with a new request */
Chris Wilsone61e0f52018-02-21 09:56:36 +0000774 GEM_BUG_ON(rq->timeline->seqno != rq->fence.seqno);
775 return rq;
Chris Wilson05235c52016-07-20 09:21:08 +0100776
Chris Wilsonb1c24a62017-11-23 15:26:30 +0000777err_unwind:
Chris Wilsone61e0f52018-02-21 09:56:36 +0000778 rq->ring->emit = rq->head;
Chris Wilsonb1c24a62017-11-23 15:26:30 +0000779
Chris Wilson1618bdb2016-11-25 13:17:16 +0000780 /* Make sure we didn't add ourselves to external state before freeing */
Chris Wilsone61e0f52018-02-21 09:56:36 +0000781 GEM_BUG_ON(!list_empty(&rq->active_list));
Chris Wilson0c7112a2018-04-18 19:40:51 +0100782 GEM_BUG_ON(!list_empty(&rq->sched.signalers_list));
783 GEM_BUG_ON(!list_empty(&rq->sched.waiters_list));
Chris Wilson1618bdb2016-11-25 13:17:16 +0000784
Chris Wilsone61e0f52018-02-21 09:56:36 +0000785 kmem_cache_free(i915->requests, rq);
Chris Wilson28176ef2016-10-28 13:58:56 +0100786err_unreserve:
Chris Wilson636918f2017-08-17 15:47:19 +0100787 unreserve_engine(engine);
Chris Wilsone8a9c582016-12-18 15:37:20 +0000788err_unpin:
789 engine->context_unpin(engine, ctx);
Chris Wilson8e637172016-08-02 22:50:26 +0100790 return ERR_PTR(ret);
Chris Wilson05235c52016-07-20 09:21:08 +0100791}
792
Chris Wilsona2bc4692016-09-09 14:11:56 +0100793static int
Chris Wilsone61e0f52018-02-21 09:56:36 +0000794i915_request_await_request(struct i915_request *to, struct i915_request *from)
Chris Wilsona2bc4692016-09-09 14:11:56 +0100795{
Chris Wilson85e17f52016-10-28 13:58:53 +0100796 int ret;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100797
798 GEM_BUG_ON(to == from);
Chris Wilsonceae14b2017-05-03 10:39:20 +0100799 GEM_BUG_ON(to->timeline == from->timeline);
Chris Wilsona2bc4692016-09-09 14:11:56 +0100800
Chris Wilsone61e0f52018-02-21 09:56:36 +0000801 if (i915_request_completed(from))
Chris Wilsonade0b0c2017-04-22 09:15:37 +0100802 return 0;
803
Chris Wilson52e54202016-11-14 20:41:02 +0000804 if (to->engine->schedule) {
Chris Wilson0c7112a2018-04-18 19:40:51 +0100805 ret = i915_sched_node_add_dependency(to->i915,
806 &to->sched,
807 &from->sched);
Chris Wilson52e54202016-11-14 20:41:02 +0000808 if (ret < 0)
809 return ret;
810 }
811
Chris Wilson73cb9702016-10-28 13:58:46 +0100812 if (to->engine == from->engine) {
813 ret = i915_sw_fence_await_sw_fence_gfp(&to->submit,
814 &from->submit,
Chris Wilson2abe2f82017-12-12 18:06:51 +0000815 I915_FENCE_GFP);
Chris Wilson73cb9702016-10-28 13:58:46 +0100816 return ret < 0 ? ret : 0;
817 }
818
Chris Wilson6b567082017-06-08 12:14:05 +0100819 if (to->engine->semaphore.sync_to) {
820 u32 seqno;
Chris Wilson65e47602016-10-28 13:58:49 +0100821
Chris Wilson49f08592017-05-03 10:39:24 +0100822 GEM_BUG_ON(!from->engine->semaphore.signal);
823
Chris Wilsone61e0f52018-02-21 09:56:36 +0000824 seqno = i915_request_global_seqno(from);
Chris Wilson6b567082017-06-08 12:14:05 +0100825 if (!seqno)
826 goto await_dma_fence;
827
Chris Wilsonfc9d4d22017-05-03 10:39:23 +0100828 if (seqno <= to->timeline->global_sync[from->engine->id])
829 return 0;
830
831 trace_i915_gem_ring_sync_to(to, from);
Chris Wilsona2bc4692016-09-09 14:11:56 +0100832 ret = to->engine->semaphore.sync_to(to, from);
833 if (ret)
834 return ret;
Chris Wilsonfc9d4d22017-05-03 10:39:23 +0100835
836 to->timeline->global_sync[from->engine->id] = seqno;
Chris Wilson6b567082017-06-08 12:14:05 +0100837 return 0;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100838 }
839
Chris Wilsonfc9d4d22017-05-03 10:39:23 +0100840await_dma_fence:
841 ret = i915_sw_fence_await_dma_fence(&to->submit,
842 &from->fence, 0,
Chris Wilson2abe2f82017-12-12 18:06:51 +0000843 I915_FENCE_GFP);
Chris Wilsonfc9d4d22017-05-03 10:39:23 +0100844 return ret < 0 ? ret : 0;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100845}
846
Chris Wilsonb52992c2016-10-28 13:58:24 +0100847int
Chris Wilsone61e0f52018-02-21 09:56:36 +0000848i915_request_await_dma_fence(struct i915_request *rq, struct dma_fence *fence)
Chris Wilsonb52992c2016-10-28 13:58:24 +0100849{
Chris Wilson29ef3fa2017-05-03 10:39:19 +0100850 struct dma_fence **child = &fence;
851 unsigned int nchild = 1;
Chris Wilsonb52992c2016-10-28 13:58:24 +0100852 int ret;
Chris Wilsonb52992c2016-10-28 13:58:24 +0100853
Chris Wilsone61e0f52018-02-21 09:56:36 +0000854 /*
855 * Note that if the fence-array was created in signal-on-any mode,
Chris Wilsonb52992c2016-10-28 13:58:24 +0100856 * we should *not* decompose it into its individual fences. However,
857 * we don't currently store which mode the fence-array is operating
858 * in. Fortunately, the only user of signal-on-any is private to
859 * amdgpu and we should not see any incoming fence-array from
860 * sync-file being in signal-on-any mode.
861 */
Chris Wilson29ef3fa2017-05-03 10:39:19 +0100862 if (dma_fence_is_array(fence)) {
863 struct dma_fence_array *array = to_dma_fence_array(fence);
Chris Wilsonb52992c2016-10-28 13:58:24 +0100864
Chris Wilson29ef3fa2017-05-03 10:39:19 +0100865 child = array->fences;
866 nchild = array->num_fences;
867 GEM_BUG_ON(!nchild);
868 }
Chris Wilsonb52992c2016-10-28 13:58:24 +0100869
Chris Wilson29ef3fa2017-05-03 10:39:19 +0100870 do {
871 fence = *child++;
872 if (test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &fence->flags))
873 continue;
874
Chris Wilsonceae14b2017-05-03 10:39:20 +0100875 /*
876 * Requests on the same timeline are explicitly ordered, along
Chris Wilsone61e0f52018-02-21 09:56:36 +0000877 * with their dependencies, by i915_request_add() which ensures
Chris Wilsonceae14b2017-05-03 10:39:20 +0100878 * that requests are submitted in-order through each ring.
879 */
Chris Wilsone61e0f52018-02-21 09:56:36 +0000880 if (fence->context == rq->fence.context)
Chris Wilsonceae14b2017-05-03 10:39:20 +0100881 continue;
882
Chris Wilson47979482017-05-03 10:39:21 +0100883 /* Squash repeated waits to the same timelines */
Chris Wilsone61e0f52018-02-21 09:56:36 +0000884 if (fence->context != rq->i915->mm.unordered_timeline &&
885 intel_timeline_sync_is_later(rq->timeline, fence))
Chris Wilson47979482017-05-03 10:39:21 +0100886 continue;
887
Chris Wilson29ef3fa2017-05-03 10:39:19 +0100888 if (dma_fence_is_i915(fence))
Chris Wilsone61e0f52018-02-21 09:56:36 +0000889 ret = i915_request_await_request(rq, to_request(fence));
Chris Wilsonb52992c2016-10-28 13:58:24 +0100890 else
Chris Wilsone61e0f52018-02-21 09:56:36 +0000891 ret = i915_sw_fence_await_dma_fence(&rq->submit, fence,
Chris Wilson29ef3fa2017-05-03 10:39:19 +0100892 I915_FENCE_TIMEOUT,
Chris Wilson2abe2f82017-12-12 18:06:51 +0000893 I915_FENCE_GFP);
Chris Wilsonb52992c2016-10-28 13:58:24 +0100894 if (ret < 0)
895 return ret;
Chris Wilson47979482017-05-03 10:39:21 +0100896
897 /* Record the latest fence used against each timeline */
Chris Wilsone61e0f52018-02-21 09:56:36 +0000898 if (fence->context != rq->i915->mm.unordered_timeline)
899 intel_timeline_sync_set(rq->timeline, fence);
Chris Wilson29ef3fa2017-05-03 10:39:19 +0100900 } while (--nchild);
Chris Wilsonb52992c2016-10-28 13:58:24 +0100901
902 return 0;
903}
904
Chris Wilsona2bc4692016-09-09 14:11:56 +0100905/**
Chris Wilsone61e0f52018-02-21 09:56:36 +0000906 * i915_request_await_object - set this request to (async) wait upon a bo
Chris Wilsona2bc4692016-09-09 14:11:56 +0100907 * @to: request we are wishing to use
908 * @obj: object which may be in use on another ring.
Chris Wilsond8802122018-02-08 11:14:53 +0000909 * @write: whether the wait is on behalf of a writer
Chris Wilsona2bc4692016-09-09 14:11:56 +0100910 *
911 * This code is meant to abstract object synchronization with the GPU.
912 * Conceptually we serialise writes between engines inside the GPU.
913 * We only allow one engine to write into a buffer at any time, but
914 * multiple readers. To ensure each has a coherent view of memory, we must:
915 *
916 * - If there is an outstanding write request to the object, the new
917 * request must wait for it to complete (either CPU or in hw, requests
918 * on the same ring will be naturally ordered).
919 *
920 * - If we are a write request (pending_write_domain is set), the new
921 * request must wait for outstanding read requests to complete.
922 *
923 * Returns 0 if successful, else propagates up the lower layer error.
924 */
925int
Chris Wilsone61e0f52018-02-21 09:56:36 +0000926i915_request_await_object(struct i915_request *to,
927 struct drm_i915_gem_object *obj,
928 bool write)
Chris Wilsona2bc4692016-09-09 14:11:56 +0100929{
Chris Wilsond07f0e52016-10-28 13:58:44 +0100930 struct dma_fence *excl;
931 int ret = 0;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100932
933 if (write) {
Chris Wilsond07f0e52016-10-28 13:58:44 +0100934 struct dma_fence **shared;
935 unsigned int count, i;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100936
Chris Wilsond07f0e52016-10-28 13:58:44 +0100937 ret = reservation_object_get_fences_rcu(obj->resv,
938 &excl, &count, &shared);
Chris Wilsona2bc4692016-09-09 14:11:56 +0100939 if (ret)
940 return ret;
Chris Wilsond07f0e52016-10-28 13:58:44 +0100941
942 for (i = 0; i < count; i++) {
Chris Wilsone61e0f52018-02-21 09:56:36 +0000943 ret = i915_request_await_dma_fence(to, shared[i]);
Chris Wilsond07f0e52016-10-28 13:58:44 +0100944 if (ret)
945 break;
946
947 dma_fence_put(shared[i]);
948 }
949
950 for (; i < count; i++)
951 dma_fence_put(shared[i]);
952 kfree(shared);
953 } else {
954 excl = reservation_object_get_excl_rcu(obj->resv);
Chris Wilsona2bc4692016-09-09 14:11:56 +0100955 }
956
Chris Wilsond07f0e52016-10-28 13:58:44 +0100957 if (excl) {
958 if (ret == 0)
Chris Wilsone61e0f52018-02-21 09:56:36 +0000959 ret = i915_request_await_dma_fence(to, excl);
Chris Wilsond07f0e52016-10-28 13:58:44 +0100960
961 dma_fence_put(excl);
962 }
963
964 return ret;
Chris Wilsona2bc4692016-09-09 14:11:56 +0100965}
966
Chris Wilson05235c52016-07-20 09:21:08 +0100967/*
968 * NB: This function is not allowed to fail. Doing so would mean the the
969 * request is not being tracked for completion but the work itself is
970 * going to happen on the hardware. This would be a Bad Thing(tm).
971 */
Chris Wilsone61e0f52018-02-21 09:56:36 +0000972void __i915_request_add(struct i915_request *request, bool flush_caches)
Chris Wilson05235c52016-07-20 09:21:08 +0100973{
Chris Wilson95b2ab52016-08-15 10:48:46 +0100974 struct intel_engine_cs *engine = request->engine;
975 struct intel_ring *ring = request->ring;
Chris Wilson73cb9702016-10-28 13:58:46 +0100976 struct intel_timeline *timeline = request->timeline;
Chris Wilsone61e0f52018-02-21 09:56:36 +0000977 struct i915_request *prev;
Tvrtko Ursulin73dec952017-02-14 11:32:42 +0000978 u32 *cs;
Chris Wilsoncaddfe72016-10-28 13:58:52 +0100979 int err;
Chris Wilson05235c52016-07-20 09:21:08 +0100980
Chris Wilsond9b13c42018-03-15 13:14:50 +0000981 GEM_TRACE("%s fence %llx:%d\n",
982 engine->name, request->fence.context, request->fence.seqno);
983
Chris Wilson4c7d62c2016-10-28 13:58:32 +0100984 lockdep_assert_held(&request->i915->drm.struct_mutex);
Chris Wilsone61e0f52018-02-21 09:56:36 +0000985 trace_i915_request_add(request);
Chris Wilson0f25dff2016-09-09 14:11:55 +0100986
Chris Wilson8ac71d12018-02-07 08:43:50 +0000987 /*
988 * Make sure that no request gazumped us - if it was allocated after
Chris Wilsone61e0f52018-02-21 09:56:36 +0000989 * our i915_request_alloc() and called __i915_request_add() before
Chris Wilsonc781c972017-01-11 14:08:58 +0000990 * us, the timeline will hold its seqno which is later than ours.
991 */
Chris Wilson9b6586a2017-02-23 07:44:08 +0000992 GEM_BUG_ON(timeline->seqno != request->fence.seqno);
Chris Wilsonc781c972017-01-11 14:08:58 +0000993
Chris Wilson05235c52016-07-20 09:21:08 +0100994 /*
995 * To ensure that this call will not fail, space for its emissions
996 * should already have been reserved in the ring buffer. Let the ring
997 * know that it is time to use that space up.
998 */
Chris Wilson05235c52016-07-20 09:21:08 +0100999 request->reserved_space = 0;
1000
1001 /*
1002 * Emit any outstanding flushes - execbuf can fail to emit the flush
1003 * after having emitted the batchbuffer command. Hence we need to fix
1004 * things up similar to emitting the lazy request. The difference here
1005 * is that the flush _must_ happen before the next request, no matter
1006 * what.
1007 */
1008 if (flush_caches) {
Chris Wilsoncaddfe72016-10-28 13:58:52 +01001009 err = engine->emit_flush(request, EMIT_FLUSH);
Chris Wilsonc7fe7d22016-08-02 22:50:24 +01001010
Chris Wilson05235c52016-07-20 09:21:08 +01001011 /* Not allowed to fail! */
Chris Wilsoncaddfe72016-10-28 13:58:52 +01001012 WARN(err, "engine->emit_flush() failed: %d!\n", err);
Chris Wilson05235c52016-07-20 09:21:08 +01001013 }
1014
Chris Wilson8ac71d12018-02-07 08:43:50 +00001015 /*
1016 * Record the position of the start of the breadcrumb so that
Chris Wilson05235c52016-07-20 09:21:08 +01001017 * should we detect the updated seqno part-way through the
1018 * GPU processing the request, we never over-estimate the
Chris Wilsond0454462016-08-15 10:48:40 +01001019 * position of the ring's HEAD.
Chris Wilson05235c52016-07-20 09:21:08 +01001020 */
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001021 cs = intel_ring_begin(request, engine->emit_breadcrumb_sz);
1022 GEM_BUG_ON(IS_ERR(cs));
1023 request->postfix = intel_ring_offset(request, cs);
Chris Wilson05235c52016-07-20 09:21:08 +01001024
Chris Wilson8ac71d12018-02-07 08:43:50 +00001025 /*
1026 * Seal the request and mark it as pending execution. Note that
Chris Wilson0f25dff2016-09-09 14:11:55 +01001027 * we may inspect this state, without holding any locks, during
1028 * hangcheck. Hence we apply the barrier to ensure that we do not
1029 * see a more recent value in the hws than we are tracking.
1030 */
Chris Wilson0a046a02016-09-09 14:12:00 +01001031
Chris Wilson73cb9702016-10-28 13:58:46 +01001032 prev = i915_gem_active_raw(&timeline->last_request,
Chris Wilson0a046a02016-09-09 14:12:00 +01001033 &request->i915->drm.struct_mutex);
Chris Wilsone61e0f52018-02-21 09:56:36 +00001034 if (prev && !i915_request_completed(prev)) {
Chris Wilson0a046a02016-09-09 14:12:00 +01001035 i915_sw_fence_await_sw_fence(&request->submit, &prev->submit,
1036 &request->submitq);
Chris Wilson52e54202016-11-14 20:41:02 +00001037 if (engine->schedule)
Chris Wilson0c7112a2018-04-18 19:40:51 +01001038 __i915_sched_node_add_dependency(&request->sched,
1039 &prev->sched,
1040 &request->dep,
1041 0);
Chris Wilson52e54202016-11-14 20:41:02 +00001042 }
Chris Wilson0a046a02016-09-09 14:12:00 +01001043
Chris Wilson80b204b2016-10-28 13:58:58 +01001044 spin_lock_irq(&timeline->lock);
Chris Wilsonf2d13292016-10-28 13:58:57 +01001045 list_add_tail(&request->link, &timeline->requests);
Chris Wilson80b204b2016-10-28 13:58:58 +01001046 spin_unlock_irq(&timeline->lock);
Chris Wilson28176ef2016-10-28 13:58:56 +01001047
Chris Wilson9b6586a2017-02-23 07:44:08 +00001048 GEM_BUG_ON(timeline->seqno != request->fence.seqno);
Chris Wilson73cb9702016-10-28 13:58:46 +01001049 i915_gem_active_set(&timeline->last_request, request);
Chris Wilsonf2d13292016-10-28 13:58:57 +01001050
Chris Wilson0f25dff2016-09-09 14:11:55 +01001051 list_add_tail(&request->ring_link, &ring->request_list);
Chris Wilsonf2d13292016-10-28 13:58:57 +01001052 request->emitted_jiffies = jiffies;
Chris Wilson0f25dff2016-09-09 14:11:55 +01001053
Chris Wilson8ac71d12018-02-07 08:43:50 +00001054 /*
1055 * Let the backend know a new request has arrived that may need
Chris Wilson0de91362016-11-14 20:41:01 +00001056 * to adjust the existing execution schedule due to a high priority
1057 * request - i.e. we may want to preempt the current request in order
1058 * to run a high priority dependency chain *before* we can execute this
1059 * request.
1060 *
1061 * This is called before the request is ready to run so that we can
1062 * decide whether to preempt the entire chain so that it is ready to
1063 * run at the earliest possible convenience.
1064 */
Chris Wilson47650db2018-03-07 13:42:25 +00001065 rcu_read_lock();
Chris Wilson0de91362016-11-14 20:41:01 +00001066 if (engine->schedule)
Chris Wilsonb7268c52018-04-18 19:40:52 +01001067 engine->schedule(request, &request->ctx->sched);
Chris Wilson47650db2018-03-07 13:42:25 +00001068 rcu_read_unlock();
Chris Wilson0de91362016-11-14 20:41:01 +00001069
Chris Wilson5590af32016-09-09 14:11:54 +01001070 local_bh_disable();
1071 i915_sw_fence_commit(&request->submit);
1072 local_bh_enable(); /* Kick the execlists tasklet if just scheduled */
Chris Wilsonc22b3552018-02-07 08:43:49 +00001073
1074 /*
1075 * In typical scenarios, we do not expect the previous request on
1076 * the timeline to be still tracked by timeline->last_request if it
1077 * has been completed. If the completed request is still here, that
1078 * implies that request retirement is a long way behind submission,
1079 * suggesting that we haven't been retiring frequently enough from
1080 * the combination of retire-before-alloc, waiters and the background
1081 * retirement worker. So if the last request on this timeline was
1082 * already completed, do a catch up pass, flushing the retirement queue
1083 * up to this client. Since we have now moved the heaviest operations
1084 * during retirement onto secondary workers, such as freeing objects
1085 * or contexts, retiring a bunch of requests is mostly list management
1086 * (and cache misses), and so we should not be overly penalizing this
1087 * client by performing excess work, though we may still performing
1088 * work on behalf of others -- but instead we should benefit from
1089 * improved resource management. (Well, that's the theory at least.)
1090 */
Chris Wilsone61e0f52018-02-21 09:56:36 +00001091 if (prev && i915_request_completed(prev))
1092 i915_request_retire_upto(prev);
Chris Wilson05235c52016-07-20 09:21:08 +01001093}
1094
1095static unsigned long local_clock_us(unsigned int *cpu)
1096{
1097 unsigned long t;
1098
Chris Wilsone61e0f52018-02-21 09:56:36 +00001099 /*
1100 * Cheaply and approximately convert from nanoseconds to microseconds.
Chris Wilson05235c52016-07-20 09:21:08 +01001101 * The result and subsequent calculations are also defined in the same
1102 * approximate microseconds units. The principal source of timing
1103 * error here is from the simple truncation.
1104 *
1105 * Note that local_clock() is only defined wrt to the current CPU;
1106 * the comparisons are no longer valid if we switch CPUs. Instead of
1107 * blocking preemption for the entire busywait, we can detect the CPU
1108 * switch and use that as indicator of system load and a reason to
1109 * stop busywaiting, see busywait_stop().
1110 */
1111 *cpu = get_cpu();
1112 t = local_clock() >> 10;
1113 put_cpu();
1114
1115 return t;
1116}
1117
1118static bool busywait_stop(unsigned long timeout, unsigned int cpu)
1119{
1120 unsigned int this_cpu;
1121
1122 if (time_after(local_clock_us(&this_cpu), timeout))
1123 return true;
1124
1125 return this_cpu != cpu;
1126}
1127
Chris Wilsone61e0f52018-02-21 09:56:36 +00001128static bool __i915_spin_request(const struct i915_request *rq,
Chris Wilsonb2f2f0f2017-09-22 13:03:33 +01001129 u32 seqno, int state, unsigned long timeout_us)
Chris Wilson05235c52016-07-20 09:21:08 +01001130{
Chris Wilsone61e0f52018-02-21 09:56:36 +00001131 struct intel_engine_cs *engine = rq->engine;
Chris Wilsonc33ed062017-02-17 15:13:01 +00001132 unsigned int irq, cpu;
Chris Wilson05235c52016-07-20 09:21:08 +01001133
Chris Wilsonb2f2f0f2017-09-22 13:03:33 +01001134 GEM_BUG_ON(!seqno);
1135
1136 /*
1137 * Only wait for the request if we know it is likely to complete.
1138 *
1139 * We don't track the timestamps around requests, nor the average
1140 * request length, so we do not have a good indicator that this
1141 * request will complete within the timeout. What we do know is the
1142 * order in which requests are executed by the engine and so we can
1143 * tell if the request has started. If the request hasn't started yet,
1144 * it is a fair assumption that it will not complete within our
1145 * relatively short timeout.
1146 */
1147 if (!i915_seqno_passed(intel_engine_get_seqno(engine), seqno - 1))
1148 return false;
1149
Chris Wilsone61e0f52018-02-21 09:56:36 +00001150 /*
1151 * When waiting for high frequency requests, e.g. during synchronous
Chris Wilson05235c52016-07-20 09:21:08 +01001152 * rendering split between the CPU and GPU, the finite amount of time
1153 * required to set up the irq and wait upon it limits the response
1154 * rate. By busywaiting on the request completion for a short while we
1155 * can service the high frequency waits as quick as possible. However,
1156 * if it is a slow request, we want to sleep as quickly as possible.
1157 * The tradeoff between waiting and sleeping is roughly the time it
1158 * takes to sleep on a request, on the order of a microsecond.
1159 */
1160
Chris Wilsonc33ed062017-02-17 15:13:01 +00001161 irq = atomic_read(&engine->irq_count);
Chris Wilson05235c52016-07-20 09:21:08 +01001162 timeout_us += local_clock_us(&cpu);
1163 do {
Chris Wilsonb2f2f0f2017-09-22 13:03:33 +01001164 if (i915_seqno_passed(intel_engine_get_seqno(engine), seqno))
Chris Wilsone61e0f52018-02-21 09:56:36 +00001165 return seqno == i915_request_global_seqno(rq);
Chris Wilson05235c52016-07-20 09:21:08 +01001166
Chris Wilsone61e0f52018-02-21 09:56:36 +00001167 /*
1168 * Seqno are meant to be ordered *before* the interrupt. If
Chris Wilsonc33ed062017-02-17 15:13:01 +00001169 * we see an interrupt without a corresponding seqno advance,
1170 * assume we won't see one in the near future but require
1171 * the engine->seqno_barrier() to fixup coherency.
1172 */
1173 if (atomic_read(&engine->irq_count) != irq)
1174 break;
1175
Chris Wilson05235c52016-07-20 09:21:08 +01001176 if (signal_pending_state(state, current))
1177 break;
1178
1179 if (busywait_stop(timeout_us, cpu))
1180 break;
1181
Christian Borntraegerf2f09a42016-10-25 11:03:14 +02001182 cpu_relax();
Chris Wilson05235c52016-07-20 09:21:08 +01001183 } while (!need_resched());
1184
1185 return false;
1186}
1187
Chris Wilsone61e0f52018-02-21 09:56:36 +00001188static bool __i915_wait_request_check_and_reset(struct i915_request *request)
Chris Wilson4680816b2016-10-28 13:58:48 +01001189{
Chris Wilsond0667e92018-04-06 23:03:54 +01001190 struct i915_gpu_error *error = &request->i915->gpu_error;
1191
1192 if (likely(!i915_reset_handoff(error)))
Chris Wilsone0705112017-02-23 07:44:20 +00001193 return false;
Chris Wilson4680816b2016-10-28 13:58:48 +01001194
Chris Wilsone0705112017-02-23 07:44:20 +00001195 __set_current_state(TASK_RUNNING);
Chris Wilsond0667e92018-04-06 23:03:54 +01001196 i915_reset(request->i915, error->stalled_mask, error->reason);
Chris Wilsone0705112017-02-23 07:44:20 +00001197 return true;
Chris Wilson4680816b2016-10-28 13:58:48 +01001198}
1199
Chris Wilson05235c52016-07-20 09:21:08 +01001200/**
Michel Thierrye532be82018-02-22 09:24:05 -08001201 * i915_request_wait - wait until execution of request has finished
Chris Wilsone61e0f52018-02-21 09:56:36 +00001202 * @rq: the request to wait upon
Chris Wilsonea746f32016-09-09 14:11:49 +01001203 * @flags: how to wait
Chris Wilsone95433c2016-10-28 13:58:27 +01001204 * @timeout: how long to wait in jiffies
Chris Wilson05235c52016-07-20 09:21:08 +01001205 *
Michel Thierrye532be82018-02-22 09:24:05 -08001206 * i915_request_wait() waits for the request to be completed, for a
Chris Wilsone95433c2016-10-28 13:58:27 +01001207 * maximum of @timeout jiffies (with MAX_SCHEDULE_TIMEOUT implying an
1208 * unbounded wait).
Chris Wilson05235c52016-07-20 09:21:08 +01001209 *
Chris Wilsone95433c2016-10-28 13:58:27 +01001210 * If the caller holds the struct_mutex, the caller must pass I915_WAIT_LOCKED
1211 * in via the flags, and vice versa if the struct_mutex is not held, the caller
1212 * must not specify that the wait is locked.
1213 *
1214 * Returns the remaining time (in jiffies) if the request completed, which may
1215 * be zero or -ETIME if the request is unfinished after the timeout expires.
1216 * May return -EINTR is called with I915_WAIT_INTERRUPTIBLE and a signal is
1217 * pending before the request completes.
Chris Wilson05235c52016-07-20 09:21:08 +01001218 */
Chris Wilsone61e0f52018-02-21 09:56:36 +00001219long i915_request_wait(struct i915_request *rq,
Chris Wilsone95433c2016-10-28 13:58:27 +01001220 unsigned int flags,
1221 long timeout)
Chris Wilson05235c52016-07-20 09:21:08 +01001222{
Chris Wilsonea746f32016-09-09 14:11:49 +01001223 const int state = flags & I915_WAIT_INTERRUPTIBLE ?
1224 TASK_INTERRUPTIBLE : TASK_UNINTERRUPTIBLE;
Chris Wilsone61e0f52018-02-21 09:56:36 +00001225 wait_queue_head_t *errq = &rq->i915->gpu_error.wait_queue;
Chris Wilsona49625f2017-02-23 07:44:19 +00001226 DEFINE_WAIT_FUNC(reset, default_wake_function);
1227 DEFINE_WAIT_FUNC(exec, default_wake_function);
Chris Wilson05235c52016-07-20 09:21:08 +01001228 struct intel_wait wait;
Chris Wilson05235c52016-07-20 09:21:08 +01001229
1230 might_sleep();
Chris Wilson22dd3bb2016-09-09 14:11:50 +01001231#if IS_ENABLED(CONFIG_LOCKDEP)
Chris Wilsone95433c2016-10-28 13:58:27 +01001232 GEM_BUG_ON(debug_locks &&
Chris Wilsone61e0f52018-02-21 09:56:36 +00001233 !!lockdep_is_held(&rq->i915->drm.struct_mutex) !=
Chris Wilson22dd3bb2016-09-09 14:11:50 +01001234 !!(flags & I915_WAIT_LOCKED));
1235#endif
Chris Wilsone95433c2016-10-28 13:58:27 +01001236 GEM_BUG_ON(timeout < 0);
Chris Wilson05235c52016-07-20 09:21:08 +01001237
Chris Wilsone61e0f52018-02-21 09:56:36 +00001238 if (i915_request_completed(rq))
Chris Wilsone95433c2016-10-28 13:58:27 +01001239 return timeout;
Chris Wilson05235c52016-07-20 09:21:08 +01001240
Chris Wilsone95433c2016-10-28 13:58:27 +01001241 if (!timeout)
1242 return -ETIME;
Chris Wilson05235c52016-07-20 09:21:08 +01001243
Chris Wilsone61e0f52018-02-21 09:56:36 +00001244 trace_i915_request_wait_begin(rq, flags);
Chris Wilson05235c52016-07-20 09:21:08 +01001245
Chris Wilsone61e0f52018-02-21 09:56:36 +00001246 add_wait_queue(&rq->execute, &exec);
Chris Wilson7de53bf2017-02-23 07:44:11 +00001247 if (flags & I915_WAIT_LOCKED)
1248 add_wait_queue(errq, &reset);
1249
Chris Wilsone61e0f52018-02-21 09:56:36 +00001250 intel_wait_init(&wait, rq);
Chris Wilson754c9fd2017-02-23 07:44:14 +00001251
Chris Wilsond6a22892017-02-23 07:44:17 +00001252restart:
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001253 do {
1254 set_current_state(state);
Chris Wilsone61e0f52018-02-21 09:56:36 +00001255 if (intel_wait_update_request(&wait, rq))
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001256 break;
Chris Wilson754c9fd2017-02-23 07:44:14 +00001257
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001258 if (flags & I915_WAIT_LOCKED &&
Chris Wilsone61e0f52018-02-21 09:56:36 +00001259 __i915_wait_request_check_and_reset(rq))
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001260 continue;
Chris Wilson541ca6e2017-02-23 07:44:12 +00001261
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001262 if (signal_pending_state(state, current)) {
1263 timeout = -ERESTARTSYS;
Chris Wilson4680816b2016-10-28 13:58:48 +01001264 goto complete;
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001265 }
Chris Wilson4680816b2016-10-28 13:58:48 +01001266
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001267 if (!timeout) {
1268 timeout = -ETIME;
1269 goto complete;
1270 }
Chris Wilson541ca6e2017-02-23 07:44:12 +00001271
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001272 timeout = io_schedule_timeout(timeout);
1273 } while (1);
Chris Wilson541ca6e2017-02-23 07:44:12 +00001274
Chris Wilson0f2f61d2017-02-23 07:44:22 +00001275 GEM_BUG_ON(!intel_wait_has_seqno(&wait));
Chris Wilsone61e0f52018-02-21 09:56:36 +00001276 GEM_BUG_ON(!i915_sw_fence_signaled(&rq->submit));
Chris Wilson4680816b2016-10-28 13:58:48 +01001277
Daniel Vetter437c3082016-08-05 18:11:24 +02001278 /* Optimistic short spin before touching IRQs */
Chris Wilsone61e0f52018-02-21 09:56:36 +00001279 if (__i915_spin_request(rq, wait.seqno, state, 5))
Chris Wilson05235c52016-07-20 09:21:08 +01001280 goto complete;
1281
1282 set_current_state(state);
Chris Wilsone61e0f52018-02-21 09:56:36 +00001283 if (intel_engine_add_wait(rq->engine, &wait))
1284 /*
1285 * In order to check that we haven't missed the interrupt
Chris Wilson05235c52016-07-20 09:21:08 +01001286 * as we enabled it, we need to kick ourselves to do a
1287 * coherent check on the seqno before we sleep.
1288 */
1289 goto wakeup;
1290
Chris Wilson24f417e2017-02-23 07:44:21 +00001291 if (flags & I915_WAIT_LOCKED)
Chris Wilsone61e0f52018-02-21 09:56:36 +00001292 __i915_wait_request_check_and_reset(rq);
Chris Wilson24f417e2017-02-23 07:44:21 +00001293
Chris Wilson05235c52016-07-20 09:21:08 +01001294 for (;;) {
1295 if (signal_pending_state(state, current)) {
Chris Wilsone95433c2016-10-28 13:58:27 +01001296 timeout = -ERESTARTSYS;
Chris Wilson05235c52016-07-20 09:21:08 +01001297 break;
1298 }
1299
Chris Wilsone95433c2016-10-28 13:58:27 +01001300 if (!timeout) {
1301 timeout = -ETIME;
Chris Wilson05235c52016-07-20 09:21:08 +01001302 break;
1303 }
1304
Chris Wilsone95433c2016-10-28 13:58:27 +01001305 timeout = io_schedule_timeout(timeout);
1306
Chris Wilson754c9fd2017-02-23 07:44:14 +00001307 if (intel_wait_complete(&wait) &&
Chris Wilsone61e0f52018-02-21 09:56:36 +00001308 intel_wait_check_request(&wait, rq))
Chris Wilson05235c52016-07-20 09:21:08 +01001309 break;
1310
1311 set_current_state(state);
1312
1313wakeup:
Chris Wilsone61e0f52018-02-21 09:56:36 +00001314 /*
1315 * Carefully check if the request is complete, giving time
Chris Wilson05235c52016-07-20 09:21:08 +01001316 * for the seqno to be visible following the interrupt.
1317 * We also have to check in case we are kicked by the GPU
1318 * reset in order to drop the struct_mutex.
1319 */
Chris Wilsone61e0f52018-02-21 09:56:36 +00001320 if (__i915_request_irq_complete(rq))
Chris Wilson05235c52016-07-20 09:21:08 +01001321 break;
1322
Chris Wilsone61e0f52018-02-21 09:56:36 +00001323 /*
1324 * If the GPU is hung, and we hold the lock, reset the GPU
Chris Wilson221fe792016-09-09 14:11:51 +01001325 * and then check for completion. On a full reset, the engine's
1326 * HW seqno will be advanced passed us and we are complete.
1327 * If we do a partial reset, we have to wait for the GPU to
1328 * resume and update the breadcrumb.
1329 *
1330 * If we don't hold the mutex, we can just wait for the worker
1331 * to come along and update the breadcrumb (either directly
1332 * itself, or indirectly by recovering the GPU).
1333 */
1334 if (flags & I915_WAIT_LOCKED &&
Chris Wilsone61e0f52018-02-21 09:56:36 +00001335 __i915_wait_request_check_and_reset(rq))
Chris Wilson221fe792016-09-09 14:11:51 +01001336 continue;
Chris Wilson221fe792016-09-09 14:11:51 +01001337
Chris Wilson05235c52016-07-20 09:21:08 +01001338 /* Only spin if we know the GPU is processing this request */
Chris Wilsone61e0f52018-02-21 09:56:36 +00001339 if (__i915_spin_request(rq, wait.seqno, state, 2))
Chris Wilson05235c52016-07-20 09:21:08 +01001340 break;
Chris Wilsond6a22892017-02-23 07:44:17 +00001341
Chris Wilsone61e0f52018-02-21 09:56:36 +00001342 if (!intel_wait_check_request(&wait, rq)) {
1343 intel_engine_remove_wait(rq->engine, &wait);
Chris Wilsond6a22892017-02-23 07:44:17 +00001344 goto restart;
1345 }
Chris Wilson05235c52016-07-20 09:21:08 +01001346 }
Chris Wilson05235c52016-07-20 09:21:08 +01001347
Chris Wilsone61e0f52018-02-21 09:56:36 +00001348 intel_engine_remove_wait(rq->engine, &wait);
Chris Wilson05235c52016-07-20 09:21:08 +01001349complete:
Chris Wilsona49625f2017-02-23 07:44:19 +00001350 __set_current_state(TASK_RUNNING);
Chris Wilson7de53bf2017-02-23 07:44:11 +00001351 if (flags & I915_WAIT_LOCKED)
1352 remove_wait_queue(errq, &reset);
Chris Wilsone61e0f52018-02-21 09:56:36 +00001353 remove_wait_queue(&rq->execute, &exec);
1354 trace_i915_request_wait_end(rq);
Chris Wilson05235c52016-07-20 09:21:08 +01001355
Chris Wilsone95433c2016-10-28 13:58:27 +01001356 return timeout;
Chris Wilson05235c52016-07-20 09:21:08 +01001357}
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001358
Chris Wilson28176ef2016-10-28 13:58:56 +01001359static void engine_retire_requests(struct intel_engine_cs *engine)
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001360{
Chris Wilsone61e0f52018-02-21 09:56:36 +00001361 struct i915_request *request, *next;
Chris Wilson754c9fd2017-02-23 07:44:14 +00001362 u32 seqno = intel_engine_get_seqno(engine);
1363 LIST_HEAD(retire);
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001364
Chris Wilson754c9fd2017-02-23 07:44:14 +00001365 spin_lock_irq(&engine->timeline->lock);
Chris Wilson73cb9702016-10-28 13:58:46 +01001366 list_for_each_entry_safe(request, next,
1367 &engine->timeline->requests, link) {
Chris Wilson754c9fd2017-02-23 07:44:14 +00001368 if (!i915_seqno_passed(seqno, request->global_seqno))
1369 break;
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001370
Chris Wilson754c9fd2017-02-23 07:44:14 +00001371 list_move_tail(&request->link, &retire);
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001372 }
Chris Wilson754c9fd2017-02-23 07:44:14 +00001373 spin_unlock_irq(&engine->timeline->lock);
1374
1375 list_for_each_entry_safe(request, next, &retire, link)
Chris Wilsone61e0f52018-02-21 09:56:36 +00001376 i915_request_retire(request);
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001377}
1378
Chris Wilsone61e0f52018-02-21 09:56:36 +00001379void i915_retire_requests(struct drm_i915_private *i915)
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001380{
1381 struct intel_engine_cs *engine;
Chris Wilson28176ef2016-10-28 13:58:56 +01001382 enum intel_engine_id id;
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001383
Chris Wilsone61e0f52018-02-21 09:56:36 +00001384 lockdep_assert_held(&i915->drm.struct_mutex);
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001385
Chris Wilsone61e0f52018-02-21 09:56:36 +00001386 if (!i915->gt.active_requests)
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001387 return;
1388
Chris Wilsone61e0f52018-02-21 09:56:36 +00001389 for_each_engine(engine, i915, id)
Chris Wilson28176ef2016-10-28 13:58:56 +01001390 engine_retire_requests(engine);
Chris Wilson4b8de8e2016-08-04 07:52:42 +01001391}
Chris Wilsonc835c552017-02-13 17:15:21 +00001392
1393#if IS_ENABLED(CONFIG_DRM_I915_SELFTEST)
1394#include "selftests/mock_request.c"
Chris Wilsone61e0f52018-02-21 09:56:36 +00001395#include "selftests/i915_request.c"
Chris Wilsonc835c552017-02-13 17:15:21 +00001396#endif