Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 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 | |
Chris Wilson | c81d461 | 2016-07-01 17:23:25 +0100 | [diff] [blame] | 25 | #include <linux/kthread.h> |
Ingo Molnar | ae7e81c | 2017-02-01 18:07:51 +0100 | [diff] [blame] | 26 | #include <uapi/linux/sched/types.h> |
Chris Wilson | c81d461 | 2016-07-01 17:23:25 +0100 | [diff] [blame] | 27 | |
Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 28 | #include "i915_drv.h" |
| 29 | |
Chris Wilson | 67b807a8 | 2017-02-27 20:58:50 +0000 | [diff] [blame] | 30 | static unsigned int __intel_breadcrumbs_wakeup(struct intel_breadcrumbs *b) |
Chris Wilson | 8d769ea | 2017-02-27 20:58:47 +0000 | [diff] [blame] | 31 | { |
Chris Wilson | 56299fb | 2017-02-27 20:58:48 +0000 | [diff] [blame] | 32 | struct intel_wait *wait; |
Chris Wilson | 8d769ea | 2017-02-27 20:58:47 +0000 | [diff] [blame] | 33 | unsigned int result = 0; |
| 34 | |
Chris Wilson | 61d3dc7 | 2017-03-03 19:08:24 +0000 | [diff] [blame] | 35 | lockdep_assert_held(&b->irq_lock); |
| 36 | |
| 37 | wait = b->irq_wait; |
Chris Wilson | 56299fb | 2017-02-27 20:58:48 +0000 | [diff] [blame] | 38 | if (wait) { |
Chris Wilson | 8d769ea | 2017-02-27 20:58:47 +0000 | [diff] [blame] | 39 | result = ENGINE_WAKEUP_WAITER; |
Chris Wilson | 67b807a8 | 2017-02-27 20:58:50 +0000 | [diff] [blame] | 40 | if (wake_up_process(wait->tsk)) |
| 41 | result |= ENGINE_WAKEUP_ASLEEP; |
Chris Wilson | 8d769ea | 2017-02-27 20:58:47 +0000 | [diff] [blame] | 42 | } |
Chris Wilson | 67b807a8 | 2017-02-27 20:58:50 +0000 | [diff] [blame] | 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; |
Chris Wilson | 467221b | 2017-03-20 14:31:33 +0000 | [diff] [blame] | 50 | unsigned long flags; |
Chris Wilson | 67b807a8 | 2017-02-27 20:58:50 +0000 | [diff] [blame] | 51 | unsigned int result; |
| 52 | |
Chris Wilson | 467221b | 2017-03-20 14:31:33 +0000 | [diff] [blame] | 53 | spin_lock_irqsave(&b->irq_lock, flags); |
Chris Wilson | 67b807a8 | 2017-02-27 20:58:50 +0000 | [diff] [blame] | 54 | result = __intel_breadcrumbs_wakeup(b); |
Chris Wilson | 467221b | 2017-03-20 14:31:33 +0000 | [diff] [blame] | 55 | spin_unlock_irqrestore(&b->irq_lock, flags); |
Chris Wilson | 8d769ea | 2017-02-27 20:58:47 +0000 | [diff] [blame] | 56 | |
| 57 | return result; |
| 58 | } |
| 59 | |
Chris Wilson | 2246bea | 2017-02-17 15:13:00 +0000 | [diff] [blame] | 60 | static unsigned long wait_timeout(void) |
| 61 | { |
| 62 | return round_jiffies_up(jiffies + DRM_I915_HANGCHECK_JIFFIES); |
| 63 | } |
| 64 | |
Chris Wilson | 80166e40 | 2017-02-28 08:50:18 +0000 | [diff] [blame] | 65 | static noinline void missed_breadcrumb(struct intel_engine_cs *engine) |
| 66 | { |
Chris Wilson | 695eaa3 | 2017-04-23 18:06:19 +0100 | [diff] [blame] | 67 | DRM_DEBUG_DRIVER("%s missed breadcrumb at %pF, irq posted? %s, current seqno=%x, last=%x\n", |
Chris Wilson | 80166e40 | 2017-02-28 08:50:18 +0000 | [diff] [blame] | 68 | engine->name, __builtin_return_address(0), |
| 69 | yesno(test_bit(ENGINE_IRQ_BREADCRUMB, |
Chris Wilson | 695eaa3 | 2017-04-23 18:06:19 +0100 | [diff] [blame] | 70 | &engine->irq_posted)), |
| 71 | intel_engine_get_seqno(engine), |
| 72 | intel_engine_last_submit(engine)); |
Chris Wilson | 80166e40 | 2017-02-28 08:50:18 +0000 | [diff] [blame] | 73 | |
| 74 | set_bit(engine->id, &engine->i915->gpu_error.missed_irq_rings); |
| 75 | } |
| 76 | |
Chris Wilson | 83348ba | 2016-08-09 17:47:51 +0100 | [diff] [blame] | 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 | |
Chris Wilson | 67b807a8 | 2017-02-27 20:58:50 +0000 | [diff] [blame] | 82 | if (!b->irq_armed) |
Chris Wilson | 83348ba | 2016-08-09 17:47:51 +0100 | [diff] [blame] | 83 | return; |
| 84 | |
Chris Wilson | 2246bea | 2017-02-17 15:13:00 +0000 | [diff] [blame] | 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()); |
Chris Wilson | 83348ba | 2016-08-09 17:47:51 +0100 | [diff] [blame] | 88 | return; |
| 89 | } |
| 90 | |
Chris Wilson | a6b0a141 | 2017-03-15 22:22:59 +0000 | [diff] [blame] | 91 | /* We keep the hangcheck timer alive until we disarm the irq, even |
Chris Wilson | 67b807a8 | 2017-02-27 20:58:50 +0000 | [diff] [blame] | 92 | * if there are no waiters at present. |
| 93 | * |
| 94 | * If the waiter was currently running, assume it hasn't had a chance |
Chris Wilson | 8998567 | 2017-02-17 15:13:02 +0000 | [diff] [blame] | 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. |
Chris Wilson | 67b807a8 | 2017-02-27 20:58:50 +0000 | [diff] [blame] | 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]! |
Chris Wilson | 8998567 | 2017-02-17 15:13:02 +0000 | [diff] [blame] | 102 | */ |
Chris Wilson | 67b807a8 | 2017-02-27 20:58:50 +0000 | [diff] [blame] | 103 | if (intel_engine_wakeup(engine) & ENGINE_WAKEUP_ASLEEP) { |
Chris Wilson | 80166e40 | 2017-02-28 08:50:18 +0000 | [diff] [blame] | 104 | missed_breadcrumb(engine); |
Chris Wilson | 67b807a8 | 2017-02-27 20:58:50 +0000 | [diff] [blame] | 105 | mod_timer(&engine->breadcrumbs.fake_irq, jiffies + 1); |
| 106 | } else { |
Chris Wilson | 8998567 | 2017-02-17 15:13:02 +0000 | [diff] [blame] | 107 | mod_timer(&b->hangcheck, wait_timeout()); |
Chris Wilson | 8998567 | 2017-02-17 15:13:02 +0000 | [diff] [blame] | 108 | } |
Chris Wilson | 83348ba | 2016-08-09 17:47:51 +0100 | [diff] [blame] | 109 | } |
| 110 | |
Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 111 | static void intel_breadcrumbs_fake_irq(unsigned long data) |
| 112 | { |
| 113 | struct intel_engine_cs *engine = (struct intel_engine_cs *)data; |
Chris Wilson | 67b807a8 | 2017-02-27 20:58:50 +0000 | [diff] [blame] | 114 | struct intel_breadcrumbs *b = &engine->breadcrumbs; |
Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 115 | |
Chris Wilson | a6b0a141 | 2017-03-15 22:22:59 +0000 | [diff] [blame] | 116 | /* The timer persists in case we cannot enable interrupts, |
Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 117 | * or if we have previously seen seqno/interrupt incoherency |
Chris Wilson | a6b0a141 | 2017-03-15 22:22:59 +0000 | [diff] [blame] | 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. |
Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 121 | */ |
Chris Wilson | 67b807a8 | 2017-02-27 20:58:50 +0000 | [diff] [blame] | 122 | |
Tvrtko Ursulin | a9e6493 | 2017-03-06 15:03:20 +0000 | [diff] [blame] | 123 | spin_lock_irq(&b->irq_lock); |
Chris Wilson | 67b807a8 | 2017-02-27 20:58:50 +0000 | [diff] [blame] | 124 | if (!__intel_breadcrumbs_wakeup(b)) |
| 125 | __intel_engine_disarm_breadcrumbs(engine); |
Tvrtko Ursulin | a9e6493 | 2017-03-06 15:03:20 +0000 | [diff] [blame] | 126 | spin_unlock_irq(&b->irq_lock); |
Chris Wilson | 67b807a8 | 2017-02-27 20:58:50 +0000 | [diff] [blame] | 127 | if (!b->irq_armed) |
Chris Wilson | 19d0a57 | 2017-02-27 20:58:49 +0000 | [diff] [blame] | 128 | return; |
| 129 | |
Chris Wilson | 67b807a8 | 2017-02-27 20:58:50 +0000 | [diff] [blame] | 130 | mod_timer(&b->fake_irq, jiffies + 1); |
Chris Wilson | 19d0a57 | 2017-02-27 20:58:49 +0000 | [diff] [blame] | 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); |
Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 142 | } |
| 143 | |
| 144 | static void irq_enable(struct intel_engine_cs *engine) |
| 145 | { |
Chris Wilson | 3d5564e | 2016-07-01 17:23:23 +0100 | [diff] [blame] | 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 | */ |
Chris Wilson | 538b257 | 2017-01-24 15:18:05 +0000 | [diff] [blame] | 150 | set_bit(ENGINE_IRQ_BREADCRUMB, &engine->irq_posted); |
Chris Wilson | 31bb59c | 2016-07-01 17:23:27 +0100 | [diff] [blame] | 151 | |
Chris Wilson | f6168e3 | 2016-10-28 13:58:55 +0100 | [diff] [blame] | 152 | /* Caller disables interrupts */ |
| 153 | spin_lock(&engine->i915->irq_lock); |
Chris Wilson | 31bb59c | 2016-07-01 17:23:27 +0100 | [diff] [blame] | 154 | engine->irq_enable(engine); |
Chris Wilson | f6168e3 | 2016-10-28 13:58:55 +0100 | [diff] [blame] | 155 | spin_unlock(&engine->i915->irq_lock); |
Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 156 | } |
| 157 | |
| 158 | static void irq_disable(struct intel_engine_cs *engine) |
| 159 | { |
Chris Wilson | f6168e3 | 2016-10-28 13:58:55 +0100 | [diff] [blame] | 160 | /* Caller disables interrupts */ |
| 161 | spin_lock(&engine->i915->irq_lock); |
Chris Wilson | 31bb59c | 2016-07-01 17:23:27 +0100 | [diff] [blame] | 162 | engine->irq_disable(engine); |
Chris Wilson | f6168e3 | 2016-10-28 13:58:55 +0100 | [diff] [blame] | 163 | spin_unlock(&engine->i915->irq_lock); |
Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 164 | } |
| 165 | |
Chris Wilson | 67b807a8 | 2017-02-27 20:58:50 +0000 | [diff] [blame] | 166 | void __intel_engine_disarm_breadcrumbs(struct intel_engine_cs *engine) |
| 167 | { |
| 168 | struct intel_breadcrumbs *b = &engine->breadcrumbs; |
| 169 | |
Chris Wilson | 61d3dc7 | 2017-03-03 19:08:24 +0000 | [diff] [blame] | 170 | lockdep_assert_held(&b->irq_lock); |
Chris Wilson | e1c0c91 | 2017-03-06 09:29:15 +0000 | [diff] [blame] | 171 | GEM_BUG_ON(b->irq_wait); |
Chris Wilson | 67b807a8 | 2017-02-27 20:58:50 +0000 | [diff] [blame] | 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; |
Chris Wilson | a5cae7b | 2017-03-15 21:07:24 +0000 | [diff] [blame] | 184 | struct intel_wait *wait, *n, *first; |
Chris Wilson | 67b807a8 | 2017-02-27 20:58:50 +0000 | [diff] [blame] | 185 | |
| 186 | if (!b->irq_armed) |
| 187 | return; |
| 188 | |
Chris Wilson | 67b807a8 | 2017-02-27 20:58:50 +0000 | [diff] [blame] | 189 | /* We only disarm the irq when we are idle (all requests completed), |
Chris Wilson | e1c0c91 | 2017-03-06 09:29:15 +0000 | [diff] [blame] | 190 | * so if the bottom-half remains asleep, it missed the request |
Chris Wilson | 67b807a8 | 2017-02-27 20:58:50 +0000 | [diff] [blame] | 191 | * completion. |
| 192 | */ |
Chris Wilson | 67b807a8 | 2017-02-27 20:58:50 +0000 | [diff] [blame] | 193 | |
Chris Wilson | e1c0c91 | 2017-03-06 09:29:15 +0000 | [diff] [blame] | 194 | spin_lock_irq(&b->rb_lock); |
Chris Wilson | a5cae7b | 2017-03-15 21:07:24 +0000 | [diff] [blame] | 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 | |
Chris Wilson | e1c0c91 | 2017-03-06 09:29:15 +0000 | [diff] [blame] | 201 | rbtree_postorder_for_each_entry_safe(wait, n, &b->waiters, node) { |
| 202 | RB_CLEAR_NODE(&wait->node); |
Chris Wilson | a5cae7b | 2017-03-15 21:07:24 +0000 | [diff] [blame] | 203 | if (wake_up_process(wait->tsk) && wait == first) |
Chris Wilson | e1c0c91 | 2017-03-06 09:29:15 +0000 | [diff] [blame] | 204 | missed_breadcrumb(engine); |
| 205 | } |
| 206 | b->waiters = RB_ROOT; |
| 207 | |
Chris Wilson | e1c0c91 | 2017-03-06 09:29:15 +0000 | [diff] [blame] | 208 | spin_unlock_irq(&b->rb_lock); |
Chris Wilson | 67b807a8 | 2017-02-27 20:58:50 +0000 | [diff] [blame] | 209 | } |
| 210 | |
Chris Wilson | 6ef98ea | 2017-02-17 15:13:03 +0000 | [diff] [blame] | 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 | |
Chris Wilson | 67b807a8 | 2017-02-27 20:58:50 +0000 | [diff] [blame] | 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 | |
Chris Wilson | bac2ef4 | 2017-06-08 12:14:03 +0100 | [diff] [blame] | 237 | static bool __intel_breadcrumbs_enable_irq(struct intel_breadcrumbs *b) |
Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 238 | { |
| 239 | struct intel_engine_cs *engine = |
| 240 | container_of(b, struct intel_engine_cs, breadcrumbs); |
| 241 | struct drm_i915_private *i915 = engine->i915; |
Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 242 | |
Chris Wilson | 61d3dc7 | 2017-03-03 19:08:24 +0000 | [diff] [blame] | 243 | lockdep_assert_held(&b->irq_lock); |
Chris Wilson | 67b807a8 | 2017-02-27 20:58:50 +0000 | [diff] [blame] | 244 | if (b->irq_armed) |
Chris Wilson | bac2ef4 | 2017-06-08 12:14:03 +0100 | [diff] [blame] | 245 | return false; |
Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 246 | |
Chris Wilson | 67b807a8 | 2017-02-27 20:58:50 +0000 | [diff] [blame] | 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 | |
Chris Wilson | f97fbf9 | 2017-02-13 17:15:14 +0000 | [diff] [blame] | 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 | */ |
Chris Wilson | bac2ef4 | 2017-06-08 12:14:03 +0100 | [diff] [blame] | 263 | return true; |
Chris Wilson | f97fbf9 | 2017-02-13 17:15:14 +0000 | [diff] [blame] | 264 | } |
| 265 | |
Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 266 | /* Since we are waiting on a request, the GPU should be busy |
Chris Wilson | 67b807a8 | 2017-02-27 20:58:50 +0000 | [diff] [blame] | 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. |
Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 271 | */ |
Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 272 | |
| 273 | /* No interrupts? Kick the waiter every jiffie! */ |
| 274 | if (intel_irqs_enabled(i915)) { |
Chris Wilson | 3d5564e | 2016-07-01 17:23:23 +0100 | [diff] [blame] | 275 | if (!test_bit(engine->id, &i915->gpu_error.test_irq_rings)) |
Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 276 | irq_enable(engine); |
Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 277 | b->irq_enabled = true; |
| 278 | } |
| 279 | |
Chris Wilson | 67b807a8 | 2017-02-27 20:58:50 +0000 | [diff] [blame] | 280 | enable_fake_irq(b); |
Chris Wilson | bac2ef4 | 2017-06-08 12:14:03 +0100 | [diff] [blame] | 281 | return true; |
Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 282 | } |
| 283 | |
| 284 | static inline struct intel_wait *to_wait(struct rb_node *node) |
| 285 | { |
Chris Wilson | d856786 | 2016-12-20 10:40:03 +0000 | [diff] [blame] | 286 | return rb_entry(node, struct intel_wait, node); |
Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 287 | } |
| 288 | |
| 289 | static inline void __intel_breadcrumbs_finish(struct intel_breadcrumbs *b, |
| 290 | struct intel_wait *wait) |
| 291 | { |
Chris Wilson | 61d3dc7 | 2017-03-03 19:08:24 +0000 | [diff] [blame] | 292 | lockdep_assert_held(&b->rb_lock); |
Chris Wilson | 908a6cb | 2017-03-15 21:07:25 +0000 | [diff] [blame] | 293 | GEM_BUG_ON(b->irq_wait == wait); |
Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 294 | |
| 295 | /* This request is completed, so remove it from the tree, mark it as |
Chris Wilson | a6b0a141 | 2017-03-15 22:22:59 +0000 | [diff] [blame] | 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. |
Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 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 | |
Chris Wilson | b66255f | 2017-03-03 17:14:22 +0000 | [diff] [blame] | 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 | |
Chris Wilson | 61d3dc7 | 2017-03-03 19:08:24 +0000 | [diff] [blame] | 314 | spin_lock(&b->irq_lock); |
Chris Wilson | b66255f | 2017-03-03 17:14:22 +0000 | [diff] [blame] | 315 | GEM_BUG_ON(!b->irq_armed); |
Chris Wilson | 429732e | 2017-03-15 21:07:23 +0000 | [diff] [blame] | 316 | GEM_BUG_ON(!b->irq_wait); |
Chris Wilson | 61d3dc7 | 2017-03-03 19:08:24 +0000 | [diff] [blame] | 317 | b->irq_wait = to_wait(next); |
| 318 | spin_unlock(&b->irq_lock); |
Chris Wilson | b66255f | 2017-03-03 17:14:22 +0000 | [diff] [blame] | 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 | |
Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 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; |
Chris Wilson | bac2ef4 | 2017-06-08 12:14:03 +0100 | [diff] [blame] | 333 | bool first, armed; |
Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 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 | */ |
Chris Wilson | bac2ef4 | 2017-06-08 12:14:03 +0100 | [diff] [blame] | 348 | armed = false; |
Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 349 | first = true; |
| 350 | parent = NULL; |
| 351 | completed = NULL; |
Chris Wilson | 1b7744e | 2016-07-01 17:23:17 +0100 | [diff] [blame] | 352 | seqno = intel_engine_get_seqno(engine); |
Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 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); |
Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 392 | |
Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 393 | if (first) { |
Chris Wilson | 61d3dc7 | 2017-03-03 19:08:24 +0000 | [diff] [blame] | 394 | spin_lock(&b->irq_lock); |
Chris Wilson | 61d3dc7 | 2017-03-03 19:08:24 +0000 | [diff] [blame] | 395 | b->irq_wait = wait; |
Chris Wilson | 0417131 | 2016-07-06 12:39:00 +0100 | [diff] [blame] | 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 |
Chris Wilson | aca34b6 | 2016-07-06 12:39:02 +0100 | [diff] [blame] | 401 | * in the unlocked read of b->irq_seqno_bh in the irq handler) |
| 402 | * and so we miss the wake up. |
Chris Wilson | 0417131 | 2016-07-06 12:39:00 +0100 | [diff] [blame] | 403 | */ |
Chris Wilson | bac2ef4 | 2017-06-08 12:14:03 +0100 | [diff] [blame] | 404 | armed = __intel_breadcrumbs_enable_irq(b); |
Chris Wilson | 61d3dc7 | 2017-03-03 19:08:24 +0000 | [diff] [blame] | 405 | spin_unlock(&b->irq_lock); |
Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 406 | } |
Chris Wilson | 429732e | 2017-03-15 21:07:23 +0000 | [diff] [blame] | 407 | |
| 408 | if (completed) { |
Chris Wilson | a6b0a141 | 2017-03-15 22:22:59 +0000 | [diff] [blame] | 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 | */ |
Chris Wilson | 429732e | 2017-03-15 21:07:23 +0000 | [diff] [blame] | 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 | |
Chris Wilson | 61d3dc7 | 2017-03-03 19:08:24 +0000 | [diff] [blame] | 427 | GEM_BUG_ON(!b->irq_wait); |
Chris Wilson | 429732e | 2017-03-15 21:07:23 +0000 | [diff] [blame] | 428 | GEM_BUG_ON(!b->irq_armed); |
Chris Wilson | 61d3dc7 | 2017-03-03 19:08:24 +0000 | [diff] [blame] | 429 | GEM_BUG_ON(rb_first(&b->waiters) != &b->irq_wait->node); |
Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 430 | |
Chris Wilson | bac2ef4 | 2017-06-08 12:14:03 +0100 | [diff] [blame] | 431 | return armed; |
Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 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; |
Chris Wilson | bac2ef4 | 2017-06-08 12:14:03 +0100 | [diff] [blame] | 438 | bool armed; |
Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 439 | |
Chris Wilson | 61d3dc7 | 2017-03-03 19:08:24 +0000 | [diff] [blame] | 440 | spin_lock_irq(&b->rb_lock); |
Chris Wilson | bac2ef4 | 2017-06-08 12:14:03 +0100 | [diff] [blame] | 441 | armed = __intel_engine_add_wait(engine, wait); |
Chris Wilson | 61d3dc7 | 2017-03-03 19:08:24 +0000 | [diff] [blame] | 442 | spin_unlock_irq(&b->rb_lock); |
Chris Wilson | bac2ef4 | 2017-06-08 12:14:03 +0100 | [diff] [blame] | 443 | if (armed) |
| 444 | return armed; |
Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 445 | |
Chris Wilson | bac2ef4 | 2017-06-08 12:14:03 +0100 | [diff] [blame] | 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); |
Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 449 | } |
| 450 | |
Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 451 | static inline bool chain_wakeup(struct rb_node *rb, int priority) |
| 452 | { |
| 453 | return rb && to_wait(rb)->tsk->prio <= priority; |
| 454 | } |
| 455 | |
Chris Wilson | c81d461 | 2016-07-01 17:23:25 +0100 | [diff] [blame] | 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 | |
Chris Wilson | 9eb143b | 2017-02-23 07:44:16 +0000 | [diff] [blame] | 465 | static void __intel_engine_remove_wait(struct intel_engine_cs *engine, |
| 466 | struct intel_wait *wait) |
Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 467 | { |
| 468 | struct intel_breadcrumbs *b = &engine->breadcrumbs; |
| 469 | |
Chris Wilson | 61d3dc7 | 2017-03-03 19:08:24 +0000 | [diff] [blame] | 470 | lockdep_assert_held(&b->rb_lock); |
Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 471 | |
| 472 | if (RB_EMPTY_NODE(&wait->node)) |
Chris Wilson | 9eb143b | 2017-02-23 07:44:16 +0000 | [diff] [blame] | 473 | goto out; |
Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 474 | |
Chris Wilson | 61d3dc7 | 2017-03-03 19:08:24 +0000 | [diff] [blame] | 475 | if (b->irq_wait == wait) { |
Chris Wilson | c81d461 | 2016-07-01 17:23:25 +0100 | [diff] [blame] | 476 | const int priority = wakeup_priority(b, wait->tsk); |
Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 477 | struct rb_node *next; |
Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 478 | |
Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 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 | */ |
Chris Wilson | 1b7744e | 2016-07-01 17:23:17 +0100 | [diff] [blame] | 499 | u32 seqno = intel_engine_get_seqno(engine); |
Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 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 | |
Chris Wilson | b66255f | 2017-03-03 17:14:22 +0000 | [diff] [blame] | 511 | __intel_breadcrumbs_next(engine, next); |
Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 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 | |
Chris Wilson | 9eb143b | 2017-02-23 07:44:16 +0000 | [diff] [blame] | 519 | out: |
Chris Wilson | 61d3dc7 | 2017-03-03 19:08:24 +0000 | [diff] [blame] | 520 | GEM_BUG_ON(b->irq_wait == wait); |
Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 521 | GEM_BUG_ON(rb_first(&b->waiters) != |
Chris Wilson | 61d3dc7 | 2017-03-03 19:08:24 +0000 | [diff] [blame] | 522 | (b->irq_wait ? &b->irq_wait->node : NULL)); |
Chris Wilson | 9eb143b | 2017-02-23 07:44:16 +0000 | [diff] [blame] | 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 | */ |
Chris Wilson | 908a6cb | 2017-03-15 21:07:25 +0000 | [diff] [blame] | 534 | if (RB_EMPTY_NODE(&wait->node)) { |
| 535 | GEM_BUG_ON(READ_ONCE(b->irq_wait) == wait); |
Chris Wilson | 9eb143b | 2017-02-23 07:44:16 +0000 | [diff] [blame] | 536 | return; |
Chris Wilson | 908a6cb | 2017-03-15 21:07:25 +0000 | [diff] [blame] | 537 | } |
Chris Wilson | 9eb143b | 2017-02-23 07:44:16 +0000 | [diff] [blame] | 538 | |
Chris Wilson | 61d3dc7 | 2017-03-03 19:08:24 +0000 | [diff] [blame] | 539 | spin_lock_irq(&b->rb_lock); |
Chris Wilson | 9eb143b | 2017-02-23 07:44:16 +0000 | [diff] [blame] | 540 | __intel_engine_remove_wait(engine, wait); |
Chris Wilson | 61d3dc7 | 2017-03-03 19:08:24 +0000 | [diff] [blame] | 541 | spin_unlock_irq(&b->rb_lock); |
Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 542 | } |
| 543 | |
Chris Wilson | d6a2289 | 2017-02-23 07:44:17 +0000 | [diff] [blame] | 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) |
Chris Wilson | c81d461 | 2016-07-01 17:23:25 +0100 | [diff] [blame] | 550 | { |
Chris Wilson | b385085 | 2016-07-01 17:23:26 +0100 | [diff] [blame] | 551 | if (!request) |
Chris Wilson | c81d461 | 2016-07-01 17:23:25 +0100 | [diff] [blame] | 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 | */ |
Chris Wilson | b385085 | 2016-07-01 17:23:26 +0100 | [diff] [blame] | 557 | if (intel_wait_complete(&request->signaling.wait)) |
Chris Wilson | d6a2289 | 2017-02-23 07:44:17 +0000 | [diff] [blame] | 558 | return signal_valid(request); |
Chris Wilson | c81d461 | 2016-07-01 17:23:25 +0100 | [diff] [blame] | 559 | |
| 560 | /* Carefully check if the request is complete, giving time for the |
| 561 | * seqno to be visible or if the GPU hung. |
| 562 | */ |
Chris Wilson | b385085 | 2016-07-01 17:23:26 +0100 | [diff] [blame] | 563 | if (__i915_request_irq_complete(request)) |
Chris Wilson | c81d461 | 2016-07-01 17:23:25 +0100 | [diff] [blame] | 564 | return true; |
| 565 | |
| 566 | return false; |
| 567 | } |
| 568 | |
Chris Wilson | b385085 | 2016-07-01 17:23:26 +0100 | [diff] [blame] | 569 | static struct drm_i915_gem_request *to_signaler(struct rb_node *rb) |
Chris Wilson | c81d461 | 2016-07-01 17:23:25 +0100 | [diff] [blame] | 570 | { |
Chris Wilson | d856786 | 2016-12-20 10:40:03 +0000 | [diff] [blame] | 571 | return rb_entry(rb, struct drm_i915_gem_request, signaling.node); |
Chris Wilson | c81d461 | 2016-07-01 17:23:25 +0100 | [diff] [blame] | 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, ¶m); |
| 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; |
Chris Wilson | b385085 | 2016-07-01 17:23:26 +0100 | [diff] [blame] | 585 | struct drm_i915_gem_request *request; |
Chris Wilson | c81d461 | 2016-07-01 17:23:25 +0100 | [diff] [blame] | 586 | |
| 587 | /* Install ourselves with high priority to reduce signalling latency */ |
| 588 | signaler_set_rtpriority(); |
| 589 | |
| 590 | do { |
Chris Wilson | a7980a6 | 2017-04-04 13:05:31 +0100 | [diff] [blame] | 591 | bool do_schedule = true; |
| 592 | |
Chris Wilson | c81d461 | 2016-07-01 17:23:25 +0100 | [diff] [blame] | 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 | */ |
Chris Wilson | cced5e2 | 2017-02-23 07:44:15 +0000 | [diff] [blame] | 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(); |
Chris Wilson | b385085 | 2016-07-01 17:23:26 +0100 | [diff] [blame] | 608 | if (signal_complete(request)) { |
Chris Wilson | 7c9e934 | 2017-01-24 11:00:09 +0000 | [diff] [blame] | 609 | local_bh_disable(); |
| 610 | dma_fence_signal(&request->fence); |
| 611 | local_bh_enable(); /* kick start the tasklets */ |
| 612 | |
Chris Wilson | 61d3dc7 | 2017-03-03 19:08:24 +0000 | [diff] [blame] | 613 | spin_lock_irq(&b->rb_lock); |
Chris Wilson | 9eb143b | 2017-02-23 07:44:16 +0000 | [diff] [blame] | 614 | |
Chris Wilson | c81d461 | 2016-07-01 17:23:25 +0100 | [diff] [blame] | 615 | /* Wake up all other completed waiters and select the |
| 616 | * next bottom-half for the next user interrupt. |
| 617 | */ |
Chris Wilson | 9eb143b | 2017-02-23 07:44:16 +0000 | [diff] [blame] | 618 | __intel_engine_remove_wait(engine, |
| 619 | &request->signaling.wait); |
Chris Wilson | 5590af3 | 2016-09-09 14:11:54 +0100 | [diff] [blame] | 620 | |
Chris Wilson | c81d461 | 2016-07-01 17:23:25 +0100 | [diff] [blame] | 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 | */ |
Chris Wilson | cced5e2 | 2017-02-23 07:44:15 +0000 | [diff] [blame] | 627 | if (request == rcu_access_pointer(b->first_signal)) { |
Chris Wilson | b385085 | 2016-07-01 17:23:26 +0100 | [diff] [blame] | 628 | struct rb_node *rb = |
| 629 | rb_next(&request->signaling.node); |
Chris Wilson | cced5e2 | 2017-02-23 07:44:15 +0000 | [diff] [blame] | 630 | rcu_assign_pointer(b->first_signal, |
| 631 | rb ? to_signaler(rb) : NULL); |
Chris Wilson | b385085 | 2016-07-01 17:23:26 +0100 | [diff] [blame] | 632 | } |
| 633 | rb_erase(&request->signaling.node, &b->signals); |
Chris Wilson | 9eb143b | 2017-02-23 07:44:16 +0000 | [diff] [blame] | 634 | RB_CLEAR_NODE(&request->signaling.node); |
| 635 | |
Chris Wilson | 61d3dc7 | 2017-03-03 19:08:24 +0000 | [diff] [blame] | 636 | spin_unlock_irq(&b->rb_lock); |
Chris Wilson | c81d461 | 2016-07-01 17:23:25 +0100 | [diff] [blame] | 637 | |
Chris Wilson | e8a261e | 2016-07-20 13:31:49 +0100 | [diff] [blame] | 638 | i915_gem_request_put(request); |
Chris Wilson | a7980a6 | 2017-04-04 13:05:31 +0100 | [diff] [blame] | 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)) { |
Chris Wilson | d6a2289 | 2017-02-23 07:44:17 +0000 | [diff] [blame] | 651 | DEFINE_WAIT(exec); |
| 652 | |
Chris Wilson | b1becb8 | 2017-04-03 11:51:24 +0100 | [diff] [blame] | 653 | if (kthread_should_park()) |
| 654 | kthread_parkme(); |
| 655 | |
Chris Wilson | cced5e2 | 2017-02-23 07:44:15 +0000 | [diff] [blame] | 656 | if (kthread_should_stop()) { |
| 657 | GEM_BUG_ON(request); |
Chris Wilson | c81d461 | 2016-07-01 17:23:25 +0100 | [diff] [blame] | 658 | break; |
Chris Wilson | cced5e2 | 2017-02-23 07:44:15 +0000 | [diff] [blame] | 659 | } |
Chris Wilson | c81d461 | 2016-07-01 17:23:25 +0100 | [diff] [blame] | 660 | |
Chris Wilson | d6a2289 | 2017-02-23 07:44:17 +0000 | [diff] [blame] | 661 | if (request) |
| 662 | add_wait_queue(&request->execute, &exec); |
| 663 | |
Chris Wilson | c81d461 | 2016-07-01 17:23:25 +0100 | [diff] [blame] | 664 | schedule(); |
Chris Wilson | fe3288b | 2017-02-12 17:20:01 +0000 | [diff] [blame] | 665 | |
Chris Wilson | d6a2289 | 2017-02-23 07:44:17 +0000 | [diff] [blame] | 666 | if (request) |
| 667 | remove_wait_queue(&request->execute, &exec); |
Chris Wilson | c81d461 | 2016-07-01 17:23:25 +0100 | [diff] [blame] | 668 | } |
Chris Wilson | cced5e2 | 2017-02-23 07:44:15 +0000 | [diff] [blame] | 669 | i915_gem_request_put(request); |
Chris Wilson | c81d461 | 2016-07-01 17:23:25 +0100 | [diff] [blame] | 670 | } while (1); |
| 671 | __set_current_state(TASK_RUNNING); |
| 672 | |
| 673 | return 0; |
| 674 | } |
| 675 | |
Chris Wilson | f7b02a5 | 2017-04-26 09:06:59 +0100 | [diff] [blame] | 676 | void intel_engine_enable_signaling(struct drm_i915_gem_request *request, |
| 677 | bool wakeup) |
Chris Wilson | c81d461 | 2016-07-01 17:23:25 +0100 | [diff] [blame] | 678 | { |
| 679 | struct intel_engine_cs *engine = request->engine; |
| 680 | struct intel_breadcrumbs *b = &engine->breadcrumbs; |
Chris Wilson | 754c9fd | 2017-02-23 07:44:14 +0000 | [diff] [blame] | 681 | u32 seqno; |
Chris Wilson | c81d461 | 2016-07-01 17:23:25 +0100 | [diff] [blame] | 682 | |
Chris Wilson | f6168e3 | 2016-10-28 13:58:55 +0100 | [diff] [blame] | 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, |
Chris Wilson | a6b0a141 | 2017-03-15 22:22:59 +0000 | [diff] [blame] | 686 | * we need to make sure that all other users of b->rb_lock protect |
Chris Wilson | f6168e3 | 2016-10-28 13:58:55 +0100 | [diff] [blame] | 687 | * against interrupts, i.e. use spin_lock_irqsave. |
| 688 | */ |
| 689 | |
| 690 | /* locked by dma_fence_enable_sw_signaling() (irqsafe fence->lock) */ |
Chris Wilson | e60a870 | 2017-03-02 11:51:30 +0000 | [diff] [blame] | 691 | GEM_BUG_ON(!irqs_disabled()); |
Chris Wilson | 6752041 | 2017-03-02 13:28:01 +0000 | [diff] [blame] | 692 | lockdep_assert_held(&request->lock); |
Chris Wilson | 754c9fd | 2017-02-23 07:44:14 +0000 | [diff] [blame] | 693 | |
| 694 | seqno = i915_gem_request_global_seqno(request); |
| 695 | if (!seqno) |
Chris Wilson | 65e4760 | 2016-10-28 13:58:49 +0100 | [diff] [blame] | 696 | return; |
Chris Wilson | c81d461 | 2016-07-01 17:23:25 +0100 | [diff] [blame] | 697 | |
Chris Wilson | b385085 | 2016-07-01 17:23:26 +0100 | [diff] [blame] | 698 | request->signaling.wait.tsk = b->signaler; |
Chris Wilson | 56299fb | 2017-02-27 20:58:48 +0000 | [diff] [blame] | 699 | request->signaling.wait.request = request; |
Chris Wilson | 754c9fd | 2017-02-23 07:44:14 +0000 | [diff] [blame] | 700 | request->signaling.wait.seqno = seqno; |
Chris Wilson | e8a261e | 2016-07-20 13:31:49 +0100 | [diff] [blame] | 701 | i915_gem_request_get(request); |
Chris Wilson | c81d461 | 2016-07-01 17:23:25 +0100 | [diff] [blame] | 702 | |
Chris Wilson | 61d3dc7 | 2017-03-03 19:08:24 +0000 | [diff] [blame] | 703 | spin_lock(&b->rb_lock); |
Chris Wilson | 4a50d20 | 2016-07-26 12:01:50 +0100 | [diff] [blame] | 704 | |
Chris Wilson | c81d461 | 2016-07-01 17:23:25 +0100 | [diff] [blame] | 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 | */ |
Chris Wilson | f7b02a5 | 2017-04-26 09:06:59 +0100 | [diff] [blame] | 713 | wakeup &= __intel_engine_add_wait(engine, &request->signaling.wait); |
Chris Wilson | c81d461 | 2016-07-01 17:23:25 +0100 | [diff] [blame] | 714 | |
Chris Wilson | 735e0eb | 2017-06-08 12:14:04 +0100 | [diff] [blame^] | 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 | } |
Chris Wilson | c81d461 | 2016-07-01 17:23:25 +0100 | [diff] [blame] | 735 | } |
Chris Wilson | 735e0eb | 2017-06-08 12:14:04 +0100 | [diff] [blame^] | 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; |
Chris Wilson | c81d461 | 2016-07-01 17:23:25 +0100 | [diff] [blame] | 744 | } |
Chris Wilson | b385085 | 2016-07-01 17:23:26 +0100 | [diff] [blame] | 745 | |
Chris Wilson | 61d3dc7 | 2017-03-03 19:08:24 +0000 | [diff] [blame] | 746 | spin_unlock(&b->rb_lock); |
Chris Wilson | c81d461 | 2016-07-01 17:23:25 +0100 | [diff] [blame] | 747 | |
| 748 | if (wakeup) |
| 749 | wake_up_process(b->signaler); |
Chris Wilson | c81d461 | 2016-07-01 17:23:25 +0100 | [diff] [blame] | 750 | } |
| 751 | |
Chris Wilson | 9eb143b | 2017-02-23 07:44:16 +0000 | [diff] [blame] | 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 | |
Chris Wilson | e60a870 | 2017-03-02 11:51:30 +0000 | [diff] [blame] | 757 | GEM_BUG_ON(!irqs_disabled()); |
Chris Wilson | 6752041 | 2017-03-02 13:28:01 +0000 | [diff] [blame] | 758 | lockdep_assert_held(&request->lock); |
Chris Wilson | 9eb143b | 2017-02-23 07:44:16 +0000 | [diff] [blame] | 759 | GEM_BUG_ON(!request->signaling.wait.seqno); |
| 760 | |
Chris Wilson | 61d3dc7 | 2017-03-03 19:08:24 +0000 | [diff] [blame] | 761 | spin_lock(&b->rb_lock); |
Chris Wilson | 9eb143b | 2017-02-23 07:44:16 +0000 | [diff] [blame] | 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 | |
Chris Wilson | 61d3dc7 | 2017-03-03 19:08:24 +0000 | [diff] [blame] | 777 | spin_unlock(&b->rb_lock); |
Chris Wilson | 9eb143b | 2017-02-23 07:44:16 +0000 | [diff] [blame] | 778 | |
| 779 | request->signaling.wait.seqno = 0; |
| 780 | } |
| 781 | |
Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 782 | int intel_engine_init_breadcrumbs(struct intel_engine_cs *engine) |
| 783 | { |
| 784 | struct intel_breadcrumbs *b = &engine->breadcrumbs; |
Chris Wilson | c81d461 | 2016-07-01 17:23:25 +0100 | [diff] [blame] | 785 | struct task_struct *tsk; |
Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 786 | |
Chris Wilson | 61d3dc7 | 2017-03-03 19:08:24 +0000 | [diff] [blame] | 787 | spin_lock_init(&b->rb_lock); |
| 788 | spin_lock_init(&b->irq_lock); |
| 789 | |
Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 790 | setup_timer(&b->fake_irq, |
| 791 | intel_breadcrumbs_fake_irq, |
| 792 | (unsigned long)engine); |
Chris Wilson | 83348ba | 2016-08-09 17:47:51 +0100 | [diff] [blame] | 793 | setup_timer(&b->hangcheck, |
| 794 | intel_breadcrumbs_hangcheck, |
| 795 | (unsigned long)engine); |
Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 796 | |
Chris Wilson | c81d461 | 2016-07-01 17:23:25 +0100 | [diff] [blame] | 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 | |
Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 810 | return 0; |
| 811 | } |
| 812 | |
Chris Wilson | ad07dfc | 2016-10-07 07:53:26 +0100 | [diff] [blame] | 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); |
Chris Wilson | 61d3dc7 | 2017-03-03 19:08:24 +0000 | [diff] [blame] | 827 | spin_lock_irq(&b->irq_lock); |
Chris Wilson | ad07dfc | 2016-10-07 07:53:26 +0100 | [diff] [blame] | 828 | |
Chris Wilson | 67b807a8 | 2017-02-27 20:58:50 +0000 | [diff] [blame] | 829 | if (b->irq_enabled) |
| 830 | irq_enable(engine); |
| 831 | else |
Chris Wilson | ad07dfc | 2016-10-07 07:53:26 +0100 | [diff] [blame] | 832 | irq_disable(engine); |
Chris Wilson | 67b807a8 | 2017-02-27 20:58:50 +0000 | [diff] [blame] | 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); |
Chris Wilson | ad07dfc | 2016-10-07 07:53:26 +0100 | [diff] [blame] | 845 | |
Chris Wilson | 61d3dc7 | 2017-03-03 19:08:24 +0000 | [diff] [blame] | 846 | spin_unlock_irq(&b->irq_lock); |
Chris Wilson | ad07dfc | 2016-10-07 07:53:26 +0100 | [diff] [blame] | 847 | } |
| 848 | |
Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 849 | void intel_engine_fini_breadcrumbs(struct intel_engine_cs *engine) |
| 850 | { |
| 851 | struct intel_breadcrumbs *b = &engine->breadcrumbs; |
| 852 | |
Chris Wilson | 381744f | 2016-11-21 11:07:59 +0000 | [diff] [blame] | 853 | /* The engines should be idle and all requests accounted for! */ |
Chris Wilson | 61d3dc7 | 2017-03-03 19:08:24 +0000 | [diff] [blame] | 854 | WARN_ON(READ_ONCE(b->irq_wait)); |
Chris Wilson | 381744f | 2016-11-21 11:07:59 +0000 | [diff] [blame] | 855 | WARN_ON(!RB_EMPTY_ROOT(&b->waiters)); |
Chris Wilson | cced5e2 | 2017-02-23 07:44:15 +0000 | [diff] [blame] | 856 | WARN_ON(rcu_access_pointer(b->first_signal)); |
Chris Wilson | 381744f | 2016-11-21 11:07:59 +0000 | [diff] [blame] | 857 | WARN_ON(!RB_EMPTY_ROOT(&b->signals)); |
| 858 | |
Chris Wilson | c81d461 | 2016-07-01 17:23:25 +0100 | [diff] [blame] | 859 | if (!IS_ERR_OR_NULL(b->signaler)) |
| 860 | kthread_stop(b->signaler); |
| 861 | |
Chris Wilson | ad07dfc | 2016-10-07 07:53:26 +0100 | [diff] [blame] | 862 | cancel_fake_irq(engine); |
Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 863 | } |
| 864 | |
Chris Wilson | 9b6586a | 2017-02-23 07:44:08 +0000 | [diff] [blame] | 865 | bool intel_breadcrumbs_busy(struct intel_engine_cs *engine) |
Chris Wilson | c81d461 | 2016-07-01 17:23:25 +0100 | [diff] [blame] | 866 | { |
Chris Wilson | 9b6586a | 2017-02-23 07:44:08 +0000 | [diff] [blame] | 867 | struct intel_breadcrumbs *b = &engine->breadcrumbs; |
| 868 | bool busy = false; |
Chris Wilson | c81d461 | 2016-07-01 17:23:25 +0100 | [diff] [blame] | 869 | |
Chris Wilson | 61d3dc7 | 2017-03-03 19:08:24 +0000 | [diff] [blame] | 870 | spin_lock_irq(&b->rb_lock); |
Chris Wilson | 6a5d1db | 2016-11-08 14:37:19 +0000 | [diff] [blame] | 871 | |
Chris Wilson | 61d3dc7 | 2017-03-03 19:08:24 +0000 | [diff] [blame] | 872 | if (b->irq_wait) { |
| 873 | wake_up_process(b->irq_wait->tsk); |
Chris Wilson | 4bd6639 | 2017-03-15 21:07:22 +0000 | [diff] [blame] | 874 | busy = true; |
Chris Wilson | c81d461 | 2016-07-01 17:23:25 +0100 | [diff] [blame] | 875 | } |
| 876 | |
Chris Wilson | cced5e2 | 2017-02-23 07:44:15 +0000 | [diff] [blame] | 877 | if (rcu_access_pointer(b->first_signal)) { |
Chris Wilson | 9b6586a | 2017-02-23 07:44:08 +0000 | [diff] [blame] | 878 | wake_up_process(b->signaler); |
Chris Wilson | 4bd6639 | 2017-03-15 21:07:22 +0000 | [diff] [blame] | 879 | busy = true; |
Chris Wilson | 9b6586a | 2017-02-23 07:44:08 +0000 | [diff] [blame] | 880 | } |
| 881 | |
Chris Wilson | 61d3dc7 | 2017-03-03 19:08:24 +0000 | [diff] [blame] | 882 | spin_unlock_irq(&b->rb_lock); |
Chris Wilson | 9b6586a | 2017-02-23 07:44:08 +0000 | [diff] [blame] | 883 | |
| 884 | return busy; |
Chris Wilson | c81d461 | 2016-07-01 17:23:25 +0100 | [diff] [blame] | 885 | } |
Chris Wilson | f97fbf9 | 2017-02-13 17:15:14 +0000 | [diff] [blame] | 886 | |
| 887 | #if IS_ENABLED(CONFIG_DRM_I915_SELFTEST) |
| 888 | #include "selftests/intel_breadcrumbs.c" |
| 889 | #endif |