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