blob: 1bd0a461d66538a59b5bd72d961873702e8d128f [file] [log] [blame]
Chris Wilson688e6c72016-07-01 17:23:15 +01001/*
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
Chris Wilsonc81d4612016-07-01 17:23:25 +010025#include <linux/kthread.h>
Ingo Molnarae7e81c2017-02-01 18:07:51 +010026#include <uapi/linux/sched/types.h>
Chris Wilsonc81d4612016-07-01 17:23:25 +010027
Chris Wilson688e6c72016-07-01 17:23:15 +010028#include "i915_drv.h"
29
Chris Wilson67b807a82017-02-27 20:58:50 +000030static unsigned int __intel_breadcrumbs_wakeup(struct intel_breadcrumbs *b)
Chris Wilson8d769ea2017-02-27 20:58:47 +000031{
Chris Wilson56299fb2017-02-27 20:58:48 +000032 struct intel_wait *wait;
Chris Wilson8d769ea2017-02-27 20:58:47 +000033 unsigned int result = 0;
34
Chris Wilson61d3dc72017-03-03 19:08:24 +000035 lockdep_assert_held(&b->irq_lock);
36
37 wait = b->irq_wait;
Chris Wilson56299fb2017-02-27 20:58:48 +000038 if (wait) {
Chris Wilson8d769ea2017-02-27 20:58:47 +000039 result = ENGINE_WAKEUP_WAITER;
Chris Wilson67b807a82017-02-27 20:58:50 +000040 if (wake_up_process(wait->tsk))
41 result |= ENGINE_WAKEUP_ASLEEP;
Chris Wilson8d769ea2017-02-27 20:58:47 +000042 }
Chris Wilson67b807a82017-02-27 20:58:50 +000043
44 return result;
45}
46
47unsigned int intel_engine_wakeup(struct intel_engine_cs *engine)
48{
49 struct intel_breadcrumbs *b = &engine->breadcrumbs;
Chris Wilson467221b2017-03-20 14:31:33 +000050 unsigned long flags;
Chris Wilson67b807a82017-02-27 20:58:50 +000051 unsigned int result;
52
Chris Wilson467221b2017-03-20 14:31:33 +000053 spin_lock_irqsave(&b->irq_lock, flags);
Chris Wilson67b807a82017-02-27 20:58:50 +000054 result = __intel_breadcrumbs_wakeup(b);
Chris Wilson467221b2017-03-20 14:31:33 +000055 spin_unlock_irqrestore(&b->irq_lock, flags);
Chris Wilson8d769ea2017-02-27 20:58:47 +000056
57 return result;
58}
59
Chris Wilson2246bea2017-02-17 15:13:00 +000060static unsigned long wait_timeout(void)
61{
62 return round_jiffies_up(jiffies + DRM_I915_HANGCHECK_JIFFIES);
63}
64
Chris Wilson80166e402017-02-28 08:50:18 +000065static noinline void missed_breadcrumb(struct intel_engine_cs *engine)
66{
Helge Deller516726d2017-09-06 22:27:52 +020067 DRM_DEBUG_DRIVER("%s missed breadcrumb at %pS, irq posted? %s, current seqno=%x, last=%x\n",
Chris Wilson80166e402017-02-28 08:50:18 +000068 engine->name, __builtin_return_address(0),
69 yesno(test_bit(ENGINE_IRQ_BREADCRUMB,
Chris Wilson695eaa32017-04-23 18:06:19 +010070 &engine->irq_posted)),
71 intel_engine_get_seqno(engine),
72 intel_engine_last_submit(engine));
Chris Wilson80166e402017-02-28 08:50:18 +000073
74 set_bit(engine->id, &engine->i915->gpu_error.missed_irq_rings);
75}
76
Kees Cook39cbf2a2017-10-17 09:53:04 +030077static void intel_breadcrumbs_hangcheck(struct timer_list *t)
Chris Wilson83348ba2016-08-09 17:47:51 +010078{
Kees Cook39cbf2a2017-10-17 09:53:04 +030079 struct intel_engine_cs *engine = from_timer(engine, t,
80 breadcrumbs.hangcheck);
Chris Wilson83348ba2016-08-09 17:47:51 +010081 struct intel_breadcrumbs *b = &engine->breadcrumbs;
82
Chris Wilson67b807a82017-02-27 20:58:50 +000083 if (!b->irq_armed)
Chris Wilson83348ba2016-08-09 17:47:51 +010084 return;
85
Chris Wilson2246bea2017-02-17 15:13:00 +000086 if (b->hangcheck_interrupts != atomic_read(&engine->irq_count)) {
87 b->hangcheck_interrupts = atomic_read(&engine->irq_count);
88 mod_timer(&b->hangcheck, wait_timeout());
Chris Wilson83348ba2016-08-09 17:47:51 +010089 return;
90 }
91
Chris Wilsona6b0a1412017-03-15 22:22:59 +000092 /* We keep the hangcheck timer alive until we disarm the irq, even
Chris Wilson67b807a82017-02-27 20:58:50 +000093 * if there are no waiters at present.
94 *
95 * If the waiter was currently running, assume it hasn't had a chance
Chris Wilson89985672017-02-17 15:13:02 +000096 * to process the pending interrupt (e.g, low priority task on a loaded
97 * system) and wait until it sleeps before declaring a missed interrupt.
Chris Wilson67b807a82017-02-27 20:58:50 +000098 *
99 * If the waiter was asleep (and not even pending a wakeup), then we
100 * must have missed an interrupt as the GPU has stopped advancing
101 * but we still have a waiter. Assuming all batches complete within
102 * DRM_I915_HANGCHECK_JIFFIES [1.5s]!
Chris Wilson89985672017-02-17 15:13:02 +0000103 */
Chris Wilson67b807a82017-02-27 20:58:50 +0000104 if (intel_engine_wakeup(engine) & ENGINE_WAKEUP_ASLEEP) {
Chris Wilson80166e402017-02-28 08:50:18 +0000105 missed_breadcrumb(engine);
Chris Wilson67b807a82017-02-27 20:58:50 +0000106 mod_timer(&engine->breadcrumbs.fake_irq, jiffies + 1);
107 } else {
Chris Wilson89985672017-02-17 15:13:02 +0000108 mod_timer(&b->hangcheck, wait_timeout());
Chris Wilson89985672017-02-17 15:13:02 +0000109 }
Chris Wilson83348ba2016-08-09 17:47:51 +0100110}
111
Kees Cook39cbf2a2017-10-17 09:53:04 +0300112static void intel_breadcrumbs_fake_irq(struct timer_list *t)
Chris Wilson688e6c72016-07-01 17:23:15 +0100113{
Kees Cook39cbf2a2017-10-17 09:53:04 +0300114 struct intel_engine_cs *engine = from_timer(engine, t,
115 breadcrumbs.fake_irq);
Chris Wilson67b807a82017-02-27 20:58:50 +0000116 struct intel_breadcrumbs *b = &engine->breadcrumbs;
Chris Wilson688e6c72016-07-01 17:23:15 +0100117
Chris Wilsona6b0a1412017-03-15 22:22:59 +0000118 /* The timer persists in case we cannot enable interrupts,
Chris Wilson688e6c72016-07-01 17:23:15 +0100119 * or if we have previously seen seqno/interrupt incoherency
Chris Wilsona6b0a1412017-03-15 22:22:59 +0000120 * ("missed interrupt" syndrome, better known as a "missed breadcrumb").
121 * Here the worker will wake up every jiffie in order to kick the
122 * oldest waiter to do the coherent seqno check.
Chris Wilson688e6c72016-07-01 17:23:15 +0100123 */
Chris Wilson67b807a82017-02-27 20:58:50 +0000124
Tvrtko Ursulina9e64932017-03-06 15:03:20 +0000125 spin_lock_irq(&b->irq_lock);
Chris Wilsonbcbd5c32017-10-25 15:39:42 +0100126 if (b->irq_armed && !__intel_breadcrumbs_wakeup(b))
Chris Wilson67b807a82017-02-27 20:58:50 +0000127 __intel_engine_disarm_breadcrumbs(engine);
Tvrtko Ursulina9e64932017-03-06 15:03:20 +0000128 spin_unlock_irq(&b->irq_lock);
Chris Wilson67b807a82017-02-27 20:58:50 +0000129 if (!b->irq_armed)
Chris Wilson19d0a572017-02-27 20:58:49 +0000130 return;
131
Chris Wilson67b807a82017-02-27 20:58:50 +0000132 mod_timer(&b->fake_irq, jiffies + 1);
Chris Wilson19d0a572017-02-27 20:58:49 +0000133
134 /* Ensure that even if the GPU hangs, we get woken up.
135 *
136 * However, note that if no one is waiting, we never notice
137 * a gpu hang. Eventually, we will have to wait for a resource
138 * held by the GPU and so trigger a hangcheck. In the most
139 * pathological case, this will be upon memory starvation! To
140 * prevent this, we also queue the hangcheck from the retire
141 * worker.
142 */
143 i915_queue_hangcheck(engine->i915);
Chris Wilson688e6c72016-07-01 17:23:15 +0100144}
145
146static void irq_enable(struct intel_engine_cs *engine)
147{
Chris Wilson3d5564e2016-07-01 17:23:23 +0100148 /* Enabling the IRQ may miss the generation of the interrupt, but
149 * we still need to force the barrier before reading the seqno,
150 * just in case.
151 */
Chris Wilson538b2572017-01-24 15:18:05 +0000152 set_bit(ENGINE_IRQ_BREADCRUMB, &engine->irq_posted);
Chris Wilson31bb59c2016-07-01 17:23:27 +0100153
Chris Wilsonf6168e32016-10-28 13:58:55 +0100154 /* Caller disables interrupts */
155 spin_lock(&engine->i915->irq_lock);
Chris Wilson31bb59c2016-07-01 17:23:27 +0100156 engine->irq_enable(engine);
Chris Wilsonf6168e32016-10-28 13:58:55 +0100157 spin_unlock(&engine->i915->irq_lock);
Chris Wilson688e6c72016-07-01 17:23:15 +0100158}
159
160static void irq_disable(struct intel_engine_cs *engine)
161{
Chris Wilsonf6168e32016-10-28 13:58:55 +0100162 /* Caller disables interrupts */
163 spin_lock(&engine->i915->irq_lock);
Chris Wilson31bb59c2016-07-01 17:23:27 +0100164 engine->irq_disable(engine);
Chris Wilsonf6168e32016-10-28 13:58:55 +0100165 spin_unlock(&engine->i915->irq_lock);
Chris Wilson688e6c72016-07-01 17:23:15 +0100166}
167
Chris Wilson67b807a82017-02-27 20:58:50 +0000168void __intel_engine_disarm_breadcrumbs(struct intel_engine_cs *engine)
169{
170 struct intel_breadcrumbs *b = &engine->breadcrumbs;
171
Chris Wilson61d3dc72017-03-03 19:08:24 +0000172 lockdep_assert_held(&b->irq_lock);
Chris Wilsone1c0c912017-03-06 09:29:15 +0000173 GEM_BUG_ON(b->irq_wait);
Chris Wilsonbcbd5c32017-10-25 15:39:42 +0100174 GEM_BUG_ON(!b->irq_armed);
Chris Wilson67b807a82017-02-27 20:58:50 +0000175
Chris Wilsonbcbd5c32017-10-25 15:39:42 +0100176 GEM_BUG_ON(!b->irq_enabled);
177 if (!--b->irq_enabled)
Chris Wilson67b807a82017-02-27 20:58:50 +0000178 irq_disable(engine);
Chris Wilson67b807a82017-02-27 20:58:50 +0000179
180 b->irq_armed = false;
181}
182
Chris Wilsonbcbd5c32017-10-25 15:39:42 +0100183void intel_engine_pin_breadcrumbs_irq(struct intel_engine_cs *engine)
184{
185 struct intel_breadcrumbs *b = &engine->breadcrumbs;
186
187 spin_lock_irq(&b->irq_lock);
188 if (!b->irq_enabled++)
189 irq_enable(engine);
190 GEM_BUG_ON(!b->irq_enabled); /* no overflow! */
191 spin_unlock_irq(&b->irq_lock);
192}
193
194void intel_engine_unpin_breadcrumbs_irq(struct intel_engine_cs *engine)
195{
196 struct intel_breadcrumbs *b = &engine->breadcrumbs;
197
198 spin_lock_irq(&b->irq_lock);
199 GEM_BUG_ON(!b->irq_enabled); /* no underflow! */
200 if (!--b->irq_enabled)
201 irq_disable(engine);
202 spin_unlock_irq(&b->irq_lock);
203}
204
Chris Wilson67b807a82017-02-27 20:58:50 +0000205void intel_engine_disarm_breadcrumbs(struct intel_engine_cs *engine)
206{
207 struct intel_breadcrumbs *b = &engine->breadcrumbs;
Chris Wilsona5cae7b2017-03-15 21:07:24 +0000208 struct intel_wait *wait, *n, *first;
Chris Wilson67b807a82017-02-27 20:58:50 +0000209
210 if (!b->irq_armed)
211 return;
212
Chris Wilson67b807a82017-02-27 20:58:50 +0000213 /* We only disarm the irq when we are idle (all requests completed),
Chris Wilsone1c0c912017-03-06 09:29:15 +0000214 * so if the bottom-half remains asleep, it missed the request
Chris Wilson67b807a82017-02-27 20:58:50 +0000215 * completion.
216 */
Chris Wilson67b807a82017-02-27 20:58:50 +0000217
Chris Wilsone1c0c912017-03-06 09:29:15 +0000218 spin_lock_irq(&b->rb_lock);
Chris Wilsona5cae7b2017-03-15 21:07:24 +0000219
220 spin_lock(&b->irq_lock);
221 first = fetch_and_zero(&b->irq_wait);
222 __intel_engine_disarm_breadcrumbs(engine);
223 spin_unlock(&b->irq_lock);
224
Chris Wilsone1c0c912017-03-06 09:29:15 +0000225 rbtree_postorder_for_each_entry_safe(wait, n, &b->waiters, node) {
226 RB_CLEAR_NODE(&wait->node);
Chris Wilsona5cae7b2017-03-15 21:07:24 +0000227 if (wake_up_process(wait->tsk) && wait == first)
Chris Wilsone1c0c912017-03-06 09:29:15 +0000228 missed_breadcrumb(engine);
229 }
230 b->waiters = RB_ROOT;
231
Chris Wilsone1c0c912017-03-06 09:29:15 +0000232 spin_unlock_irq(&b->rb_lock);
Chris Wilson67b807a82017-02-27 20:58:50 +0000233}
234
Chris Wilson6ef98ea2017-02-17 15:13:03 +0000235static bool use_fake_irq(const struct intel_breadcrumbs *b)
236{
237 const struct intel_engine_cs *engine =
238 container_of(b, struct intel_engine_cs, breadcrumbs);
239
240 if (!test_bit(engine->id, &engine->i915->gpu_error.missed_irq_rings))
241 return false;
242
243 /* Only start with the heavy weight fake irq timer if we have not
244 * seen any interrupts since enabling it the first time. If the
245 * interrupts are still arriving, it means we made a mistake in our
246 * engine->seqno_barrier(), a timing error that should be transient
247 * and unlikely to reoccur.
248 */
249 return atomic_read(&engine->irq_count) == b->hangcheck_interrupts;
250}
251
Chris Wilson67b807a82017-02-27 20:58:50 +0000252static void enable_fake_irq(struct intel_breadcrumbs *b)
253{
254 /* Ensure we never sleep indefinitely */
255 if (!b->irq_enabled || use_fake_irq(b))
256 mod_timer(&b->fake_irq, jiffies + 1);
257 else
258 mod_timer(&b->hangcheck, wait_timeout());
259}
260
Chris Wilsonbac2ef42017-06-08 12:14:03 +0100261static bool __intel_breadcrumbs_enable_irq(struct intel_breadcrumbs *b)
Chris Wilson688e6c72016-07-01 17:23:15 +0100262{
263 struct intel_engine_cs *engine =
264 container_of(b, struct intel_engine_cs, breadcrumbs);
265 struct drm_i915_private *i915 = engine->i915;
Chris Wilsonbcbd5c32017-10-25 15:39:42 +0100266 bool enabled;
267
268 GEM_BUG_ON(!intel_irqs_enabled(i915));
Chris Wilson688e6c72016-07-01 17:23:15 +0100269
Chris Wilson61d3dc72017-03-03 19:08:24 +0000270 lockdep_assert_held(&b->irq_lock);
Chris Wilson67b807a82017-02-27 20:58:50 +0000271 if (b->irq_armed)
Chris Wilsonbac2ef42017-06-08 12:14:03 +0100272 return false;
Chris Wilson688e6c72016-07-01 17:23:15 +0100273
Chris Wilson67b807a82017-02-27 20:58:50 +0000274 /* The breadcrumb irq will be disarmed on the interrupt after the
275 * waiters are signaled. This gives us a single interrupt window in
276 * which we can add a new waiter and avoid the cost of re-enabling
277 * the irq.
278 */
279 b->irq_armed = true;
Chris Wilson67b807a82017-02-27 20:58:50 +0000280
Chris Wilsonf97fbf92017-02-13 17:15:14 +0000281 if (I915_SELFTEST_ONLY(b->mock)) {
282 /* For our mock objects we want to avoid interaction
283 * with the real hardware (which is not set up). So
284 * we simply pretend we have enabled the powerwell
285 * and the irq, and leave it up to the mock
286 * implementation to call intel_engine_wakeup()
287 * itself when it wants to simulate a user interrupt,
288 */
Chris Wilsonbac2ef42017-06-08 12:14:03 +0100289 return true;
Chris Wilsonf97fbf92017-02-13 17:15:14 +0000290 }
291
Chris Wilson688e6c72016-07-01 17:23:15 +0100292 /* Since we are waiting on a request, the GPU should be busy
Chris Wilson67b807a82017-02-27 20:58:50 +0000293 * and should have its own rpm reference. This is tracked
294 * by i915->gt.awake, we can forgo holding our own wakref
295 * for the interrupt as before i915->gt.awake is released (when
296 * the driver is idle) we disarm the breadcrumbs.
Chris Wilson688e6c72016-07-01 17:23:15 +0100297 */
Chris Wilson688e6c72016-07-01 17:23:15 +0100298
299 /* No interrupts? Kick the waiter every jiffie! */
Chris Wilsonbcbd5c32017-10-25 15:39:42 +0100300 enabled = false;
301 if (!b->irq_enabled++ &&
302 !test_bit(engine->id, &i915->gpu_error.test_irq_rings)) {
303 irq_enable(engine);
304 enabled = true;
Chris Wilson688e6c72016-07-01 17:23:15 +0100305 }
306
Chris Wilson67b807a82017-02-27 20:58:50 +0000307 enable_fake_irq(b);
Chris Wilsonbcbd5c32017-10-25 15:39:42 +0100308 return enabled;
Chris Wilson688e6c72016-07-01 17:23:15 +0100309}
310
311static inline struct intel_wait *to_wait(struct rb_node *node)
312{
Chris Wilsond8567862016-12-20 10:40:03 +0000313 return rb_entry(node, struct intel_wait, node);
Chris Wilson688e6c72016-07-01 17:23:15 +0100314}
315
316static inline void __intel_breadcrumbs_finish(struct intel_breadcrumbs *b,
317 struct intel_wait *wait)
318{
Chris Wilson61d3dc72017-03-03 19:08:24 +0000319 lockdep_assert_held(&b->rb_lock);
Chris Wilson908a6cb2017-03-15 21:07:25 +0000320 GEM_BUG_ON(b->irq_wait == wait);
Chris Wilson688e6c72016-07-01 17:23:15 +0100321
322 /* This request is completed, so remove it from the tree, mark it as
Chris Wilsona6b0a1412017-03-15 22:22:59 +0000323 * complete, and *then* wake up the associated task. N.B. when the
324 * task wakes up, it will find the empty rb_node, discern that it
325 * has already been removed from the tree and skip the serialisation
326 * of the b->rb_lock and b->irq_lock. This means that the destruction
327 * of the intel_wait is not serialised with the interrupt handler
328 * by the waiter - it must instead be serialised by the caller.
Chris Wilson688e6c72016-07-01 17:23:15 +0100329 */
330 rb_erase(&wait->node, &b->waiters);
331 RB_CLEAR_NODE(&wait->node);
332
333 wake_up_process(wait->tsk); /* implicit smp_wmb() */
334}
335
Chris Wilsonb66255f2017-03-03 17:14:22 +0000336static inline void __intel_breadcrumbs_next(struct intel_engine_cs *engine,
337 struct rb_node *next)
338{
339 struct intel_breadcrumbs *b = &engine->breadcrumbs;
340
Chris Wilson61d3dc72017-03-03 19:08:24 +0000341 spin_lock(&b->irq_lock);
Chris Wilsonb66255f2017-03-03 17:14:22 +0000342 GEM_BUG_ON(!b->irq_armed);
Chris Wilson429732e2017-03-15 21:07:23 +0000343 GEM_BUG_ON(!b->irq_wait);
Chris Wilson61d3dc72017-03-03 19:08:24 +0000344 b->irq_wait = to_wait(next);
345 spin_unlock(&b->irq_lock);
Chris Wilsonb66255f2017-03-03 17:14:22 +0000346
347 /* We always wake up the next waiter that takes over as the bottom-half
348 * as we may delegate not only the irq-seqno barrier to the next waiter
349 * but also the task of waking up concurrent waiters.
350 */
351 if (next)
352 wake_up_process(to_wait(next)->tsk);
353}
354
Chris Wilson688e6c72016-07-01 17:23:15 +0100355static bool __intel_engine_add_wait(struct intel_engine_cs *engine,
356 struct intel_wait *wait)
357{
358 struct intel_breadcrumbs *b = &engine->breadcrumbs;
359 struct rb_node **p, *parent, *completed;
Chris Wilsonbac2ef42017-06-08 12:14:03 +0100360 bool first, armed;
Chris Wilson688e6c72016-07-01 17:23:15 +0100361 u32 seqno;
362
363 /* Insert the request into the retirement ordered list
364 * of waiters by walking the rbtree. If we are the oldest
365 * seqno in the tree (the first to be retired), then
366 * set ourselves as the bottom-half.
367 *
368 * As we descend the tree, prune completed branches since we hold the
369 * spinlock we know that the first_waiter must be delayed and can
370 * reduce some of the sequential wake up latency if we take action
371 * ourselves and wake up the completed tasks in parallel. Also, by
372 * removing stale elements in the tree, we may be able to reduce the
373 * ping-pong between the old bottom-half and ourselves as first-waiter.
374 */
Chris Wilsonbac2ef42017-06-08 12:14:03 +0100375 armed = false;
Chris Wilson688e6c72016-07-01 17:23:15 +0100376 first = true;
377 parent = NULL;
378 completed = NULL;
Chris Wilson1b7744e2016-07-01 17:23:17 +0100379 seqno = intel_engine_get_seqno(engine);
Chris Wilson688e6c72016-07-01 17:23:15 +0100380
381 /* If the request completed before we managed to grab the spinlock,
382 * return now before adding ourselves to the rbtree. We let the
383 * current bottom-half handle any pending wakeups and instead
384 * try and get out of the way quickly.
385 */
386 if (i915_seqno_passed(seqno, wait->seqno)) {
387 RB_CLEAR_NODE(&wait->node);
388 return first;
389 }
390
391 p = &b->waiters.rb_node;
392 while (*p) {
393 parent = *p;
394 if (wait->seqno == to_wait(parent)->seqno) {
395 /* We have multiple waiters on the same seqno, select
396 * the highest priority task (that with the smallest
397 * task->prio) to serve as the bottom-half for this
398 * group.
399 */
400 if (wait->tsk->prio > to_wait(parent)->tsk->prio) {
401 p = &parent->rb_right;
402 first = false;
403 } else {
404 p = &parent->rb_left;
405 }
406 } else if (i915_seqno_passed(wait->seqno,
407 to_wait(parent)->seqno)) {
408 p = &parent->rb_right;
409 if (i915_seqno_passed(seqno, to_wait(parent)->seqno))
410 completed = parent;
411 else
412 first = false;
413 } else {
414 p = &parent->rb_left;
415 }
416 }
417 rb_link_node(&wait->node, parent, p);
418 rb_insert_color(&wait->node, &b->waiters);
Chris Wilson688e6c72016-07-01 17:23:15 +0100419
Chris Wilson688e6c72016-07-01 17:23:15 +0100420 if (first) {
Chris Wilson61d3dc72017-03-03 19:08:24 +0000421 spin_lock(&b->irq_lock);
Chris Wilson61d3dc72017-03-03 19:08:24 +0000422 b->irq_wait = wait;
Chris Wilson04171312016-07-06 12:39:00 +0100423 /* After assigning ourselves as the new bottom-half, we must
424 * perform a cursory check to prevent a missed interrupt.
425 * Either we miss the interrupt whilst programming the hardware,
426 * or if there was a previous waiter (for a later seqno) they
427 * may be woken instead of us (due to the inherent race
Chris Wilsonaca34b62016-07-06 12:39:02 +0100428 * in the unlocked read of b->irq_seqno_bh in the irq handler)
429 * and so we miss the wake up.
Chris Wilson04171312016-07-06 12:39:00 +0100430 */
Chris Wilsonbac2ef42017-06-08 12:14:03 +0100431 armed = __intel_breadcrumbs_enable_irq(b);
Chris Wilson61d3dc72017-03-03 19:08:24 +0000432 spin_unlock(&b->irq_lock);
Chris Wilson688e6c72016-07-01 17:23:15 +0100433 }
Chris Wilson429732e2017-03-15 21:07:23 +0000434
435 if (completed) {
Chris Wilsona6b0a1412017-03-15 22:22:59 +0000436 /* Advance the bottom-half (b->irq_wait) before we wake up
437 * the waiters who may scribble over their intel_wait
438 * just as the interrupt handler is dereferencing it via
439 * b->irq_wait.
440 */
Chris Wilson429732e2017-03-15 21:07:23 +0000441 if (!first) {
442 struct rb_node *next = rb_next(completed);
443 GEM_BUG_ON(next == &wait->node);
444 __intel_breadcrumbs_next(engine, next);
445 }
446
447 do {
448 struct intel_wait *crumb = to_wait(completed);
449 completed = rb_prev(completed);
450 __intel_breadcrumbs_finish(b, crumb);
451 } while (completed);
452 }
453
Chris Wilson61d3dc72017-03-03 19:08:24 +0000454 GEM_BUG_ON(!b->irq_wait);
Chris Wilson429732e2017-03-15 21:07:23 +0000455 GEM_BUG_ON(!b->irq_armed);
Chris Wilson61d3dc72017-03-03 19:08:24 +0000456 GEM_BUG_ON(rb_first(&b->waiters) != &b->irq_wait->node);
Chris Wilson688e6c72016-07-01 17:23:15 +0100457
Chris Wilsonbac2ef42017-06-08 12:14:03 +0100458 return armed;
Chris Wilson688e6c72016-07-01 17:23:15 +0100459}
460
461bool intel_engine_add_wait(struct intel_engine_cs *engine,
462 struct intel_wait *wait)
463{
464 struct intel_breadcrumbs *b = &engine->breadcrumbs;
Chris Wilsonbac2ef42017-06-08 12:14:03 +0100465 bool armed;
Chris Wilson688e6c72016-07-01 17:23:15 +0100466
Chris Wilson61d3dc72017-03-03 19:08:24 +0000467 spin_lock_irq(&b->rb_lock);
Chris Wilsonbac2ef42017-06-08 12:14:03 +0100468 armed = __intel_engine_add_wait(engine, wait);
Chris Wilson61d3dc72017-03-03 19:08:24 +0000469 spin_unlock_irq(&b->rb_lock);
Chris Wilsonbac2ef42017-06-08 12:14:03 +0100470 if (armed)
471 return armed;
Chris Wilson688e6c72016-07-01 17:23:15 +0100472
Chris Wilsonbac2ef42017-06-08 12:14:03 +0100473 /* Make the caller recheck if its request has already started. */
474 return i915_seqno_passed(intel_engine_get_seqno(engine),
475 wait->seqno - 1);
Chris Wilson688e6c72016-07-01 17:23:15 +0100476}
477
Chris Wilson688e6c72016-07-01 17:23:15 +0100478static inline bool chain_wakeup(struct rb_node *rb, int priority)
479{
480 return rb && to_wait(rb)->tsk->prio <= priority;
481}
482
Chris Wilsonc81d4612016-07-01 17:23:25 +0100483static inline int wakeup_priority(struct intel_breadcrumbs *b,
484 struct task_struct *tsk)
485{
486 if (tsk == b->signaler)
487 return INT_MIN;
488 else
489 return tsk->prio;
490}
491
Chris Wilson9eb143b2017-02-23 07:44:16 +0000492static void __intel_engine_remove_wait(struct intel_engine_cs *engine,
493 struct intel_wait *wait)
Chris Wilson688e6c72016-07-01 17:23:15 +0100494{
495 struct intel_breadcrumbs *b = &engine->breadcrumbs;
496
Chris Wilson61d3dc72017-03-03 19:08:24 +0000497 lockdep_assert_held(&b->rb_lock);
Chris Wilson688e6c72016-07-01 17:23:15 +0100498
499 if (RB_EMPTY_NODE(&wait->node))
Chris Wilson9eb143b2017-02-23 07:44:16 +0000500 goto out;
Chris Wilson688e6c72016-07-01 17:23:15 +0100501
Chris Wilson61d3dc72017-03-03 19:08:24 +0000502 if (b->irq_wait == wait) {
Chris Wilsonc81d4612016-07-01 17:23:25 +0100503 const int priority = wakeup_priority(b, wait->tsk);
Chris Wilson688e6c72016-07-01 17:23:15 +0100504 struct rb_node *next;
Chris Wilson688e6c72016-07-01 17:23:15 +0100505
Chris Wilson688e6c72016-07-01 17:23:15 +0100506 /* We are the current bottom-half. Find the next candidate,
507 * the first waiter in the queue on the remaining oldest
508 * request. As multiple seqnos may complete in the time it
509 * takes us to wake up and find the next waiter, we have to
510 * wake up that waiter for it to perform its own coherent
511 * completion check.
512 */
513 next = rb_next(&wait->node);
514 if (chain_wakeup(next, priority)) {
515 /* If the next waiter is already complete,
516 * wake it up and continue onto the next waiter. So
517 * if have a small herd, they will wake up in parallel
518 * rather than sequentially, which should reduce
519 * the overall latency in waking all the completed
520 * clients.
521 *
522 * However, waking up a chain adds extra latency to
523 * the first_waiter. This is undesirable if that
524 * waiter is a high priority task.
525 */
Chris Wilson1b7744e2016-07-01 17:23:17 +0100526 u32 seqno = intel_engine_get_seqno(engine);
Chris Wilson688e6c72016-07-01 17:23:15 +0100527
528 while (i915_seqno_passed(seqno, to_wait(next)->seqno)) {
529 struct rb_node *n = rb_next(next);
530
531 __intel_breadcrumbs_finish(b, to_wait(next));
532 next = n;
533 if (!chain_wakeup(next, priority))
534 break;
535 }
536 }
537
Chris Wilsonb66255f2017-03-03 17:14:22 +0000538 __intel_breadcrumbs_next(engine, next);
Chris Wilson688e6c72016-07-01 17:23:15 +0100539 } else {
540 GEM_BUG_ON(rb_first(&b->waiters) == &wait->node);
541 }
542
543 GEM_BUG_ON(RB_EMPTY_NODE(&wait->node));
544 rb_erase(&wait->node, &b->waiters);
545
Chris Wilson9eb143b2017-02-23 07:44:16 +0000546out:
Chris Wilson61d3dc72017-03-03 19:08:24 +0000547 GEM_BUG_ON(b->irq_wait == wait);
Chris Wilson688e6c72016-07-01 17:23:15 +0100548 GEM_BUG_ON(rb_first(&b->waiters) !=
Chris Wilson61d3dc72017-03-03 19:08:24 +0000549 (b->irq_wait ? &b->irq_wait->node : NULL));
Chris Wilson9eb143b2017-02-23 07:44:16 +0000550}
551
552void intel_engine_remove_wait(struct intel_engine_cs *engine,
553 struct intel_wait *wait)
554{
555 struct intel_breadcrumbs *b = &engine->breadcrumbs;
556
557 /* Quick check to see if this waiter was already decoupled from
558 * the tree by the bottom-half to avoid contention on the spinlock
559 * by the herd.
560 */
Chris Wilson908a6cb2017-03-15 21:07:25 +0000561 if (RB_EMPTY_NODE(&wait->node)) {
562 GEM_BUG_ON(READ_ONCE(b->irq_wait) == wait);
Chris Wilson9eb143b2017-02-23 07:44:16 +0000563 return;
Chris Wilson908a6cb2017-03-15 21:07:25 +0000564 }
Chris Wilson9eb143b2017-02-23 07:44:16 +0000565
Chris Wilson61d3dc72017-03-03 19:08:24 +0000566 spin_lock_irq(&b->rb_lock);
Chris Wilson9eb143b2017-02-23 07:44:16 +0000567 __intel_engine_remove_wait(engine, wait);
Chris Wilson61d3dc72017-03-03 19:08:24 +0000568 spin_unlock_irq(&b->rb_lock);
Chris Wilson688e6c72016-07-01 17:23:15 +0100569}
570
Chris Wilsond6a22892017-02-23 07:44:17 +0000571static bool signal_valid(const struct drm_i915_gem_request *request)
572{
573 return intel_wait_check_request(&request->signaling.wait, request);
574}
575
576static bool signal_complete(const struct drm_i915_gem_request *request)
Chris Wilsonc81d4612016-07-01 17:23:25 +0100577{
Chris Wilsonb3850852016-07-01 17:23:26 +0100578 if (!request)
Chris Wilsonc81d4612016-07-01 17:23:25 +0100579 return false;
580
581 /* If another process served as the bottom-half it may have already
582 * signalled that this wait is already completed.
583 */
Chris Wilsonb3850852016-07-01 17:23:26 +0100584 if (intel_wait_complete(&request->signaling.wait))
Chris Wilsond6a22892017-02-23 07:44:17 +0000585 return signal_valid(request);
Chris Wilsonc81d4612016-07-01 17:23:25 +0100586
587 /* Carefully check if the request is complete, giving time for the
588 * seqno to be visible or if the GPU hung.
589 */
Chris Wilsonb3850852016-07-01 17:23:26 +0100590 if (__i915_request_irq_complete(request))
Chris Wilsonc81d4612016-07-01 17:23:25 +0100591 return true;
592
593 return false;
594}
595
Chris Wilsonb3850852016-07-01 17:23:26 +0100596static struct drm_i915_gem_request *to_signaler(struct rb_node *rb)
Chris Wilsonc81d4612016-07-01 17:23:25 +0100597{
Chris Wilsond8567862016-12-20 10:40:03 +0000598 return rb_entry(rb, struct drm_i915_gem_request, signaling.node);
Chris Wilsonc81d4612016-07-01 17:23:25 +0100599}
600
601static void signaler_set_rtpriority(void)
602{
603 struct sched_param param = { .sched_priority = 1 };
604
605 sched_setscheduler_nocheck(current, SCHED_FIFO, &param);
606}
607
608static int intel_breadcrumbs_signaler(void *arg)
609{
610 struct intel_engine_cs *engine = arg;
611 struct intel_breadcrumbs *b = &engine->breadcrumbs;
Chris Wilsonb3850852016-07-01 17:23:26 +0100612 struct drm_i915_gem_request *request;
Chris Wilsonc81d4612016-07-01 17:23:25 +0100613
614 /* Install ourselves with high priority to reduce signalling latency */
615 signaler_set_rtpriority();
616
617 do {
Chris Wilsona7980a62017-04-04 13:05:31 +0100618 bool do_schedule = true;
619
Chris Wilsonc81d4612016-07-01 17:23:25 +0100620 set_current_state(TASK_INTERRUPTIBLE);
621
622 /* We are either woken up by the interrupt bottom-half,
623 * or by a client adding a new signaller. In both cases,
624 * the GPU seqno may have advanced beyond our oldest signal.
625 * If it has, propagate the signal, remove the waiter and
626 * check again with the next oldest signal. Otherwise we
627 * need to wait for a new interrupt from the GPU or for
628 * a new client.
629 */
Chris Wilsoncced5e22017-02-23 07:44:15 +0000630 rcu_read_lock();
631 request = rcu_dereference(b->first_signal);
632 if (request)
633 request = i915_gem_request_get_rcu(request);
634 rcu_read_unlock();
Chris Wilsonb3850852016-07-01 17:23:26 +0100635 if (signal_complete(request)) {
Chris Wilson7c9e9342017-01-24 11:00:09 +0000636 local_bh_disable();
637 dma_fence_signal(&request->fence);
638 local_bh_enable(); /* kick start the tasklets */
639
Chris Wilson61d3dc72017-03-03 19:08:24 +0000640 spin_lock_irq(&b->rb_lock);
Chris Wilson9eb143b2017-02-23 07:44:16 +0000641
Chris Wilsonc81d4612016-07-01 17:23:25 +0100642 /* Wake up all other completed waiters and select the
643 * next bottom-half for the next user interrupt.
644 */
Chris Wilson9eb143b2017-02-23 07:44:16 +0000645 __intel_engine_remove_wait(engine,
646 &request->signaling.wait);
Chris Wilson5590af32016-09-09 14:11:54 +0100647
Chris Wilsonc81d4612016-07-01 17:23:25 +0100648 /* Find the next oldest signal. Note that as we have
649 * not been holding the lock, another client may
650 * have installed an even older signal than the one
651 * we just completed - so double check we are still
652 * the oldest before picking the next one.
653 */
Chris Wilsoncced5e22017-02-23 07:44:15 +0000654 if (request == rcu_access_pointer(b->first_signal)) {
Chris Wilsonb3850852016-07-01 17:23:26 +0100655 struct rb_node *rb =
656 rb_next(&request->signaling.node);
Chris Wilsoncced5e22017-02-23 07:44:15 +0000657 rcu_assign_pointer(b->first_signal,
658 rb ? to_signaler(rb) : NULL);
Chris Wilsonb3850852016-07-01 17:23:26 +0100659 }
660 rb_erase(&request->signaling.node, &b->signals);
Chris Wilson9eb143b2017-02-23 07:44:16 +0000661 RB_CLEAR_NODE(&request->signaling.node);
662
Chris Wilson61d3dc72017-03-03 19:08:24 +0000663 spin_unlock_irq(&b->rb_lock);
Chris Wilsonc81d4612016-07-01 17:23:25 +0100664
Chris Wilsone8a261e2016-07-20 13:31:49 +0100665 i915_gem_request_put(request);
Chris Wilsona7980a62017-04-04 13:05:31 +0100666
667 /* If the engine is saturated we may be continually
668 * processing completed requests. This angers the
669 * NMI watchdog if we never let anything else
670 * have access to the CPU. Let's pretend to be nice
671 * and relinquish the CPU if we burn through the
672 * entire RT timeslice!
673 */
674 do_schedule = need_resched();
675 }
676
677 if (unlikely(do_schedule)) {
Chris Wilsond6a22892017-02-23 07:44:17 +0000678 DEFINE_WAIT(exec);
679
Chris Wilsonb1becb82017-04-03 11:51:24 +0100680 if (kthread_should_park())
681 kthread_parkme();
682
Chris Wilsoncced5e22017-02-23 07:44:15 +0000683 if (kthread_should_stop()) {
684 GEM_BUG_ON(request);
Chris Wilsonc81d4612016-07-01 17:23:25 +0100685 break;
Chris Wilsoncced5e22017-02-23 07:44:15 +0000686 }
Chris Wilsonc81d4612016-07-01 17:23:25 +0100687
Chris Wilsond6a22892017-02-23 07:44:17 +0000688 if (request)
689 add_wait_queue(&request->execute, &exec);
690
Chris Wilsonc81d4612016-07-01 17:23:25 +0100691 schedule();
Chris Wilsonfe3288b2017-02-12 17:20:01 +0000692
Chris Wilsond6a22892017-02-23 07:44:17 +0000693 if (request)
694 remove_wait_queue(&request->execute, &exec);
Chris Wilsonc81d4612016-07-01 17:23:25 +0100695 }
Chris Wilsoncced5e22017-02-23 07:44:15 +0000696 i915_gem_request_put(request);
Chris Wilsonc81d4612016-07-01 17:23:25 +0100697 } while (1);
698 __set_current_state(TASK_RUNNING);
699
700 return 0;
701}
702
Chris Wilsonf7b02a52017-04-26 09:06:59 +0100703void intel_engine_enable_signaling(struct drm_i915_gem_request *request,
704 bool wakeup)
Chris Wilsonc81d4612016-07-01 17:23:25 +0100705{
706 struct intel_engine_cs *engine = request->engine;
707 struct intel_breadcrumbs *b = &engine->breadcrumbs;
Chris Wilson754c9fd2017-02-23 07:44:14 +0000708 u32 seqno;
Chris Wilsonc81d4612016-07-01 17:23:25 +0100709
Chris Wilsonf6168e32016-10-28 13:58:55 +0100710 /* Note that we may be called from an interrupt handler on another
711 * device (e.g. nouveau signaling a fence completion causing us
712 * to submit a request, and so enable signaling). As such,
Chris Wilsona6b0a1412017-03-15 22:22:59 +0000713 * we need to make sure that all other users of b->rb_lock protect
Chris Wilsonf6168e32016-10-28 13:58:55 +0100714 * against interrupts, i.e. use spin_lock_irqsave.
715 */
716
717 /* locked by dma_fence_enable_sw_signaling() (irqsafe fence->lock) */
Chris Wilsone60a8702017-03-02 11:51:30 +0000718 GEM_BUG_ON(!irqs_disabled());
Chris Wilson67520412017-03-02 13:28:01 +0000719 lockdep_assert_held(&request->lock);
Chris Wilson754c9fd2017-02-23 07:44:14 +0000720
721 seqno = i915_gem_request_global_seqno(request);
722 if (!seqno)
Chris Wilson65e47602016-10-28 13:58:49 +0100723 return;
Chris Wilsonc81d4612016-07-01 17:23:25 +0100724
Chris Wilsonb3850852016-07-01 17:23:26 +0100725 request->signaling.wait.tsk = b->signaler;
Chris Wilson56299fb2017-02-27 20:58:48 +0000726 request->signaling.wait.request = request;
Chris Wilson754c9fd2017-02-23 07:44:14 +0000727 request->signaling.wait.seqno = seqno;
Chris Wilsone8a261e2016-07-20 13:31:49 +0100728 i915_gem_request_get(request);
Chris Wilsonc81d4612016-07-01 17:23:25 +0100729
Chris Wilson61d3dc72017-03-03 19:08:24 +0000730 spin_lock(&b->rb_lock);
Chris Wilson4a50d202016-07-26 12:01:50 +0100731
Chris Wilsonc81d4612016-07-01 17:23:25 +0100732 /* First add ourselves into the list of waiters, but register our
733 * bottom-half as the signaller thread. As per usual, only the oldest
734 * waiter (not just signaller) is tasked as the bottom-half waking
735 * up all completed waiters after the user interrupt.
736 *
737 * If we are the oldest waiter, enable the irq (after which we
738 * must double check that the seqno did not complete).
739 */
Chris Wilsonf7b02a52017-04-26 09:06:59 +0100740 wakeup &= __intel_engine_add_wait(engine, &request->signaling.wait);
Chris Wilsonc81d4612016-07-01 17:23:25 +0100741
Chris Wilson735e0eb2017-06-08 12:14:04 +0100742 if (!__i915_gem_request_completed(request, seqno)) {
743 struct rb_node *parent, **p;
744 bool first;
745
746 /* Now insert ourselves into the retirement ordered list of
747 * signals on this engine. We track the oldest seqno as that
748 * will be the first signal to complete.
749 */
750 parent = NULL;
751 first = true;
752 p = &b->signals.rb_node;
753 while (*p) {
754 parent = *p;
755 if (i915_seqno_passed(seqno,
756 to_signaler(parent)->signaling.wait.seqno)) {
757 p = &parent->rb_right;
758 first = false;
759 } else {
760 p = &parent->rb_left;
761 }
Chris Wilsonc81d4612016-07-01 17:23:25 +0100762 }
Chris Wilson735e0eb2017-06-08 12:14:04 +0100763 rb_link_node(&request->signaling.node, parent, p);
764 rb_insert_color(&request->signaling.node, &b->signals);
765 if (first)
766 rcu_assign_pointer(b->first_signal, request);
767 } else {
768 __intel_engine_remove_wait(engine, &request->signaling.wait);
769 i915_gem_request_put(request);
770 wakeup = false;
Chris Wilsonc81d4612016-07-01 17:23:25 +0100771 }
Chris Wilsonb3850852016-07-01 17:23:26 +0100772
Chris Wilson61d3dc72017-03-03 19:08:24 +0000773 spin_unlock(&b->rb_lock);
Chris Wilsonc81d4612016-07-01 17:23:25 +0100774
775 if (wakeup)
776 wake_up_process(b->signaler);
Chris Wilsonc81d4612016-07-01 17:23:25 +0100777}
778
Chris Wilson9eb143b2017-02-23 07:44:16 +0000779void intel_engine_cancel_signaling(struct drm_i915_gem_request *request)
780{
781 struct intel_engine_cs *engine = request->engine;
782 struct intel_breadcrumbs *b = &engine->breadcrumbs;
783
Chris Wilsone60a8702017-03-02 11:51:30 +0000784 GEM_BUG_ON(!irqs_disabled());
Chris Wilson67520412017-03-02 13:28:01 +0000785 lockdep_assert_held(&request->lock);
Chris Wilson9eb143b2017-02-23 07:44:16 +0000786 GEM_BUG_ON(!request->signaling.wait.seqno);
787
Chris Wilson61d3dc72017-03-03 19:08:24 +0000788 spin_lock(&b->rb_lock);
Chris Wilson9eb143b2017-02-23 07:44:16 +0000789
790 if (!RB_EMPTY_NODE(&request->signaling.node)) {
791 if (request == rcu_access_pointer(b->first_signal)) {
792 struct rb_node *rb =
793 rb_next(&request->signaling.node);
794 rcu_assign_pointer(b->first_signal,
795 rb ? to_signaler(rb) : NULL);
796 }
797 rb_erase(&request->signaling.node, &b->signals);
798 RB_CLEAR_NODE(&request->signaling.node);
799 i915_gem_request_put(request);
800 }
801
802 __intel_engine_remove_wait(engine, &request->signaling.wait);
803
Chris Wilson61d3dc72017-03-03 19:08:24 +0000804 spin_unlock(&b->rb_lock);
Chris Wilson9eb143b2017-02-23 07:44:16 +0000805
806 request->signaling.wait.seqno = 0;
807}
808
Chris Wilson688e6c72016-07-01 17:23:15 +0100809int intel_engine_init_breadcrumbs(struct intel_engine_cs *engine)
810{
811 struct intel_breadcrumbs *b = &engine->breadcrumbs;
Chris Wilsonc81d4612016-07-01 17:23:25 +0100812 struct task_struct *tsk;
Chris Wilson688e6c72016-07-01 17:23:15 +0100813
Chris Wilson61d3dc72017-03-03 19:08:24 +0000814 spin_lock_init(&b->rb_lock);
815 spin_lock_init(&b->irq_lock);
816
Kees Cook39cbf2a2017-10-17 09:53:04 +0300817 timer_setup(&b->fake_irq, intel_breadcrumbs_fake_irq, 0);
818 timer_setup(&b->hangcheck, intel_breadcrumbs_hangcheck, 0);
Chris Wilson688e6c72016-07-01 17:23:15 +0100819
Chris Wilsonc81d4612016-07-01 17:23:25 +0100820 /* Spawn a thread to provide a common bottom-half for all signals.
821 * As this is an asynchronous interface we cannot steal the current
822 * task for handling the bottom-half to the user interrupt, therefore
823 * we create a thread to do the coherent seqno dance after the
824 * interrupt and then signal the waitqueue (via the dma-buf/fence).
825 */
826 tsk = kthread_run(intel_breadcrumbs_signaler, engine,
827 "i915/signal:%d", engine->id);
828 if (IS_ERR(tsk))
829 return PTR_ERR(tsk);
830
831 b->signaler = tsk;
832
Chris Wilson688e6c72016-07-01 17:23:15 +0100833 return 0;
834}
835
Chris Wilsonad07dfc2016-10-07 07:53:26 +0100836static void cancel_fake_irq(struct intel_engine_cs *engine)
837{
838 struct intel_breadcrumbs *b = &engine->breadcrumbs;
839
840 del_timer_sync(&b->hangcheck);
841 del_timer_sync(&b->fake_irq);
842 clear_bit(engine->id, &engine->i915->gpu_error.missed_irq_rings);
843}
844
845void intel_engine_reset_breadcrumbs(struct intel_engine_cs *engine)
846{
847 struct intel_breadcrumbs *b = &engine->breadcrumbs;
848
849 cancel_fake_irq(engine);
Chris Wilson61d3dc72017-03-03 19:08:24 +0000850 spin_lock_irq(&b->irq_lock);
Chris Wilsonad07dfc2016-10-07 07:53:26 +0100851
Chris Wilson67b807a82017-02-27 20:58:50 +0000852 if (b->irq_enabled)
853 irq_enable(engine);
854 else
Chris Wilsonad07dfc2016-10-07 07:53:26 +0100855 irq_disable(engine);
Chris Wilson67b807a82017-02-27 20:58:50 +0000856
857 /* We set the IRQ_BREADCRUMB bit when we enable the irq presuming the
858 * GPU is active and may have already executed the MI_USER_INTERRUPT
859 * before the CPU is ready to receive. However, the engine is currently
860 * idle (we haven't started it yet), there is no possibility for a
861 * missed interrupt as we enabled the irq and so we can clear the
862 * immediate wakeup (until a real interrupt arrives for the waiter).
863 */
864 clear_bit(ENGINE_IRQ_BREADCRUMB, &engine->irq_posted);
865
866 if (b->irq_armed)
867 enable_fake_irq(b);
Chris Wilsonad07dfc2016-10-07 07:53:26 +0100868
Chris Wilson61d3dc72017-03-03 19:08:24 +0000869 spin_unlock_irq(&b->irq_lock);
Chris Wilsonad07dfc2016-10-07 07:53:26 +0100870}
871
Chris Wilson688e6c72016-07-01 17:23:15 +0100872void intel_engine_fini_breadcrumbs(struct intel_engine_cs *engine)
873{
874 struct intel_breadcrumbs *b = &engine->breadcrumbs;
875
Chris Wilson381744f2016-11-21 11:07:59 +0000876 /* The engines should be idle and all requests accounted for! */
Chris Wilson61d3dc72017-03-03 19:08:24 +0000877 WARN_ON(READ_ONCE(b->irq_wait));
Chris Wilson381744f2016-11-21 11:07:59 +0000878 WARN_ON(!RB_EMPTY_ROOT(&b->waiters));
Chris Wilsoncced5e22017-02-23 07:44:15 +0000879 WARN_ON(rcu_access_pointer(b->first_signal));
Chris Wilson381744f2016-11-21 11:07:59 +0000880 WARN_ON(!RB_EMPTY_ROOT(&b->signals));
881
Chris Wilsonc81d4612016-07-01 17:23:25 +0100882 if (!IS_ERR_OR_NULL(b->signaler))
883 kthread_stop(b->signaler);
884
Chris Wilsonad07dfc2016-10-07 07:53:26 +0100885 cancel_fake_irq(engine);
Chris Wilson688e6c72016-07-01 17:23:15 +0100886}
887
Chris Wilson9b6586a2017-02-23 07:44:08 +0000888bool intel_breadcrumbs_busy(struct intel_engine_cs *engine)
Chris Wilsonc81d4612016-07-01 17:23:25 +0100889{
Chris Wilson9b6586a2017-02-23 07:44:08 +0000890 struct intel_breadcrumbs *b = &engine->breadcrumbs;
891 bool busy = false;
Chris Wilsonc81d4612016-07-01 17:23:25 +0100892
Chris Wilson61d3dc72017-03-03 19:08:24 +0000893 spin_lock_irq(&b->rb_lock);
Chris Wilson6a5d1db2016-11-08 14:37:19 +0000894
Chris Wilson61d3dc72017-03-03 19:08:24 +0000895 if (b->irq_wait) {
896 wake_up_process(b->irq_wait->tsk);
Chris Wilson4bd66392017-03-15 21:07:22 +0000897 busy = true;
Chris Wilsonc81d4612016-07-01 17:23:25 +0100898 }
899
Chris Wilsoncced5e22017-02-23 07:44:15 +0000900 if (rcu_access_pointer(b->first_signal)) {
Chris Wilson9b6586a2017-02-23 07:44:08 +0000901 wake_up_process(b->signaler);
Chris Wilson4bd66392017-03-15 21:07:22 +0000902 busy = true;
Chris Wilson9b6586a2017-02-23 07:44:08 +0000903 }
904
Chris Wilson61d3dc72017-03-03 19:08:24 +0000905 spin_unlock_irq(&b->rb_lock);
Chris Wilson9b6586a2017-02-23 07:44:08 +0000906
907 return busy;
Chris Wilsonc81d4612016-07-01 17:23:25 +0100908}
Chris Wilsonf97fbf92017-02-13 17:15:14 +0000909
910#if IS_ENABLED(CONFIG_DRM_I915_SELFTEST)
911#include "selftests/intel_breadcrumbs.c"
912#endif