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