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