Merge tag 'hisi-fixes-for-4.14' of git://github.com/hisilicon/linux-hisi into next...
[sfrench/cifs-2.6.git] / drivers / gpu / drm / i915 / intel_breadcrumbs.c
1 /*
2  * Copyright © 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/kthread.h>
26 #include <uapi/linux/sched/types.h>
27
28 #include "i915_drv.h"
29
30 static unsigned int __intel_breadcrumbs_wakeup(struct intel_breadcrumbs *b)
31 {
32         struct intel_wait *wait;
33         unsigned int result = 0;
34
35         lockdep_assert_held(&b->irq_lock);
36
37         wait = b->irq_wait;
38         if (wait) {
39                 result = ENGINE_WAKEUP_WAITER;
40                 if (wake_up_process(wait->tsk))
41                         result |= ENGINE_WAKEUP_ASLEEP;
42         }
43
44         return result;
45 }
46
47 unsigned int intel_engine_wakeup(struct intel_engine_cs *engine)
48 {
49         struct intel_breadcrumbs *b = &engine->breadcrumbs;
50         unsigned long flags;
51         unsigned int result;
52
53         spin_lock_irqsave(&b->irq_lock, flags);
54         result = __intel_breadcrumbs_wakeup(b);
55         spin_unlock_irqrestore(&b->irq_lock, flags);
56
57         return result;
58 }
59
60 static unsigned long wait_timeout(void)
61 {
62         return round_jiffies_up(jiffies + DRM_I915_HANGCHECK_JIFFIES);
63 }
64
65 static noinline void missed_breadcrumb(struct intel_engine_cs *engine)
66 {
67         DRM_DEBUG_DRIVER("%s missed breadcrumb at %pF, irq posted? %s, current seqno=%x, last=%x\n",
68                          engine->name, __builtin_return_address(0),
69                          yesno(test_bit(ENGINE_IRQ_BREADCRUMB,
70                                         &engine->irq_posted)),
71                          intel_engine_get_seqno(engine),
72                          intel_engine_last_submit(engine));
73
74         set_bit(engine->id, &engine->i915->gpu_error.missed_irq_rings);
75 }
76
77 static void intel_breadcrumbs_hangcheck(unsigned long data)
78 {
79         struct intel_engine_cs *engine = (struct intel_engine_cs *)data;
80         struct intel_breadcrumbs *b = &engine->breadcrumbs;
81
82         if (!b->irq_armed)
83                 return;
84
85         if (b->hangcheck_interrupts != atomic_read(&engine->irq_count)) {
86                 b->hangcheck_interrupts = atomic_read(&engine->irq_count);
87                 mod_timer(&b->hangcheck, wait_timeout());
88                 return;
89         }
90
91         /* We keep the hangcheck timer alive until we disarm the irq, even
92          * if there are no waiters at present.
93          *
94          * If the waiter was currently running, assume it hasn't had a chance
95          * to process the pending interrupt (e.g, low priority task on a loaded
96          * system) and wait until it sleeps before declaring a missed interrupt.
97          *
98          * If the waiter was asleep (and not even pending a wakeup), then we
99          * must have missed an interrupt as the GPU has stopped advancing
100          * but we still have a waiter. Assuming all batches complete within
101          * DRM_I915_HANGCHECK_JIFFIES [1.5s]!
102          */
103         if (intel_engine_wakeup(engine) & ENGINE_WAKEUP_ASLEEP) {
104                 missed_breadcrumb(engine);
105                 mod_timer(&engine->breadcrumbs.fake_irq, jiffies + 1);
106         } else {
107                 mod_timer(&b->hangcheck, wait_timeout());
108         }
109 }
110
111 static void intel_breadcrumbs_fake_irq(unsigned long data)
112 {
113         struct intel_engine_cs *engine = (struct intel_engine_cs *)data;
114         struct intel_breadcrumbs *b = &engine->breadcrumbs;
115
116         /* The timer persists in case we cannot enable interrupts,
117          * or if we have previously seen seqno/interrupt incoherency
118          * ("missed interrupt" syndrome, better known as a "missed breadcrumb").
119          * Here the worker will wake up every jiffie in order to kick the
120          * oldest waiter to do the coherent seqno check.
121          */
122
123         spin_lock_irq(&b->irq_lock);
124         if (!__intel_breadcrumbs_wakeup(b))
125                 __intel_engine_disarm_breadcrumbs(engine);
126         spin_unlock_irq(&b->irq_lock);
127         if (!b->irq_armed)
128                 return;
129
130         mod_timer(&b->fake_irq, jiffies + 1);
131
132         /* Ensure that even if the GPU hangs, we get woken up.
133          *
134          * However, note that if no one is waiting, we never notice
135          * a gpu hang. Eventually, we will have to wait for a resource
136          * held by the GPU and so trigger a hangcheck. In the most
137          * pathological case, this will be upon memory starvation! To
138          * prevent this, we also queue the hangcheck from the retire
139          * worker.
140          */
141         i915_queue_hangcheck(engine->i915);
142 }
143
144 static void irq_enable(struct intel_engine_cs *engine)
145 {
146         /* Enabling the IRQ may miss the generation of the interrupt, but
147          * we still need to force the barrier before reading the seqno,
148          * just in case.
149          */
150         set_bit(ENGINE_IRQ_BREADCRUMB, &engine->irq_posted);
151
152         /* Caller disables interrupts */
153         spin_lock(&engine->i915->irq_lock);
154         engine->irq_enable(engine);
155         spin_unlock(&engine->i915->irq_lock);
156 }
157
158 static void irq_disable(struct intel_engine_cs *engine)
159 {
160         /* Caller disables interrupts */
161         spin_lock(&engine->i915->irq_lock);
162         engine->irq_disable(engine);
163         spin_unlock(&engine->i915->irq_lock);
164 }
165
166 void __intel_engine_disarm_breadcrumbs(struct intel_engine_cs *engine)
167 {
168         struct intel_breadcrumbs *b = &engine->breadcrumbs;
169
170         lockdep_assert_held(&b->irq_lock);
171         GEM_BUG_ON(b->irq_wait);
172
173         if (b->irq_enabled) {
174                 irq_disable(engine);
175                 b->irq_enabled = false;
176         }
177
178         b->irq_armed = false;
179 }
180
181 void intel_engine_disarm_breadcrumbs(struct intel_engine_cs *engine)
182 {
183         struct intel_breadcrumbs *b = &engine->breadcrumbs;
184         struct intel_wait *wait, *n, *first;
185
186         if (!b->irq_armed)
187                 return;
188
189         /* We only disarm the irq when we are idle (all requests completed),
190          * so if the bottom-half remains asleep, it missed the request
191          * completion.
192          */
193
194         spin_lock_irq(&b->rb_lock);
195
196         spin_lock(&b->irq_lock);
197         first = fetch_and_zero(&b->irq_wait);
198         __intel_engine_disarm_breadcrumbs(engine);
199         spin_unlock(&b->irq_lock);
200
201         rbtree_postorder_for_each_entry_safe(wait, n, &b->waiters, node) {
202                 RB_CLEAR_NODE(&wait->node);
203                 if (wake_up_process(wait->tsk) && wait == first)
204                         missed_breadcrumb(engine);
205         }
206         b->waiters = RB_ROOT;
207
208         spin_unlock_irq(&b->rb_lock);
209 }
210
211 static bool use_fake_irq(const struct intel_breadcrumbs *b)
212 {
213         const struct intel_engine_cs *engine =
214                 container_of(b, struct intel_engine_cs, breadcrumbs);
215
216         if (!test_bit(engine->id, &engine->i915->gpu_error.missed_irq_rings))
217                 return false;
218
219         /* Only start with the heavy weight fake irq timer if we have not
220          * seen any interrupts since enabling it the first time. If the
221          * interrupts are still arriving, it means we made a mistake in our
222          * engine->seqno_barrier(), a timing error that should be transient
223          * and unlikely to reoccur.
224          */
225         return atomic_read(&engine->irq_count) == b->hangcheck_interrupts;
226 }
227
228 static void enable_fake_irq(struct intel_breadcrumbs *b)
229 {
230         /* Ensure we never sleep indefinitely */
231         if (!b->irq_enabled || use_fake_irq(b))
232                 mod_timer(&b->fake_irq, jiffies + 1);
233         else
234                 mod_timer(&b->hangcheck, wait_timeout());
235 }
236
237 static bool __intel_breadcrumbs_enable_irq(struct intel_breadcrumbs *b)
238 {
239         struct intel_engine_cs *engine =
240                 container_of(b, struct intel_engine_cs, breadcrumbs);
241         struct drm_i915_private *i915 = engine->i915;
242
243         lockdep_assert_held(&b->irq_lock);
244         if (b->irq_armed)
245                 return false;
246
247         /* The breadcrumb irq will be disarmed on the interrupt after the
248          * waiters are signaled. This gives us a single interrupt window in
249          * which we can add a new waiter and avoid the cost of re-enabling
250          * the irq.
251          */
252         b->irq_armed = true;
253         GEM_BUG_ON(b->irq_enabled);
254
255         if (I915_SELFTEST_ONLY(b->mock)) {
256                 /* For our mock objects we want to avoid interaction
257                  * with the real hardware (which is not set up). So
258                  * we simply pretend we have enabled the powerwell
259                  * and the irq, and leave it up to the mock
260                  * implementation to call intel_engine_wakeup()
261                  * itself when it wants to simulate a user interrupt,
262                  */
263                 return true;
264         }
265
266         /* Since we are waiting on a request, the GPU should be busy
267          * and should have its own rpm reference. This is tracked
268          * by i915->gt.awake, we can forgo holding our own wakref
269          * for the interrupt as before i915->gt.awake is released (when
270          * the driver is idle) we disarm the breadcrumbs.
271          */
272
273         /* No interrupts? Kick the waiter every jiffie! */
274         if (intel_irqs_enabled(i915)) {
275                 if (!test_bit(engine->id, &i915->gpu_error.test_irq_rings))
276                         irq_enable(engine);
277                 b->irq_enabled = true;
278         }
279
280         enable_fake_irq(b);
281         return true;
282 }
283
284 static inline struct intel_wait *to_wait(struct rb_node *node)
285 {
286         return rb_entry(node, struct intel_wait, node);
287 }
288
289 static inline void __intel_breadcrumbs_finish(struct intel_breadcrumbs *b,
290                                               struct intel_wait *wait)
291 {
292         lockdep_assert_held(&b->rb_lock);
293         GEM_BUG_ON(b->irq_wait == wait);
294
295         /* This request is completed, so remove it from the tree, mark it as
296          * complete, and *then* wake up the associated task. N.B. when the
297          * task wakes up, it will find the empty rb_node, discern that it
298          * has already been removed from the tree and skip the serialisation
299          * of the b->rb_lock and b->irq_lock. This means that the destruction
300          * of the intel_wait is not serialised with the interrupt handler
301          * by the waiter - it must instead be serialised by the caller.
302          */
303         rb_erase(&wait->node, &b->waiters);
304         RB_CLEAR_NODE(&wait->node);
305
306         wake_up_process(wait->tsk); /* implicit smp_wmb() */
307 }
308
309 static inline void __intel_breadcrumbs_next(struct intel_engine_cs *engine,
310                                             struct rb_node *next)
311 {
312         struct intel_breadcrumbs *b = &engine->breadcrumbs;
313
314         spin_lock(&b->irq_lock);
315         GEM_BUG_ON(!b->irq_armed);
316         GEM_BUG_ON(!b->irq_wait);
317         b->irq_wait = to_wait(next);
318         spin_unlock(&b->irq_lock);
319
320         /* We always wake up the next waiter that takes over as the bottom-half
321          * as we may delegate not only the irq-seqno barrier to the next waiter
322          * but also the task of waking up concurrent waiters.
323          */
324         if (next)
325                 wake_up_process(to_wait(next)->tsk);
326 }
327
328 static bool __intel_engine_add_wait(struct intel_engine_cs *engine,
329                                     struct intel_wait *wait)
330 {
331         struct intel_breadcrumbs *b = &engine->breadcrumbs;
332         struct rb_node **p, *parent, *completed;
333         bool first, armed;
334         u32 seqno;
335
336         /* Insert the request into the retirement ordered list
337          * of waiters by walking the rbtree. If we are the oldest
338          * seqno in the tree (the first to be retired), then
339          * set ourselves as the bottom-half.
340          *
341          * As we descend the tree, prune completed branches since we hold the
342          * spinlock we know that the first_waiter must be delayed and can
343          * reduce some of the sequential wake up latency if we take action
344          * ourselves and wake up the completed tasks in parallel. Also, by
345          * removing stale elements in the tree, we may be able to reduce the
346          * ping-pong between the old bottom-half and ourselves as first-waiter.
347          */
348         armed = false;
349         first = true;
350         parent = NULL;
351         completed = NULL;
352         seqno = intel_engine_get_seqno(engine);
353
354          /* If the request completed before we managed to grab the spinlock,
355           * return now before adding ourselves to the rbtree. We let the
356           * current bottom-half handle any pending wakeups and instead
357           * try and get out of the way quickly.
358           */
359         if (i915_seqno_passed(seqno, wait->seqno)) {
360                 RB_CLEAR_NODE(&wait->node);
361                 return first;
362         }
363
364         p = &b->waiters.rb_node;
365         while (*p) {
366                 parent = *p;
367                 if (wait->seqno == to_wait(parent)->seqno) {
368                         /* We have multiple waiters on the same seqno, select
369                          * the highest priority task (that with the smallest
370                          * task->prio) to serve as the bottom-half for this
371                          * group.
372                          */
373                         if (wait->tsk->prio > to_wait(parent)->tsk->prio) {
374                                 p = &parent->rb_right;
375                                 first = false;
376                         } else {
377                                 p = &parent->rb_left;
378                         }
379                 } else if (i915_seqno_passed(wait->seqno,
380                                              to_wait(parent)->seqno)) {
381                         p = &parent->rb_right;
382                         if (i915_seqno_passed(seqno, to_wait(parent)->seqno))
383                                 completed = parent;
384                         else
385                                 first = false;
386                 } else {
387                         p = &parent->rb_left;
388                 }
389         }
390         rb_link_node(&wait->node, parent, p);
391         rb_insert_color(&wait->node, &b->waiters);
392
393         if (first) {
394                 spin_lock(&b->irq_lock);
395                 b->irq_wait = wait;
396                 /* After assigning ourselves as the new bottom-half, we must
397                  * perform a cursory check to prevent a missed interrupt.
398                  * Either we miss the interrupt whilst programming the hardware,
399                  * or if there was a previous waiter (for a later seqno) they
400                  * may be woken instead of us (due to the inherent race
401                  * in the unlocked read of b->irq_seqno_bh in the irq handler)
402                  * and so we miss the wake up.
403                  */
404                 armed = __intel_breadcrumbs_enable_irq(b);
405                 spin_unlock(&b->irq_lock);
406         }
407
408         if (completed) {
409                 /* Advance the bottom-half (b->irq_wait) before we wake up
410                  * the waiters who may scribble over their intel_wait
411                  * just as the interrupt handler is dereferencing it via
412                  * b->irq_wait.
413                  */
414                 if (!first) {
415                         struct rb_node *next = rb_next(completed);
416                         GEM_BUG_ON(next == &wait->node);
417                         __intel_breadcrumbs_next(engine, next);
418                 }
419
420                 do {
421                         struct intel_wait *crumb = to_wait(completed);
422                         completed = rb_prev(completed);
423                         __intel_breadcrumbs_finish(b, crumb);
424                 } while (completed);
425         }
426
427         GEM_BUG_ON(!b->irq_wait);
428         GEM_BUG_ON(!b->irq_armed);
429         GEM_BUG_ON(rb_first(&b->waiters) != &b->irq_wait->node);
430
431         return armed;
432 }
433
434 bool intel_engine_add_wait(struct intel_engine_cs *engine,
435                            struct intel_wait *wait)
436 {
437         struct intel_breadcrumbs *b = &engine->breadcrumbs;
438         bool armed;
439
440         spin_lock_irq(&b->rb_lock);
441         armed = __intel_engine_add_wait(engine, wait);
442         spin_unlock_irq(&b->rb_lock);
443         if (armed)
444                 return armed;
445
446         /* Make the caller recheck if its request has already started. */
447         return i915_seqno_passed(intel_engine_get_seqno(engine),
448                                  wait->seqno - 1);
449 }
450
451 static inline bool chain_wakeup(struct rb_node *rb, int priority)
452 {
453         return rb && to_wait(rb)->tsk->prio <= priority;
454 }
455
456 static inline int wakeup_priority(struct intel_breadcrumbs *b,
457                                   struct task_struct *tsk)
458 {
459         if (tsk == b->signaler)
460                 return INT_MIN;
461         else
462                 return tsk->prio;
463 }
464
465 static void __intel_engine_remove_wait(struct intel_engine_cs *engine,
466                                        struct intel_wait *wait)
467 {
468         struct intel_breadcrumbs *b = &engine->breadcrumbs;
469
470         lockdep_assert_held(&b->rb_lock);
471
472         if (RB_EMPTY_NODE(&wait->node))
473                 goto out;
474
475         if (b->irq_wait == wait) {
476                 const int priority = wakeup_priority(b, wait->tsk);
477                 struct rb_node *next;
478
479                 /* We are the current bottom-half. Find the next candidate,
480                  * the first waiter in the queue on the remaining oldest
481                  * request. As multiple seqnos may complete in the time it
482                  * takes us to wake up and find the next waiter, we have to
483                  * wake up that waiter for it to perform its own coherent
484                  * completion check.
485                  */
486                 next = rb_next(&wait->node);
487                 if (chain_wakeup(next, priority)) {
488                         /* If the next waiter is already complete,
489                          * wake it up and continue onto the next waiter. So
490                          * if have a small herd, they will wake up in parallel
491                          * rather than sequentially, which should reduce
492                          * the overall latency in waking all the completed
493                          * clients.
494                          *
495                          * However, waking up a chain adds extra latency to
496                          * the first_waiter. This is undesirable if that
497                          * waiter is a high priority task.
498                          */
499                         u32 seqno = intel_engine_get_seqno(engine);
500
501                         while (i915_seqno_passed(seqno, to_wait(next)->seqno)) {
502                                 struct rb_node *n = rb_next(next);
503
504                                 __intel_breadcrumbs_finish(b, to_wait(next));
505                                 next = n;
506                                 if (!chain_wakeup(next, priority))
507                                         break;
508                         }
509                 }
510
511                 __intel_breadcrumbs_next(engine, next);
512         } else {
513                 GEM_BUG_ON(rb_first(&b->waiters) == &wait->node);
514         }
515
516         GEM_BUG_ON(RB_EMPTY_NODE(&wait->node));
517         rb_erase(&wait->node, &b->waiters);
518
519 out:
520         GEM_BUG_ON(b->irq_wait == wait);
521         GEM_BUG_ON(rb_first(&b->waiters) !=
522                    (b->irq_wait ? &b->irq_wait->node : NULL));
523 }
524
525 void intel_engine_remove_wait(struct intel_engine_cs *engine,
526                               struct intel_wait *wait)
527 {
528         struct intel_breadcrumbs *b = &engine->breadcrumbs;
529
530         /* Quick check to see if this waiter was already decoupled from
531          * the tree by the bottom-half to avoid contention on the spinlock
532          * by the herd.
533          */
534         if (RB_EMPTY_NODE(&wait->node)) {
535                 GEM_BUG_ON(READ_ONCE(b->irq_wait) == wait);
536                 return;
537         }
538
539         spin_lock_irq(&b->rb_lock);
540         __intel_engine_remove_wait(engine, wait);
541         spin_unlock_irq(&b->rb_lock);
542 }
543
544 static bool signal_valid(const struct drm_i915_gem_request *request)
545 {
546         return intel_wait_check_request(&request->signaling.wait, request);
547 }
548
549 static bool signal_complete(const struct drm_i915_gem_request *request)
550 {
551         if (!request)
552                 return false;
553
554         /* If another process served as the bottom-half it may have already
555          * signalled that this wait is already completed.
556          */
557         if (intel_wait_complete(&request->signaling.wait))
558                 return signal_valid(request);
559
560         /* Carefully check if the request is complete, giving time for the
561          * seqno to be visible or if the GPU hung.
562          */
563         if (__i915_request_irq_complete(request))
564                 return true;
565
566         return false;
567 }
568
569 static struct drm_i915_gem_request *to_signaler(struct rb_node *rb)
570 {
571         return rb_entry(rb, struct drm_i915_gem_request, signaling.node);
572 }
573
574 static void signaler_set_rtpriority(void)
575 {
576          struct sched_param param = { .sched_priority = 1 };
577
578          sched_setscheduler_nocheck(current, SCHED_FIFO, &param);
579 }
580
581 static int intel_breadcrumbs_signaler(void *arg)
582 {
583         struct intel_engine_cs *engine = arg;
584         struct intel_breadcrumbs *b = &engine->breadcrumbs;
585         struct drm_i915_gem_request *request;
586
587         /* Install ourselves with high priority to reduce signalling latency */
588         signaler_set_rtpriority();
589
590         do {
591                 bool do_schedule = true;
592
593                 set_current_state(TASK_INTERRUPTIBLE);
594
595                 /* We are either woken up by the interrupt bottom-half,
596                  * or by a client adding a new signaller. In both cases,
597                  * the GPU seqno may have advanced beyond our oldest signal.
598                  * If it has, propagate the signal, remove the waiter and
599                  * check again with the next oldest signal. Otherwise we
600                  * need to wait for a new interrupt from the GPU or for
601                  * a new client.
602                  */
603                 rcu_read_lock();
604                 request = rcu_dereference(b->first_signal);
605                 if (request)
606                         request = i915_gem_request_get_rcu(request);
607                 rcu_read_unlock();
608                 if (signal_complete(request)) {
609                         local_bh_disable();
610                         dma_fence_signal(&request->fence);
611                         local_bh_enable(); /* kick start the tasklets */
612
613                         spin_lock_irq(&b->rb_lock);
614
615                         /* Wake up all other completed waiters and select the
616                          * next bottom-half for the next user interrupt.
617                          */
618                         __intel_engine_remove_wait(engine,
619                                                    &request->signaling.wait);
620
621                         /* Find the next oldest signal. Note that as we have
622                          * not been holding the lock, another client may
623                          * have installed an even older signal than the one
624                          * we just completed - so double check we are still
625                          * the oldest before picking the next one.
626                          */
627                         if (request == rcu_access_pointer(b->first_signal)) {
628                                 struct rb_node *rb =
629                                         rb_next(&request->signaling.node);
630                                 rcu_assign_pointer(b->first_signal,
631                                                    rb ? to_signaler(rb) : NULL);
632                         }
633                         rb_erase(&request->signaling.node, &b->signals);
634                         RB_CLEAR_NODE(&request->signaling.node);
635
636                         spin_unlock_irq(&b->rb_lock);
637
638                         i915_gem_request_put(request);
639
640                         /* If the engine is saturated we may be continually
641                          * processing completed requests. This angers the
642                          * NMI watchdog if we never let anything else
643                          * have access to the CPU. Let's pretend to be nice
644                          * and relinquish the CPU if we burn through the
645                          * entire RT timeslice!
646                          */
647                         do_schedule = need_resched();
648                 }
649
650                 if (unlikely(do_schedule)) {
651                         DEFINE_WAIT(exec);
652
653                         if (kthread_should_park())
654                                 kthread_parkme();
655
656                         if (kthread_should_stop()) {
657                                 GEM_BUG_ON(request);
658                                 break;
659                         }
660
661                         if (request)
662                                 add_wait_queue(&request->execute, &exec);
663
664                         schedule();
665
666                         if (request)
667                                 remove_wait_queue(&request->execute, &exec);
668                 }
669                 i915_gem_request_put(request);
670         } while (1);
671         __set_current_state(TASK_RUNNING);
672
673         return 0;
674 }
675
676 void intel_engine_enable_signaling(struct drm_i915_gem_request *request,
677                                    bool wakeup)
678 {
679         struct intel_engine_cs *engine = request->engine;
680         struct intel_breadcrumbs *b = &engine->breadcrumbs;
681         u32 seqno;
682
683         /* Note that we may be called from an interrupt handler on another
684          * device (e.g. nouveau signaling a fence completion causing us
685          * to submit a request, and so enable signaling). As such,
686          * we need to make sure that all other users of b->rb_lock protect
687          * against interrupts, i.e. use spin_lock_irqsave.
688          */
689
690         /* locked by dma_fence_enable_sw_signaling() (irqsafe fence->lock) */
691         GEM_BUG_ON(!irqs_disabled());
692         lockdep_assert_held(&request->lock);
693
694         seqno = i915_gem_request_global_seqno(request);
695         if (!seqno)
696                 return;
697
698         request->signaling.wait.tsk = b->signaler;
699         request->signaling.wait.request = request;
700         request->signaling.wait.seqno = seqno;
701         i915_gem_request_get(request);
702
703         spin_lock(&b->rb_lock);
704
705         /* First add ourselves into the list of waiters, but register our
706          * bottom-half as the signaller thread. As per usual, only the oldest
707          * waiter (not just signaller) is tasked as the bottom-half waking
708          * up all completed waiters after the user interrupt.
709          *
710          * If we are the oldest waiter, enable the irq (after which we
711          * must double check that the seqno did not complete).
712          */
713         wakeup &= __intel_engine_add_wait(engine, &request->signaling.wait);
714
715         if (!__i915_gem_request_completed(request, seqno)) {
716                 struct rb_node *parent, **p;
717                 bool first;
718
719                 /* Now insert ourselves into the retirement ordered list of
720                  * signals on this engine. We track the oldest seqno as that
721                  * will be the first signal to complete.
722                  */
723                 parent = NULL;
724                 first = true;
725                 p = &b->signals.rb_node;
726                 while (*p) {
727                         parent = *p;
728                         if (i915_seqno_passed(seqno,
729                                               to_signaler(parent)->signaling.wait.seqno)) {
730                                 p = &parent->rb_right;
731                                 first = false;
732                         } else {
733                                 p = &parent->rb_left;
734                         }
735                 }
736                 rb_link_node(&request->signaling.node, parent, p);
737                 rb_insert_color(&request->signaling.node, &b->signals);
738                 if (first)
739                         rcu_assign_pointer(b->first_signal, request);
740         } else {
741                 __intel_engine_remove_wait(engine, &request->signaling.wait);
742                 i915_gem_request_put(request);
743                 wakeup = false;
744         }
745
746         spin_unlock(&b->rb_lock);
747
748         if (wakeup)
749                 wake_up_process(b->signaler);
750 }
751
752 void intel_engine_cancel_signaling(struct drm_i915_gem_request *request)
753 {
754         struct intel_engine_cs *engine = request->engine;
755         struct intel_breadcrumbs *b = &engine->breadcrumbs;
756
757         GEM_BUG_ON(!irqs_disabled());
758         lockdep_assert_held(&request->lock);
759         GEM_BUG_ON(!request->signaling.wait.seqno);
760
761         spin_lock(&b->rb_lock);
762
763         if (!RB_EMPTY_NODE(&request->signaling.node)) {
764                 if (request == rcu_access_pointer(b->first_signal)) {
765                         struct rb_node *rb =
766                                 rb_next(&request->signaling.node);
767                         rcu_assign_pointer(b->first_signal,
768                                            rb ? to_signaler(rb) : NULL);
769                 }
770                 rb_erase(&request->signaling.node, &b->signals);
771                 RB_CLEAR_NODE(&request->signaling.node);
772                 i915_gem_request_put(request);
773         }
774
775         __intel_engine_remove_wait(engine, &request->signaling.wait);
776
777         spin_unlock(&b->rb_lock);
778
779         request->signaling.wait.seqno = 0;
780 }
781
782 int intel_engine_init_breadcrumbs(struct intel_engine_cs *engine)
783 {
784         struct intel_breadcrumbs *b = &engine->breadcrumbs;
785         struct task_struct *tsk;
786
787         spin_lock_init(&b->rb_lock);
788         spin_lock_init(&b->irq_lock);
789
790         setup_timer(&b->fake_irq,
791                     intel_breadcrumbs_fake_irq,
792                     (unsigned long)engine);
793         setup_timer(&b->hangcheck,
794                     intel_breadcrumbs_hangcheck,
795                     (unsigned long)engine);
796
797         /* Spawn a thread to provide a common bottom-half for all signals.
798          * As this is an asynchronous interface we cannot steal the current
799          * task for handling the bottom-half to the user interrupt, therefore
800          * we create a thread to do the coherent seqno dance after the
801          * interrupt and then signal the waitqueue (via the dma-buf/fence).
802          */
803         tsk = kthread_run(intel_breadcrumbs_signaler, engine,
804                           "i915/signal:%d", engine->id);
805         if (IS_ERR(tsk))
806                 return PTR_ERR(tsk);
807
808         b->signaler = tsk;
809
810         return 0;
811 }
812
813 static void cancel_fake_irq(struct intel_engine_cs *engine)
814 {
815         struct intel_breadcrumbs *b = &engine->breadcrumbs;
816
817         del_timer_sync(&b->hangcheck);
818         del_timer_sync(&b->fake_irq);
819         clear_bit(engine->id, &engine->i915->gpu_error.missed_irq_rings);
820 }
821
822 void intel_engine_reset_breadcrumbs(struct intel_engine_cs *engine)
823 {
824         struct intel_breadcrumbs *b = &engine->breadcrumbs;
825
826         cancel_fake_irq(engine);
827         spin_lock_irq(&b->irq_lock);
828
829         if (b->irq_enabled)
830                 irq_enable(engine);
831         else
832                 irq_disable(engine);
833
834         /* We set the IRQ_BREADCRUMB bit when we enable the irq presuming the
835          * GPU is active and may have already executed the MI_USER_INTERRUPT
836          * before the CPU is ready to receive. However, the engine is currently
837          * idle (we haven't started it yet), there is no possibility for a
838          * missed interrupt as we enabled the irq and so we can clear the
839          * immediate wakeup (until a real interrupt arrives for the waiter).
840          */
841         clear_bit(ENGINE_IRQ_BREADCRUMB, &engine->irq_posted);
842
843         if (b->irq_armed)
844                 enable_fake_irq(b);
845
846         spin_unlock_irq(&b->irq_lock);
847 }
848
849 void intel_engine_fini_breadcrumbs(struct intel_engine_cs *engine)
850 {
851         struct intel_breadcrumbs *b = &engine->breadcrumbs;
852
853         /* The engines should be idle and all requests accounted for! */
854         WARN_ON(READ_ONCE(b->irq_wait));
855         WARN_ON(!RB_EMPTY_ROOT(&b->waiters));
856         WARN_ON(rcu_access_pointer(b->first_signal));
857         WARN_ON(!RB_EMPTY_ROOT(&b->signals));
858
859         if (!IS_ERR_OR_NULL(b->signaler))
860                 kthread_stop(b->signaler);
861
862         cancel_fake_irq(engine);
863 }
864
865 bool intel_breadcrumbs_busy(struct intel_engine_cs *engine)
866 {
867         struct intel_breadcrumbs *b = &engine->breadcrumbs;
868         bool busy = false;
869
870         spin_lock_irq(&b->rb_lock);
871
872         if (b->irq_wait) {
873                 wake_up_process(b->irq_wait->tsk);
874                 busy = true;
875         }
876
877         if (rcu_access_pointer(b->first_signal)) {
878                 wake_up_process(b->signaler);
879                 busy = true;
880         }
881
882         spin_unlock_irq(&b->rb_lock);
883
884         return busy;
885 }
886
887 #if IS_ENABLED(CONFIG_DRM_I915_SELFTEST)
888 #include "selftests/intel_breadcrumbs.c"
889 #endif