Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright © 2008-2015 Intel Corporation |
| 3 | * |
| 4 | * Permission is hereby granted, free of charge, to any person obtaining a |
| 5 | * copy of this software and associated documentation files (the "Software"), |
| 6 | * to deal in the Software without restriction, including without limitation |
| 7 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| 8 | * and/or sell copies of the Software, and to permit persons to whom the |
| 9 | * Software is furnished to do so, subject to the following conditions: |
| 10 | * |
| 11 | * The above copyright notice and this permission notice (including the next |
| 12 | * paragraph) shall be included in all copies or substantial portions of the |
| 13 | * Software. |
| 14 | * |
| 15 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 16 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 17 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 18 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 19 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
| 20 | * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS |
| 21 | * IN THE SOFTWARE. |
| 22 | * |
| 23 | */ |
| 24 | |
Chris Wilson | fa545cb | 2016-08-04 07:52:35 +0100 | [diff] [blame] | 25 | #include <linux/prefetch.h> |
Chris Wilson | b52992c | 2016-10-28 13:58:24 +0100 | [diff] [blame] | 26 | #include <linux/dma-fence-array.h> |
Ingo Molnar | e601757 | 2017-02-01 16:36:40 +0100 | [diff] [blame] | 27 | #include <linux/sched.h> |
| 28 | #include <linux/sched/clock.h> |
Ingo Molnar | f361bf4 | 2017-02-03 23:47:37 +0100 | [diff] [blame] | 29 | #include <linux/sched/signal.h> |
Chris Wilson | fa545cb | 2016-08-04 07:52:35 +0100 | [diff] [blame] | 30 | |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 31 | #include "i915_drv.h" |
| 32 | |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 33 | static const char *i915_fence_get_driver_name(struct dma_fence *fence) |
Chris Wilson | 0476965 | 2016-07-20 09:21:11 +0100 | [diff] [blame] | 34 | { |
| 35 | return "i915"; |
| 36 | } |
| 37 | |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 38 | static const char *i915_fence_get_timeline_name(struct dma_fence *fence) |
Chris Wilson | 0476965 | 2016-07-20 09:21:11 +0100 | [diff] [blame] | 39 | { |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 40 | /* |
| 41 | * The timeline struct (as part of the ppgtt underneath a context) |
Chris Wilson | 05506b5 | 2017-03-30 12:16:14 +0100 | [diff] [blame] | 42 | * may be freed when the request is no longer in use by the GPU. |
| 43 | * We could extend the life of a context to beyond that of all |
| 44 | * fences, possibly keeping the hw resource around indefinitely, |
| 45 | * or we just give them a false name. Since |
| 46 | * dma_fence_ops.get_timeline_name is a debug feature, the occasional |
| 47 | * lie seems justifiable. |
| 48 | */ |
| 49 | if (test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &fence->flags)) |
| 50 | return "signaled"; |
| 51 | |
Chris Wilson | 73cb970 | 2016-10-28 13:58:46 +0100 | [diff] [blame] | 52 | return to_request(fence)->timeline->common->name; |
Chris Wilson | 0476965 | 2016-07-20 09:21:11 +0100 | [diff] [blame] | 53 | } |
| 54 | |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 55 | static bool i915_fence_signaled(struct dma_fence *fence) |
Chris Wilson | 0476965 | 2016-07-20 09:21:11 +0100 | [diff] [blame] | 56 | { |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 57 | return i915_request_completed(to_request(fence)); |
Chris Wilson | 0476965 | 2016-07-20 09:21:11 +0100 | [diff] [blame] | 58 | } |
| 59 | |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 60 | static bool i915_fence_enable_signaling(struct dma_fence *fence) |
Chris Wilson | 0476965 | 2016-07-20 09:21:11 +0100 | [diff] [blame] | 61 | { |
| 62 | if (i915_fence_signaled(fence)) |
| 63 | return false; |
| 64 | |
Chris Wilson | f7b02a5 | 2017-04-26 09:06:59 +0100 | [diff] [blame] | 65 | intel_engine_enable_signaling(to_request(fence), true); |
Chris Wilson | 9f90ff3 | 2017-06-08 12:14:02 +0100 | [diff] [blame] | 66 | return !i915_fence_signaled(fence); |
Chris Wilson | 0476965 | 2016-07-20 09:21:11 +0100 | [diff] [blame] | 67 | } |
| 68 | |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 69 | static signed long i915_fence_wait(struct dma_fence *fence, |
Chris Wilson | 0476965 | 2016-07-20 09:21:11 +0100 | [diff] [blame] | 70 | bool interruptible, |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 71 | signed long timeout) |
Chris Wilson | 0476965 | 2016-07-20 09:21:11 +0100 | [diff] [blame] | 72 | { |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 73 | return i915_request_wait(to_request(fence), interruptible, timeout); |
Chris Wilson | 0476965 | 2016-07-20 09:21:11 +0100 | [diff] [blame] | 74 | } |
| 75 | |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 76 | static void i915_fence_release(struct dma_fence *fence) |
Chris Wilson | 0476965 | 2016-07-20 09:21:11 +0100 | [diff] [blame] | 77 | { |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 78 | struct i915_request *rq = to_request(fence); |
Chris Wilson | 0476965 | 2016-07-20 09:21:11 +0100 | [diff] [blame] | 79 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 80 | /* |
| 81 | * The request is put onto a RCU freelist (i.e. the address |
Chris Wilson | fc15840 | 2016-11-25 13:17:18 +0000 | [diff] [blame] | 82 | * is immediately reused), mark the fences as being freed now. |
| 83 | * Otherwise the debugobjects for the fences are only marked as |
| 84 | * freed when the slab cache itself is freed, and so we would get |
| 85 | * caught trying to reuse dead objects. |
| 86 | */ |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 87 | i915_sw_fence_fini(&rq->submit); |
Chris Wilson | fc15840 | 2016-11-25 13:17:18 +0000 | [diff] [blame] | 88 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 89 | kmem_cache_free(rq->i915->requests, rq); |
Chris Wilson | 0476965 | 2016-07-20 09:21:11 +0100 | [diff] [blame] | 90 | } |
| 91 | |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 92 | const struct dma_fence_ops i915_fence_ops = { |
Chris Wilson | 0476965 | 2016-07-20 09:21:11 +0100 | [diff] [blame] | 93 | .get_driver_name = i915_fence_get_driver_name, |
| 94 | .get_timeline_name = i915_fence_get_timeline_name, |
| 95 | .enable_signaling = i915_fence_enable_signaling, |
| 96 | .signaled = i915_fence_signaled, |
| 97 | .wait = i915_fence_wait, |
| 98 | .release = i915_fence_release, |
Chris Wilson | 0476965 | 2016-07-20 09:21:11 +0100 | [diff] [blame] | 99 | }; |
| 100 | |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 101 | static inline void |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 102 | i915_request_remove_from_client(struct i915_request *request) |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 103 | { |
Chris Wilson | c8659ef | 2017-03-02 12:25:25 +0000 | [diff] [blame] | 104 | struct drm_i915_file_private *file_priv; |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 105 | |
Chris Wilson | c8659ef | 2017-03-02 12:25:25 +0000 | [diff] [blame] | 106 | file_priv = request->file_priv; |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 107 | if (!file_priv) |
| 108 | return; |
| 109 | |
| 110 | spin_lock(&file_priv->mm.lock); |
Chris Wilson | c8659ef | 2017-03-02 12:25:25 +0000 | [diff] [blame] | 111 | if (request->file_priv) { |
| 112 | list_del(&request->client_link); |
| 113 | request->file_priv = NULL; |
| 114 | } |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 115 | spin_unlock(&file_priv->mm.lock); |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 116 | } |
| 117 | |
Chris Wilson | 52e5420 | 2016-11-14 20:41:02 +0000 | [diff] [blame] | 118 | static struct i915_dependency * |
| 119 | i915_dependency_alloc(struct drm_i915_private *i915) |
| 120 | { |
| 121 | return kmem_cache_alloc(i915->dependencies, GFP_KERNEL); |
| 122 | } |
| 123 | |
| 124 | static void |
| 125 | i915_dependency_free(struct drm_i915_private *i915, |
| 126 | struct i915_dependency *dep) |
| 127 | { |
| 128 | kmem_cache_free(i915->dependencies, dep); |
| 129 | } |
| 130 | |
| 131 | static void |
| 132 | __i915_priotree_add_dependency(struct i915_priotree *pt, |
| 133 | struct i915_priotree *signal, |
| 134 | struct i915_dependency *dep, |
| 135 | unsigned long flags) |
| 136 | { |
Chris Wilson | 20311bd | 2016-11-14 20:41:03 +0000 | [diff] [blame] | 137 | INIT_LIST_HEAD(&dep->dfs_link); |
Chris Wilson | 52e5420 | 2016-11-14 20:41:02 +0000 | [diff] [blame] | 138 | list_add(&dep->wait_link, &signal->waiters_list); |
| 139 | list_add(&dep->signal_link, &pt->signalers_list); |
| 140 | dep->signaler = signal; |
| 141 | dep->flags = flags; |
| 142 | } |
| 143 | |
| 144 | static int |
| 145 | i915_priotree_add_dependency(struct drm_i915_private *i915, |
| 146 | struct i915_priotree *pt, |
| 147 | struct i915_priotree *signal) |
| 148 | { |
| 149 | struct i915_dependency *dep; |
| 150 | |
| 151 | dep = i915_dependency_alloc(i915); |
| 152 | if (!dep) |
| 153 | return -ENOMEM; |
| 154 | |
| 155 | __i915_priotree_add_dependency(pt, signal, dep, I915_DEPENDENCY_ALLOC); |
| 156 | return 0; |
| 157 | } |
| 158 | |
| 159 | static void |
| 160 | i915_priotree_fini(struct drm_i915_private *i915, struct i915_priotree *pt) |
| 161 | { |
| 162 | struct i915_dependency *dep, *next; |
| 163 | |
Chris Wilson | 6c06757 | 2017-05-17 13:10:03 +0100 | [diff] [blame] | 164 | GEM_BUG_ON(!list_empty(&pt->link)); |
Chris Wilson | 20311bd | 2016-11-14 20:41:03 +0000 | [diff] [blame] | 165 | |
Chris Wilson | 83cc84c | 2018-01-02 15:12:25 +0000 | [diff] [blame] | 166 | /* |
| 167 | * Everyone we depended upon (the fences we wait to be signaled) |
Chris Wilson | 52e5420 | 2016-11-14 20:41:02 +0000 | [diff] [blame] | 168 | * should retire before us and remove themselves from our list. |
| 169 | * However, retirement is run independently on each timeline and |
| 170 | * so we may be called out-of-order. |
| 171 | */ |
| 172 | list_for_each_entry_safe(dep, next, &pt->signalers_list, signal_link) { |
Chris Wilson | 83cc84c | 2018-01-02 15:12:25 +0000 | [diff] [blame] | 173 | GEM_BUG_ON(!i915_priotree_signaled(dep->signaler)); |
| 174 | GEM_BUG_ON(!list_empty(&dep->dfs_link)); |
| 175 | |
Chris Wilson | 52e5420 | 2016-11-14 20:41:02 +0000 | [diff] [blame] | 176 | list_del(&dep->wait_link); |
| 177 | if (dep->flags & I915_DEPENDENCY_ALLOC) |
| 178 | i915_dependency_free(i915, dep); |
| 179 | } |
| 180 | |
| 181 | /* Remove ourselves from everyone who depends upon us */ |
| 182 | list_for_each_entry_safe(dep, next, &pt->waiters_list, wait_link) { |
Chris Wilson | 83cc84c | 2018-01-02 15:12:25 +0000 | [diff] [blame] | 183 | GEM_BUG_ON(dep->signaler != pt); |
| 184 | GEM_BUG_ON(!list_empty(&dep->dfs_link)); |
| 185 | |
Chris Wilson | 52e5420 | 2016-11-14 20:41:02 +0000 | [diff] [blame] | 186 | list_del(&dep->signal_link); |
| 187 | if (dep->flags & I915_DEPENDENCY_ALLOC) |
| 188 | i915_dependency_free(i915, dep); |
| 189 | } |
| 190 | } |
| 191 | |
| 192 | static void |
| 193 | i915_priotree_init(struct i915_priotree *pt) |
| 194 | { |
| 195 | INIT_LIST_HEAD(&pt->signalers_list); |
| 196 | INIT_LIST_HEAD(&pt->waiters_list); |
Chris Wilson | 6c06757 | 2017-05-17 13:10:03 +0100 | [diff] [blame] | 197 | INIT_LIST_HEAD(&pt->link); |
Chris Wilson | 7d1ea60 | 2017-09-28 20:39:00 +0100 | [diff] [blame] | 198 | pt->priority = I915_PRIORITY_INVALID; |
Chris Wilson | 52e5420 | 2016-11-14 20:41:02 +0000 | [diff] [blame] | 199 | } |
| 200 | |
Chris Wilson | 12d3173 | 2017-02-23 07:44:09 +0000 | [diff] [blame] | 201 | static int reset_all_global_seqno(struct drm_i915_private *i915, u32 seqno) |
| 202 | { |
Chris Wilson | 12d3173 | 2017-02-23 07:44:09 +0000 | [diff] [blame] | 203 | struct intel_engine_cs *engine; |
| 204 | enum intel_engine_id id; |
| 205 | int ret; |
| 206 | |
| 207 | /* Carefully retire all requests without writing to the rings */ |
| 208 | ret = i915_gem_wait_for_idle(i915, |
| 209 | I915_WAIT_INTERRUPTIBLE | |
| 210 | I915_WAIT_LOCKED); |
| 211 | if (ret) |
| 212 | return ret; |
| 213 | |
Chris Wilson | 12d3173 | 2017-02-23 07:44:09 +0000 | [diff] [blame] | 214 | /* If the seqno wraps around, we need to clear the breadcrumb rbtree */ |
| 215 | for_each_engine(engine, i915, id) { |
Chris Wilson | ae351be | 2017-03-30 15:50:41 +0100 | [diff] [blame] | 216 | struct i915_gem_timeline *timeline; |
| 217 | struct intel_timeline *tl = engine->timeline; |
Chris Wilson | 12d3173 | 2017-02-23 07:44:09 +0000 | [diff] [blame] | 218 | |
| 219 | if (!i915_seqno_passed(seqno, tl->seqno)) { |
| 220 | /* spin until threads are complete */ |
| 221 | while (intel_breadcrumbs_busy(engine)) |
| 222 | cond_resched(); |
| 223 | } |
| 224 | |
Chris Wilson | 4d53568 | 2017-07-21 13:32:26 +0100 | [diff] [blame] | 225 | /* Check we are idle before we fiddle with hw state! */ |
| 226 | GEM_BUG_ON(!intel_engine_is_idle(engine)); |
| 227 | GEM_BUG_ON(i915_gem_active_isset(&engine->timeline->last_request)); |
| 228 | |
Chris Wilson | 12d3173 | 2017-02-23 07:44:09 +0000 | [diff] [blame] | 229 | /* Finally reset hw state */ |
Chris Wilson | 12d3173 | 2017-02-23 07:44:09 +0000 | [diff] [blame] | 230 | intel_engine_init_global_seqno(engine, seqno); |
Chris Wilson | 2ca9faa | 2017-04-05 16:30:54 +0100 | [diff] [blame] | 231 | tl->seqno = seqno; |
Chris Wilson | 12d3173 | 2017-02-23 07:44:09 +0000 | [diff] [blame] | 232 | |
Chris Wilson | ae351be | 2017-03-30 15:50:41 +0100 | [diff] [blame] | 233 | list_for_each_entry(timeline, &i915->gt.timelines, link) |
Chris Wilson | 7e8894e | 2017-05-03 10:39:22 +0100 | [diff] [blame] | 234 | memset(timeline->engine[id].global_sync, 0, |
| 235 | sizeof(timeline->engine[id].global_sync)); |
Chris Wilson | 12d3173 | 2017-02-23 07:44:09 +0000 | [diff] [blame] | 236 | } |
| 237 | |
| 238 | return 0; |
| 239 | } |
| 240 | |
| 241 | int i915_gem_set_global_seqno(struct drm_device *dev, u32 seqno) |
| 242 | { |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 243 | struct drm_i915_private *i915 = to_i915(dev); |
Chris Wilson | 12d3173 | 2017-02-23 07:44:09 +0000 | [diff] [blame] | 244 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 245 | lockdep_assert_held(&i915->drm.struct_mutex); |
Chris Wilson | 12d3173 | 2017-02-23 07:44:09 +0000 | [diff] [blame] | 246 | |
| 247 | if (seqno == 0) |
| 248 | return -EINVAL; |
| 249 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 250 | /* HWS page needs to be set less than what we will inject to ring */ |
| 251 | return reset_all_global_seqno(i915, seqno - 1); |
Chris Wilson | 12d3173 | 2017-02-23 07:44:09 +0000 | [diff] [blame] | 252 | } |
| 253 | |
Chris Wilson | 636918f | 2017-08-17 15:47:19 +0100 | [diff] [blame] | 254 | static void mark_busy(struct drm_i915_private *i915) |
Chris Wilson | 12d3173 | 2017-02-23 07:44:09 +0000 | [diff] [blame] | 255 | { |
Chris Wilson | 636918f | 2017-08-17 15:47:19 +0100 | [diff] [blame] | 256 | if (i915->gt.awake) |
| 257 | return; |
| 258 | |
| 259 | GEM_BUG_ON(!i915->gt.active_requests); |
| 260 | |
| 261 | intel_runtime_pm_get_noresume(i915); |
Tvrtko Ursulin | b687637 | 2017-12-05 13:28:54 +0000 | [diff] [blame] | 262 | |
| 263 | /* |
| 264 | * It seems that the DMC likes to transition between the DC states a lot |
| 265 | * when there are no connected displays (no active power domains) during |
| 266 | * command submission. |
| 267 | * |
| 268 | * This activity has negative impact on the performance of the chip with |
| 269 | * huge latencies observed in the interrupt handler and elsewhere. |
| 270 | * |
| 271 | * Work around it by grabbing a GT IRQ power domain whilst there is any |
| 272 | * GT activity, preventing any DC state transitions. |
| 273 | */ |
| 274 | intel_display_power_get(i915, POWER_DOMAIN_GT_IRQ); |
| 275 | |
Chris Wilson | 636918f | 2017-08-17 15:47:19 +0100 | [diff] [blame] | 276 | i915->gt.awake = true; |
Chris Wilson | 6f56103 | 2018-01-24 11:36:07 +0000 | [diff] [blame] | 277 | if (unlikely(++i915->gt.epoch == 0)) /* keep 0 as invalid */ |
| 278 | i915->gt.epoch = 1; |
Chris Wilson | 636918f | 2017-08-17 15:47:19 +0100 | [diff] [blame] | 279 | |
| 280 | intel_enable_gt_powersave(i915); |
| 281 | i915_update_gfx_val(i915); |
| 282 | if (INTEL_GEN(i915) >= 6) |
| 283 | gen6_rps_busy(i915); |
Tvrtko Ursulin | feff0dc | 2017-11-21 18:18:46 +0000 | [diff] [blame] | 284 | i915_pmu_gt_unparked(i915); |
Chris Wilson | 636918f | 2017-08-17 15:47:19 +0100 | [diff] [blame] | 285 | |
Chris Wilson | aba5e27 | 2017-10-25 15:39:41 +0100 | [diff] [blame] | 286 | intel_engines_unpark(i915); |
| 287 | |
Chris Wilson | 8892304 | 2018-01-29 14:41:04 +0000 | [diff] [blame] | 288 | i915_queue_hangcheck(i915); |
| 289 | |
Chris Wilson | 636918f | 2017-08-17 15:47:19 +0100 | [diff] [blame] | 290 | queue_delayed_work(i915->wq, |
| 291 | &i915->gt.retire_work, |
| 292 | round_jiffies_up_relative(HZ)); |
| 293 | } |
| 294 | |
| 295 | static int reserve_engine(struct intel_engine_cs *engine) |
| 296 | { |
| 297 | struct drm_i915_private *i915 = engine->i915; |
Chris Wilson | 12d3173 | 2017-02-23 07:44:09 +0000 | [diff] [blame] | 298 | u32 active = ++engine->timeline->inflight_seqnos; |
| 299 | u32 seqno = engine->timeline->seqno; |
| 300 | int ret; |
| 301 | |
| 302 | /* Reservation is fine until we need to wrap around */ |
Chris Wilson | 636918f | 2017-08-17 15:47:19 +0100 | [diff] [blame] | 303 | if (unlikely(add_overflows(seqno, active))) { |
| 304 | ret = reset_all_global_seqno(i915, 0); |
| 305 | if (ret) { |
| 306 | engine->timeline->inflight_seqnos--; |
| 307 | return ret; |
| 308 | } |
Chris Wilson | 12d3173 | 2017-02-23 07:44:09 +0000 | [diff] [blame] | 309 | } |
| 310 | |
Chris Wilson | 636918f | 2017-08-17 15:47:19 +0100 | [diff] [blame] | 311 | if (!i915->gt.active_requests++) |
| 312 | mark_busy(i915); |
| 313 | |
Chris Wilson | 12d3173 | 2017-02-23 07:44:09 +0000 | [diff] [blame] | 314 | return 0; |
| 315 | } |
| 316 | |
Chris Wilson | 636918f | 2017-08-17 15:47:19 +0100 | [diff] [blame] | 317 | static void unreserve_engine(struct intel_engine_cs *engine) |
Chris Wilson | 9b6586a | 2017-02-23 07:44:08 +0000 | [diff] [blame] | 318 | { |
Chris Wilson | 636918f | 2017-08-17 15:47:19 +0100 | [diff] [blame] | 319 | struct drm_i915_private *i915 = engine->i915; |
| 320 | |
| 321 | if (!--i915->gt.active_requests) { |
| 322 | /* Cancel the mark_busy() from our reserve_engine() */ |
| 323 | GEM_BUG_ON(!i915->gt.awake); |
| 324 | mod_delayed_work(i915->wq, |
| 325 | &i915->gt.idle_work, |
| 326 | msecs_to_jiffies(100)); |
| 327 | } |
| 328 | |
Chris Wilson | 9b6586a | 2017-02-23 07:44:08 +0000 | [diff] [blame] | 329 | GEM_BUG_ON(!engine->timeline->inflight_seqnos); |
| 330 | engine->timeline->inflight_seqnos--; |
| 331 | } |
| 332 | |
Chris Wilson | fa545cb | 2016-08-04 07:52:35 +0100 | [diff] [blame] | 333 | void i915_gem_retire_noop(struct i915_gem_active *active, |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 334 | struct i915_request *request) |
Chris Wilson | fa545cb | 2016-08-04 07:52:35 +0100 | [diff] [blame] | 335 | { |
| 336 | /* Space left intentionally blank */ |
| 337 | } |
| 338 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 339 | static void advance_ring(struct i915_request *request) |
Chris Wilson | cbb60b4 | 2017-04-06 18:00:28 +0100 | [diff] [blame] | 340 | { |
| 341 | unsigned int tail; |
| 342 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 343 | /* |
| 344 | * We know the GPU must have read the request to have |
Chris Wilson | cbb60b4 | 2017-04-06 18:00:28 +0100 | [diff] [blame] | 345 | * sent us the seqno + interrupt, so use the position |
| 346 | * of tail of the request to update the last known position |
| 347 | * of the GPU head. |
| 348 | * |
| 349 | * Note this requires that we are always called in request |
| 350 | * completion order. |
| 351 | */ |
Chris Wilson | e6ba999 | 2017-04-25 14:00:49 +0100 | [diff] [blame] | 352 | if (list_is_last(&request->ring_link, &request->ring->request_list)) { |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 353 | /* |
| 354 | * We may race here with execlists resubmitting this request |
Chris Wilson | e6ba999 | 2017-04-25 14:00:49 +0100 | [diff] [blame] | 355 | * as we retire it. The resubmission will move the ring->tail |
| 356 | * forwards (to request->wa_tail). We either read the |
| 357 | * current value that was written to hw, or the value that |
| 358 | * is just about to be. Either works, if we miss the last two |
| 359 | * noops - they are safe to be replayed on a reset. |
| 360 | */ |
| 361 | tail = READ_ONCE(request->ring->tail); |
| 362 | } else { |
Chris Wilson | cbb60b4 | 2017-04-06 18:00:28 +0100 | [diff] [blame] | 363 | tail = request->postfix; |
Chris Wilson | e6ba999 | 2017-04-25 14:00:49 +0100 | [diff] [blame] | 364 | } |
Chris Wilson | cbb60b4 | 2017-04-06 18:00:28 +0100 | [diff] [blame] | 365 | list_del(&request->ring_link); |
| 366 | |
| 367 | request->ring->head = tail; |
| 368 | } |
| 369 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 370 | static void free_capture_list(struct i915_request *request) |
Chris Wilson | b0fd47a | 2017-04-15 10:39:02 +0100 | [diff] [blame] | 371 | { |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 372 | struct i915_capture_list *capture; |
Chris Wilson | b0fd47a | 2017-04-15 10:39:02 +0100 | [diff] [blame] | 373 | |
| 374 | capture = request->capture_list; |
| 375 | while (capture) { |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 376 | struct i915_capture_list *next = capture->next; |
Chris Wilson | b0fd47a | 2017-04-15 10:39:02 +0100 | [diff] [blame] | 377 | |
| 378 | kfree(capture); |
| 379 | capture = next; |
| 380 | } |
| 381 | } |
| 382 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 383 | static void i915_request_retire(struct i915_request *request) |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 384 | { |
Chris Wilson | e8a9c58 | 2016-12-18 15:37:20 +0000 | [diff] [blame] | 385 | struct intel_engine_cs *engine = request->engine; |
Chris Wilson | fa545cb | 2016-08-04 07:52:35 +0100 | [diff] [blame] | 386 | struct i915_gem_active *active, *next; |
| 387 | |
Chris Wilson | 4c7d62c | 2016-10-28 13:58:32 +0100 | [diff] [blame] | 388 | lockdep_assert_held(&request->i915->drm.struct_mutex); |
Chris Wilson | 48bc2a4 | 2016-11-25 13:17:17 +0000 | [diff] [blame] | 389 | GEM_BUG_ON(!i915_sw_fence_signaled(&request->submit)); |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 390 | GEM_BUG_ON(!i915_request_completed(request)); |
Chris Wilson | 4302055 | 2016-11-15 16:46:20 +0000 | [diff] [blame] | 391 | GEM_BUG_ON(!request->i915->gt.active_requests); |
Chris Wilson | 4c7d62c | 2016-10-28 13:58:32 +0100 | [diff] [blame] | 392 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 393 | trace_i915_request_retire(request); |
Chris Wilson | 80b204b | 2016-10-28 13:58:58 +0100 | [diff] [blame] | 394 | |
Chris Wilson | e8a9c58 | 2016-12-18 15:37:20 +0000 | [diff] [blame] | 395 | spin_lock_irq(&engine->timeline->lock); |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 396 | list_del_init(&request->link); |
Chris Wilson | e8a9c58 | 2016-12-18 15:37:20 +0000 | [diff] [blame] | 397 | spin_unlock_irq(&engine->timeline->lock); |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 398 | |
Chris Wilson | 636918f | 2017-08-17 15:47:19 +0100 | [diff] [blame] | 399 | unreserve_engine(request->engine); |
Chris Wilson | cbb60b4 | 2017-04-06 18:00:28 +0100 | [diff] [blame] | 400 | advance_ring(request); |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 401 | |
Chris Wilson | b0fd47a | 2017-04-15 10:39:02 +0100 | [diff] [blame] | 402 | free_capture_list(request); |
| 403 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 404 | /* |
| 405 | * Walk through the active list, calling retire on each. This allows |
Chris Wilson | fa545cb | 2016-08-04 07:52:35 +0100 | [diff] [blame] | 406 | * objects to track their GPU activity and mark themselves as idle |
| 407 | * when their *last* active request is completed (updating state |
| 408 | * tracking lists for eviction, active references for GEM, etc). |
| 409 | * |
| 410 | * As the ->retire() may free the node, we decouple it first and |
| 411 | * pass along the auxiliary information (to avoid dereferencing |
| 412 | * the node after the callback). |
| 413 | */ |
| 414 | list_for_each_entry_safe(active, next, &request->active_list, link) { |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 415 | /* |
| 416 | * In microbenchmarks or focusing upon time inside the kernel, |
Chris Wilson | fa545cb | 2016-08-04 07:52:35 +0100 | [diff] [blame] | 417 | * we may spend an inordinate amount of time simply handling |
| 418 | * the retirement of requests and processing their callbacks. |
| 419 | * Of which, this loop itself is particularly hot due to the |
| 420 | * cache misses when jumping around the list of i915_gem_active. |
| 421 | * So we try to keep this loop as streamlined as possible and |
| 422 | * also prefetch the next i915_gem_active to try and hide |
| 423 | * the likely cache miss. |
| 424 | */ |
| 425 | prefetchw(next); |
| 426 | |
| 427 | INIT_LIST_HEAD(&active->link); |
Chris Wilson | 0eafec6 | 2016-08-04 16:32:41 +0100 | [diff] [blame] | 428 | RCU_INIT_POINTER(active->request, NULL); |
Chris Wilson | fa545cb | 2016-08-04 07:52:35 +0100 | [diff] [blame] | 429 | |
| 430 | active->retire(active, request); |
| 431 | } |
| 432 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 433 | i915_request_remove_from_client(request); |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 434 | |
Mika Kuoppala | e5e1fc4 | 2016-11-16 17:20:31 +0200 | [diff] [blame] | 435 | /* Retirement decays the ban score as it is a sign of ctx progress */ |
Chris Wilson | 77b25a9 | 2017-07-21 13:32:30 +0100 | [diff] [blame] | 436 | atomic_dec_if_positive(&request->ctx->ban_score); |
Mika Kuoppala | e5e1fc4 | 2016-11-16 17:20:31 +0200 | [diff] [blame] | 437 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 438 | /* |
| 439 | * The backing object for the context is done after switching to the |
Chris Wilson | e8a9c58 | 2016-12-18 15:37:20 +0000 | [diff] [blame] | 440 | * *next* context. Therefore we cannot retire the previous context until |
| 441 | * the next context has already started running. However, since we |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 442 | * cannot take the required locks at i915_request_submit() we |
Chris Wilson | e8a9c58 | 2016-12-18 15:37:20 +0000 | [diff] [blame] | 443 | * defer the unpinning of the active context to now, retirement of |
| 444 | * the subsequent request. |
| 445 | */ |
| 446 | if (engine->last_retired_context) |
| 447 | engine->context_unpin(engine, engine->last_retired_context); |
| 448 | engine->last_retired_context = request->ctx; |
Chris Wilson | d07f0e5 | 2016-10-28 13:58:44 +0100 | [diff] [blame] | 449 | |
Chris Wilson | 7b92c1b | 2017-06-28 13:35:48 +0100 | [diff] [blame] | 450 | spin_lock_irq(&request->lock); |
Chris Wilson | b7a3f33 | 2018-02-03 10:19:14 +0000 | [diff] [blame] | 451 | if (!test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &request->fence.flags)) |
| 452 | dma_fence_signal_locked(&request->fence); |
| 453 | if (test_bit(DMA_FENCE_FLAG_ENABLE_SIGNAL_BIT, &request->fence.flags)) |
| 454 | intel_engine_cancel_signaling(request); |
Chris Wilson | 253a281 | 2018-02-06 14:31:37 +0000 | [diff] [blame] | 455 | if (request->waitboost) { |
| 456 | GEM_BUG_ON(!atomic_read(&request->i915->gt_pm.rps.num_waiters)); |
| 457 | atomic_dec(&request->i915->gt_pm.rps.num_waiters); |
| 458 | } |
Chris Wilson | 7b92c1b | 2017-06-28 13:35:48 +0100 | [diff] [blame] | 459 | spin_unlock_irq(&request->lock); |
Chris Wilson | 52e5420 | 2016-11-14 20:41:02 +0000 | [diff] [blame] | 460 | |
| 461 | i915_priotree_fini(request->i915, &request->priotree); |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 462 | i915_request_put(request); |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 463 | } |
| 464 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 465 | void i915_request_retire_upto(struct i915_request *rq) |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 466 | { |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 467 | struct intel_engine_cs *engine = rq->engine; |
| 468 | struct i915_request *tmp; |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 469 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 470 | lockdep_assert_held(&rq->i915->drm.struct_mutex); |
| 471 | GEM_BUG_ON(!i915_request_completed(rq)); |
Chris Wilson | 4ffd6e0 | 2016-11-25 13:17:15 +0000 | [diff] [blame] | 472 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 473 | if (list_empty(&rq->link)) |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 474 | return; |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 475 | |
| 476 | do { |
Chris Wilson | 73cb970 | 2016-10-28 13:58:46 +0100 | [diff] [blame] | 477 | tmp = list_first_entry(&engine->timeline->requests, |
Chris Wilson | efdf7c0 | 2016-08-04 07:52:33 +0100 | [diff] [blame] | 478 | typeof(*tmp), link); |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 479 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 480 | i915_request_retire(tmp); |
| 481 | } while (tmp != rq); |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 482 | } |
| 483 | |
Chris Wilson | 9b6586a | 2017-02-23 07:44:08 +0000 | [diff] [blame] | 484 | static u32 timeline_get_seqno(struct intel_timeline *tl) |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 485 | { |
Chris Wilson | 9b6586a | 2017-02-23 07:44:08 +0000 | [diff] [blame] | 486 | return ++tl->seqno; |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 487 | } |
| 488 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 489 | void __i915_request_submit(struct i915_request *request) |
Chris Wilson | 5590af3 | 2016-09-09 14:11:54 +0100 | [diff] [blame] | 490 | { |
Chris Wilson | 73cb970 | 2016-10-28 13:58:46 +0100 | [diff] [blame] | 491 | struct intel_engine_cs *engine = request->engine; |
Chris Wilson | f2d1329 | 2016-10-28 13:58:57 +0100 | [diff] [blame] | 492 | struct intel_timeline *timeline; |
| 493 | u32 seqno; |
Chris Wilson | 5590af3 | 2016-09-09 14:11:54 +0100 | [diff] [blame] | 494 | |
Chris Wilson | e60a870 | 2017-03-02 11:51:30 +0000 | [diff] [blame] | 495 | GEM_BUG_ON(!irqs_disabled()); |
Chris Wilson | 6752041 | 2017-03-02 13:28:01 +0000 | [diff] [blame] | 496 | lockdep_assert_held(&engine->timeline->lock); |
Chris Wilson | e60a870 | 2017-03-02 11:51:30 +0000 | [diff] [blame] | 497 | |
Chris Wilson | 80b204b | 2016-10-28 13:58:58 +0100 | [diff] [blame] | 498 | /* Transfer from per-context onto the global per-engine timeline */ |
| 499 | timeline = engine->timeline; |
| 500 | GEM_BUG_ON(timeline == request->timeline); |
Chris Wilson | 2d453c7 | 2017-12-22 14:19:59 +0000 | [diff] [blame] | 501 | GEM_BUG_ON(request->global_seqno); |
Chris Wilson | 5590af3 | 2016-09-09 14:11:54 +0100 | [diff] [blame] | 502 | |
Chris Wilson | 9b6586a | 2017-02-23 07:44:08 +0000 | [diff] [blame] | 503 | seqno = timeline_get_seqno(timeline); |
Chris Wilson | f2d1329 | 2016-10-28 13:58:57 +0100 | [diff] [blame] | 504 | GEM_BUG_ON(!seqno); |
| 505 | GEM_BUG_ON(i915_seqno_passed(intel_engine_get_seqno(engine), seqno)); |
| 506 | |
Chris Wilson | f2d1329 | 2016-10-28 13:58:57 +0100 | [diff] [blame] | 507 | /* We may be recursing from the signal callback of another i915 fence */ |
| 508 | spin_lock_nested(&request->lock, SINGLE_DEPTH_NESTING); |
| 509 | request->global_seqno = seqno; |
| 510 | if (test_bit(DMA_FENCE_FLAG_ENABLE_SIGNAL_BIT, &request->fence.flags)) |
Chris Wilson | f7b02a5 | 2017-04-26 09:06:59 +0100 | [diff] [blame] | 511 | intel_engine_enable_signaling(request, false); |
Chris Wilson | f2d1329 | 2016-10-28 13:58:57 +0100 | [diff] [blame] | 512 | spin_unlock(&request->lock); |
| 513 | |
Chris Wilson | caddfe7 | 2016-10-28 13:58:52 +0100 | [diff] [blame] | 514 | engine->emit_breadcrumb(request, |
| 515 | request->ring->vaddr + request->postfix); |
Chris Wilson | 5590af3 | 2016-09-09 14:11:54 +0100 | [diff] [blame] | 516 | |
Chris Wilson | bb89485 | 2016-11-14 20:40:57 +0000 | [diff] [blame] | 517 | spin_lock(&request->timeline->lock); |
Chris Wilson | 80b204b | 2016-10-28 13:58:58 +0100 | [diff] [blame] | 518 | list_move_tail(&request->link, &timeline->requests); |
| 519 | spin_unlock(&request->timeline->lock); |
| 520 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 521 | trace_i915_request_execute(request); |
Tvrtko Ursulin | 158863f | 2018-02-20 10:47:42 +0000 | [diff] [blame] | 522 | |
Chris Wilson | fe49789 | 2017-02-23 07:44:13 +0000 | [diff] [blame] | 523 | wake_up_all(&request->execute); |
Chris Wilson | d55ac5b | 2016-11-14 20:40:59 +0000 | [diff] [blame] | 524 | } |
Chris Wilson | 23902e4 | 2016-11-14 20:40:58 +0000 | [diff] [blame] | 525 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 526 | void i915_request_submit(struct i915_request *request) |
Chris Wilson | d55ac5b | 2016-11-14 20:40:59 +0000 | [diff] [blame] | 527 | { |
| 528 | struct intel_engine_cs *engine = request->engine; |
| 529 | unsigned long flags; |
| 530 | |
| 531 | /* Will be called from irq-context when using foreign fences. */ |
| 532 | spin_lock_irqsave(&engine->timeline->lock, flags); |
| 533 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 534 | __i915_request_submit(request); |
Chris Wilson | d55ac5b | 2016-11-14 20:40:59 +0000 | [diff] [blame] | 535 | |
| 536 | spin_unlock_irqrestore(&engine->timeline->lock, flags); |
| 537 | } |
| 538 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 539 | void __i915_request_unsubmit(struct i915_request *request) |
Chris Wilson | d6a2289 | 2017-02-23 07:44:17 +0000 | [diff] [blame] | 540 | { |
| 541 | struct intel_engine_cs *engine = request->engine; |
| 542 | struct intel_timeline *timeline; |
| 543 | |
Chris Wilson | e60a870 | 2017-03-02 11:51:30 +0000 | [diff] [blame] | 544 | GEM_BUG_ON(!irqs_disabled()); |
Chris Wilson | 6752041 | 2017-03-02 13:28:01 +0000 | [diff] [blame] | 545 | lockdep_assert_held(&engine->timeline->lock); |
Chris Wilson | d6a2289 | 2017-02-23 07:44:17 +0000 | [diff] [blame] | 546 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 547 | /* |
| 548 | * Only unwind in reverse order, required so that the per-context list |
Chris Wilson | d6a2289 | 2017-02-23 07:44:17 +0000 | [diff] [blame] | 549 | * is kept in seqno/ring order. |
| 550 | */ |
Chris Wilson | 2d453c7 | 2017-12-22 14:19:59 +0000 | [diff] [blame] | 551 | GEM_BUG_ON(!request->global_seqno); |
Chris Wilson | d6a2289 | 2017-02-23 07:44:17 +0000 | [diff] [blame] | 552 | GEM_BUG_ON(request->global_seqno != engine->timeline->seqno); |
Chris Wilson | c7cc144 | 2018-01-29 09:49:12 +0000 | [diff] [blame] | 553 | GEM_BUG_ON(i915_seqno_passed(intel_engine_get_seqno(engine), |
| 554 | request->global_seqno)); |
Chris Wilson | d6a2289 | 2017-02-23 07:44:17 +0000 | [diff] [blame] | 555 | engine->timeline->seqno--; |
| 556 | |
| 557 | /* We may be recursing from the signal callback of another i915 fence */ |
| 558 | spin_lock_nested(&request->lock, SINGLE_DEPTH_NESTING); |
| 559 | request->global_seqno = 0; |
| 560 | if (test_bit(DMA_FENCE_FLAG_ENABLE_SIGNAL_BIT, &request->fence.flags)) |
| 561 | intel_engine_cancel_signaling(request); |
| 562 | spin_unlock(&request->lock); |
| 563 | |
| 564 | /* Transfer back from the global per-engine timeline to per-context */ |
| 565 | timeline = request->timeline; |
| 566 | GEM_BUG_ON(timeline == engine->timeline); |
| 567 | |
| 568 | spin_lock(&timeline->lock); |
| 569 | list_move(&request->link, &timeline->requests); |
| 570 | spin_unlock(&timeline->lock); |
| 571 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 572 | /* |
| 573 | * We don't need to wake_up any waiters on request->execute, they |
Chris Wilson | d6a2289 | 2017-02-23 07:44:17 +0000 | [diff] [blame] | 574 | * will get woken by any other event or us re-adding this request |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 575 | * to the engine timeline (__i915_request_submit()). The waiters |
Chris Wilson | d6a2289 | 2017-02-23 07:44:17 +0000 | [diff] [blame] | 576 | * should be quite adapt at finding that the request now has a new |
| 577 | * global_seqno to the one they went to sleep on. |
| 578 | */ |
| 579 | } |
| 580 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 581 | void i915_request_unsubmit(struct i915_request *request) |
Chris Wilson | d6a2289 | 2017-02-23 07:44:17 +0000 | [diff] [blame] | 582 | { |
| 583 | struct intel_engine_cs *engine = request->engine; |
| 584 | unsigned long flags; |
| 585 | |
| 586 | /* Will be called from irq-context when using foreign fences. */ |
| 587 | spin_lock_irqsave(&engine->timeline->lock, flags); |
| 588 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 589 | __i915_request_unsubmit(request); |
Chris Wilson | d6a2289 | 2017-02-23 07:44:17 +0000 | [diff] [blame] | 590 | |
| 591 | spin_unlock_irqrestore(&engine->timeline->lock, flags); |
| 592 | } |
| 593 | |
Chris Wilson | d55ac5b | 2016-11-14 20:40:59 +0000 | [diff] [blame] | 594 | static int __i915_sw_fence_call |
| 595 | submit_notify(struct i915_sw_fence *fence, enum i915_sw_fence_notify state) |
| 596 | { |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 597 | struct i915_request *request = |
Chris Wilson | 48bc2a4 | 2016-11-25 13:17:17 +0000 | [diff] [blame] | 598 | container_of(fence, typeof(*request), submit); |
Chris Wilson | d55ac5b | 2016-11-14 20:40:59 +0000 | [diff] [blame] | 599 | |
Chris Wilson | 48bc2a4 | 2016-11-25 13:17:17 +0000 | [diff] [blame] | 600 | switch (state) { |
| 601 | case FENCE_COMPLETE: |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 602 | trace_i915_request_submit(request); |
Daniel Vetter | af7a8ff | 2017-10-11 11:10:19 +0200 | [diff] [blame] | 603 | /* |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 604 | * We need to serialize use of the submit_request() callback |
| 605 | * with its hotplugging performed during an emergency |
| 606 | * i915_gem_set_wedged(). We use the RCU mechanism to mark the |
| 607 | * critical section in order to force i915_gem_set_wedged() to |
| 608 | * wait until the submit_request() is completed before |
| 609 | * proceeding. |
Daniel Vetter | af7a8ff | 2017-10-11 11:10:19 +0200 | [diff] [blame] | 610 | */ |
| 611 | rcu_read_lock(); |
Chris Wilson | d55ac5b | 2016-11-14 20:40:59 +0000 | [diff] [blame] | 612 | request->engine->submit_request(request); |
Daniel Vetter | af7a8ff | 2017-10-11 11:10:19 +0200 | [diff] [blame] | 613 | rcu_read_unlock(); |
Chris Wilson | 48bc2a4 | 2016-11-25 13:17:17 +0000 | [diff] [blame] | 614 | break; |
| 615 | |
| 616 | case FENCE_FREE: |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 617 | i915_request_put(request); |
Chris Wilson | 48bc2a4 | 2016-11-25 13:17:17 +0000 | [diff] [blame] | 618 | break; |
Chris Wilson | d55ac5b | 2016-11-14 20:40:59 +0000 | [diff] [blame] | 619 | } |
Chris Wilson | 80b204b | 2016-10-28 13:58:58 +0100 | [diff] [blame] | 620 | |
Chris Wilson | 5590af3 | 2016-09-09 14:11:54 +0100 | [diff] [blame] | 621 | return NOTIFY_DONE; |
| 622 | } |
| 623 | |
Chris Wilson | 8e63717 | 2016-08-02 22:50:26 +0100 | [diff] [blame] | 624 | /** |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 625 | * i915_request_alloc - allocate a request structure |
Chris Wilson | 8e63717 | 2016-08-02 22:50:26 +0100 | [diff] [blame] | 626 | * |
| 627 | * @engine: engine that we wish to issue the request on. |
| 628 | * @ctx: context that the request will be associated with. |
Chris Wilson | 8e63717 | 2016-08-02 22:50:26 +0100 | [diff] [blame] | 629 | * |
| 630 | * Returns a pointer to the allocated request if successful, |
| 631 | * or an error code if not. |
| 632 | */ |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 633 | struct i915_request * |
| 634 | i915_request_alloc(struct intel_engine_cs *engine, struct i915_gem_context *ctx) |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 635 | { |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 636 | struct drm_i915_private *i915 = engine->i915; |
| 637 | struct i915_request *rq; |
Chris Wilson | 266a240 | 2017-05-04 10:33:08 +0100 | [diff] [blame] | 638 | struct intel_ring *ring; |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 639 | int ret; |
| 640 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 641 | lockdep_assert_held(&i915->drm.struct_mutex); |
Chris Wilson | 28176ef | 2016-10-28 13:58:56 +0100 | [diff] [blame] | 642 | |
Chris Wilson | e7af311 | 2017-10-03 21:34:48 +0100 | [diff] [blame] | 643 | /* |
| 644 | * Preempt contexts are reserved for exclusive use to inject a |
| 645 | * preemption context switch. They are never to be used for any trivial |
| 646 | * request! |
| 647 | */ |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 648 | GEM_BUG_ON(ctx == i915->preempt_context); |
Chris Wilson | e7af311 | 2017-10-03 21:34:48 +0100 | [diff] [blame] | 649 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 650 | /* |
| 651 | * ABI: Before userspace accesses the GPU (e.g. execbuffer), report |
Chris Wilson | 6ffb7d0 | 2017-01-14 16:23:33 +0000 | [diff] [blame] | 652 | * EIO if the GPU is already wedged. |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 653 | */ |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 654 | if (i915_terminally_wedged(&i915->gpu_error)) |
Chris Wilson | 6ffb7d0 | 2017-01-14 16:23:33 +0000 | [diff] [blame] | 655 | return ERR_PTR(-EIO); |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 656 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 657 | /* |
| 658 | * Pinning the contexts may generate requests in order to acquire |
Chris Wilson | e8a9c58 | 2016-12-18 15:37:20 +0000 | [diff] [blame] | 659 | * GGTT space, so do this first before we reserve a seqno for |
| 660 | * ourselves. |
| 661 | */ |
Chris Wilson | 266a240 | 2017-05-04 10:33:08 +0100 | [diff] [blame] | 662 | ring = engine->context_pin(engine, ctx); |
| 663 | if (IS_ERR(ring)) |
| 664 | return ERR_CAST(ring); |
| 665 | GEM_BUG_ON(!ring); |
Chris Wilson | 28176ef | 2016-10-28 13:58:56 +0100 | [diff] [blame] | 666 | |
Chris Wilson | 636918f | 2017-08-17 15:47:19 +0100 | [diff] [blame] | 667 | ret = reserve_engine(engine); |
Chris Wilson | e8a9c58 | 2016-12-18 15:37:20 +0000 | [diff] [blame] | 668 | if (ret) |
| 669 | goto err_unpin; |
| 670 | |
Chris Wilson | 3fef5cd | 2017-11-20 10:20:02 +0000 | [diff] [blame] | 671 | ret = intel_ring_wait_for_space(ring, MIN_SPACE_FOR_ADD_REQUEST); |
| 672 | if (ret) |
| 673 | goto err_unreserve; |
| 674 | |
Chris Wilson | 9b5f4e5 | 2016-07-20 09:21:09 +0100 | [diff] [blame] | 675 | /* Move the oldest request to the slab-cache (if not in use!) */ |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 676 | rq = list_first_entry_or_null(&engine->timeline->requests, |
| 677 | typeof(*rq), link); |
| 678 | if (rq && i915_request_completed(rq)) |
| 679 | i915_request_retire(rq); |
Chris Wilson | 9b5f4e5 | 2016-07-20 09:21:09 +0100 | [diff] [blame] | 680 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 681 | /* |
| 682 | * Beware: Dragons be flying overhead. |
Chris Wilson | 5a198b8 | 2016-08-09 09:23:34 +0100 | [diff] [blame] | 683 | * |
| 684 | * We use RCU to look up requests in flight. The lookups may |
| 685 | * race with the request being allocated from the slab freelist. |
| 686 | * That is the request we are writing to here, may be in the process |
Chris Wilson | 1426f71 | 2016-08-09 17:03:22 +0100 | [diff] [blame] | 687 | * of being read by __i915_gem_active_get_rcu(). As such, |
Chris Wilson | 5a198b8 | 2016-08-09 09:23:34 +0100 | [diff] [blame] | 688 | * we have to be very careful when overwriting the contents. During |
| 689 | * the RCU lookup, we change chase the request->engine pointer, |
Chris Wilson | 65e4760 | 2016-10-28 13:58:49 +0100 | [diff] [blame] | 690 | * read the request->global_seqno and increment the reference count. |
Chris Wilson | 5a198b8 | 2016-08-09 09:23:34 +0100 | [diff] [blame] | 691 | * |
| 692 | * The reference count is incremented atomically. If it is zero, |
| 693 | * the lookup knows the request is unallocated and complete. Otherwise, |
| 694 | * it is either still in use, or has been reallocated and reset |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 695 | * with dma_fence_init(). This increment is safe for release as we |
| 696 | * check that the request we have a reference to and matches the active |
Chris Wilson | 5a198b8 | 2016-08-09 09:23:34 +0100 | [diff] [blame] | 697 | * request. |
| 698 | * |
| 699 | * Before we increment the refcount, we chase the request->engine |
| 700 | * pointer. We must not call kmem_cache_zalloc() or else we set |
| 701 | * that pointer to NULL and cause a crash during the lookup. If |
| 702 | * we see the request is completed (based on the value of the |
| 703 | * old engine and seqno), the lookup is complete and reports NULL. |
| 704 | * If we decide the request is not completed (new engine or seqno), |
| 705 | * then we grab a reference and double check that it is still the |
| 706 | * active request - which it won't be and restart the lookup. |
| 707 | * |
| 708 | * Do not use kmem_cache_zalloc() here! |
| 709 | */ |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 710 | rq = kmem_cache_alloc(i915->requests, |
| 711 | GFP_KERNEL | __GFP_RETRY_MAYFAIL | __GFP_NOWARN); |
| 712 | if (unlikely(!rq)) { |
Chris Wilson | 31c70f9 | 2017-12-12 18:06:52 +0000 | [diff] [blame] | 713 | /* Ratelimit ourselves to prevent oom from malicious clients */ |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 714 | ret = i915_gem_wait_for_idle(i915, |
Chris Wilson | 31c70f9 | 2017-12-12 18:06:52 +0000 | [diff] [blame] | 715 | I915_WAIT_LOCKED | |
| 716 | I915_WAIT_INTERRUPTIBLE); |
| 717 | if (ret) |
| 718 | goto err_unreserve; |
| 719 | |
Chris Wilson | f0111b0 | 2018-01-19 14:46:57 +0000 | [diff] [blame] | 720 | /* |
| 721 | * We've forced the client to stall and catch up with whatever |
| 722 | * backlog there might have been. As we are assuming that we |
| 723 | * caused the mempressure, now is an opportune time to |
| 724 | * recover as much memory from the request pool as is possible. |
| 725 | * Having already penalized the client to stall, we spend |
| 726 | * a little extra time to re-optimise page allocation. |
| 727 | */ |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 728 | kmem_cache_shrink(i915->requests); |
Chris Wilson | f0111b0 | 2018-01-19 14:46:57 +0000 | [diff] [blame] | 729 | rcu_barrier(); /* Recover the TYPESAFE_BY_RCU pages */ |
| 730 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 731 | rq = kmem_cache_alloc(i915->requests, GFP_KERNEL); |
| 732 | if (!rq) { |
Chris Wilson | 31c70f9 | 2017-12-12 18:06:52 +0000 | [diff] [blame] | 733 | ret = -ENOMEM; |
| 734 | goto err_unreserve; |
| 735 | } |
Chris Wilson | 28176ef | 2016-10-28 13:58:56 +0100 | [diff] [blame] | 736 | } |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 737 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 738 | rq->timeline = i915_gem_context_lookup_timeline(ctx, engine); |
| 739 | GEM_BUG_ON(rq->timeline == engine->timeline); |
Chris Wilson | 73cb970 | 2016-10-28 13:58:46 +0100 | [diff] [blame] | 740 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 741 | spin_lock_init(&rq->lock); |
| 742 | dma_fence_init(&rq->fence, |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 743 | &i915_fence_ops, |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 744 | &rq->lock, |
| 745 | rq->timeline->fence_context, |
| 746 | timeline_get_seqno(rq->timeline)); |
Chris Wilson | 0476965 | 2016-07-20 09:21:11 +0100 | [diff] [blame] | 747 | |
Chris Wilson | 48bc2a4 | 2016-11-25 13:17:17 +0000 | [diff] [blame] | 748 | /* We bump the ref for the fence chain */ |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 749 | i915_sw_fence_init(&i915_request_get(rq)->submit, submit_notify); |
| 750 | init_waitqueue_head(&rq->execute); |
Chris Wilson | 5590af3 | 2016-09-09 14:11:54 +0100 | [diff] [blame] | 751 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 752 | i915_priotree_init(&rq->priotree); |
Chris Wilson | 52e5420 | 2016-11-14 20:41:02 +0000 | [diff] [blame] | 753 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 754 | INIT_LIST_HEAD(&rq->active_list); |
| 755 | rq->i915 = i915; |
| 756 | rq->engine = engine; |
| 757 | rq->ctx = ctx; |
| 758 | rq->ring = ring; |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 759 | |
Chris Wilson | 5a198b8 | 2016-08-09 09:23:34 +0100 | [diff] [blame] | 760 | /* No zalloc, must clear what we need by hand */ |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 761 | rq->global_seqno = 0; |
| 762 | rq->signaling.wait.seqno = 0; |
| 763 | rq->file_priv = NULL; |
| 764 | rq->batch = NULL; |
| 765 | rq->capture_list = NULL; |
| 766 | rq->waitboost = false; |
Chris Wilson | 5a198b8 | 2016-08-09 09:23:34 +0100 | [diff] [blame] | 767 | |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 768 | /* |
| 769 | * Reserve space in the ring buffer for all the commands required to |
| 770 | * eventually emit this request. This is to guarantee that the |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 771 | * i915_request_add() call can't fail. Note that the reserve may need |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 772 | * to be redone if the request is not actually submitted straight |
| 773 | * away, e.g. because a GPU scheduler has deferred it. |
| 774 | */ |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 775 | rq->reserved_space = MIN_SPACE_FOR_ADD_REQUEST; |
| 776 | GEM_BUG_ON(rq->reserved_space < engine->emit_breadcrumb_sz); |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 777 | |
Chris Wilson | 2113184 | 2017-11-20 10:20:01 +0000 | [diff] [blame] | 778 | /* |
| 779 | * Record the position of the start of the request so that |
Chris Wilson | d045446 | 2016-08-15 10:48:40 +0100 | [diff] [blame] | 780 | * should we detect the updated seqno part-way through the |
| 781 | * GPU processing the request, we never over-estimate the |
| 782 | * position of the head. |
| 783 | */ |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 784 | rq->head = rq->ring->emit; |
Chris Wilson | d045446 | 2016-08-15 10:48:40 +0100 | [diff] [blame] | 785 | |
Chris Wilson | 2113184 | 2017-11-20 10:20:01 +0000 | [diff] [blame] | 786 | /* Unconditionally invalidate GPU caches and TLBs. */ |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 787 | ret = engine->emit_flush(rq, EMIT_INVALIDATE); |
Chris Wilson | 2113184 | 2017-11-20 10:20:01 +0000 | [diff] [blame] | 788 | if (ret) |
Chris Wilson | b1c24a6 | 2017-11-23 15:26:30 +0000 | [diff] [blame] | 789 | goto err_unwind; |
Chris Wilson | 2113184 | 2017-11-20 10:20:01 +0000 | [diff] [blame] | 790 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 791 | ret = engine->request_alloc(rq); |
Chris Wilson | b1c24a6 | 2017-11-23 15:26:30 +0000 | [diff] [blame] | 792 | if (ret) |
| 793 | goto err_unwind; |
Chris Wilson | 2113184 | 2017-11-20 10:20:01 +0000 | [diff] [blame] | 794 | |
Chris Wilson | 9b6586a | 2017-02-23 07:44:08 +0000 | [diff] [blame] | 795 | /* Check that we didn't interrupt ourselves with a new request */ |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 796 | GEM_BUG_ON(rq->timeline->seqno != rq->fence.seqno); |
| 797 | return rq; |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 798 | |
Chris Wilson | b1c24a6 | 2017-11-23 15:26:30 +0000 | [diff] [blame] | 799 | err_unwind: |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 800 | rq->ring->emit = rq->head; |
Chris Wilson | b1c24a6 | 2017-11-23 15:26:30 +0000 | [diff] [blame] | 801 | |
Chris Wilson | 1618bdb | 2016-11-25 13:17:16 +0000 | [diff] [blame] | 802 | /* Make sure we didn't add ourselves to external state before freeing */ |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 803 | GEM_BUG_ON(!list_empty(&rq->active_list)); |
| 804 | GEM_BUG_ON(!list_empty(&rq->priotree.signalers_list)); |
| 805 | GEM_BUG_ON(!list_empty(&rq->priotree.waiters_list)); |
Chris Wilson | 1618bdb | 2016-11-25 13:17:16 +0000 | [diff] [blame] | 806 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 807 | kmem_cache_free(i915->requests, rq); |
Chris Wilson | 28176ef | 2016-10-28 13:58:56 +0100 | [diff] [blame] | 808 | err_unreserve: |
Chris Wilson | 636918f | 2017-08-17 15:47:19 +0100 | [diff] [blame] | 809 | unreserve_engine(engine); |
Chris Wilson | e8a9c58 | 2016-12-18 15:37:20 +0000 | [diff] [blame] | 810 | err_unpin: |
| 811 | engine->context_unpin(engine, ctx); |
Chris Wilson | 8e63717 | 2016-08-02 22:50:26 +0100 | [diff] [blame] | 812 | return ERR_PTR(ret); |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 813 | } |
| 814 | |
Chris Wilson | a2bc469 | 2016-09-09 14:11:56 +0100 | [diff] [blame] | 815 | static int |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 816 | i915_request_await_request(struct i915_request *to, struct i915_request *from) |
Chris Wilson | a2bc469 | 2016-09-09 14:11:56 +0100 | [diff] [blame] | 817 | { |
Chris Wilson | 85e17f5 | 2016-10-28 13:58:53 +0100 | [diff] [blame] | 818 | int ret; |
Chris Wilson | a2bc469 | 2016-09-09 14:11:56 +0100 | [diff] [blame] | 819 | |
| 820 | GEM_BUG_ON(to == from); |
Chris Wilson | ceae14b | 2017-05-03 10:39:20 +0100 | [diff] [blame] | 821 | GEM_BUG_ON(to->timeline == from->timeline); |
Chris Wilson | a2bc469 | 2016-09-09 14:11:56 +0100 | [diff] [blame] | 822 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 823 | if (i915_request_completed(from)) |
Chris Wilson | ade0b0c | 2017-04-22 09:15:37 +0100 | [diff] [blame] | 824 | return 0; |
| 825 | |
Chris Wilson | 52e5420 | 2016-11-14 20:41:02 +0000 | [diff] [blame] | 826 | if (to->engine->schedule) { |
| 827 | ret = i915_priotree_add_dependency(to->i915, |
| 828 | &to->priotree, |
| 829 | &from->priotree); |
| 830 | if (ret < 0) |
| 831 | return ret; |
| 832 | } |
| 833 | |
Chris Wilson | 73cb970 | 2016-10-28 13:58:46 +0100 | [diff] [blame] | 834 | if (to->engine == from->engine) { |
| 835 | ret = i915_sw_fence_await_sw_fence_gfp(&to->submit, |
| 836 | &from->submit, |
Chris Wilson | 2abe2f8 | 2017-12-12 18:06:51 +0000 | [diff] [blame] | 837 | I915_FENCE_GFP); |
Chris Wilson | 73cb970 | 2016-10-28 13:58:46 +0100 | [diff] [blame] | 838 | return ret < 0 ? ret : 0; |
| 839 | } |
| 840 | |
Chris Wilson | 6b56708 | 2017-06-08 12:14:05 +0100 | [diff] [blame] | 841 | if (to->engine->semaphore.sync_to) { |
| 842 | u32 seqno; |
Chris Wilson | 65e4760 | 2016-10-28 13:58:49 +0100 | [diff] [blame] | 843 | |
Chris Wilson | 49f0859 | 2017-05-03 10:39:24 +0100 | [diff] [blame] | 844 | GEM_BUG_ON(!from->engine->semaphore.signal); |
| 845 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 846 | seqno = i915_request_global_seqno(from); |
Chris Wilson | 6b56708 | 2017-06-08 12:14:05 +0100 | [diff] [blame] | 847 | if (!seqno) |
| 848 | goto await_dma_fence; |
| 849 | |
Chris Wilson | fc9d4d2 | 2017-05-03 10:39:23 +0100 | [diff] [blame] | 850 | if (seqno <= to->timeline->global_sync[from->engine->id]) |
| 851 | return 0; |
| 852 | |
| 853 | trace_i915_gem_ring_sync_to(to, from); |
Chris Wilson | a2bc469 | 2016-09-09 14:11:56 +0100 | [diff] [blame] | 854 | ret = to->engine->semaphore.sync_to(to, from); |
| 855 | if (ret) |
| 856 | return ret; |
Chris Wilson | fc9d4d2 | 2017-05-03 10:39:23 +0100 | [diff] [blame] | 857 | |
| 858 | to->timeline->global_sync[from->engine->id] = seqno; |
Chris Wilson | 6b56708 | 2017-06-08 12:14:05 +0100 | [diff] [blame] | 859 | return 0; |
Chris Wilson | a2bc469 | 2016-09-09 14:11:56 +0100 | [diff] [blame] | 860 | } |
| 861 | |
Chris Wilson | fc9d4d2 | 2017-05-03 10:39:23 +0100 | [diff] [blame] | 862 | await_dma_fence: |
| 863 | ret = i915_sw_fence_await_dma_fence(&to->submit, |
| 864 | &from->fence, 0, |
Chris Wilson | 2abe2f8 | 2017-12-12 18:06:51 +0000 | [diff] [blame] | 865 | I915_FENCE_GFP); |
Chris Wilson | fc9d4d2 | 2017-05-03 10:39:23 +0100 | [diff] [blame] | 866 | return ret < 0 ? ret : 0; |
Chris Wilson | a2bc469 | 2016-09-09 14:11:56 +0100 | [diff] [blame] | 867 | } |
| 868 | |
Chris Wilson | b52992c | 2016-10-28 13:58:24 +0100 | [diff] [blame] | 869 | int |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 870 | i915_request_await_dma_fence(struct i915_request *rq, struct dma_fence *fence) |
Chris Wilson | b52992c | 2016-10-28 13:58:24 +0100 | [diff] [blame] | 871 | { |
Chris Wilson | 29ef3fa | 2017-05-03 10:39:19 +0100 | [diff] [blame] | 872 | struct dma_fence **child = &fence; |
| 873 | unsigned int nchild = 1; |
Chris Wilson | b52992c | 2016-10-28 13:58:24 +0100 | [diff] [blame] | 874 | int ret; |
Chris Wilson | b52992c | 2016-10-28 13:58:24 +0100 | [diff] [blame] | 875 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 876 | /* |
| 877 | * Note that if the fence-array was created in signal-on-any mode, |
Chris Wilson | b52992c | 2016-10-28 13:58:24 +0100 | [diff] [blame] | 878 | * we should *not* decompose it into its individual fences. However, |
| 879 | * we don't currently store which mode the fence-array is operating |
| 880 | * in. Fortunately, the only user of signal-on-any is private to |
| 881 | * amdgpu and we should not see any incoming fence-array from |
| 882 | * sync-file being in signal-on-any mode. |
| 883 | */ |
Chris Wilson | 29ef3fa | 2017-05-03 10:39:19 +0100 | [diff] [blame] | 884 | if (dma_fence_is_array(fence)) { |
| 885 | struct dma_fence_array *array = to_dma_fence_array(fence); |
Chris Wilson | b52992c | 2016-10-28 13:58:24 +0100 | [diff] [blame] | 886 | |
Chris Wilson | 29ef3fa | 2017-05-03 10:39:19 +0100 | [diff] [blame] | 887 | child = array->fences; |
| 888 | nchild = array->num_fences; |
| 889 | GEM_BUG_ON(!nchild); |
| 890 | } |
Chris Wilson | b52992c | 2016-10-28 13:58:24 +0100 | [diff] [blame] | 891 | |
Chris Wilson | 29ef3fa | 2017-05-03 10:39:19 +0100 | [diff] [blame] | 892 | do { |
| 893 | fence = *child++; |
| 894 | if (test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &fence->flags)) |
| 895 | continue; |
| 896 | |
Chris Wilson | ceae14b | 2017-05-03 10:39:20 +0100 | [diff] [blame] | 897 | /* |
| 898 | * Requests on the same timeline are explicitly ordered, along |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 899 | * with their dependencies, by i915_request_add() which ensures |
Chris Wilson | ceae14b | 2017-05-03 10:39:20 +0100 | [diff] [blame] | 900 | * that requests are submitted in-order through each ring. |
| 901 | */ |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 902 | if (fence->context == rq->fence.context) |
Chris Wilson | ceae14b | 2017-05-03 10:39:20 +0100 | [diff] [blame] | 903 | continue; |
| 904 | |
Chris Wilson | 4797948 | 2017-05-03 10:39:21 +0100 | [diff] [blame] | 905 | /* Squash repeated waits to the same timelines */ |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 906 | if (fence->context != rq->i915->mm.unordered_timeline && |
| 907 | intel_timeline_sync_is_later(rq->timeline, fence)) |
Chris Wilson | 4797948 | 2017-05-03 10:39:21 +0100 | [diff] [blame] | 908 | continue; |
| 909 | |
Chris Wilson | 29ef3fa | 2017-05-03 10:39:19 +0100 | [diff] [blame] | 910 | if (dma_fence_is_i915(fence)) |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 911 | ret = i915_request_await_request(rq, to_request(fence)); |
Chris Wilson | b52992c | 2016-10-28 13:58:24 +0100 | [diff] [blame] | 912 | else |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 913 | ret = i915_sw_fence_await_dma_fence(&rq->submit, fence, |
Chris Wilson | 29ef3fa | 2017-05-03 10:39:19 +0100 | [diff] [blame] | 914 | I915_FENCE_TIMEOUT, |
Chris Wilson | 2abe2f8 | 2017-12-12 18:06:51 +0000 | [diff] [blame] | 915 | I915_FENCE_GFP); |
Chris Wilson | b52992c | 2016-10-28 13:58:24 +0100 | [diff] [blame] | 916 | if (ret < 0) |
| 917 | return ret; |
Chris Wilson | 4797948 | 2017-05-03 10:39:21 +0100 | [diff] [blame] | 918 | |
| 919 | /* Record the latest fence used against each timeline */ |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 920 | if (fence->context != rq->i915->mm.unordered_timeline) |
| 921 | intel_timeline_sync_set(rq->timeline, fence); |
Chris Wilson | 29ef3fa | 2017-05-03 10:39:19 +0100 | [diff] [blame] | 922 | } while (--nchild); |
Chris Wilson | b52992c | 2016-10-28 13:58:24 +0100 | [diff] [blame] | 923 | |
| 924 | return 0; |
| 925 | } |
| 926 | |
Chris Wilson | a2bc469 | 2016-09-09 14:11:56 +0100 | [diff] [blame] | 927 | /** |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 928 | * i915_request_await_object - set this request to (async) wait upon a bo |
Chris Wilson | a2bc469 | 2016-09-09 14:11:56 +0100 | [diff] [blame] | 929 | * @to: request we are wishing to use |
| 930 | * @obj: object which may be in use on another ring. |
Chris Wilson | d880212 | 2018-02-08 11:14:53 +0000 | [diff] [blame] | 931 | * @write: whether the wait is on behalf of a writer |
Chris Wilson | a2bc469 | 2016-09-09 14:11:56 +0100 | [diff] [blame] | 932 | * |
| 933 | * This code is meant to abstract object synchronization with the GPU. |
| 934 | * Conceptually we serialise writes between engines inside the GPU. |
| 935 | * We only allow one engine to write into a buffer at any time, but |
| 936 | * multiple readers. To ensure each has a coherent view of memory, we must: |
| 937 | * |
| 938 | * - If there is an outstanding write request to the object, the new |
| 939 | * request must wait for it to complete (either CPU or in hw, requests |
| 940 | * on the same ring will be naturally ordered). |
| 941 | * |
| 942 | * - If we are a write request (pending_write_domain is set), the new |
| 943 | * request must wait for outstanding read requests to complete. |
| 944 | * |
| 945 | * Returns 0 if successful, else propagates up the lower layer error. |
| 946 | */ |
| 947 | int |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 948 | i915_request_await_object(struct i915_request *to, |
| 949 | struct drm_i915_gem_object *obj, |
| 950 | bool write) |
Chris Wilson | a2bc469 | 2016-09-09 14:11:56 +0100 | [diff] [blame] | 951 | { |
Chris Wilson | d07f0e5 | 2016-10-28 13:58:44 +0100 | [diff] [blame] | 952 | struct dma_fence *excl; |
| 953 | int ret = 0; |
Chris Wilson | a2bc469 | 2016-09-09 14:11:56 +0100 | [diff] [blame] | 954 | |
| 955 | if (write) { |
Chris Wilson | d07f0e5 | 2016-10-28 13:58:44 +0100 | [diff] [blame] | 956 | struct dma_fence **shared; |
| 957 | unsigned int count, i; |
Chris Wilson | a2bc469 | 2016-09-09 14:11:56 +0100 | [diff] [blame] | 958 | |
Chris Wilson | d07f0e5 | 2016-10-28 13:58:44 +0100 | [diff] [blame] | 959 | ret = reservation_object_get_fences_rcu(obj->resv, |
| 960 | &excl, &count, &shared); |
Chris Wilson | a2bc469 | 2016-09-09 14:11:56 +0100 | [diff] [blame] | 961 | if (ret) |
| 962 | return ret; |
Chris Wilson | d07f0e5 | 2016-10-28 13:58:44 +0100 | [diff] [blame] | 963 | |
| 964 | for (i = 0; i < count; i++) { |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 965 | ret = i915_request_await_dma_fence(to, shared[i]); |
Chris Wilson | d07f0e5 | 2016-10-28 13:58:44 +0100 | [diff] [blame] | 966 | if (ret) |
| 967 | break; |
| 968 | |
| 969 | dma_fence_put(shared[i]); |
| 970 | } |
| 971 | |
| 972 | for (; i < count; i++) |
| 973 | dma_fence_put(shared[i]); |
| 974 | kfree(shared); |
| 975 | } else { |
| 976 | excl = reservation_object_get_excl_rcu(obj->resv); |
Chris Wilson | a2bc469 | 2016-09-09 14:11:56 +0100 | [diff] [blame] | 977 | } |
| 978 | |
Chris Wilson | d07f0e5 | 2016-10-28 13:58:44 +0100 | [diff] [blame] | 979 | if (excl) { |
| 980 | if (ret == 0) |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 981 | ret = i915_request_await_dma_fence(to, excl); |
Chris Wilson | d07f0e5 | 2016-10-28 13:58:44 +0100 | [diff] [blame] | 982 | |
| 983 | dma_fence_put(excl); |
| 984 | } |
| 985 | |
| 986 | return ret; |
Chris Wilson | a2bc469 | 2016-09-09 14:11:56 +0100 | [diff] [blame] | 987 | } |
| 988 | |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 989 | /* |
| 990 | * NB: This function is not allowed to fail. Doing so would mean the the |
| 991 | * request is not being tracked for completion but the work itself is |
| 992 | * going to happen on the hardware. This would be a Bad Thing(tm). |
| 993 | */ |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 994 | void __i915_request_add(struct i915_request *request, bool flush_caches) |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 995 | { |
Chris Wilson | 95b2ab5 | 2016-08-15 10:48:46 +0100 | [diff] [blame] | 996 | struct intel_engine_cs *engine = request->engine; |
| 997 | struct intel_ring *ring = request->ring; |
Chris Wilson | 73cb970 | 2016-10-28 13:58:46 +0100 | [diff] [blame] | 998 | struct intel_timeline *timeline = request->timeline; |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 999 | struct i915_request *prev; |
Tvrtko Ursulin | 73dec95 | 2017-02-14 11:32:42 +0000 | [diff] [blame] | 1000 | u32 *cs; |
Chris Wilson | caddfe7 | 2016-10-28 13:58:52 +0100 | [diff] [blame] | 1001 | int err; |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1002 | |
Chris Wilson | 4c7d62c | 2016-10-28 13:58:32 +0100 | [diff] [blame] | 1003 | lockdep_assert_held(&request->i915->drm.struct_mutex); |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1004 | trace_i915_request_add(request); |
Chris Wilson | 0f25dff | 2016-09-09 14:11:55 +0100 | [diff] [blame] | 1005 | |
Chris Wilson | 8ac71d1 | 2018-02-07 08:43:50 +0000 | [diff] [blame] | 1006 | /* |
| 1007 | * Make sure that no request gazumped us - if it was allocated after |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1008 | * our i915_request_alloc() and called __i915_request_add() before |
Chris Wilson | c781c97 | 2017-01-11 14:08:58 +0000 | [diff] [blame] | 1009 | * us, the timeline will hold its seqno which is later than ours. |
| 1010 | */ |
Chris Wilson | 9b6586a | 2017-02-23 07:44:08 +0000 | [diff] [blame] | 1011 | GEM_BUG_ON(timeline->seqno != request->fence.seqno); |
Chris Wilson | c781c97 | 2017-01-11 14:08:58 +0000 | [diff] [blame] | 1012 | |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1013 | /* |
| 1014 | * To ensure that this call will not fail, space for its emissions |
| 1015 | * should already have been reserved in the ring buffer. Let the ring |
| 1016 | * know that it is time to use that space up. |
| 1017 | */ |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1018 | request->reserved_space = 0; |
| 1019 | |
| 1020 | /* |
| 1021 | * Emit any outstanding flushes - execbuf can fail to emit the flush |
| 1022 | * after having emitted the batchbuffer command. Hence we need to fix |
| 1023 | * things up similar to emitting the lazy request. The difference here |
| 1024 | * is that the flush _must_ happen before the next request, no matter |
| 1025 | * what. |
| 1026 | */ |
| 1027 | if (flush_caches) { |
Chris Wilson | caddfe7 | 2016-10-28 13:58:52 +0100 | [diff] [blame] | 1028 | err = engine->emit_flush(request, EMIT_FLUSH); |
Chris Wilson | c7fe7d2 | 2016-08-02 22:50:24 +0100 | [diff] [blame] | 1029 | |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1030 | /* Not allowed to fail! */ |
Chris Wilson | caddfe7 | 2016-10-28 13:58:52 +0100 | [diff] [blame] | 1031 | WARN(err, "engine->emit_flush() failed: %d!\n", err); |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1032 | } |
| 1033 | |
Chris Wilson | 8ac71d1 | 2018-02-07 08:43:50 +0000 | [diff] [blame] | 1034 | /* |
| 1035 | * Record the position of the start of the breadcrumb so that |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1036 | * should we detect the updated seqno part-way through the |
| 1037 | * GPU processing the request, we never over-estimate the |
Chris Wilson | d045446 | 2016-08-15 10:48:40 +0100 | [diff] [blame] | 1038 | * position of the ring's HEAD. |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1039 | */ |
Tvrtko Ursulin | 73dec95 | 2017-02-14 11:32:42 +0000 | [diff] [blame] | 1040 | cs = intel_ring_begin(request, engine->emit_breadcrumb_sz); |
| 1041 | GEM_BUG_ON(IS_ERR(cs)); |
| 1042 | request->postfix = intel_ring_offset(request, cs); |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1043 | |
Chris Wilson | 8ac71d1 | 2018-02-07 08:43:50 +0000 | [diff] [blame] | 1044 | /* |
| 1045 | * Seal the request and mark it as pending execution. Note that |
Chris Wilson | 0f25dff | 2016-09-09 14:11:55 +0100 | [diff] [blame] | 1046 | * we may inspect this state, without holding any locks, during |
| 1047 | * hangcheck. Hence we apply the barrier to ensure that we do not |
| 1048 | * see a more recent value in the hws than we are tracking. |
| 1049 | */ |
Chris Wilson | 0a046a0 | 2016-09-09 14:12:00 +0100 | [diff] [blame] | 1050 | |
Chris Wilson | 73cb970 | 2016-10-28 13:58:46 +0100 | [diff] [blame] | 1051 | prev = i915_gem_active_raw(&timeline->last_request, |
Chris Wilson | 0a046a0 | 2016-09-09 14:12:00 +0100 | [diff] [blame] | 1052 | &request->i915->drm.struct_mutex); |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1053 | if (prev && !i915_request_completed(prev)) { |
Chris Wilson | 0a046a0 | 2016-09-09 14:12:00 +0100 | [diff] [blame] | 1054 | i915_sw_fence_await_sw_fence(&request->submit, &prev->submit, |
| 1055 | &request->submitq); |
Chris Wilson | 52e5420 | 2016-11-14 20:41:02 +0000 | [diff] [blame] | 1056 | if (engine->schedule) |
| 1057 | __i915_priotree_add_dependency(&request->priotree, |
| 1058 | &prev->priotree, |
| 1059 | &request->dep, |
| 1060 | 0); |
| 1061 | } |
Chris Wilson | 0a046a0 | 2016-09-09 14:12:00 +0100 | [diff] [blame] | 1062 | |
Chris Wilson | 80b204b | 2016-10-28 13:58:58 +0100 | [diff] [blame] | 1063 | spin_lock_irq(&timeline->lock); |
Chris Wilson | f2d1329 | 2016-10-28 13:58:57 +0100 | [diff] [blame] | 1064 | list_add_tail(&request->link, &timeline->requests); |
Chris Wilson | 80b204b | 2016-10-28 13:58:58 +0100 | [diff] [blame] | 1065 | spin_unlock_irq(&timeline->lock); |
Chris Wilson | 28176ef | 2016-10-28 13:58:56 +0100 | [diff] [blame] | 1066 | |
Chris Wilson | 9b6586a | 2017-02-23 07:44:08 +0000 | [diff] [blame] | 1067 | GEM_BUG_ON(timeline->seqno != request->fence.seqno); |
Chris Wilson | 73cb970 | 2016-10-28 13:58:46 +0100 | [diff] [blame] | 1068 | i915_gem_active_set(&timeline->last_request, request); |
Chris Wilson | f2d1329 | 2016-10-28 13:58:57 +0100 | [diff] [blame] | 1069 | |
Chris Wilson | 0f25dff | 2016-09-09 14:11:55 +0100 | [diff] [blame] | 1070 | list_add_tail(&request->ring_link, &ring->request_list); |
Chris Wilson | f2d1329 | 2016-10-28 13:58:57 +0100 | [diff] [blame] | 1071 | request->emitted_jiffies = jiffies; |
Chris Wilson | 0f25dff | 2016-09-09 14:11:55 +0100 | [diff] [blame] | 1072 | |
Chris Wilson | 8ac71d1 | 2018-02-07 08:43:50 +0000 | [diff] [blame] | 1073 | /* |
| 1074 | * Let the backend know a new request has arrived that may need |
Chris Wilson | 0de9136 | 2016-11-14 20:41:01 +0000 | [diff] [blame] | 1075 | * to adjust the existing execution schedule due to a high priority |
| 1076 | * request - i.e. we may want to preempt the current request in order |
| 1077 | * to run a high priority dependency chain *before* we can execute this |
| 1078 | * request. |
| 1079 | * |
| 1080 | * This is called before the request is ready to run so that we can |
| 1081 | * decide whether to preempt the entire chain so that it is ready to |
| 1082 | * run at the earliest possible convenience. |
| 1083 | */ |
| 1084 | if (engine->schedule) |
Chris Wilson | 9f792eb | 2016-11-14 20:41:04 +0000 | [diff] [blame] | 1085 | engine->schedule(request, request->ctx->priority); |
Chris Wilson | 0de9136 | 2016-11-14 20:41:01 +0000 | [diff] [blame] | 1086 | |
Chris Wilson | 5590af3 | 2016-09-09 14:11:54 +0100 | [diff] [blame] | 1087 | local_bh_disable(); |
| 1088 | i915_sw_fence_commit(&request->submit); |
| 1089 | local_bh_enable(); /* Kick the execlists tasklet if just scheduled */ |
Chris Wilson | c22b355 | 2018-02-07 08:43:49 +0000 | [diff] [blame] | 1090 | |
| 1091 | /* |
| 1092 | * In typical scenarios, we do not expect the previous request on |
| 1093 | * the timeline to be still tracked by timeline->last_request if it |
| 1094 | * has been completed. If the completed request is still here, that |
| 1095 | * implies that request retirement is a long way behind submission, |
| 1096 | * suggesting that we haven't been retiring frequently enough from |
| 1097 | * the combination of retire-before-alloc, waiters and the background |
| 1098 | * retirement worker. So if the last request on this timeline was |
| 1099 | * already completed, do a catch up pass, flushing the retirement queue |
| 1100 | * up to this client. Since we have now moved the heaviest operations |
| 1101 | * during retirement onto secondary workers, such as freeing objects |
| 1102 | * or contexts, retiring a bunch of requests is mostly list management |
| 1103 | * (and cache misses), and so we should not be overly penalizing this |
| 1104 | * client by performing excess work, though we may still performing |
| 1105 | * work on behalf of others -- but instead we should benefit from |
| 1106 | * improved resource management. (Well, that's the theory at least.) |
| 1107 | */ |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1108 | if (prev && i915_request_completed(prev)) |
| 1109 | i915_request_retire_upto(prev); |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1110 | } |
| 1111 | |
| 1112 | static unsigned long local_clock_us(unsigned int *cpu) |
| 1113 | { |
| 1114 | unsigned long t; |
| 1115 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1116 | /* |
| 1117 | * Cheaply and approximately convert from nanoseconds to microseconds. |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1118 | * The result and subsequent calculations are also defined in the same |
| 1119 | * approximate microseconds units. The principal source of timing |
| 1120 | * error here is from the simple truncation. |
| 1121 | * |
| 1122 | * Note that local_clock() is only defined wrt to the current CPU; |
| 1123 | * the comparisons are no longer valid if we switch CPUs. Instead of |
| 1124 | * blocking preemption for the entire busywait, we can detect the CPU |
| 1125 | * switch and use that as indicator of system load and a reason to |
| 1126 | * stop busywaiting, see busywait_stop(). |
| 1127 | */ |
| 1128 | *cpu = get_cpu(); |
| 1129 | t = local_clock() >> 10; |
| 1130 | put_cpu(); |
| 1131 | |
| 1132 | return t; |
| 1133 | } |
| 1134 | |
| 1135 | static bool busywait_stop(unsigned long timeout, unsigned int cpu) |
| 1136 | { |
| 1137 | unsigned int this_cpu; |
| 1138 | |
| 1139 | if (time_after(local_clock_us(&this_cpu), timeout)) |
| 1140 | return true; |
| 1141 | |
| 1142 | return this_cpu != cpu; |
| 1143 | } |
| 1144 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1145 | static bool __i915_spin_request(const struct i915_request *rq, |
Chris Wilson | b2f2f0f | 2017-09-22 13:03:33 +0100 | [diff] [blame] | 1146 | u32 seqno, int state, unsigned long timeout_us) |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1147 | { |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1148 | struct intel_engine_cs *engine = rq->engine; |
Chris Wilson | c33ed06 | 2017-02-17 15:13:01 +0000 | [diff] [blame] | 1149 | unsigned int irq, cpu; |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1150 | |
Chris Wilson | b2f2f0f | 2017-09-22 13:03:33 +0100 | [diff] [blame] | 1151 | GEM_BUG_ON(!seqno); |
| 1152 | |
| 1153 | /* |
| 1154 | * Only wait for the request if we know it is likely to complete. |
| 1155 | * |
| 1156 | * We don't track the timestamps around requests, nor the average |
| 1157 | * request length, so we do not have a good indicator that this |
| 1158 | * request will complete within the timeout. What we do know is the |
| 1159 | * order in which requests are executed by the engine and so we can |
| 1160 | * tell if the request has started. If the request hasn't started yet, |
| 1161 | * it is a fair assumption that it will not complete within our |
| 1162 | * relatively short timeout. |
| 1163 | */ |
| 1164 | if (!i915_seqno_passed(intel_engine_get_seqno(engine), seqno - 1)) |
| 1165 | return false; |
| 1166 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1167 | /* |
| 1168 | * When waiting for high frequency requests, e.g. during synchronous |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1169 | * rendering split between the CPU and GPU, the finite amount of time |
| 1170 | * required to set up the irq and wait upon it limits the response |
| 1171 | * rate. By busywaiting on the request completion for a short while we |
| 1172 | * can service the high frequency waits as quick as possible. However, |
| 1173 | * if it is a slow request, we want to sleep as quickly as possible. |
| 1174 | * The tradeoff between waiting and sleeping is roughly the time it |
| 1175 | * takes to sleep on a request, on the order of a microsecond. |
| 1176 | */ |
| 1177 | |
Chris Wilson | c33ed06 | 2017-02-17 15:13:01 +0000 | [diff] [blame] | 1178 | irq = atomic_read(&engine->irq_count); |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1179 | timeout_us += local_clock_us(&cpu); |
| 1180 | do { |
Chris Wilson | b2f2f0f | 2017-09-22 13:03:33 +0100 | [diff] [blame] | 1181 | if (i915_seqno_passed(intel_engine_get_seqno(engine), seqno)) |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1182 | return seqno == i915_request_global_seqno(rq); |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1183 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1184 | /* |
| 1185 | * Seqno are meant to be ordered *before* the interrupt. If |
Chris Wilson | c33ed06 | 2017-02-17 15:13:01 +0000 | [diff] [blame] | 1186 | * we see an interrupt without a corresponding seqno advance, |
| 1187 | * assume we won't see one in the near future but require |
| 1188 | * the engine->seqno_barrier() to fixup coherency. |
| 1189 | */ |
| 1190 | if (atomic_read(&engine->irq_count) != irq) |
| 1191 | break; |
| 1192 | |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1193 | if (signal_pending_state(state, current)) |
| 1194 | break; |
| 1195 | |
| 1196 | if (busywait_stop(timeout_us, cpu)) |
| 1197 | break; |
| 1198 | |
Christian Borntraeger | f2f09a4 | 2016-10-25 11:03:14 +0200 | [diff] [blame] | 1199 | cpu_relax(); |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1200 | } while (!need_resched()); |
| 1201 | |
| 1202 | return false; |
| 1203 | } |
| 1204 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1205 | static bool __i915_wait_request_check_and_reset(struct i915_request *request) |
Chris Wilson | 4680816b | 2016-10-28 13:58:48 +0100 | [diff] [blame] | 1206 | { |
Chris Wilson | 8c185ec | 2017-03-16 17:13:02 +0000 | [diff] [blame] | 1207 | if (likely(!i915_reset_handoff(&request->i915->gpu_error))) |
Chris Wilson | e070511 | 2017-02-23 07:44:20 +0000 | [diff] [blame] | 1208 | return false; |
Chris Wilson | 4680816b | 2016-10-28 13:58:48 +0100 | [diff] [blame] | 1209 | |
Chris Wilson | e070511 | 2017-02-23 07:44:20 +0000 | [diff] [blame] | 1210 | __set_current_state(TASK_RUNNING); |
Chris Wilson | 535275d | 2017-07-21 13:32:37 +0100 | [diff] [blame] | 1211 | i915_reset(request->i915, 0); |
Chris Wilson | e070511 | 2017-02-23 07:44:20 +0000 | [diff] [blame] | 1212 | return true; |
Chris Wilson | 4680816b | 2016-10-28 13:58:48 +0100 | [diff] [blame] | 1213 | } |
| 1214 | |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1215 | /** |
Michel Thierry | e532be8 | 2018-02-22 09:24:05 -0800 | [diff] [blame] | 1216 | * i915_request_wait - wait until execution of request has finished |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1217 | * @rq: the request to wait upon |
Chris Wilson | ea746f3 | 2016-09-09 14:11:49 +0100 | [diff] [blame] | 1218 | * @flags: how to wait |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 1219 | * @timeout: how long to wait in jiffies |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1220 | * |
Michel Thierry | e532be8 | 2018-02-22 09:24:05 -0800 | [diff] [blame] | 1221 | * i915_request_wait() waits for the request to be completed, for a |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 1222 | * maximum of @timeout jiffies (with MAX_SCHEDULE_TIMEOUT implying an |
| 1223 | * unbounded wait). |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1224 | * |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 1225 | * If the caller holds the struct_mutex, the caller must pass I915_WAIT_LOCKED |
| 1226 | * in via the flags, and vice versa if the struct_mutex is not held, the caller |
| 1227 | * must not specify that the wait is locked. |
| 1228 | * |
| 1229 | * Returns the remaining time (in jiffies) if the request completed, which may |
| 1230 | * be zero or -ETIME if the request is unfinished after the timeout expires. |
| 1231 | * May return -EINTR is called with I915_WAIT_INTERRUPTIBLE and a signal is |
| 1232 | * pending before the request completes. |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1233 | */ |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1234 | long i915_request_wait(struct i915_request *rq, |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 1235 | unsigned int flags, |
| 1236 | long timeout) |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1237 | { |
Chris Wilson | ea746f3 | 2016-09-09 14:11:49 +0100 | [diff] [blame] | 1238 | const int state = flags & I915_WAIT_INTERRUPTIBLE ? |
| 1239 | TASK_INTERRUPTIBLE : TASK_UNINTERRUPTIBLE; |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1240 | wait_queue_head_t *errq = &rq->i915->gpu_error.wait_queue; |
Chris Wilson | a49625f | 2017-02-23 07:44:19 +0000 | [diff] [blame] | 1241 | DEFINE_WAIT_FUNC(reset, default_wake_function); |
| 1242 | DEFINE_WAIT_FUNC(exec, default_wake_function); |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1243 | struct intel_wait wait; |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1244 | |
| 1245 | might_sleep(); |
Chris Wilson | 22dd3bb | 2016-09-09 14:11:50 +0100 | [diff] [blame] | 1246 | #if IS_ENABLED(CONFIG_LOCKDEP) |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 1247 | GEM_BUG_ON(debug_locks && |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1248 | !!lockdep_is_held(&rq->i915->drm.struct_mutex) != |
Chris Wilson | 22dd3bb | 2016-09-09 14:11:50 +0100 | [diff] [blame] | 1249 | !!(flags & I915_WAIT_LOCKED)); |
| 1250 | #endif |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 1251 | GEM_BUG_ON(timeout < 0); |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1252 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1253 | if (i915_request_completed(rq)) |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 1254 | return timeout; |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1255 | |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 1256 | if (!timeout) |
| 1257 | return -ETIME; |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1258 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1259 | trace_i915_request_wait_begin(rq, flags); |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1260 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1261 | add_wait_queue(&rq->execute, &exec); |
Chris Wilson | 7de53bf | 2017-02-23 07:44:11 +0000 | [diff] [blame] | 1262 | if (flags & I915_WAIT_LOCKED) |
| 1263 | add_wait_queue(errq, &reset); |
| 1264 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1265 | intel_wait_init(&wait, rq); |
Chris Wilson | 754c9fd | 2017-02-23 07:44:14 +0000 | [diff] [blame] | 1266 | |
Chris Wilson | d6a2289 | 2017-02-23 07:44:17 +0000 | [diff] [blame] | 1267 | restart: |
Chris Wilson | 0f2f61d | 2017-02-23 07:44:22 +0000 | [diff] [blame] | 1268 | do { |
| 1269 | set_current_state(state); |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1270 | if (intel_wait_update_request(&wait, rq)) |
Chris Wilson | 0f2f61d | 2017-02-23 07:44:22 +0000 | [diff] [blame] | 1271 | break; |
Chris Wilson | 754c9fd | 2017-02-23 07:44:14 +0000 | [diff] [blame] | 1272 | |
Chris Wilson | 0f2f61d | 2017-02-23 07:44:22 +0000 | [diff] [blame] | 1273 | if (flags & I915_WAIT_LOCKED && |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1274 | __i915_wait_request_check_and_reset(rq)) |
Chris Wilson | 0f2f61d | 2017-02-23 07:44:22 +0000 | [diff] [blame] | 1275 | continue; |
Chris Wilson | 541ca6e | 2017-02-23 07:44:12 +0000 | [diff] [blame] | 1276 | |
Chris Wilson | 0f2f61d | 2017-02-23 07:44:22 +0000 | [diff] [blame] | 1277 | if (signal_pending_state(state, current)) { |
| 1278 | timeout = -ERESTARTSYS; |
Chris Wilson | 4680816b | 2016-10-28 13:58:48 +0100 | [diff] [blame] | 1279 | goto complete; |
Chris Wilson | 0f2f61d | 2017-02-23 07:44:22 +0000 | [diff] [blame] | 1280 | } |
Chris Wilson | 4680816b | 2016-10-28 13:58:48 +0100 | [diff] [blame] | 1281 | |
Chris Wilson | 0f2f61d | 2017-02-23 07:44:22 +0000 | [diff] [blame] | 1282 | if (!timeout) { |
| 1283 | timeout = -ETIME; |
| 1284 | goto complete; |
| 1285 | } |
Chris Wilson | 541ca6e | 2017-02-23 07:44:12 +0000 | [diff] [blame] | 1286 | |
Chris Wilson | 0f2f61d | 2017-02-23 07:44:22 +0000 | [diff] [blame] | 1287 | timeout = io_schedule_timeout(timeout); |
| 1288 | } while (1); |
Chris Wilson | 541ca6e | 2017-02-23 07:44:12 +0000 | [diff] [blame] | 1289 | |
Chris Wilson | 0f2f61d | 2017-02-23 07:44:22 +0000 | [diff] [blame] | 1290 | GEM_BUG_ON(!intel_wait_has_seqno(&wait)); |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1291 | GEM_BUG_ON(!i915_sw_fence_signaled(&rq->submit)); |
Chris Wilson | 4680816b | 2016-10-28 13:58:48 +0100 | [diff] [blame] | 1292 | |
Daniel Vetter | 437c308 | 2016-08-05 18:11:24 +0200 | [diff] [blame] | 1293 | /* Optimistic short spin before touching IRQs */ |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1294 | if (__i915_spin_request(rq, wait.seqno, state, 5)) |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1295 | goto complete; |
| 1296 | |
| 1297 | set_current_state(state); |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1298 | if (intel_engine_add_wait(rq->engine, &wait)) |
| 1299 | /* |
| 1300 | * In order to check that we haven't missed the interrupt |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1301 | * as we enabled it, we need to kick ourselves to do a |
| 1302 | * coherent check on the seqno before we sleep. |
| 1303 | */ |
| 1304 | goto wakeup; |
| 1305 | |
Chris Wilson | 24f417e | 2017-02-23 07:44:21 +0000 | [diff] [blame] | 1306 | if (flags & I915_WAIT_LOCKED) |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1307 | __i915_wait_request_check_and_reset(rq); |
Chris Wilson | 24f417e | 2017-02-23 07:44:21 +0000 | [diff] [blame] | 1308 | |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1309 | for (;;) { |
| 1310 | if (signal_pending_state(state, current)) { |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 1311 | timeout = -ERESTARTSYS; |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1312 | break; |
| 1313 | } |
| 1314 | |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 1315 | if (!timeout) { |
| 1316 | timeout = -ETIME; |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1317 | break; |
| 1318 | } |
| 1319 | |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 1320 | timeout = io_schedule_timeout(timeout); |
| 1321 | |
Chris Wilson | 754c9fd | 2017-02-23 07:44:14 +0000 | [diff] [blame] | 1322 | if (intel_wait_complete(&wait) && |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1323 | intel_wait_check_request(&wait, rq)) |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1324 | break; |
| 1325 | |
| 1326 | set_current_state(state); |
| 1327 | |
| 1328 | wakeup: |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1329 | /* |
| 1330 | * Carefully check if the request is complete, giving time |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1331 | * for the seqno to be visible following the interrupt. |
| 1332 | * We also have to check in case we are kicked by the GPU |
| 1333 | * reset in order to drop the struct_mutex. |
| 1334 | */ |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1335 | if (__i915_request_irq_complete(rq)) |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1336 | break; |
| 1337 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1338 | /* |
| 1339 | * If the GPU is hung, and we hold the lock, reset the GPU |
Chris Wilson | 221fe79 | 2016-09-09 14:11:51 +0100 | [diff] [blame] | 1340 | * and then check for completion. On a full reset, the engine's |
| 1341 | * HW seqno will be advanced passed us and we are complete. |
| 1342 | * If we do a partial reset, we have to wait for the GPU to |
| 1343 | * resume and update the breadcrumb. |
| 1344 | * |
| 1345 | * If we don't hold the mutex, we can just wait for the worker |
| 1346 | * to come along and update the breadcrumb (either directly |
| 1347 | * itself, or indirectly by recovering the GPU). |
| 1348 | */ |
| 1349 | if (flags & I915_WAIT_LOCKED && |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1350 | __i915_wait_request_check_and_reset(rq)) |
Chris Wilson | 221fe79 | 2016-09-09 14:11:51 +0100 | [diff] [blame] | 1351 | continue; |
Chris Wilson | 221fe79 | 2016-09-09 14:11:51 +0100 | [diff] [blame] | 1352 | |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1353 | /* Only spin if we know the GPU is processing this request */ |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1354 | if (__i915_spin_request(rq, wait.seqno, state, 2)) |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1355 | break; |
Chris Wilson | d6a2289 | 2017-02-23 07:44:17 +0000 | [diff] [blame] | 1356 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1357 | if (!intel_wait_check_request(&wait, rq)) { |
| 1358 | intel_engine_remove_wait(rq->engine, &wait); |
Chris Wilson | d6a2289 | 2017-02-23 07:44:17 +0000 | [diff] [blame] | 1359 | goto restart; |
| 1360 | } |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1361 | } |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1362 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1363 | intel_engine_remove_wait(rq->engine, &wait); |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1364 | complete: |
Chris Wilson | a49625f | 2017-02-23 07:44:19 +0000 | [diff] [blame] | 1365 | __set_current_state(TASK_RUNNING); |
Chris Wilson | 7de53bf | 2017-02-23 07:44:11 +0000 | [diff] [blame] | 1366 | if (flags & I915_WAIT_LOCKED) |
| 1367 | remove_wait_queue(errq, &reset); |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1368 | remove_wait_queue(&rq->execute, &exec); |
| 1369 | trace_i915_request_wait_end(rq); |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1370 | |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 1371 | return timeout; |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1372 | } |
Chris Wilson | 4b8de8e | 2016-08-04 07:52:42 +0100 | [diff] [blame] | 1373 | |
Chris Wilson | 28176ef | 2016-10-28 13:58:56 +0100 | [diff] [blame] | 1374 | static void engine_retire_requests(struct intel_engine_cs *engine) |
Chris Wilson | 4b8de8e | 2016-08-04 07:52:42 +0100 | [diff] [blame] | 1375 | { |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1376 | struct i915_request *request, *next; |
Chris Wilson | 754c9fd | 2017-02-23 07:44:14 +0000 | [diff] [blame] | 1377 | u32 seqno = intel_engine_get_seqno(engine); |
| 1378 | LIST_HEAD(retire); |
Chris Wilson | 4b8de8e | 2016-08-04 07:52:42 +0100 | [diff] [blame] | 1379 | |
Chris Wilson | 754c9fd | 2017-02-23 07:44:14 +0000 | [diff] [blame] | 1380 | spin_lock_irq(&engine->timeline->lock); |
Chris Wilson | 73cb970 | 2016-10-28 13:58:46 +0100 | [diff] [blame] | 1381 | list_for_each_entry_safe(request, next, |
| 1382 | &engine->timeline->requests, link) { |
Chris Wilson | 754c9fd | 2017-02-23 07:44:14 +0000 | [diff] [blame] | 1383 | if (!i915_seqno_passed(seqno, request->global_seqno)) |
| 1384 | break; |
Chris Wilson | 4b8de8e | 2016-08-04 07:52:42 +0100 | [diff] [blame] | 1385 | |
Chris Wilson | 754c9fd | 2017-02-23 07:44:14 +0000 | [diff] [blame] | 1386 | list_move_tail(&request->link, &retire); |
Chris Wilson | 4b8de8e | 2016-08-04 07:52:42 +0100 | [diff] [blame] | 1387 | } |
Chris Wilson | 754c9fd | 2017-02-23 07:44:14 +0000 | [diff] [blame] | 1388 | spin_unlock_irq(&engine->timeline->lock); |
| 1389 | |
| 1390 | list_for_each_entry_safe(request, next, &retire, link) |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1391 | i915_request_retire(request); |
Chris Wilson | 4b8de8e | 2016-08-04 07:52:42 +0100 | [diff] [blame] | 1392 | } |
| 1393 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1394 | void i915_retire_requests(struct drm_i915_private *i915) |
Chris Wilson | 4b8de8e | 2016-08-04 07:52:42 +0100 | [diff] [blame] | 1395 | { |
| 1396 | struct intel_engine_cs *engine; |
Chris Wilson | 28176ef | 2016-10-28 13:58:56 +0100 | [diff] [blame] | 1397 | enum intel_engine_id id; |
Chris Wilson | 4b8de8e | 2016-08-04 07:52:42 +0100 | [diff] [blame] | 1398 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1399 | lockdep_assert_held(&i915->drm.struct_mutex); |
Chris Wilson | 4b8de8e | 2016-08-04 07:52:42 +0100 | [diff] [blame] | 1400 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1401 | if (!i915->gt.active_requests) |
Chris Wilson | 4b8de8e | 2016-08-04 07:52:42 +0100 | [diff] [blame] | 1402 | return; |
| 1403 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1404 | for_each_engine(engine, i915, id) |
Chris Wilson | 28176ef | 2016-10-28 13:58:56 +0100 | [diff] [blame] | 1405 | engine_retire_requests(engine); |
Chris Wilson | 4b8de8e | 2016-08-04 07:52:42 +0100 | [diff] [blame] | 1406 | } |
Chris Wilson | c835c55 | 2017-02-13 17:15:21 +0000 | [diff] [blame] | 1407 | |
| 1408 | #if IS_ENABLED(CONFIG_DRM_I915_SELFTEST) |
| 1409 | #include "selftests/mock_request.c" |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1410 | #include "selftests/i915_request.c" |
Chris Wilson | c835c55 | 2017-02-13 17:15:21 +0000 | [diff] [blame] | 1411 | #endif |