drm/i915: Simplify ELSP queue request tracking
[deliverable/linux.git] / drivers / gpu / drm / i915 / i915_gem_request.c
CommitLineData
05235c53
CW
1/*
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
fa545cbf
CW
25#include <linux/prefetch.h>
26
05235c53
CW
27#include "i915_drv.h"
28
04769652
CW
29static const char *i915_fence_get_driver_name(struct fence *fence)
30{
31 return "i915";
32}
33
34static const char *i915_fence_get_timeline_name(struct fence *fence)
35{
36 /* Timelines are bound by eviction to a VM. However, since
37 * we only have a global seqno at the moment, we only have
38 * a single timeline. Note that each timeline will have
39 * multiple execution contexts (fence contexts) as we allow
40 * engines within a single timeline to execute in parallel.
41 */
42 return "global";
43}
44
45static bool i915_fence_signaled(struct fence *fence)
46{
47 return i915_gem_request_completed(to_request(fence));
48}
49
50static bool i915_fence_enable_signaling(struct fence *fence)
51{
52 if (i915_fence_signaled(fence))
53 return false;
54
55 intel_engine_enable_signaling(to_request(fence));
56 return true;
57}
58
59static signed long i915_fence_wait(struct fence *fence,
60 bool interruptible,
61 signed long timeout_jiffies)
62{
63 s64 timeout_ns, *timeout;
64 int ret;
65
66 if (timeout_jiffies != MAX_SCHEDULE_TIMEOUT) {
67 timeout_ns = jiffies_to_nsecs(timeout_jiffies);
68 timeout = &timeout_ns;
69 } else {
70 timeout = NULL;
71 }
72
776f3236
CW
73 ret = i915_wait_request(to_request(fence),
74 interruptible, timeout,
75 NO_WAITBOOST);
04769652
CW
76 if (ret == -ETIME)
77 return 0;
78
79 if (ret < 0)
80 return ret;
81
82 if (timeout_jiffies != MAX_SCHEDULE_TIMEOUT)
83 timeout_jiffies = nsecs_to_jiffies(timeout_ns);
84
85 return timeout_jiffies;
86}
87
88static void i915_fence_value_str(struct fence *fence, char *str, int size)
89{
90 snprintf(str, size, "%u", fence->seqno);
91}
92
93static void i915_fence_timeline_value_str(struct fence *fence, char *str,
94 int size)
95{
96 snprintf(str, size, "%u",
97 intel_engine_get_seqno(to_request(fence)->engine));
98}
99
100static void i915_fence_release(struct fence *fence)
101{
102 struct drm_i915_gem_request *req = to_request(fence);
103
104 kmem_cache_free(req->i915->requests, req);
105}
106
107const struct fence_ops i915_fence_ops = {
108 .get_driver_name = i915_fence_get_driver_name,
109 .get_timeline_name = i915_fence_get_timeline_name,
110 .enable_signaling = i915_fence_enable_signaling,
111 .signaled = i915_fence_signaled,
112 .wait = i915_fence_wait,
113 .release = i915_fence_release,
114 .fence_value_str = i915_fence_value_str,
115 .timeline_value_str = i915_fence_timeline_value_str,
116};
117
05235c53
CW
118int i915_gem_request_add_to_client(struct drm_i915_gem_request *req,
119 struct drm_file *file)
120{
121 struct drm_i915_private *dev_private;
122 struct drm_i915_file_private *file_priv;
123
124 WARN_ON(!req || !file || req->file_priv);
125
126 if (!req || !file)
127 return -EINVAL;
128
129 if (req->file_priv)
130 return -EINVAL;
131
132 dev_private = req->i915;
133 file_priv = file->driver_priv;
134
135 spin_lock(&file_priv->mm.lock);
136 req->file_priv = file_priv;
137 list_add_tail(&req->client_list, &file_priv->mm.request_list);
138 spin_unlock(&file_priv->mm.lock);
139
05235c53
CW
140 return 0;
141}
142
143static inline void
144i915_gem_request_remove_from_client(struct drm_i915_gem_request *request)
145{
146 struct drm_i915_file_private *file_priv = request->file_priv;
147
148 if (!file_priv)
149 return;
150
151 spin_lock(&file_priv->mm.lock);
152 list_del(&request->client_list);
153 request->file_priv = NULL;
154 spin_unlock(&file_priv->mm.lock);
05235c53
CW
155}
156
fa545cbf
CW
157void i915_gem_retire_noop(struct i915_gem_active *active,
158 struct drm_i915_gem_request *request)
159{
160 /* Space left intentionally blank */
161}
162
05235c53
CW
163static void i915_gem_request_retire(struct drm_i915_gem_request *request)
164{
fa545cbf
CW
165 struct i915_gem_active *active, *next;
166
05235c53 167 trace_i915_gem_request_retire(request);
209b3f7e 168 list_del(&request->link);
05235c53
CW
169
170 /* We know the GPU must have read the request to have
171 * sent us the seqno + interrupt, so use the position
172 * of tail of the request to update the last known position
173 * of the GPU head.
174 *
175 * Note this requires that we are always called in request
176 * completion order.
177 */
675d9ad7 178 list_del(&request->ring_link);
1dae2dfb 179 request->ring->last_retired_head = request->postfix;
05235c53 180
fa545cbf
CW
181 /* Walk through the active list, calling retire on each. This allows
182 * objects to track their GPU activity and mark themselves as idle
183 * when their *last* active request is completed (updating state
184 * tracking lists for eviction, active references for GEM, etc).
185 *
186 * As the ->retire() may free the node, we decouple it first and
187 * pass along the auxiliary information (to avoid dereferencing
188 * the node after the callback).
189 */
190 list_for_each_entry_safe(active, next, &request->active_list, link) {
191 /* In microbenchmarks or focusing upon time inside the kernel,
192 * we may spend an inordinate amount of time simply handling
193 * the retirement of requests and processing their callbacks.
194 * Of which, this loop itself is particularly hot due to the
195 * cache misses when jumping around the list of i915_gem_active.
196 * So we try to keep this loop as streamlined as possible and
197 * also prefetch the next i915_gem_active to try and hide
198 * the likely cache miss.
199 */
200 prefetchw(next);
201
202 INIT_LIST_HEAD(&active->link);
0eafec6d 203 RCU_INIT_POINTER(active->request, NULL);
fa545cbf
CW
204
205 active->retire(active, request);
206 }
207
05235c53
CW
208 i915_gem_request_remove_from_client(request);
209
210 if (request->previous_context) {
211 if (i915.enable_execlists)
212 intel_lr_context_unpin(request->previous_context,
213 request->engine);
214 }
215
9a6feaf0 216 i915_gem_context_put(request->ctx);
e8a261ea 217 i915_gem_request_put(request);
05235c53
CW
218}
219
220void i915_gem_request_retire_upto(struct drm_i915_gem_request *req)
221{
222 struct intel_engine_cs *engine = req->engine;
223 struct drm_i915_gem_request *tmp;
224
225 lockdep_assert_held(&req->i915->drm.struct_mutex);
209b3f7e 226 GEM_BUG_ON(list_empty(&req->link));
05235c53
CW
227
228 do {
229 tmp = list_first_entry(&engine->request_list,
efdf7c06 230 typeof(*tmp), link);
05235c53
CW
231
232 i915_gem_request_retire(tmp);
233 } while (tmp != req);
05235c53
CW
234}
235
236static int i915_gem_check_wedge(unsigned int reset_counter, bool interruptible)
237{
238 if (__i915_terminally_wedged(reset_counter))
239 return -EIO;
240
241 if (__i915_reset_in_progress(reset_counter)) {
242 /* Non-interruptible callers can't handle -EAGAIN, hence return
243 * -EIO unconditionally for these.
244 */
245 if (!interruptible)
246 return -EIO;
247
248 return -EAGAIN;
249 }
250
251 return 0;
252}
253
254static int i915_gem_init_seqno(struct drm_i915_private *dev_priv, u32 seqno)
255{
256 struct intel_engine_cs *engine;
257 int ret;
258
259 /* Carefully retire all requests without writing to the rings */
260 for_each_engine(engine, dev_priv) {
dcff85c8 261 ret = intel_engine_idle(engine, true);
05235c53
CW
262 if (ret)
263 return ret;
264 }
265 i915_gem_retire_requests(dev_priv);
266
267 /* If the seqno wraps around, we need to clear the breadcrumb rbtree */
268 if (!i915_seqno_passed(seqno, dev_priv->next_seqno)) {
269 while (intel_kick_waiters(dev_priv) ||
270 intel_kick_signalers(dev_priv))
271 yield();
272 }
273
274 /* Finally reset hw state */
275 for_each_engine(engine, dev_priv)
7e37f889 276 intel_engine_init_seqno(engine, seqno);
05235c53
CW
277
278 return 0;
279}
280
281int i915_gem_set_seqno(struct drm_device *dev, u32 seqno)
282{
283 struct drm_i915_private *dev_priv = to_i915(dev);
284 int ret;
285
286 if (seqno == 0)
287 return -EINVAL;
288
289 /* HWS page needs to be set less than what we
290 * will inject to ring
291 */
292 ret = i915_gem_init_seqno(dev_priv, seqno - 1);
293 if (ret)
294 return ret;
295
05235c53 296 dev_priv->next_seqno = seqno;
05235c53
CW
297 return 0;
298}
299
300static int i915_gem_get_seqno(struct drm_i915_private *dev_priv, u32 *seqno)
301{
302 /* reserve 0 for non-seqno */
303 if (unlikely(dev_priv->next_seqno == 0)) {
304 int ret;
305
306 ret = i915_gem_init_seqno(dev_priv, 0);
307 if (ret)
308 return ret;
309
310 dev_priv->next_seqno = 1;
311 }
312
ddf07be7 313 *seqno = dev_priv->next_seqno++;
05235c53
CW
314 return 0;
315}
316
8e637178
CW
317/**
318 * i915_gem_request_alloc - allocate a request structure
319 *
320 * @engine: engine that we wish to issue the request on.
321 * @ctx: context that the request will be associated with.
322 * This can be NULL if the request is not directly related to
323 * any specific user context, in which case this function will
324 * choose an appropriate context to use.
325 *
326 * Returns a pointer to the allocated request if successful,
327 * or an error code if not.
328 */
329struct drm_i915_gem_request *
330i915_gem_request_alloc(struct intel_engine_cs *engine,
331 struct i915_gem_context *ctx)
05235c53
CW
332{
333 struct drm_i915_private *dev_priv = engine->i915;
334 unsigned int reset_counter = i915_reset_counter(&dev_priv->gpu_error);
335 struct drm_i915_gem_request *req;
04769652 336 u32 seqno;
05235c53
CW
337 int ret;
338
05235c53
CW
339 /* ABI: Before userspace accesses the GPU (e.g. execbuffer), report
340 * EIO if the GPU is already wedged, or EAGAIN to drop the struct_mutex
341 * and restart.
342 */
343 ret = i915_gem_check_wedge(reset_counter, dev_priv->mm.interruptible);
344 if (ret)
8e637178 345 return ERR_PTR(ret);
05235c53 346
9b5f4e5e 347 /* Move the oldest request to the slab-cache (if not in use!) */
2a1d7752 348 req = list_first_entry_or_null(&engine->request_list,
efdf7c06 349 typeof(*req), link);
2a1d7752
CW
350 if (req && i915_gem_request_completed(req))
351 i915_gem_request_retire(req);
9b5f4e5e 352
5a198b8c
CW
353 /* Beware: Dragons be flying overhead.
354 *
355 * We use RCU to look up requests in flight. The lookups may
356 * race with the request being allocated from the slab freelist.
357 * That is the request we are writing to here, may be in the process
1426f715 358 * of being read by __i915_gem_active_get_rcu(). As such,
5a198b8c
CW
359 * we have to be very careful when overwriting the contents. During
360 * the RCU lookup, we change chase the request->engine pointer,
361 * read the request->fence.seqno and increment the reference count.
362 *
363 * The reference count is incremented atomically. If it is zero,
364 * the lookup knows the request is unallocated and complete. Otherwise,
365 * it is either still in use, or has been reallocated and reset
366 * with fence_init(). This increment is safe for release as we check
367 * that the request we have a reference to and matches the active
368 * request.
369 *
370 * Before we increment the refcount, we chase the request->engine
371 * pointer. We must not call kmem_cache_zalloc() or else we set
372 * that pointer to NULL and cause a crash during the lookup. If
373 * we see the request is completed (based on the value of the
374 * old engine and seqno), the lookup is complete and reports NULL.
375 * If we decide the request is not completed (new engine or seqno),
376 * then we grab a reference and double check that it is still the
377 * active request - which it won't be and restart the lookup.
378 *
379 * Do not use kmem_cache_zalloc() here!
380 */
381 req = kmem_cache_alloc(dev_priv->requests, GFP_KERNEL);
05235c53 382 if (!req)
8e637178 383 return ERR_PTR(-ENOMEM);
05235c53 384
04769652 385 ret = i915_gem_get_seqno(dev_priv, &seqno);
05235c53
CW
386 if (ret)
387 goto err;
388
04769652
CW
389 spin_lock_init(&req->lock);
390 fence_init(&req->fence,
391 &i915_fence_ops,
392 &req->lock,
393 engine->fence_context,
394 seqno);
395
fa545cbf 396 INIT_LIST_HEAD(&req->active_list);
05235c53
CW
397 req->i915 = dev_priv;
398 req->engine = engine;
9a6feaf0 399 req->ctx = i915_gem_context_get(ctx);
05235c53 400
5a198b8c
CW
401 /* No zalloc, must clear what we need by hand */
402 req->previous_context = NULL;
403 req->file_priv = NULL;
058d88c4 404 req->batch = NULL;
5a198b8c 405
05235c53
CW
406 /*
407 * Reserve space in the ring buffer for all the commands required to
408 * eventually emit this request. This is to guarantee that the
409 * i915_add_request() call can't fail. Note that the reserve may need
410 * to be redone if the request is not actually submitted straight
411 * away, e.g. because a GPU scheduler has deferred it.
412 */
413 req->reserved_space = MIN_SPACE_FOR_ADD_REQUEST;
414
415 if (i915.enable_execlists)
416 ret = intel_logical_ring_alloc_request_extras(req);
417 else
418 ret = intel_ring_alloc_request_extras(req);
419 if (ret)
420 goto err_ctx;
421
d045446d
CW
422 /* Record the position of the start of the request so that
423 * should we detect the updated seqno part-way through the
424 * GPU processing the request, we never over-estimate the
425 * position of the head.
426 */
427 req->head = req->ring->tail;
428
8e637178 429 return req;
05235c53
CW
430
431err_ctx:
9a6feaf0 432 i915_gem_context_put(ctx);
05235c53
CW
433err:
434 kmem_cache_free(dev_priv->requests, req);
8e637178 435 return ERR_PTR(ret);
05235c53
CW
436}
437
438static void i915_gem_mark_busy(const struct intel_engine_cs *engine)
439{
440 struct drm_i915_private *dev_priv = engine->i915;
441
442 dev_priv->gt.active_engines |= intel_engine_flag(engine);
443 if (dev_priv->gt.awake)
444 return;
445
446 intel_runtime_pm_get_noresume(dev_priv);
447 dev_priv->gt.awake = true;
448
54b4f68f 449 intel_enable_gt_powersave(dev_priv);
05235c53
CW
450 i915_update_gfx_val(dev_priv);
451 if (INTEL_GEN(dev_priv) >= 6)
452 gen6_rps_busy(dev_priv);
453
454 queue_delayed_work(dev_priv->wq,
455 &dev_priv->gt.retire_work,
456 round_jiffies_up_relative(HZ));
457}
458
459/*
460 * NB: This function is not allowed to fail. Doing so would mean the the
461 * request is not being tracked for completion but the work itself is
462 * going to happen on the hardware. This would be a Bad Thing(tm).
463 */
17f298cf 464void __i915_add_request(struct drm_i915_gem_request *request, bool flush_caches)
05235c53 465{
95b2ab56
CW
466 struct intel_engine_cs *engine = request->engine;
467 struct intel_ring *ring = request->ring;
05235c53
CW
468 u32 request_start;
469 u32 reserved_tail;
470 int ret;
471
05235c53
CW
472 /*
473 * To ensure that this call will not fail, space for its emissions
474 * should already have been reserved in the ring buffer. Let the ring
475 * know that it is time to use that space up.
476 */
ba76d91b 477 request_start = ring->tail;
05235c53
CW
478 reserved_tail = request->reserved_space;
479 request->reserved_space = 0;
480
481 /*
482 * Emit any outstanding flushes - execbuf can fail to emit the flush
483 * after having emitted the batchbuffer command. Hence we need to fix
484 * things up similar to emitting the lazy request. The difference here
485 * is that the flush _must_ happen before the next request, no matter
486 * what.
487 */
488 if (flush_caches) {
7c9cf4e3 489 ret = engine->emit_flush(request, EMIT_FLUSH);
c7fe7d25 490
05235c53 491 /* Not allowed to fail! */
c7fe7d25 492 WARN(ret, "engine->emit_flush() failed: %d!\n", ret);
05235c53
CW
493 }
494
495 trace_i915_gem_request_add(request);
496
05235c53
CW
497 /* Seal the request and mark it as pending execution. Note that
498 * we may inspect this state, without holding any locks, during
499 * hangcheck. Hence we apply the barrier to ensure that we do not
500 * see a more recent value in the hws than we are tracking.
501 */
502 request->emitted_jiffies = jiffies;
503 request->previous_seqno = engine->last_submitted_seqno;
dcff85c8
CW
504 engine->last_submitted_seqno = request->fence.seqno;
505 i915_gem_active_set(&engine->last_request, request);
efdf7c06 506 list_add_tail(&request->link, &engine->request_list);
675d9ad7 507 list_add_tail(&request->ring_link, &ring->request_list);
05235c53 508
d045446d 509 /* Record the position of the start of the breadcrumb so that
05235c53
CW
510 * should we detect the updated seqno part-way through the
511 * GPU processing the request, we never over-estimate the
d045446d 512 * position of the ring's HEAD.
05235c53 513 */
ba76d91b 514 request->postfix = ring->tail;
05235c53 515
05235c53 516 /* Not allowed to fail! */
ddd66c51
CW
517 ret = engine->emit_request(request);
518 WARN(ret, "(%s)->emit_request failed: %d!\n", engine->name, ret);
c5efa1ad 519
05235c53 520 /* Sanity check that the reserved size was large enough. */
ba76d91b 521 ret = ring->tail - request_start;
05235c53 522 if (ret < 0)
1dae2dfb 523 ret += ring->size;
05235c53
CW
524 WARN_ONCE(ret > reserved_tail,
525 "Not enough space reserved (%d bytes) "
526 "for adding the request (%d bytes)\n",
527 reserved_tail, ret);
528
529 i915_gem_mark_busy(engine);
ddd66c51 530 engine->submit_request(request);
05235c53
CW
531}
532
533static unsigned long local_clock_us(unsigned int *cpu)
534{
535 unsigned long t;
536
537 /* Cheaply and approximately convert from nanoseconds to microseconds.
538 * The result and subsequent calculations are also defined in the same
539 * approximate microseconds units. The principal source of timing
540 * error here is from the simple truncation.
541 *
542 * Note that local_clock() is only defined wrt to the current CPU;
543 * the comparisons are no longer valid if we switch CPUs. Instead of
544 * blocking preemption for the entire busywait, we can detect the CPU
545 * switch and use that as indicator of system load and a reason to
546 * stop busywaiting, see busywait_stop().
547 */
548 *cpu = get_cpu();
549 t = local_clock() >> 10;
550 put_cpu();
551
552 return t;
553}
554
555static bool busywait_stop(unsigned long timeout, unsigned int cpu)
556{
557 unsigned int this_cpu;
558
559 if (time_after(local_clock_us(&this_cpu), timeout))
560 return true;
561
562 return this_cpu != cpu;
563}
564
565bool __i915_spin_request(const struct drm_i915_gem_request *req,
566 int state, unsigned long timeout_us)
567{
568 unsigned int cpu;
569
570 /* When waiting for high frequency requests, e.g. during synchronous
571 * rendering split between the CPU and GPU, the finite amount of time
572 * required to set up the irq and wait upon it limits the response
573 * rate. By busywaiting on the request completion for a short while we
574 * can service the high frequency waits as quick as possible. However,
575 * if it is a slow request, we want to sleep as quickly as possible.
576 * The tradeoff between waiting and sleeping is roughly the time it
577 * takes to sleep on a request, on the order of a microsecond.
578 */
579
580 timeout_us += local_clock_us(&cpu);
581 do {
582 if (i915_gem_request_completed(req))
583 return true;
584
585 if (signal_pending_state(state, current))
586 break;
587
588 if (busywait_stop(timeout_us, cpu))
589 break;
590
591 cpu_relax_lowlatency();
592 } while (!need_resched());
593
594 return false;
595}
596
597/**
776f3236 598 * i915_wait_request - wait until execution of request has finished
05235c53
CW
599 * @req: duh!
600 * @interruptible: do an interruptible wait (normally yes)
601 * @timeout: in - how long to wait (NULL forever); out - how much time remaining
602 * @rps: client to charge for RPS boosting
603 *
604 * Note: It is of utmost importance that the passed in seqno and reset_counter
605 * values have been read by the caller in an smp safe manner. Where read-side
606 * locks are involved, it is sufficient to read the reset_counter before
607 * unlocking the lock that protects the seqno. For lockless tricks, the
608 * reset_counter _must_ be read before, and an appropriate smp_rmb must be
609 * inserted.
610 *
611 * Returns 0 if the request was found within the alloted time. Else returns the
612 * errno with remaining time filled in timeout argument.
613 */
776f3236
CW
614int i915_wait_request(struct drm_i915_gem_request *req,
615 bool interruptible,
616 s64 *timeout,
617 struct intel_rps_client *rps)
05235c53
CW
618{
619 int state = interruptible ? TASK_INTERRUPTIBLE : TASK_UNINTERRUPTIBLE;
620 DEFINE_WAIT(reset);
621 struct intel_wait wait;
622 unsigned long timeout_remain;
623 int ret = 0;
624
625 might_sleep();
626
05235c53
CW
627 if (i915_gem_request_completed(req))
628 return 0;
629
630 timeout_remain = MAX_SCHEDULE_TIMEOUT;
631 if (timeout) {
632 if (WARN_ON(*timeout < 0))
633 return -EINVAL;
634
635 if (*timeout == 0)
636 return -ETIME;
637
638 /* Record current time in case interrupted, or wedged */
639 timeout_remain = nsecs_to_jiffies_timeout(*timeout);
640 *timeout += ktime_get_raw_ns();
641 }
642
643 trace_i915_gem_request_wait_begin(req);
644
645 /* This client is about to stall waiting for the GPU. In many cases
646 * this is undesirable and limits the throughput of the system, as
647 * many clients cannot continue processing user input/output whilst
648 * blocked. RPS autotuning may take tens of milliseconds to respond
649 * to the GPU load and thus incurs additional latency for the client.
650 * We can circumvent that by promoting the GPU frequency to maximum
651 * before we wait. This makes the GPU throttle up much more quickly
652 * (good for benchmarks and user experience, e.g. window animations),
653 * but at a cost of spending more power processing the workload
654 * (bad for battery). Not all clients even want their results
655 * immediately and for them we should just let the GPU select its own
656 * frequency to maximise efficiency. To prevent a single client from
657 * forcing the clocks too high for the whole system, we only allow
658 * each client to waitboost once in a busy period.
659 */
42df2714 660 if (IS_RPS_CLIENT(rps) && INTEL_GEN(req->i915) >= 6)
05235c53
CW
661 gen6_rps_boost(req->i915, rps, req->emitted_jiffies);
662
437c3087 663 /* Optimistic short spin before touching IRQs */
05235c53
CW
664 if (i915_spin_request(req, state, 5))
665 goto complete;
666
667 set_current_state(state);
668 add_wait_queue(&req->i915->gpu_error.wait_queue, &reset);
669
04769652 670 intel_wait_init(&wait, req->fence.seqno);
05235c53
CW
671 if (intel_engine_add_wait(req->engine, &wait))
672 /* In order to check that we haven't missed the interrupt
673 * as we enabled it, we need to kick ourselves to do a
674 * coherent check on the seqno before we sleep.
675 */
676 goto wakeup;
677
678 for (;;) {
679 if (signal_pending_state(state, current)) {
680 ret = -ERESTARTSYS;
681 break;
682 }
683
684 timeout_remain = io_schedule_timeout(timeout_remain);
685 if (timeout_remain == 0) {
686 ret = -ETIME;
687 break;
688 }
689
690 if (intel_wait_complete(&wait))
691 break;
692
693 set_current_state(state);
694
695wakeup:
696 /* Carefully check if the request is complete, giving time
697 * for the seqno to be visible following the interrupt.
698 * We also have to check in case we are kicked by the GPU
699 * reset in order to drop the struct_mutex.
700 */
701 if (__i915_request_irq_complete(req))
702 break;
703
704 /* Only spin if we know the GPU is processing this request */
705 if (i915_spin_request(req, state, 2))
706 break;
707 }
708 remove_wait_queue(&req->i915->gpu_error.wait_queue, &reset);
709
710 intel_engine_remove_wait(req->engine, &wait);
711 __set_current_state(TASK_RUNNING);
712complete:
713 trace_i915_gem_request_wait_end(req);
714
715 if (timeout) {
716 *timeout -= ktime_get_raw_ns();
717 if (*timeout < 0)
718 *timeout = 0;
719
720 /*
721 * Apparently ktime isn't accurate enough and occasionally has a
722 * bit of mismatch in the jiffies<->nsecs<->ktime loop. So patch
723 * things up to make the test happy. We allow up to 1 jiffy.
724 *
725 * This is a regrssion from the timespec->ktime conversion.
726 */
727 if (ret == -ETIME && *timeout < jiffies_to_usecs(1)*1000)
728 *timeout = 0;
729 }
730
42df2714
CW
731 if (IS_RPS_USER(rps) &&
732 req->fence.seqno == req->engine->last_submitted_seqno) {
05235c53
CW
733 /* The GPU is now idle and this client has stalled.
734 * Since no other client has submitted a request in the
735 * meantime, assume that this client is the only one
736 * supplying work to the GPU but is unable to keep that
737 * work supplied because it is waiting. Since the GPU is
738 * then never kept fully busy, RPS autoclocking will
739 * keep the clocks relatively low, causing further delays.
740 * Compensate by giving the synchronous client credit for
741 * a waitboost next time.
742 */
743 spin_lock(&req->i915->rps.client_lock);
744 list_del_init(&rps->link);
745 spin_unlock(&req->i915->rps.client_lock);
746 }
747
748 return ret;
749}
4b8de8e6 750
f6407193 751static bool engine_retire_requests(struct intel_engine_cs *engine)
4b8de8e6
CW
752{
753 struct drm_i915_gem_request *request, *next;
754
755 list_for_each_entry_safe(request, next, &engine->request_list, link) {
756 if (!i915_gem_request_completed(request))
f6407193 757 return false;
4b8de8e6
CW
758
759 i915_gem_request_retire(request);
760 }
f6407193
CW
761
762 return true;
4b8de8e6
CW
763}
764
765void i915_gem_retire_requests(struct drm_i915_private *dev_priv)
766{
767 struct intel_engine_cs *engine;
bafb0fce 768 unsigned int tmp;
4b8de8e6
CW
769
770 lockdep_assert_held(&dev_priv->drm.struct_mutex);
771
772 if (dev_priv->gt.active_engines == 0)
773 return;
774
775 GEM_BUG_ON(!dev_priv->gt.awake);
776
bafb0fce 777 for_each_engine_masked(engine, dev_priv, dev_priv->gt.active_engines, tmp)
f6407193 778 if (engine_retire_requests(engine))
4b8de8e6 779 dev_priv->gt.active_engines &= ~intel_engine_flag(engine);
4b8de8e6
CW
780
781 if (dev_priv->gt.active_engines == 0)
782 queue_delayed_work(dev_priv->wq,
783 &dev_priv->gt.idle_work,
784 msecs_to_jiffies(100));
785}
This page took 0.103969 seconds and 5 git commands to generate.