blob: 4e00e5cb9fa1edf926077b0bc09610912bf905be [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{
Chris Wilson695eaa32017-04-23 18:06:19 +010067 DRM_DEBUG_DRIVER("%s missed breadcrumb at %pF, 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
Chris Wilson83348ba2016-08-09 17:47:51 +010077static 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
Chris Wilson67b807a82017-02-27 20:58:50 +000082 if (!b->irq_armed)
Chris Wilson83348ba2016-08-09 17:47:51 +010083 return;
84
Chris Wilson2246bea2017-02-17 15:13:00 +000085 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());
Chris Wilson83348ba2016-08-09 17:47:51 +010088 return;
89 }
90
Chris Wilsona6b0a1412017-03-15 22:22:59 +000091 /* We keep the hangcheck timer alive until we disarm the irq, even
Chris Wilson67b807a82017-02-27 20:58:50 +000092 * if there are no waiters at present.
93 *
94 * If the waiter was currently running, assume it hasn't had a chance
Chris Wilson89985672017-02-17 15:13:02 +000095 * 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.
Chris Wilson67b807a82017-02-27 20:58:50 +000097 *
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]!
Chris Wilson89985672017-02-17 15:13:02 +0000102 */
Chris Wilson67b807a82017-02-27 20:58:50 +0000103 if (intel_engine_wakeup(engine) & ENGINE_WAKEUP_ASLEEP) {
Chris Wilson80166e402017-02-28 08:50:18 +0000104 missed_breadcrumb(engine);
Chris Wilson67b807a82017-02-27 20:58:50 +0000105 mod_timer(&engine->breadcrumbs.fake_irq, jiffies + 1);
106 } else {
Chris Wilson89985672017-02-17 15:13:02 +0000107 mod_timer(&b->hangcheck, wait_timeout());
Chris Wilson89985672017-02-17 15:13:02 +0000108 }
Chris Wilson83348ba2016-08-09 17:47:51 +0100109}
110
Chris Wilson688e6c72016-07-01 17:23:15 +0100111static void intel_breadcrumbs_fake_irq(unsigned long data)
112{
113 struct intel_engine_cs *engine = (struct intel_engine_cs *)data;
Chris Wilson67b807a82017-02-27 20:58:50 +0000114 struct intel_breadcrumbs *b = &engine->breadcrumbs;
Chris Wilson688e6c72016-07-01 17:23:15 +0100115
Chris Wilsona6b0a1412017-03-15 22:22:59 +0000116 /* The timer persists in case we cannot enable interrupts,
Chris Wilson688e6c72016-07-01 17:23:15 +0100117 * or if we have previously seen seqno/interrupt incoherency
Chris Wilsona6b0a1412017-03-15 22:22:59 +0000118 * ("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.
Chris Wilson688e6c72016-07-01 17:23:15 +0100121 */
Chris Wilson67b807a82017-02-27 20:58:50 +0000122
Tvrtko Ursulina9e64932017-03-06 15:03:20 +0000123 spin_lock_irq(&b->irq_lock);
Chris Wilson67b807a82017-02-27 20:58:50 +0000124 if (!__intel_breadcrumbs_wakeup(b))
125 __intel_engine_disarm_breadcrumbs(engine);
Tvrtko Ursulina9e64932017-03-06 15:03:20 +0000126 spin_unlock_irq(&b->irq_lock);
Chris Wilson67b807a82017-02-27 20:58:50 +0000127 if (!b->irq_armed)
Chris Wilson19d0a572017-02-27 20:58:49 +0000128 return;
129
Chris Wilson67b807a82017-02-27 20:58:50 +0000130 mod_timer(&b->fake_irq, jiffies + 1);
Chris Wilson19d0a572017-02-27 20:58:49 +0000131
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);
Chris Wilson688e6c72016-07-01 17:23:15 +0100142}
143
144static void irq_enable(struct intel_engine_cs *engine)
145{
Chris Wilson3d5564e2016-07-01 17:23:23 +0100146 /* 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 */
Chris Wilson538b2572017-01-24 15:18:05 +0000150 set_bit(ENGINE_IRQ_BREADCRUMB, &engine->irq_posted);
Chris Wilson31bb59c2016-07-01 17:23:27 +0100151
Chris Wilsonf6168e32016-10-28 13:58:55 +0100152 /* Caller disables interrupts */
153 spin_lock(&engine->i915->irq_lock);
Chris Wilson31bb59c2016-07-01 17:23:27 +0100154 engine->irq_enable(engine);
Chris Wilsonf6168e32016-10-28 13:58:55 +0100155 spin_unlock(&engine->i915->irq_lock);
Chris Wilson688e6c72016-07-01 17:23:15 +0100156}
157
158static void irq_disable(struct intel_engine_cs *engine)
159{
Chris Wilsonf6168e32016-10-28 13:58:55 +0100160 /* Caller disables interrupts */
161 spin_lock(&engine->i915->irq_lock);
Chris Wilson31bb59c2016-07-01 17:23:27 +0100162 engine->irq_disable(engine);
Chris Wilsonf6168e32016-10-28 13:58:55 +0100163 spin_unlock(&engine->i915->irq_lock);
Chris Wilson688e6c72016-07-01 17:23:15 +0100164}
165
Chris Wilson67b807a82017-02-27 20:58:50 +0000166void __intel_engine_disarm_breadcrumbs(struct intel_engine_cs *engine)
167{
168 struct intel_breadcrumbs *b = &engine->breadcrumbs;
169
Chris Wilson61d3dc72017-03-03 19:08:24 +0000170 lockdep_assert_held(&b->irq_lock);
Chris Wilsone1c0c912017-03-06 09:29:15 +0000171 GEM_BUG_ON(b->irq_wait);
Chris Wilson67b807a82017-02-27 20:58:50 +0000172
173 if (b->irq_enabled) {
174 irq_disable(engine);
175 b->irq_enabled = false;
176 }
177
178 b->irq_armed = false;
179}
180
181void intel_engine_disarm_breadcrumbs(struct intel_engine_cs *engine)
182{
183 struct intel_breadcrumbs *b = &engine->breadcrumbs;
Chris Wilsona5cae7b2017-03-15 21:07:24 +0000184 struct intel_wait *wait, *n, *first;
Chris Wilson67b807a82017-02-27 20:58:50 +0000185
186 if (!b->irq_armed)
187 return;
188
Chris Wilson67b807a82017-02-27 20:58:50 +0000189 /* We only disarm the irq when we are idle (all requests completed),
Chris Wilsone1c0c912017-03-06 09:29:15 +0000190 * so if the bottom-half remains asleep, it missed the request
Chris Wilson67b807a82017-02-27 20:58:50 +0000191 * completion.
192 */
Chris Wilson67b807a82017-02-27 20:58:50 +0000193
Chris Wilsone1c0c912017-03-06 09:29:15 +0000194 spin_lock_irq(&b->rb_lock);
Chris Wilsona5cae7b2017-03-15 21:07:24 +0000195
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
Chris Wilsone1c0c912017-03-06 09:29:15 +0000201 rbtree_postorder_for_each_entry_safe(wait, n, &b->waiters, node) {
202 RB_CLEAR_NODE(&wait->node);
Chris Wilsona5cae7b2017-03-15 21:07:24 +0000203 if (wake_up_process(wait->tsk) && wait == first)
Chris Wilsone1c0c912017-03-06 09:29:15 +0000204 missed_breadcrumb(engine);
205 }
206 b->waiters = RB_ROOT;
207
Chris Wilsone1c0c912017-03-06 09:29:15 +0000208 spin_unlock_irq(&b->rb_lock);
Chris Wilson67b807a82017-02-27 20:58:50 +0000209}
210
Chris Wilson6ef98ea2017-02-17 15:13:03 +0000211static 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
Chris Wilson67b807a82017-02-27 20:58:50 +0000228static 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
Chris Wilsonbac2ef42017-06-08 12:14:03 +0100237static bool __intel_breadcrumbs_enable_irq(struct intel_breadcrumbs *b)
Chris Wilson688e6c72016-07-01 17:23:15 +0100238{
239 struct intel_engine_cs *engine =
240 container_of(b, struct intel_engine_cs, breadcrumbs);
241 struct drm_i915_private *i915 = engine->i915;
Chris Wilson688e6c72016-07-01 17:23:15 +0100242
Chris Wilson61d3dc72017-03-03 19:08:24 +0000243 lockdep_assert_held(&b->irq_lock);
Chris Wilson67b807a82017-02-27 20:58:50 +0000244 if (b->irq_armed)
Chris Wilsonbac2ef42017-06-08 12:14:03 +0100245 return false;
Chris Wilson688e6c72016-07-01 17:23:15 +0100246
Chris Wilson67b807a82017-02-27 20:58:50 +0000247 /* 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
Chris Wilsonf97fbf92017-02-13 17:15:14 +0000255 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 */
Chris Wilsonbac2ef42017-06-08 12:14:03 +0100263 return true;
Chris Wilsonf97fbf92017-02-13 17:15:14 +0000264 }
265
Chris Wilson688e6c72016-07-01 17:23:15 +0100266 /* Since we are waiting on a request, the GPU should be busy
Chris Wilson67b807a82017-02-27 20:58:50 +0000267 * 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.
Chris Wilson688e6c72016-07-01 17:23:15 +0100271 */
Chris Wilson688e6c72016-07-01 17:23:15 +0100272
273 /* No interrupts? Kick the waiter every jiffie! */
274 if (intel_irqs_enabled(i915)) {
Chris Wilson3d5564e2016-07-01 17:23:23 +0100275 if (!test_bit(engine->id, &i915->gpu_error.test_irq_rings))
Chris Wilson688e6c72016-07-01 17:23:15 +0100276 irq_enable(engine);
Chris Wilson688e6c72016-07-01 17:23:15 +0100277 b->irq_enabled = true;
278 }
279
Chris Wilson67b807a82017-02-27 20:58:50 +0000280 enable_fake_irq(b);
Chris Wilsonbac2ef42017-06-08 12:14:03 +0100281 return true;
Chris Wilson688e6c72016-07-01 17:23:15 +0100282}
283
284static inline struct intel_wait *to_wait(struct rb_node *node)
285{
Chris Wilsond8567862016-12-20 10:40:03 +0000286 return rb_entry(node, struct intel_wait, node);
Chris Wilson688e6c72016-07-01 17:23:15 +0100287}
288
289static inline void __intel_breadcrumbs_finish(struct intel_breadcrumbs *b,
290 struct intel_wait *wait)
291{
Chris Wilson61d3dc72017-03-03 19:08:24 +0000292 lockdep_assert_held(&b->rb_lock);
Chris Wilson908a6cb2017-03-15 21:07:25 +0000293 GEM_BUG_ON(b->irq_wait == wait);
Chris Wilson688e6c72016-07-01 17:23:15 +0100294
295 /* This request is completed, so remove it from the tree, mark it as
Chris Wilsona6b0a1412017-03-15 22:22:59 +0000296 * 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.
Chris Wilson688e6c72016-07-01 17:23:15 +0100302 */
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
Chris Wilsonb66255f2017-03-03 17:14:22 +0000309static inline void __intel_breadcrumbs_next(struct intel_engine_cs *engine,
310 struct rb_node *next)
311{
312 struct intel_breadcrumbs *b = &engine->breadcrumbs;
313
Chris Wilson61d3dc72017-03-03 19:08:24 +0000314 spin_lock(&b->irq_lock);
Chris Wilsonb66255f2017-03-03 17:14:22 +0000315 GEM_BUG_ON(!b->irq_armed);
Chris Wilson429732e2017-03-15 21:07:23 +0000316 GEM_BUG_ON(!b->irq_wait);
Chris Wilson61d3dc72017-03-03 19:08:24 +0000317 b->irq_wait = to_wait(next);
318 spin_unlock(&b->irq_lock);
Chris Wilsonb66255f2017-03-03 17:14:22 +0000319
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
Chris Wilson688e6c72016-07-01 17:23:15 +0100328static 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;
Chris Wilsonbac2ef42017-06-08 12:14:03 +0100333 bool first, armed;
Chris Wilson688e6c72016-07-01 17:23:15 +0100334 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 */
Chris Wilsonbac2ef42017-06-08 12:14:03 +0100348 armed = false;
Chris Wilson688e6c72016-07-01 17:23:15 +0100349 first = true;
350 parent = NULL;
351 completed = NULL;
Chris Wilson1b7744e2016-07-01 17:23:17 +0100352 seqno = intel_engine_get_seqno(engine);
Chris Wilson688e6c72016-07-01 17:23:15 +0100353
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);
Chris Wilson688e6c72016-07-01 17:23:15 +0100392
Chris Wilson688e6c72016-07-01 17:23:15 +0100393 if (first) {
Chris Wilson61d3dc72017-03-03 19:08:24 +0000394 spin_lock(&b->irq_lock);
Chris Wilson61d3dc72017-03-03 19:08:24 +0000395 b->irq_wait = wait;
Chris Wilson04171312016-07-06 12:39:00 +0100396 /* 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
Chris Wilsonaca34b62016-07-06 12:39:02 +0100401 * in the unlocked read of b->irq_seqno_bh in the irq handler)
402 * and so we miss the wake up.
Chris Wilson04171312016-07-06 12:39:00 +0100403 */
Chris Wilsonbac2ef42017-06-08 12:14:03 +0100404 armed = __intel_breadcrumbs_enable_irq(b);
Chris Wilson61d3dc72017-03-03 19:08:24 +0000405 spin_unlock(&b->irq_lock);
Chris Wilson688e6c72016-07-01 17:23:15 +0100406 }
Chris Wilson429732e2017-03-15 21:07:23 +0000407
408 if (completed) {
Chris Wilsona6b0a1412017-03-15 22:22:59 +0000409 /* 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 */
Chris Wilson429732e2017-03-15 21:07:23 +0000414 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
Chris Wilson61d3dc72017-03-03 19:08:24 +0000427 GEM_BUG_ON(!b->irq_wait);
Chris Wilson429732e2017-03-15 21:07:23 +0000428 GEM_BUG_ON(!b->irq_armed);
Chris Wilson61d3dc72017-03-03 19:08:24 +0000429 GEM_BUG_ON(rb_first(&b->waiters) != &b->irq_wait->node);
Chris Wilson688e6c72016-07-01 17:23:15 +0100430
Chris Wilsonbac2ef42017-06-08 12:14:03 +0100431 return armed;
Chris Wilson688e6c72016-07-01 17:23:15 +0100432}
433
434bool intel_engine_add_wait(struct intel_engine_cs *engine,
435 struct intel_wait *wait)
436{
437 struct intel_breadcrumbs *b = &engine->breadcrumbs;
Chris Wilsonbac2ef42017-06-08 12:14:03 +0100438 bool armed;
Chris Wilson688e6c72016-07-01 17:23:15 +0100439
Chris Wilson61d3dc72017-03-03 19:08:24 +0000440 spin_lock_irq(&b->rb_lock);
Chris Wilsonbac2ef42017-06-08 12:14:03 +0100441 armed = __intel_engine_add_wait(engine, wait);
Chris Wilson61d3dc72017-03-03 19:08:24 +0000442 spin_unlock_irq(&b->rb_lock);
Chris Wilsonbac2ef42017-06-08 12:14:03 +0100443 if (armed)
444 return armed;
Chris Wilson688e6c72016-07-01 17:23:15 +0100445
Chris Wilsonbac2ef42017-06-08 12:14:03 +0100446 /* Make the caller recheck if its request has already started. */
447 return i915_seqno_passed(intel_engine_get_seqno(engine),
448 wait->seqno - 1);
Chris Wilson688e6c72016-07-01 17:23:15 +0100449}
450
Chris Wilson688e6c72016-07-01 17:23:15 +0100451static inline bool chain_wakeup(struct rb_node *rb, int priority)
452{
453 return rb && to_wait(rb)->tsk->prio <= priority;
454}
455
Chris Wilsonc81d4612016-07-01 17:23:25 +0100456static 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
Chris Wilson9eb143b2017-02-23 07:44:16 +0000465static void __intel_engine_remove_wait(struct intel_engine_cs *engine,
466 struct intel_wait *wait)
Chris Wilson688e6c72016-07-01 17:23:15 +0100467{
468 struct intel_breadcrumbs *b = &engine->breadcrumbs;
469
Chris Wilson61d3dc72017-03-03 19:08:24 +0000470 lockdep_assert_held(&b->rb_lock);
Chris Wilson688e6c72016-07-01 17:23:15 +0100471
472 if (RB_EMPTY_NODE(&wait->node))
Chris Wilson9eb143b2017-02-23 07:44:16 +0000473 goto out;
Chris Wilson688e6c72016-07-01 17:23:15 +0100474
Chris Wilson61d3dc72017-03-03 19:08:24 +0000475 if (b->irq_wait == wait) {
Chris Wilsonc81d4612016-07-01 17:23:25 +0100476 const int priority = wakeup_priority(b, wait->tsk);
Chris Wilson688e6c72016-07-01 17:23:15 +0100477 struct rb_node *next;
Chris Wilson688e6c72016-07-01 17:23:15 +0100478
Chris Wilson688e6c72016-07-01 17:23:15 +0100479 /* 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 */
Chris Wilson1b7744e2016-07-01 17:23:17 +0100499 u32 seqno = intel_engine_get_seqno(engine);
Chris Wilson688e6c72016-07-01 17:23:15 +0100500
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
Chris Wilsonb66255f2017-03-03 17:14:22 +0000511 __intel_breadcrumbs_next(engine, next);
Chris Wilson688e6c72016-07-01 17:23:15 +0100512 } 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
Chris Wilson9eb143b2017-02-23 07:44:16 +0000519out:
Chris Wilson61d3dc72017-03-03 19:08:24 +0000520 GEM_BUG_ON(b->irq_wait == wait);
Chris Wilson688e6c72016-07-01 17:23:15 +0100521 GEM_BUG_ON(rb_first(&b->waiters) !=
Chris Wilson61d3dc72017-03-03 19:08:24 +0000522 (b->irq_wait ? &b->irq_wait->node : NULL));
Chris Wilson9eb143b2017-02-23 07:44:16 +0000523}
524
525void 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 */
Chris Wilson908a6cb2017-03-15 21:07:25 +0000534 if (RB_EMPTY_NODE(&wait->node)) {
535 GEM_BUG_ON(READ_ONCE(b->irq_wait) == wait);
Chris Wilson9eb143b2017-02-23 07:44:16 +0000536 return;
Chris Wilson908a6cb2017-03-15 21:07:25 +0000537 }
Chris Wilson9eb143b2017-02-23 07:44:16 +0000538
Chris Wilson61d3dc72017-03-03 19:08:24 +0000539 spin_lock_irq(&b->rb_lock);
Chris Wilson9eb143b2017-02-23 07:44:16 +0000540 __intel_engine_remove_wait(engine, wait);
Chris Wilson61d3dc72017-03-03 19:08:24 +0000541 spin_unlock_irq(&b->rb_lock);
Chris Wilson688e6c72016-07-01 17:23:15 +0100542}
543
Chris Wilsond6a22892017-02-23 07:44:17 +0000544static bool signal_valid(const struct drm_i915_gem_request *request)
545{
546 return intel_wait_check_request(&request->signaling.wait, request);
547}
548
549static bool signal_complete(const struct drm_i915_gem_request *request)
Chris Wilsonc81d4612016-07-01 17:23:25 +0100550{
Chris Wilsonb3850852016-07-01 17:23:26 +0100551 if (!request)
Chris Wilsonc81d4612016-07-01 17:23:25 +0100552 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 */
Chris Wilsonb3850852016-07-01 17:23:26 +0100557 if (intel_wait_complete(&request->signaling.wait))
Chris Wilsond6a22892017-02-23 07:44:17 +0000558 return signal_valid(request);
Chris Wilsonc81d4612016-07-01 17:23:25 +0100559
560 /* Carefully check if the request is complete, giving time for the
561 * seqno to be visible or if the GPU hung.
562 */
Chris Wilsonb3850852016-07-01 17:23:26 +0100563 if (__i915_request_irq_complete(request))
Chris Wilsonc81d4612016-07-01 17:23:25 +0100564 return true;
565
566 return false;
567}
568
Chris Wilsonb3850852016-07-01 17:23:26 +0100569static struct drm_i915_gem_request *to_signaler(struct rb_node *rb)
Chris Wilsonc81d4612016-07-01 17:23:25 +0100570{
Chris Wilsond8567862016-12-20 10:40:03 +0000571 return rb_entry(rb, struct drm_i915_gem_request, signaling.node);
Chris Wilsonc81d4612016-07-01 17:23:25 +0100572}
573
574static 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
581static int intel_breadcrumbs_signaler(void *arg)
582{
583 struct intel_engine_cs *engine = arg;
584 struct intel_breadcrumbs *b = &engine->breadcrumbs;
Chris Wilsonb3850852016-07-01 17:23:26 +0100585 struct drm_i915_gem_request *request;
Chris Wilsonc81d4612016-07-01 17:23:25 +0100586
587 /* Install ourselves with high priority to reduce signalling latency */
588 signaler_set_rtpriority();
589
590 do {
Chris Wilsona7980a62017-04-04 13:05:31 +0100591 bool do_schedule = true;
592
Chris Wilsonc81d4612016-07-01 17:23:25 +0100593 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 */
Chris Wilsoncced5e22017-02-23 07:44:15 +0000603 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();
Chris Wilsonb3850852016-07-01 17:23:26 +0100608 if (signal_complete(request)) {
Chris Wilson7c9e9342017-01-24 11:00:09 +0000609 local_bh_disable();
610 dma_fence_signal(&request->fence);
611 local_bh_enable(); /* kick start the tasklets */
612
Chris Wilson61d3dc72017-03-03 19:08:24 +0000613 spin_lock_irq(&b->rb_lock);
Chris Wilson9eb143b2017-02-23 07:44:16 +0000614
Chris Wilsonc81d4612016-07-01 17:23:25 +0100615 /* Wake up all other completed waiters and select the
616 * next bottom-half for the next user interrupt.
617 */
Chris Wilson9eb143b2017-02-23 07:44:16 +0000618 __intel_engine_remove_wait(engine,
619 &request->signaling.wait);
Chris Wilson5590af32016-09-09 14:11:54 +0100620
Chris Wilsonc81d4612016-07-01 17:23:25 +0100621 /* 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 */
Chris Wilsoncced5e22017-02-23 07:44:15 +0000627 if (request == rcu_access_pointer(b->first_signal)) {
Chris Wilsonb3850852016-07-01 17:23:26 +0100628 struct rb_node *rb =
629 rb_next(&request->signaling.node);
Chris Wilsoncced5e22017-02-23 07:44:15 +0000630 rcu_assign_pointer(b->first_signal,
631 rb ? to_signaler(rb) : NULL);
Chris Wilsonb3850852016-07-01 17:23:26 +0100632 }
633 rb_erase(&request->signaling.node, &b->signals);
Chris Wilson9eb143b2017-02-23 07:44:16 +0000634 RB_CLEAR_NODE(&request->signaling.node);
635
Chris Wilson61d3dc72017-03-03 19:08:24 +0000636 spin_unlock_irq(&b->rb_lock);
Chris Wilsonc81d4612016-07-01 17:23:25 +0100637
Chris Wilsone8a261e2016-07-20 13:31:49 +0100638 i915_gem_request_put(request);
Chris Wilsona7980a62017-04-04 13:05:31 +0100639
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)) {
Chris Wilsond6a22892017-02-23 07:44:17 +0000651 DEFINE_WAIT(exec);
652
Chris Wilsonb1becb82017-04-03 11:51:24 +0100653 if (kthread_should_park())
654 kthread_parkme();
655
Chris Wilsoncced5e22017-02-23 07:44:15 +0000656 if (kthread_should_stop()) {
657 GEM_BUG_ON(request);
Chris Wilsonc81d4612016-07-01 17:23:25 +0100658 break;
Chris Wilsoncced5e22017-02-23 07:44:15 +0000659 }
Chris Wilsonc81d4612016-07-01 17:23:25 +0100660
Chris Wilsond6a22892017-02-23 07:44:17 +0000661 if (request)
662 add_wait_queue(&request->execute, &exec);
663
Chris Wilsonc81d4612016-07-01 17:23:25 +0100664 schedule();
Chris Wilsonfe3288b2017-02-12 17:20:01 +0000665
Chris Wilsond6a22892017-02-23 07:44:17 +0000666 if (request)
667 remove_wait_queue(&request->execute, &exec);
Chris Wilsonc81d4612016-07-01 17:23:25 +0100668 }
Chris Wilsoncced5e22017-02-23 07:44:15 +0000669 i915_gem_request_put(request);
Chris Wilsonc81d4612016-07-01 17:23:25 +0100670 } while (1);
671 __set_current_state(TASK_RUNNING);
672
673 return 0;
674}
675
Chris Wilsonf7b02a52017-04-26 09:06:59 +0100676void intel_engine_enable_signaling(struct drm_i915_gem_request *request,
677 bool wakeup)
Chris Wilsonc81d4612016-07-01 17:23:25 +0100678{
679 struct intel_engine_cs *engine = request->engine;
680 struct intel_breadcrumbs *b = &engine->breadcrumbs;
Chris Wilson754c9fd2017-02-23 07:44:14 +0000681 u32 seqno;
Chris Wilsonc81d4612016-07-01 17:23:25 +0100682
Chris Wilsonf6168e32016-10-28 13:58:55 +0100683 /* 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,
Chris Wilsona6b0a1412017-03-15 22:22:59 +0000686 * we need to make sure that all other users of b->rb_lock protect
Chris Wilsonf6168e32016-10-28 13:58:55 +0100687 * against interrupts, i.e. use spin_lock_irqsave.
688 */
689
690 /* locked by dma_fence_enable_sw_signaling() (irqsafe fence->lock) */
Chris Wilsone60a8702017-03-02 11:51:30 +0000691 GEM_BUG_ON(!irqs_disabled());
Chris Wilson67520412017-03-02 13:28:01 +0000692 lockdep_assert_held(&request->lock);
Chris Wilson754c9fd2017-02-23 07:44:14 +0000693
694 seqno = i915_gem_request_global_seqno(request);
695 if (!seqno)
Chris Wilson65e47602016-10-28 13:58:49 +0100696 return;
Chris Wilsonc81d4612016-07-01 17:23:25 +0100697
Chris Wilsonb3850852016-07-01 17:23:26 +0100698 request->signaling.wait.tsk = b->signaler;
Chris Wilson56299fb2017-02-27 20:58:48 +0000699 request->signaling.wait.request = request;
Chris Wilson754c9fd2017-02-23 07:44:14 +0000700 request->signaling.wait.seqno = seqno;
Chris Wilsone8a261e2016-07-20 13:31:49 +0100701 i915_gem_request_get(request);
Chris Wilsonc81d4612016-07-01 17:23:25 +0100702
Chris Wilson61d3dc72017-03-03 19:08:24 +0000703 spin_lock(&b->rb_lock);
Chris Wilson4a50d202016-07-26 12:01:50 +0100704
Chris Wilsonc81d4612016-07-01 17:23:25 +0100705 /* 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 */
Chris Wilsonf7b02a52017-04-26 09:06:59 +0100713 wakeup &= __intel_engine_add_wait(engine, &request->signaling.wait);
Chris Wilsonc81d4612016-07-01 17:23:25 +0100714
Chris Wilson735e0eb2017-06-08 12:14:04 +0100715 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 }
Chris Wilsonc81d4612016-07-01 17:23:25 +0100735 }
Chris Wilson735e0eb2017-06-08 12:14:04 +0100736 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;
Chris Wilsonc81d4612016-07-01 17:23:25 +0100744 }
Chris Wilsonb3850852016-07-01 17:23:26 +0100745
Chris Wilson61d3dc72017-03-03 19:08:24 +0000746 spin_unlock(&b->rb_lock);
Chris Wilsonc81d4612016-07-01 17:23:25 +0100747
748 if (wakeup)
749 wake_up_process(b->signaler);
Chris Wilsonc81d4612016-07-01 17:23:25 +0100750}
751
Chris Wilson9eb143b2017-02-23 07:44:16 +0000752void 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
Chris Wilsone60a8702017-03-02 11:51:30 +0000757 GEM_BUG_ON(!irqs_disabled());
Chris Wilson67520412017-03-02 13:28:01 +0000758 lockdep_assert_held(&request->lock);
Chris Wilson9eb143b2017-02-23 07:44:16 +0000759 GEM_BUG_ON(!request->signaling.wait.seqno);
760
Chris Wilson61d3dc72017-03-03 19:08:24 +0000761 spin_lock(&b->rb_lock);
Chris Wilson9eb143b2017-02-23 07:44:16 +0000762
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
Chris Wilson61d3dc72017-03-03 19:08:24 +0000777 spin_unlock(&b->rb_lock);
Chris Wilson9eb143b2017-02-23 07:44:16 +0000778
779 request->signaling.wait.seqno = 0;
780}
781
Chris Wilson688e6c72016-07-01 17:23:15 +0100782int intel_engine_init_breadcrumbs(struct intel_engine_cs *engine)
783{
784 struct intel_breadcrumbs *b = &engine->breadcrumbs;
Chris Wilsonc81d4612016-07-01 17:23:25 +0100785 struct task_struct *tsk;
Chris Wilson688e6c72016-07-01 17:23:15 +0100786
Chris Wilson61d3dc72017-03-03 19:08:24 +0000787 spin_lock_init(&b->rb_lock);
788 spin_lock_init(&b->irq_lock);
789
Chris Wilson688e6c72016-07-01 17:23:15 +0100790 setup_timer(&b->fake_irq,
791 intel_breadcrumbs_fake_irq,
792 (unsigned long)engine);
Chris Wilson83348ba2016-08-09 17:47:51 +0100793 setup_timer(&b->hangcheck,
794 intel_breadcrumbs_hangcheck,
795 (unsigned long)engine);
Chris Wilson688e6c72016-07-01 17:23:15 +0100796
Chris Wilsonc81d4612016-07-01 17:23:25 +0100797 /* 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
Chris Wilson688e6c72016-07-01 17:23:15 +0100810 return 0;
811}
812
Chris Wilsonad07dfc2016-10-07 07:53:26 +0100813static 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
822void intel_engine_reset_breadcrumbs(struct intel_engine_cs *engine)
823{
824 struct intel_breadcrumbs *b = &engine->breadcrumbs;
825
826 cancel_fake_irq(engine);
Chris Wilson61d3dc72017-03-03 19:08:24 +0000827 spin_lock_irq(&b->irq_lock);
Chris Wilsonad07dfc2016-10-07 07:53:26 +0100828
Chris Wilson67b807a82017-02-27 20:58:50 +0000829 if (b->irq_enabled)
830 irq_enable(engine);
831 else
Chris Wilsonad07dfc2016-10-07 07:53:26 +0100832 irq_disable(engine);
Chris Wilson67b807a82017-02-27 20:58:50 +0000833
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);
Chris Wilsonad07dfc2016-10-07 07:53:26 +0100845
Chris Wilson61d3dc72017-03-03 19:08:24 +0000846 spin_unlock_irq(&b->irq_lock);
Chris Wilsonad07dfc2016-10-07 07:53:26 +0100847}
848
Chris Wilson688e6c72016-07-01 17:23:15 +0100849void intel_engine_fini_breadcrumbs(struct intel_engine_cs *engine)
850{
851 struct intel_breadcrumbs *b = &engine->breadcrumbs;
852
Chris Wilson381744f2016-11-21 11:07:59 +0000853 /* The engines should be idle and all requests accounted for! */
Chris Wilson61d3dc72017-03-03 19:08:24 +0000854 WARN_ON(READ_ONCE(b->irq_wait));
Chris Wilson381744f2016-11-21 11:07:59 +0000855 WARN_ON(!RB_EMPTY_ROOT(&b->waiters));
Chris Wilsoncced5e22017-02-23 07:44:15 +0000856 WARN_ON(rcu_access_pointer(b->first_signal));
Chris Wilson381744f2016-11-21 11:07:59 +0000857 WARN_ON(!RB_EMPTY_ROOT(&b->signals));
858
Chris Wilsonc81d4612016-07-01 17:23:25 +0100859 if (!IS_ERR_OR_NULL(b->signaler))
860 kthread_stop(b->signaler);
861
Chris Wilsonad07dfc2016-10-07 07:53:26 +0100862 cancel_fake_irq(engine);
Chris Wilson688e6c72016-07-01 17:23:15 +0100863}
864
Chris Wilson9b6586a2017-02-23 07:44:08 +0000865bool intel_breadcrumbs_busy(struct intel_engine_cs *engine)
Chris Wilsonc81d4612016-07-01 17:23:25 +0100866{
Chris Wilson9b6586a2017-02-23 07:44:08 +0000867 struct intel_breadcrumbs *b = &engine->breadcrumbs;
868 bool busy = false;
Chris Wilsonc81d4612016-07-01 17:23:25 +0100869
Chris Wilson61d3dc72017-03-03 19:08:24 +0000870 spin_lock_irq(&b->rb_lock);
Chris Wilson6a5d1db2016-11-08 14:37:19 +0000871
Chris Wilson61d3dc72017-03-03 19:08:24 +0000872 if (b->irq_wait) {
873 wake_up_process(b->irq_wait->tsk);
Chris Wilson4bd66392017-03-15 21:07:22 +0000874 busy = true;
Chris Wilsonc81d4612016-07-01 17:23:25 +0100875 }
876
Chris Wilsoncced5e22017-02-23 07:44:15 +0000877 if (rcu_access_pointer(b->first_signal)) {
Chris Wilson9b6586a2017-02-23 07:44:08 +0000878 wake_up_process(b->signaler);
Chris Wilson4bd66392017-03-15 21:07:22 +0000879 busy = true;
Chris Wilson9b6586a2017-02-23 07:44:08 +0000880 }
881
Chris Wilson61d3dc72017-03-03 19:08:24 +0000882 spin_unlock_irq(&b->rb_lock);
Chris Wilson9b6586a2017-02-23 07:44:08 +0000883
884 return busy;
Chris Wilsonc81d4612016-07-01 17:23:25 +0100885}
Chris Wilsonf97fbf92017-02-13 17:15:14 +0000886
887#if IS_ENABLED(CONFIG_DRM_I915_SELFTEST)
888#include "selftests/intel_breadcrumbs.c"
889#endif