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 | |
| 64 | intel_engine_enable_signaling(to_request(fence)); |
| 65 | return true; |
| 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 | 20311bd | 2016-11-14 20:41:03 +0000 | [diff] [blame] | 162 | GEM_BUG_ON(!RB_EMPTY_NODE(&pt->node)); |
| 163 | |
Chris Wilson | 52e5420 | 2016-11-14 20:41:02 +0000 | [diff] [blame] | 164 | /* Everyone we depended upon (the fences we wait to be signaled) |
| 165 | * should retire before us and remove themselves from our list. |
| 166 | * However, retirement is run independently on each timeline and |
| 167 | * so we may be called out-of-order. |
| 168 | */ |
| 169 | list_for_each_entry_safe(dep, next, &pt->signalers_list, signal_link) { |
| 170 | list_del(&dep->wait_link); |
| 171 | if (dep->flags & I915_DEPENDENCY_ALLOC) |
| 172 | i915_dependency_free(i915, dep); |
| 173 | } |
| 174 | |
| 175 | /* Remove ourselves from everyone who depends upon us */ |
| 176 | list_for_each_entry_safe(dep, next, &pt->waiters_list, wait_link) { |
| 177 | list_del(&dep->signal_link); |
| 178 | if (dep->flags & I915_DEPENDENCY_ALLOC) |
| 179 | i915_dependency_free(i915, dep); |
| 180 | } |
| 181 | } |
| 182 | |
| 183 | static void |
| 184 | i915_priotree_init(struct i915_priotree *pt) |
| 185 | { |
| 186 | INIT_LIST_HEAD(&pt->signalers_list); |
| 187 | INIT_LIST_HEAD(&pt->waiters_list); |
Chris Wilson | 20311bd | 2016-11-14 20:41:03 +0000 | [diff] [blame] | 188 | RB_CLEAR_NODE(&pt->node); |
| 189 | pt->priority = INT_MIN; |
Chris Wilson | 52e5420 | 2016-11-14 20:41:02 +0000 | [diff] [blame] | 190 | } |
| 191 | |
Chris Wilson | 12d3173 | 2017-02-23 07:44:09 +0000 | [diff] [blame] | 192 | static int reset_all_global_seqno(struct drm_i915_private *i915, u32 seqno) |
| 193 | { |
Chris Wilson | 12d3173 | 2017-02-23 07:44:09 +0000 | [diff] [blame] | 194 | struct intel_engine_cs *engine; |
| 195 | enum intel_engine_id id; |
| 196 | int ret; |
| 197 | |
| 198 | /* Carefully retire all requests without writing to the rings */ |
| 199 | ret = i915_gem_wait_for_idle(i915, |
| 200 | I915_WAIT_INTERRUPTIBLE | |
| 201 | I915_WAIT_LOCKED); |
| 202 | if (ret) |
| 203 | return ret; |
| 204 | |
Chris Wilson | 12d3173 | 2017-02-23 07:44:09 +0000 | [diff] [blame] | 205 | /* If the seqno wraps around, we need to clear the breadcrumb rbtree */ |
| 206 | for_each_engine(engine, i915, id) { |
Chris Wilson | ae351be | 2017-03-30 15:50:41 +0100 | [diff] [blame] | 207 | struct i915_gem_timeline *timeline; |
| 208 | struct intel_timeline *tl = engine->timeline; |
Chris Wilson | 12d3173 | 2017-02-23 07:44:09 +0000 | [diff] [blame] | 209 | |
| 210 | if (!i915_seqno_passed(seqno, tl->seqno)) { |
| 211 | /* spin until threads are complete */ |
| 212 | while (intel_breadcrumbs_busy(engine)) |
| 213 | cond_resched(); |
| 214 | } |
| 215 | |
| 216 | /* Finally reset hw state */ |
| 217 | tl->seqno = seqno; |
| 218 | intel_engine_init_global_seqno(engine, seqno); |
Chris Wilson | 12d3173 | 2017-02-23 07:44:09 +0000 | [diff] [blame] | 219 | |
Chris Wilson | ae351be | 2017-03-30 15:50:41 +0100 | [diff] [blame] | 220 | list_for_each_entry(timeline, &i915->gt.timelines, link) |
| 221 | memset(timeline->engine[id].sync_seqno, 0, |
| 222 | sizeof(timeline->engine[id].sync_seqno)); |
Chris Wilson | 12d3173 | 2017-02-23 07:44:09 +0000 | [diff] [blame] | 223 | } |
| 224 | |
| 225 | return 0; |
| 226 | } |
| 227 | |
| 228 | int i915_gem_set_global_seqno(struct drm_device *dev, u32 seqno) |
| 229 | { |
| 230 | struct drm_i915_private *dev_priv = to_i915(dev); |
| 231 | |
| 232 | lockdep_assert_held(&dev_priv->drm.struct_mutex); |
| 233 | |
| 234 | if (seqno == 0) |
| 235 | return -EINVAL; |
| 236 | |
| 237 | /* HWS page needs to be set less than what we |
| 238 | * will inject to ring |
| 239 | */ |
| 240 | return reset_all_global_seqno(dev_priv, seqno - 1); |
| 241 | } |
| 242 | |
| 243 | static int reserve_seqno(struct intel_engine_cs *engine) |
| 244 | { |
| 245 | u32 active = ++engine->timeline->inflight_seqnos; |
| 246 | u32 seqno = engine->timeline->seqno; |
| 247 | int ret; |
| 248 | |
| 249 | /* Reservation is fine until we need to wrap around */ |
| 250 | if (likely(!add_overflows(seqno, active))) |
| 251 | return 0; |
| 252 | |
| 253 | ret = reset_all_global_seqno(engine->i915, 0); |
| 254 | if (ret) { |
| 255 | engine->timeline->inflight_seqnos--; |
| 256 | return ret; |
| 257 | } |
| 258 | |
| 259 | return 0; |
| 260 | } |
| 261 | |
Chris Wilson | 9b6586a | 2017-02-23 07:44:08 +0000 | [diff] [blame] | 262 | static void unreserve_seqno(struct intel_engine_cs *engine) |
| 263 | { |
| 264 | GEM_BUG_ON(!engine->timeline->inflight_seqnos); |
| 265 | engine->timeline->inflight_seqnos--; |
| 266 | } |
| 267 | |
Chris Wilson | fa545cb | 2016-08-04 07:52:35 +0100 | [diff] [blame] | 268 | void i915_gem_retire_noop(struct i915_gem_active *active, |
| 269 | struct drm_i915_gem_request *request) |
| 270 | { |
| 271 | /* Space left intentionally blank */ |
| 272 | } |
| 273 | |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 274 | static void i915_gem_request_retire(struct drm_i915_gem_request *request) |
| 275 | { |
Chris Wilson | e8a9c58 | 2016-12-18 15:37:20 +0000 | [diff] [blame] | 276 | struct intel_engine_cs *engine = request->engine; |
Chris Wilson | fa545cb | 2016-08-04 07:52:35 +0100 | [diff] [blame] | 277 | struct i915_gem_active *active, *next; |
| 278 | |
Chris Wilson | 4c7d62c | 2016-10-28 13:58:32 +0100 | [diff] [blame] | 279 | lockdep_assert_held(&request->i915->drm.struct_mutex); |
Chris Wilson | 48bc2a4 | 2016-11-25 13:17:17 +0000 | [diff] [blame] | 280 | GEM_BUG_ON(!i915_sw_fence_signaled(&request->submit)); |
Chris Wilson | 4c7d62c | 2016-10-28 13:58:32 +0100 | [diff] [blame] | 281 | GEM_BUG_ON(!i915_gem_request_completed(request)); |
Chris Wilson | 4302055 | 2016-11-15 16:46:20 +0000 | [diff] [blame] | 282 | GEM_BUG_ON(!request->i915->gt.active_requests); |
Chris Wilson | 4c7d62c | 2016-10-28 13:58:32 +0100 | [diff] [blame] | 283 | |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 284 | trace_i915_gem_request_retire(request); |
Chris Wilson | 80b204b | 2016-10-28 13:58:58 +0100 | [diff] [blame] | 285 | |
Chris Wilson | e8a9c58 | 2016-12-18 15:37:20 +0000 | [diff] [blame] | 286 | spin_lock_irq(&engine->timeline->lock); |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 287 | list_del_init(&request->link); |
Chris Wilson | e8a9c58 | 2016-12-18 15:37:20 +0000 | [diff] [blame] | 288 | spin_unlock_irq(&engine->timeline->lock); |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 289 | |
| 290 | /* We know the GPU must have read the request to have |
| 291 | * sent us the seqno + interrupt, so use the position |
| 292 | * of tail of the request to update the last known position |
| 293 | * of the GPU head. |
| 294 | * |
| 295 | * Note this requires that we are always called in request |
| 296 | * completion order. |
| 297 | */ |
Chris Wilson | 675d9ad | 2016-08-04 07:52:36 +0100 | [diff] [blame] | 298 | list_del(&request->ring_link); |
Chris Wilson | fe085f1 | 2017-03-21 10:25:52 +0000 | [diff] [blame] | 299 | request->ring->head = request->postfix; |
Chris Wilson | 4302055 | 2016-11-15 16:46:20 +0000 | [diff] [blame] | 300 | if (!--request->i915->gt.active_requests) { |
| 301 | GEM_BUG_ON(!request->i915->gt.awake); |
| 302 | mod_delayed_work(request->i915->wq, |
| 303 | &request->i915->gt.idle_work, |
| 304 | msecs_to_jiffies(100)); |
| 305 | } |
Chris Wilson | 9b6586a | 2017-02-23 07:44:08 +0000 | [diff] [blame] | 306 | unreserve_seqno(request->engine); |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 307 | |
Chris Wilson | fa545cb | 2016-08-04 07:52:35 +0100 | [diff] [blame] | 308 | /* Walk through the active list, calling retire on each. This allows |
| 309 | * objects to track their GPU activity and mark themselves as idle |
| 310 | * when their *last* active request is completed (updating state |
| 311 | * tracking lists for eviction, active references for GEM, etc). |
| 312 | * |
| 313 | * As the ->retire() may free the node, we decouple it first and |
| 314 | * pass along the auxiliary information (to avoid dereferencing |
| 315 | * the node after the callback). |
| 316 | */ |
| 317 | list_for_each_entry_safe(active, next, &request->active_list, link) { |
| 318 | /* In microbenchmarks or focusing upon time inside the kernel, |
| 319 | * we may spend an inordinate amount of time simply handling |
| 320 | * the retirement of requests and processing their callbacks. |
| 321 | * Of which, this loop itself is particularly hot due to the |
| 322 | * cache misses when jumping around the list of i915_gem_active. |
| 323 | * So we try to keep this loop as streamlined as possible and |
| 324 | * also prefetch the next i915_gem_active to try and hide |
| 325 | * the likely cache miss. |
| 326 | */ |
| 327 | prefetchw(next); |
| 328 | |
| 329 | INIT_LIST_HEAD(&active->link); |
Chris Wilson | 0eafec6 | 2016-08-04 16:32:41 +0100 | [diff] [blame] | 330 | RCU_INIT_POINTER(active->request, NULL); |
Chris Wilson | fa545cb | 2016-08-04 07:52:35 +0100 | [diff] [blame] | 331 | |
| 332 | active->retire(active, request); |
| 333 | } |
| 334 | |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 335 | i915_gem_request_remove_from_client(request); |
| 336 | |
Mika Kuoppala | e5e1fc4 | 2016-11-16 17:20:31 +0200 | [diff] [blame] | 337 | /* Retirement decays the ban score as it is a sign of ctx progress */ |
Mika Kuoppala | bc1d53c | 2016-11-16 17:20:34 +0200 | [diff] [blame] | 338 | if (request->ctx->ban_score > 0) |
| 339 | request->ctx->ban_score--; |
Mika Kuoppala | e5e1fc4 | 2016-11-16 17:20:31 +0200 | [diff] [blame] | 340 | |
Chris Wilson | e8a9c58 | 2016-12-18 15:37:20 +0000 | [diff] [blame] | 341 | /* The backing object for the context is done after switching to the |
| 342 | * *next* context. Therefore we cannot retire the previous context until |
| 343 | * the next context has already started running. However, since we |
| 344 | * cannot take the required locks at i915_gem_request_submit() we |
| 345 | * defer the unpinning of the active context to now, retirement of |
| 346 | * the subsequent request. |
| 347 | */ |
| 348 | if (engine->last_retired_context) |
| 349 | engine->context_unpin(engine, engine->last_retired_context); |
| 350 | engine->last_retired_context = request->ctx; |
Chris Wilson | d07f0e5 | 2016-10-28 13:58:44 +0100 | [diff] [blame] | 351 | |
| 352 | dma_fence_signal(&request->fence); |
Chris Wilson | 52e5420 | 2016-11-14 20:41:02 +0000 | [diff] [blame] | 353 | |
| 354 | i915_priotree_fini(request->i915, &request->priotree); |
Chris Wilson | e8a261e | 2016-07-20 13:31:49 +0100 | [diff] [blame] | 355 | i915_gem_request_put(request); |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 356 | } |
| 357 | |
| 358 | void i915_gem_request_retire_upto(struct drm_i915_gem_request *req) |
| 359 | { |
| 360 | struct intel_engine_cs *engine = req->engine; |
| 361 | struct drm_i915_gem_request *tmp; |
| 362 | |
| 363 | lockdep_assert_held(&req->i915->drm.struct_mutex); |
Chris Wilson | 4ffd6e0 | 2016-11-25 13:17:15 +0000 | [diff] [blame] | 364 | GEM_BUG_ON(!i915_gem_request_completed(req)); |
| 365 | |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 366 | if (list_empty(&req->link)) |
| 367 | return; |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 368 | |
| 369 | do { |
Chris Wilson | 73cb970 | 2016-10-28 13:58:46 +0100 | [diff] [blame] | 370 | tmp = list_first_entry(&engine->timeline->requests, |
Chris Wilson | efdf7c0 | 2016-08-04 07:52:33 +0100 | [diff] [blame] | 371 | typeof(*tmp), link); |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 372 | |
| 373 | i915_gem_request_retire(tmp); |
| 374 | } while (tmp != req); |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 375 | } |
| 376 | |
Chris Wilson | 9b6586a | 2017-02-23 07:44:08 +0000 | [diff] [blame] | 377 | static u32 timeline_get_seqno(struct intel_timeline *tl) |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 378 | { |
Chris Wilson | 9b6586a | 2017-02-23 07:44:08 +0000 | [diff] [blame] | 379 | return ++tl->seqno; |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 380 | } |
| 381 | |
Chris Wilson | d55ac5b | 2016-11-14 20:40:59 +0000 | [diff] [blame] | 382 | void __i915_gem_request_submit(struct drm_i915_gem_request *request) |
Chris Wilson | 5590af3 | 2016-09-09 14:11:54 +0100 | [diff] [blame] | 383 | { |
Chris Wilson | 73cb970 | 2016-10-28 13:58:46 +0100 | [diff] [blame] | 384 | struct intel_engine_cs *engine = request->engine; |
Chris Wilson | f2d1329 | 2016-10-28 13:58:57 +0100 | [diff] [blame] | 385 | struct intel_timeline *timeline; |
| 386 | u32 seqno; |
Chris Wilson | 5590af3 | 2016-09-09 14:11:54 +0100 | [diff] [blame] | 387 | |
Chris Wilson | e60a870 | 2017-03-02 11:51:30 +0000 | [diff] [blame] | 388 | GEM_BUG_ON(!irqs_disabled()); |
Chris Wilson | 6752041 | 2017-03-02 13:28:01 +0000 | [diff] [blame] | 389 | lockdep_assert_held(&engine->timeline->lock); |
Chris Wilson | e60a870 | 2017-03-02 11:51:30 +0000 | [diff] [blame] | 390 | |
Chris Wilson | fe49789 | 2017-02-23 07:44:13 +0000 | [diff] [blame] | 391 | trace_i915_gem_request_execute(request); |
| 392 | |
Chris Wilson | 80b204b | 2016-10-28 13:58:58 +0100 | [diff] [blame] | 393 | /* Transfer from per-context onto the global per-engine timeline */ |
| 394 | timeline = engine->timeline; |
| 395 | GEM_BUG_ON(timeline == request->timeline); |
Chris Wilson | 5590af3 | 2016-09-09 14:11:54 +0100 | [diff] [blame] | 396 | |
Chris Wilson | 9b6586a | 2017-02-23 07:44:08 +0000 | [diff] [blame] | 397 | seqno = timeline_get_seqno(timeline); |
Chris Wilson | f2d1329 | 2016-10-28 13:58:57 +0100 | [diff] [blame] | 398 | GEM_BUG_ON(!seqno); |
| 399 | GEM_BUG_ON(i915_seqno_passed(intel_engine_get_seqno(engine), seqno)); |
| 400 | |
Chris Wilson | f2d1329 | 2016-10-28 13:58:57 +0100 | [diff] [blame] | 401 | /* We may be recursing from the signal callback of another i915 fence */ |
| 402 | spin_lock_nested(&request->lock, SINGLE_DEPTH_NESTING); |
| 403 | request->global_seqno = seqno; |
| 404 | if (test_bit(DMA_FENCE_FLAG_ENABLE_SIGNAL_BIT, &request->fence.flags)) |
| 405 | intel_engine_enable_signaling(request); |
| 406 | spin_unlock(&request->lock); |
| 407 | |
Chris Wilson | caddfe7 | 2016-10-28 13:58:52 +0100 | [diff] [blame] | 408 | engine->emit_breadcrumb(request, |
| 409 | request->ring->vaddr + request->postfix); |
Chris Wilson | 5590af3 | 2016-09-09 14:11:54 +0100 | [diff] [blame] | 410 | |
Chris Wilson | bb89485 | 2016-11-14 20:40:57 +0000 | [diff] [blame] | 411 | spin_lock(&request->timeline->lock); |
Chris Wilson | 80b204b | 2016-10-28 13:58:58 +0100 | [diff] [blame] | 412 | list_move_tail(&request->link, &timeline->requests); |
| 413 | spin_unlock(&request->timeline->lock); |
| 414 | |
Chris Wilson | fe49789 | 2017-02-23 07:44:13 +0000 | [diff] [blame] | 415 | wake_up_all(&request->execute); |
Chris Wilson | d55ac5b | 2016-11-14 20:40:59 +0000 | [diff] [blame] | 416 | } |
Chris Wilson | 23902e4 | 2016-11-14 20:40:58 +0000 | [diff] [blame] | 417 | |
Chris Wilson | d55ac5b | 2016-11-14 20:40:59 +0000 | [diff] [blame] | 418 | void i915_gem_request_submit(struct drm_i915_gem_request *request) |
| 419 | { |
| 420 | struct intel_engine_cs *engine = request->engine; |
| 421 | unsigned long flags; |
| 422 | |
| 423 | /* Will be called from irq-context when using foreign fences. */ |
| 424 | spin_lock_irqsave(&engine->timeline->lock, flags); |
| 425 | |
| 426 | __i915_gem_request_submit(request); |
| 427 | |
| 428 | spin_unlock_irqrestore(&engine->timeline->lock, flags); |
| 429 | } |
| 430 | |
Chris Wilson | d6a2289 | 2017-02-23 07:44:17 +0000 | [diff] [blame] | 431 | void __i915_gem_request_unsubmit(struct drm_i915_gem_request *request) |
| 432 | { |
| 433 | struct intel_engine_cs *engine = request->engine; |
| 434 | struct intel_timeline *timeline; |
| 435 | |
Chris Wilson | e60a870 | 2017-03-02 11:51:30 +0000 | [diff] [blame] | 436 | GEM_BUG_ON(!irqs_disabled()); |
Chris Wilson | 6752041 | 2017-03-02 13:28:01 +0000 | [diff] [blame] | 437 | lockdep_assert_held(&engine->timeline->lock); |
Chris Wilson | d6a2289 | 2017-02-23 07:44:17 +0000 | [diff] [blame] | 438 | |
| 439 | /* Only unwind in reverse order, required so that the per-context list |
| 440 | * is kept in seqno/ring order. |
| 441 | */ |
| 442 | GEM_BUG_ON(request->global_seqno != engine->timeline->seqno); |
| 443 | engine->timeline->seqno--; |
| 444 | |
| 445 | /* We may be recursing from the signal callback of another i915 fence */ |
| 446 | spin_lock_nested(&request->lock, SINGLE_DEPTH_NESTING); |
| 447 | request->global_seqno = 0; |
| 448 | if (test_bit(DMA_FENCE_FLAG_ENABLE_SIGNAL_BIT, &request->fence.flags)) |
| 449 | intel_engine_cancel_signaling(request); |
| 450 | spin_unlock(&request->lock); |
| 451 | |
| 452 | /* Transfer back from the global per-engine timeline to per-context */ |
| 453 | timeline = request->timeline; |
| 454 | GEM_BUG_ON(timeline == engine->timeline); |
| 455 | |
| 456 | spin_lock(&timeline->lock); |
| 457 | list_move(&request->link, &timeline->requests); |
| 458 | spin_unlock(&timeline->lock); |
| 459 | |
| 460 | /* We don't need to wake_up any waiters on request->execute, they |
| 461 | * will get woken by any other event or us re-adding this request |
| 462 | * to the engine timeline (__i915_gem_request_submit()). The waiters |
| 463 | * should be quite adapt at finding that the request now has a new |
| 464 | * global_seqno to the one they went to sleep on. |
| 465 | */ |
| 466 | } |
| 467 | |
| 468 | void i915_gem_request_unsubmit(struct drm_i915_gem_request *request) |
| 469 | { |
| 470 | struct intel_engine_cs *engine = request->engine; |
| 471 | unsigned long flags; |
| 472 | |
| 473 | /* Will be called from irq-context when using foreign fences. */ |
| 474 | spin_lock_irqsave(&engine->timeline->lock, flags); |
| 475 | |
| 476 | __i915_gem_request_unsubmit(request); |
| 477 | |
| 478 | spin_unlock_irqrestore(&engine->timeline->lock, flags); |
| 479 | } |
| 480 | |
Chris Wilson | d55ac5b | 2016-11-14 20:40:59 +0000 | [diff] [blame] | 481 | static int __i915_sw_fence_call |
| 482 | submit_notify(struct i915_sw_fence *fence, enum i915_sw_fence_notify state) |
| 483 | { |
Chris Wilson | 48bc2a4 | 2016-11-25 13:17:17 +0000 | [diff] [blame] | 484 | struct drm_i915_gem_request *request = |
| 485 | container_of(fence, typeof(*request), submit); |
Chris Wilson | d55ac5b | 2016-11-14 20:40:59 +0000 | [diff] [blame] | 486 | |
Chris Wilson | 48bc2a4 | 2016-11-25 13:17:17 +0000 | [diff] [blame] | 487 | switch (state) { |
| 488 | case FENCE_COMPLETE: |
Tvrtko Ursulin | 354d036 | 2017-02-21 11:01:42 +0000 | [diff] [blame] | 489 | trace_i915_gem_request_submit(request); |
Chris Wilson | d55ac5b | 2016-11-14 20:40:59 +0000 | [diff] [blame] | 490 | request->engine->submit_request(request); |
Chris Wilson | 48bc2a4 | 2016-11-25 13:17:17 +0000 | [diff] [blame] | 491 | break; |
| 492 | |
| 493 | case FENCE_FREE: |
| 494 | i915_gem_request_put(request); |
| 495 | break; |
Chris Wilson | d55ac5b | 2016-11-14 20:40:59 +0000 | [diff] [blame] | 496 | } |
Chris Wilson | 80b204b | 2016-10-28 13:58:58 +0100 | [diff] [blame] | 497 | |
Chris Wilson | 5590af3 | 2016-09-09 14:11:54 +0100 | [diff] [blame] | 498 | return NOTIFY_DONE; |
| 499 | } |
| 500 | |
Chris Wilson | 8e63717 | 2016-08-02 22:50:26 +0100 | [diff] [blame] | 501 | /** |
| 502 | * i915_gem_request_alloc - allocate a request structure |
| 503 | * |
| 504 | * @engine: engine that we wish to issue the request on. |
| 505 | * @ctx: context that the request will be associated with. |
| 506 | * This can be NULL if the request is not directly related to |
| 507 | * any specific user context, in which case this function will |
| 508 | * choose an appropriate context to use. |
| 509 | * |
| 510 | * Returns a pointer to the allocated request if successful, |
| 511 | * or an error code if not. |
| 512 | */ |
| 513 | struct drm_i915_gem_request * |
| 514 | i915_gem_request_alloc(struct intel_engine_cs *engine, |
| 515 | struct i915_gem_context *ctx) |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 516 | { |
| 517 | struct drm_i915_private *dev_priv = engine->i915; |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 518 | struct drm_i915_gem_request *req; |
| 519 | int ret; |
| 520 | |
Chris Wilson | 28176ef | 2016-10-28 13:58:56 +0100 | [diff] [blame] | 521 | lockdep_assert_held(&dev_priv->drm.struct_mutex); |
| 522 | |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 523 | /* ABI: Before userspace accesses the GPU (e.g. execbuffer), report |
Chris Wilson | 6ffb7d0 | 2017-01-14 16:23:33 +0000 | [diff] [blame] | 524 | * EIO if the GPU is already wedged. |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 525 | */ |
Chris Wilson | 6ffb7d0 | 2017-01-14 16:23:33 +0000 | [diff] [blame] | 526 | if (i915_terminally_wedged(&dev_priv->gpu_error)) |
| 527 | return ERR_PTR(-EIO); |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 528 | |
Chris Wilson | e8a9c58 | 2016-12-18 15:37:20 +0000 | [diff] [blame] | 529 | /* Pinning the contexts may generate requests in order to acquire |
| 530 | * GGTT space, so do this first before we reserve a seqno for |
| 531 | * ourselves. |
| 532 | */ |
| 533 | ret = engine->context_pin(engine, ctx); |
Chris Wilson | 28176ef | 2016-10-28 13:58:56 +0100 | [diff] [blame] | 534 | if (ret) |
| 535 | return ERR_PTR(ret); |
| 536 | |
Chris Wilson | 9b6586a | 2017-02-23 07:44:08 +0000 | [diff] [blame] | 537 | ret = reserve_seqno(engine); |
Chris Wilson | e8a9c58 | 2016-12-18 15:37:20 +0000 | [diff] [blame] | 538 | if (ret) |
| 539 | goto err_unpin; |
| 540 | |
Chris Wilson | 9b5f4e5 | 2016-07-20 09:21:09 +0100 | [diff] [blame] | 541 | /* Move the oldest request to the slab-cache (if not in use!) */ |
Chris Wilson | 73cb970 | 2016-10-28 13:58:46 +0100 | [diff] [blame] | 542 | req = list_first_entry_or_null(&engine->timeline->requests, |
Chris Wilson | efdf7c0 | 2016-08-04 07:52:33 +0100 | [diff] [blame] | 543 | typeof(*req), link); |
Chris Wilson | 754c9fd | 2017-02-23 07:44:14 +0000 | [diff] [blame] | 544 | if (req && i915_gem_request_completed(req)) |
Chris Wilson | 2a1d775 | 2016-07-26 12:01:51 +0100 | [diff] [blame] | 545 | i915_gem_request_retire(req); |
Chris Wilson | 9b5f4e5 | 2016-07-20 09:21:09 +0100 | [diff] [blame] | 546 | |
Chris Wilson | 5a198b8 | 2016-08-09 09:23:34 +0100 | [diff] [blame] | 547 | /* Beware: Dragons be flying overhead. |
| 548 | * |
| 549 | * We use RCU to look up requests in flight. The lookups may |
| 550 | * race with the request being allocated from the slab freelist. |
| 551 | * 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] | 552 | * of being read by __i915_gem_active_get_rcu(). As such, |
Chris Wilson | 5a198b8 | 2016-08-09 09:23:34 +0100 | [diff] [blame] | 553 | * we have to be very careful when overwriting the contents. During |
| 554 | * the RCU lookup, we change chase the request->engine pointer, |
Chris Wilson | 65e4760 | 2016-10-28 13:58:49 +0100 | [diff] [blame] | 555 | * read the request->global_seqno and increment the reference count. |
Chris Wilson | 5a198b8 | 2016-08-09 09:23:34 +0100 | [diff] [blame] | 556 | * |
| 557 | * The reference count is incremented atomically. If it is zero, |
| 558 | * the lookup knows the request is unallocated and complete. Otherwise, |
| 559 | * it is either still in use, or has been reallocated and reset |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 560 | * with dma_fence_init(). This increment is safe for release as we |
| 561 | * 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] | 562 | * request. |
| 563 | * |
| 564 | * Before we increment the refcount, we chase the request->engine |
| 565 | * pointer. We must not call kmem_cache_zalloc() or else we set |
| 566 | * that pointer to NULL and cause a crash during the lookup. If |
| 567 | * we see the request is completed (based on the value of the |
| 568 | * old engine and seqno), the lookup is complete and reports NULL. |
| 569 | * If we decide the request is not completed (new engine or seqno), |
| 570 | * then we grab a reference and double check that it is still the |
| 571 | * active request - which it won't be and restart the lookup. |
| 572 | * |
| 573 | * Do not use kmem_cache_zalloc() here! |
| 574 | */ |
| 575 | req = kmem_cache_alloc(dev_priv->requests, GFP_KERNEL); |
Chris Wilson | 28176ef | 2016-10-28 13:58:56 +0100 | [diff] [blame] | 576 | if (!req) { |
| 577 | ret = -ENOMEM; |
| 578 | goto err_unreserve; |
| 579 | } |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 580 | |
Chris Wilson | 80b204b | 2016-10-28 13:58:58 +0100 | [diff] [blame] | 581 | req->timeline = i915_gem_context_lookup_timeline(ctx, engine); |
| 582 | GEM_BUG_ON(req->timeline == engine->timeline); |
Chris Wilson | 73cb970 | 2016-10-28 13:58:46 +0100 | [diff] [blame] | 583 | |
Chris Wilson | 0476965 | 2016-07-20 09:21:11 +0100 | [diff] [blame] | 584 | spin_lock_init(&req->lock); |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 585 | dma_fence_init(&req->fence, |
| 586 | &i915_fence_ops, |
| 587 | &req->lock, |
Chris Wilson | 73cb970 | 2016-10-28 13:58:46 +0100 | [diff] [blame] | 588 | req->timeline->fence_context, |
Chris Wilson | 9b6586a | 2017-02-23 07:44:08 +0000 | [diff] [blame] | 589 | timeline_get_seqno(req->timeline)); |
Chris Wilson | 0476965 | 2016-07-20 09:21:11 +0100 | [diff] [blame] | 590 | |
Chris Wilson | 48bc2a4 | 2016-11-25 13:17:17 +0000 | [diff] [blame] | 591 | /* We bump the ref for the fence chain */ |
| 592 | i915_sw_fence_init(&i915_gem_request_get(req)->submit, submit_notify); |
Chris Wilson | fe49789 | 2017-02-23 07:44:13 +0000 | [diff] [blame] | 593 | init_waitqueue_head(&req->execute); |
Chris Wilson | 5590af3 | 2016-09-09 14:11:54 +0100 | [diff] [blame] | 594 | |
Chris Wilson | 52e5420 | 2016-11-14 20:41:02 +0000 | [diff] [blame] | 595 | i915_priotree_init(&req->priotree); |
| 596 | |
Chris Wilson | fa545cb | 2016-08-04 07:52:35 +0100 | [diff] [blame] | 597 | INIT_LIST_HEAD(&req->active_list); |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 598 | req->i915 = dev_priv; |
| 599 | req->engine = engine; |
Chris Wilson | e8a9c58 | 2016-12-18 15:37:20 +0000 | [diff] [blame] | 600 | req->ctx = ctx; |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 601 | |
Chris Wilson | 5a198b8 | 2016-08-09 09:23:34 +0100 | [diff] [blame] | 602 | /* No zalloc, must clear what we need by hand */ |
Chris Wilson | f2d1329 | 2016-10-28 13:58:57 +0100 | [diff] [blame] | 603 | req->global_seqno = 0; |
Chris Wilson | 5a198b8 | 2016-08-09 09:23:34 +0100 | [diff] [blame] | 604 | req->file_priv = NULL; |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 605 | req->batch = NULL; |
Chris Wilson | 5a198b8 | 2016-08-09 09:23:34 +0100 | [diff] [blame] | 606 | |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 607 | /* |
| 608 | * Reserve space in the ring buffer for all the commands required to |
| 609 | * eventually emit this request. This is to guarantee that the |
| 610 | * i915_add_request() call can't fail. Note that the reserve may need |
| 611 | * to be redone if the request is not actually submitted straight |
| 612 | * away, e.g. because a GPU scheduler has deferred it. |
| 613 | */ |
| 614 | req->reserved_space = MIN_SPACE_FOR_ADD_REQUEST; |
Chris Wilson | 98f29e8 | 2016-10-28 13:58:51 +0100 | [diff] [blame] | 615 | GEM_BUG_ON(req->reserved_space < engine->emit_breadcrumb_sz); |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 616 | |
Chris Wilson | f73e739 | 2016-12-18 15:37:24 +0000 | [diff] [blame] | 617 | ret = engine->request_alloc(req); |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 618 | if (ret) |
| 619 | goto err_ctx; |
| 620 | |
Chris Wilson | d045446 | 2016-08-15 10:48:40 +0100 | [diff] [blame] | 621 | /* Record the position of the start of the request so that |
| 622 | * should we detect the updated seqno part-way through the |
| 623 | * GPU processing the request, we never over-estimate the |
| 624 | * position of the head. |
| 625 | */ |
| 626 | req->head = req->ring->tail; |
| 627 | |
Chris Wilson | 9b6586a | 2017-02-23 07:44:08 +0000 | [diff] [blame] | 628 | /* Check that we didn't interrupt ourselves with a new request */ |
| 629 | GEM_BUG_ON(req->timeline->seqno != req->fence.seqno); |
Chris Wilson | 8e63717 | 2016-08-02 22:50:26 +0100 | [diff] [blame] | 630 | return req; |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 631 | |
| 632 | err_ctx: |
Chris Wilson | 1618bdb | 2016-11-25 13:17:16 +0000 | [diff] [blame] | 633 | /* Make sure we didn't add ourselves to external state before freeing */ |
| 634 | GEM_BUG_ON(!list_empty(&req->active_list)); |
| 635 | GEM_BUG_ON(!list_empty(&req->priotree.signalers_list)); |
| 636 | GEM_BUG_ON(!list_empty(&req->priotree.waiters_list)); |
| 637 | |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 638 | kmem_cache_free(dev_priv->requests, req); |
Chris Wilson | 28176ef | 2016-10-28 13:58:56 +0100 | [diff] [blame] | 639 | err_unreserve: |
Chris Wilson | 9b6586a | 2017-02-23 07:44:08 +0000 | [diff] [blame] | 640 | unreserve_seqno(engine); |
Chris Wilson | e8a9c58 | 2016-12-18 15:37:20 +0000 | [diff] [blame] | 641 | err_unpin: |
| 642 | engine->context_unpin(engine, ctx); |
Chris Wilson | 8e63717 | 2016-08-02 22:50:26 +0100 | [diff] [blame] | 643 | return ERR_PTR(ret); |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 644 | } |
| 645 | |
Chris Wilson | a2bc469 | 2016-09-09 14:11:56 +0100 | [diff] [blame] | 646 | static int |
| 647 | i915_gem_request_await_request(struct drm_i915_gem_request *to, |
| 648 | struct drm_i915_gem_request *from) |
| 649 | { |
Chris Wilson | 754c9fd | 2017-02-23 07:44:14 +0000 | [diff] [blame] | 650 | u32 seqno; |
Chris Wilson | 85e17f5 | 2016-10-28 13:58:53 +0100 | [diff] [blame] | 651 | int ret; |
Chris Wilson | a2bc469 | 2016-09-09 14:11:56 +0100 | [diff] [blame] | 652 | |
| 653 | GEM_BUG_ON(to == from); |
| 654 | |
Chris Wilson | 88326ef | 2017-04-22 09:15:37 +0100 | [diff] [blame] | 655 | if (i915_gem_request_completed(from)) |
| 656 | return 0; |
| 657 | |
Chris Wilson | 52e5420 | 2016-11-14 20:41:02 +0000 | [diff] [blame] | 658 | if (to->engine->schedule) { |
| 659 | ret = i915_priotree_add_dependency(to->i915, |
| 660 | &to->priotree, |
| 661 | &from->priotree); |
| 662 | if (ret < 0) |
| 663 | return ret; |
| 664 | } |
| 665 | |
Chris Wilson | 73cb970 | 2016-10-28 13:58:46 +0100 | [diff] [blame] | 666 | if (to->timeline == from->timeline) |
Chris Wilson | a2bc469 | 2016-09-09 14:11:56 +0100 | [diff] [blame] | 667 | return 0; |
| 668 | |
Chris Wilson | 73cb970 | 2016-10-28 13:58:46 +0100 | [diff] [blame] | 669 | if (to->engine == from->engine) { |
| 670 | ret = i915_sw_fence_await_sw_fence_gfp(&to->submit, |
| 671 | &from->submit, |
| 672 | GFP_KERNEL); |
| 673 | return ret < 0 ? ret : 0; |
| 674 | } |
| 675 | |
Chris Wilson | 754c9fd | 2017-02-23 07:44:14 +0000 | [diff] [blame] | 676 | seqno = i915_gem_request_global_seqno(from); |
| 677 | if (!seqno) { |
Chris Wilson | 65e4760 | 2016-10-28 13:58:49 +0100 | [diff] [blame] | 678 | ret = i915_sw_fence_await_dma_fence(&to->submit, |
| 679 | &from->fence, 0, |
| 680 | GFP_KERNEL); |
| 681 | return ret < 0 ? ret : 0; |
| 682 | } |
| 683 | |
Chris Wilson | 754c9fd | 2017-02-23 07:44:14 +0000 | [diff] [blame] | 684 | if (seqno <= to->timeline->sync_seqno[from->engine->id]) |
Chris Wilson | a2bc469 | 2016-09-09 14:11:56 +0100 | [diff] [blame] | 685 | return 0; |
| 686 | |
| 687 | trace_i915_gem_ring_sync_to(to, from); |
| 688 | if (!i915.semaphores) { |
Chris Wilson | 0a046a0 | 2016-09-09 14:12:00 +0100 | [diff] [blame] | 689 | if (!i915_spin_request(from, TASK_INTERRUPTIBLE, 2)) { |
| 690 | ret = i915_sw_fence_await_dma_fence(&to->submit, |
| 691 | &from->fence, 0, |
| 692 | GFP_KERNEL); |
| 693 | if (ret < 0) |
| 694 | return ret; |
| 695 | } |
Chris Wilson | a2bc469 | 2016-09-09 14:11:56 +0100 | [diff] [blame] | 696 | } else { |
| 697 | ret = to->engine->semaphore.sync_to(to, from); |
| 698 | if (ret) |
| 699 | return ret; |
| 700 | } |
| 701 | |
Chris Wilson | 754c9fd | 2017-02-23 07:44:14 +0000 | [diff] [blame] | 702 | to->timeline->sync_seqno[from->engine->id] = seqno; |
Chris Wilson | a2bc469 | 2016-09-09 14:11:56 +0100 | [diff] [blame] | 703 | return 0; |
| 704 | } |
| 705 | |
Chris Wilson | b52992c | 2016-10-28 13:58:24 +0100 | [diff] [blame] | 706 | int |
| 707 | i915_gem_request_await_dma_fence(struct drm_i915_gem_request *req, |
| 708 | struct dma_fence *fence) |
| 709 | { |
| 710 | struct dma_fence_array *array; |
| 711 | int ret; |
| 712 | int i; |
| 713 | |
| 714 | if (test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &fence->flags)) |
| 715 | return 0; |
| 716 | |
| 717 | if (dma_fence_is_i915(fence)) |
| 718 | return i915_gem_request_await_request(req, to_request(fence)); |
| 719 | |
| 720 | if (!dma_fence_is_array(fence)) { |
| 721 | ret = i915_sw_fence_await_dma_fence(&req->submit, |
| 722 | fence, I915_FENCE_TIMEOUT, |
| 723 | GFP_KERNEL); |
| 724 | return ret < 0 ? ret : 0; |
| 725 | } |
| 726 | |
| 727 | /* Note that if the fence-array was created in signal-on-any mode, |
| 728 | * we should *not* decompose it into its individual fences. However, |
| 729 | * we don't currently store which mode the fence-array is operating |
| 730 | * in. Fortunately, the only user of signal-on-any is private to |
| 731 | * amdgpu and we should not see any incoming fence-array from |
| 732 | * sync-file being in signal-on-any mode. |
| 733 | */ |
| 734 | |
| 735 | array = to_dma_fence_array(fence); |
| 736 | for (i = 0; i < array->num_fences; i++) { |
| 737 | struct dma_fence *child = array->fences[i]; |
| 738 | |
| 739 | if (dma_fence_is_i915(child)) |
| 740 | ret = i915_gem_request_await_request(req, |
| 741 | to_request(child)); |
| 742 | else |
| 743 | ret = i915_sw_fence_await_dma_fence(&req->submit, |
| 744 | child, I915_FENCE_TIMEOUT, |
| 745 | GFP_KERNEL); |
| 746 | if (ret < 0) |
| 747 | return ret; |
| 748 | } |
| 749 | |
| 750 | return 0; |
| 751 | } |
| 752 | |
Chris Wilson | a2bc469 | 2016-09-09 14:11:56 +0100 | [diff] [blame] | 753 | /** |
| 754 | * i915_gem_request_await_object - set this request to (async) wait upon a bo |
| 755 | * |
| 756 | * @to: request we are wishing to use |
| 757 | * @obj: object which may be in use on another ring. |
| 758 | * |
| 759 | * This code is meant to abstract object synchronization with the GPU. |
| 760 | * Conceptually we serialise writes between engines inside the GPU. |
| 761 | * We only allow one engine to write into a buffer at any time, but |
| 762 | * multiple readers. To ensure each has a coherent view of memory, we must: |
| 763 | * |
| 764 | * - If there is an outstanding write request to the object, the new |
| 765 | * request must wait for it to complete (either CPU or in hw, requests |
| 766 | * on the same ring will be naturally ordered). |
| 767 | * |
| 768 | * - If we are a write request (pending_write_domain is set), the new |
| 769 | * request must wait for outstanding read requests to complete. |
| 770 | * |
| 771 | * Returns 0 if successful, else propagates up the lower layer error. |
| 772 | */ |
| 773 | int |
| 774 | i915_gem_request_await_object(struct drm_i915_gem_request *to, |
| 775 | struct drm_i915_gem_object *obj, |
| 776 | bool write) |
| 777 | { |
Chris Wilson | d07f0e5 | 2016-10-28 13:58:44 +0100 | [diff] [blame] | 778 | struct dma_fence *excl; |
| 779 | int ret = 0; |
Chris Wilson | a2bc469 | 2016-09-09 14:11:56 +0100 | [diff] [blame] | 780 | |
| 781 | if (write) { |
Chris Wilson | d07f0e5 | 2016-10-28 13:58:44 +0100 | [diff] [blame] | 782 | struct dma_fence **shared; |
| 783 | unsigned int count, i; |
Chris Wilson | a2bc469 | 2016-09-09 14:11:56 +0100 | [diff] [blame] | 784 | |
Chris Wilson | d07f0e5 | 2016-10-28 13:58:44 +0100 | [diff] [blame] | 785 | ret = reservation_object_get_fences_rcu(obj->resv, |
| 786 | &excl, &count, &shared); |
Chris Wilson | a2bc469 | 2016-09-09 14:11:56 +0100 | [diff] [blame] | 787 | if (ret) |
| 788 | return ret; |
Chris Wilson | d07f0e5 | 2016-10-28 13:58:44 +0100 | [diff] [blame] | 789 | |
| 790 | for (i = 0; i < count; i++) { |
| 791 | ret = i915_gem_request_await_dma_fence(to, shared[i]); |
| 792 | if (ret) |
| 793 | break; |
| 794 | |
| 795 | dma_fence_put(shared[i]); |
| 796 | } |
| 797 | |
| 798 | for (; i < count; i++) |
| 799 | dma_fence_put(shared[i]); |
| 800 | kfree(shared); |
| 801 | } else { |
| 802 | excl = reservation_object_get_excl_rcu(obj->resv); |
Chris Wilson | a2bc469 | 2016-09-09 14:11:56 +0100 | [diff] [blame] | 803 | } |
| 804 | |
Chris Wilson | d07f0e5 | 2016-10-28 13:58:44 +0100 | [diff] [blame] | 805 | if (excl) { |
| 806 | if (ret == 0) |
| 807 | ret = i915_gem_request_await_dma_fence(to, excl); |
| 808 | |
| 809 | dma_fence_put(excl); |
| 810 | } |
| 811 | |
| 812 | return ret; |
Chris Wilson | a2bc469 | 2016-09-09 14:11:56 +0100 | [diff] [blame] | 813 | } |
| 814 | |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 815 | static void i915_gem_mark_busy(const struct intel_engine_cs *engine) |
| 816 | { |
| 817 | struct drm_i915_private *dev_priv = engine->i915; |
| 818 | |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 819 | if (dev_priv->gt.awake) |
| 820 | return; |
| 821 | |
Chris Wilson | 4302055 | 2016-11-15 16:46:20 +0000 | [diff] [blame] | 822 | GEM_BUG_ON(!dev_priv->gt.active_requests); |
| 823 | |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 824 | intel_runtime_pm_get_noresume(dev_priv); |
| 825 | dev_priv->gt.awake = true; |
| 826 | |
Chris Wilson | 54b4f68 | 2016-07-21 21:16:19 +0100 | [diff] [blame] | 827 | intel_enable_gt_powersave(dev_priv); |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 828 | i915_update_gfx_val(dev_priv); |
| 829 | if (INTEL_GEN(dev_priv) >= 6) |
| 830 | gen6_rps_busy(dev_priv); |
| 831 | |
| 832 | queue_delayed_work(dev_priv->wq, |
| 833 | &dev_priv->gt.retire_work, |
| 834 | round_jiffies_up_relative(HZ)); |
| 835 | } |
| 836 | |
| 837 | /* |
| 838 | * NB: This function is not allowed to fail. Doing so would mean the the |
| 839 | * request is not being tracked for completion but the work itself is |
| 840 | * going to happen on the hardware. This would be a Bad Thing(tm). |
| 841 | */ |
Chris Wilson | 17f298cf | 2016-08-10 13:41:46 +0100 | [diff] [blame] | 842 | 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] | 843 | { |
Chris Wilson | 95b2ab5 | 2016-08-15 10:48:46 +0100 | [diff] [blame] | 844 | struct intel_engine_cs *engine = request->engine; |
| 845 | struct intel_ring *ring = request->ring; |
Chris Wilson | 73cb970 | 2016-10-28 13:58:46 +0100 | [diff] [blame] | 846 | struct intel_timeline *timeline = request->timeline; |
Chris Wilson | 0a046a0 | 2016-09-09 14:12:00 +0100 | [diff] [blame] | 847 | struct drm_i915_gem_request *prev; |
Tvrtko Ursulin | 73dec95 | 2017-02-14 11:32:42 +0000 | [diff] [blame] | 848 | u32 *cs; |
Chris Wilson | caddfe7 | 2016-10-28 13:58:52 +0100 | [diff] [blame] | 849 | int err; |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 850 | |
Chris Wilson | 4c7d62c | 2016-10-28 13:58:32 +0100 | [diff] [blame] | 851 | lockdep_assert_held(&request->i915->drm.struct_mutex); |
Chris Wilson | 0f25dff | 2016-09-09 14:11:55 +0100 | [diff] [blame] | 852 | trace_i915_gem_request_add(request); |
| 853 | |
Chris Wilson | c781c97 | 2017-01-11 14:08:58 +0000 | [diff] [blame] | 854 | /* Make sure that no request gazumped us - if it was allocated after |
| 855 | * our i915_gem_request_alloc() and called __i915_add_request() before |
| 856 | * us, the timeline will hold its seqno which is later than ours. |
| 857 | */ |
Chris Wilson | 9b6586a | 2017-02-23 07:44:08 +0000 | [diff] [blame] | 858 | GEM_BUG_ON(timeline->seqno != request->fence.seqno); |
Chris Wilson | c781c97 | 2017-01-11 14:08:58 +0000 | [diff] [blame] | 859 | |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 860 | /* |
| 861 | * To ensure that this call will not fail, space for its emissions |
| 862 | * should already have been reserved in the ring buffer. Let the ring |
| 863 | * know that it is time to use that space up. |
| 864 | */ |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 865 | request->reserved_space = 0; |
| 866 | |
| 867 | /* |
| 868 | * Emit any outstanding flushes - execbuf can fail to emit the flush |
| 869 | * after having emitted the batchbuffer command. Hence we need to fix |
| 870 | * things up similar to emitting the lazy request. The difference here |
| 871 | * is that the flush _must_ happen before the next request, no matter |
| 872 | * what. |
| 873 | */ |
| 874 | if (flush_caches) { |
Chris Wilson | caddfe7 | 2016-10-28 13:58:52 +0100 | [diff] [blame] | 875 | err = engine->emit_flush(request, EMIT_FLUSH); |
Chris Wilson | c7fe7d2 | 2016-08-02 22:50:24 +0100 | [diff] [blame] | 876 | |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 877 | /* Not allowed to fail! */ |
Chris Wilson | caddfe7 | 2016-10-28 13:58:52 +0100 | [diff] [blame] | 878 | WARN(err, "engine->emit_flush() failed: %d!\n", err); |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 879 | } |
| 880 | |
Chris Wilson | d045446 | 2016-08-15 10:48:40 +0100 | [diff] [blame] | 881 | /* Record the position of the start of the breadcrumb so that |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 882 | * should we detect the updated seqno part-way through the |
| 883 | * GPU processing the request, we never over-estimate the |
Chris Wilson | d045446 | 2016-08-15 10:48:40 +0100 | [diff] [blame] | 884 | * position of the ring's HEAD. |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 885 | */ |
Tvrtko Ursulin | 73dec95 | 2017-02-14 11:32:42 +0000 | [diff] [blame] | 886 | cs = intel_ring_begin(request, engine->emit_breadcrumb_sz); |
| 887 | GEM_BUG_ON(IS_ERR(cs)); |
| 888 | request->postfix = intel_ring_offset(request, cs); |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 889 | |
Chris Wilson | 0f25dff | 2016-09-09 14:11:55 +0100 | [diff] [blame] | 890 | /* Seal the request and mark it as pending execution. Note that |
| 891 | * we may inspect this state, without holding any locks, during |
| 892 | * hangcheck. Hence we apply the barrier to ensure that we do not |
| 893 | * see a more recent value in the hws than we are tracking. |
| 894 | */ |
Chris Wilson | 0a046a0 | 2016-09-09 14:12:00 +0100 | [diff] [blame] | 895 | |
Chris Wilson | 73cb970 | 2016-10-28 13:58:46 +0100 | [diff] [blame] | 896 | prev = i915_gem_active_raw(&timeline->last_request, |
Chris Wilson | 0a046a0 | 2016-09-09 14:12:00 +0100 | [diff] [blame] | 897 | &request->i915->drm.struct_mutex); |
Chris Wilson | 52e5420 | 2016-11-14 20:41:02 +0000 | [diff] [blame] | 898 | if (prev) { |
Chris Wilson | 0a046a0 | 2016-09-09 14:12:00 +0100 | [diff] [blame] | 899 | i915_sw_fence_await_sw_fence(&request->submit, &prev->submit, |
| 900 | &request->submitq); |
Chris Wilson | 52e5420 | 2016-11-14 20:41:02 +0000 | [diff] [blame] | 901 | if (engine->schedule) |
| 902 | __i915_priotree_add_dependency(&request->priotree, |
| 903 | &prev->priotree, |
| 904 | &request->dep, |
| 905 | 0); |
| 906 | } |
Chris Wilson | 0a046a0 | 2016-09-09 14:12:00 +0100 | [diff] [blame] | 907 | |
Chris Wilson | 80b204b | 2016-10-28 13:58:58 +0100 | [diff] [blame] | 908 | spin_lock_irq(&timeline->lock); |
Chris Wilson | f2d1329 | 2016-10-28 13:58:57 +0100 | [diff] [blame] | 909 | list_add_tail(&request->link, &timeline->requests); |
Chris Wilson | 80b204b | 2016-10-28 13:58:58 +0100 | [diff] [blame] | 910 | spin_unlock_irq(&timeline->lock); |
Chris Wilson | 28176ef | 2016-10-28 13:58:56 +0100 | [diff] [blame] | 911 | |
Chris Wilson | 9b6586a | 2017-02-23 07:44:08 +0000 | [diff] [blame] | 912 | GEM_BUG_ON(timeline->seqno != request->fence.seqno); |
Chris Wilson | 73cb970 | 2016-10-28 13:58:46 +0100 | [diff] [blame] | 913 | i915_gem_active_set(&timeline->last_request, request); |
Chris Wilson | f2d1329 | 2016-10-28 13:58:57 +0100 | [diff] [blame] | 914 | |
Chris Wilson | 0f25dff | 2016-09-09 14:11:55 +0100 | [diff] [blame] | 915 | list_add_tail(&request->ring_link, &ring->request_list); |
Chris Wilson | f2d1329 | 2016-10-28 13:58:57 +0100 | [diff] [blame] | 916 | request->emitted_jiffies = jiffies; |
Chris Wilson | 0f25dff | 2016-09-09 14:11:55 +0100 | [diff] [blame] | 917 | |
Chris Wilson | 9b6586a | 2017-02-23 07:44:08 +0000 | [diff] [blame] | 918 | if (!request->i915->gt.active_requests++) |
| 919 | i915_gem_mark_busy(engine); |
Chris Wilson | 5590af3 | 2016-09-09 14:11:54 +0100 | [diff] [blame] | 920 | |
Chris Wilson | 0de9136 | 2016-11-14 20:41:01 +0000 | [diff] [blame] | 921 | /* Let the backend know a new request has arrived that may need |
| 922 | * to adjust the existing execution schedule due to a high priority |
| 923 | * request - i.e. we may want to preempt the current request in order |
| 924 | * to run a high priority dependency chain *before* we can execute this |
| 925 | * request. |
| 926 | * |
| 927 | * This is called before the request is ready to run so that we can |
| 928 | * decide whether to preempt the entire chain so that it is ready to |
| 929 | * run at the earliest possible convenience. |
| 930 | */ |
| 931 | if (engine->schedule) |
Chris Wilson | 9f792eb | 2016-11-14 20:41:04 +0000 | [diff] [blame] | 932 | engine->schedule(request, request->ctx->priority); |
Chris Wilson | 0de9136 | 2016-11-14 20:41:01 +0000 | [diff] [blame] | 933 | |
Chris Wilson | 5590af3 | 2016-09-09 14:11:54 +0100 | [diff] [blame] | 934 | local_bh_disable(); |
| 935 | i915_sw_fence_commit(&request->submit); |
| 936 | local_bh_enable(); /* Kick the execlists tasklet if just scheduled */ |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 937 | } |
| 938 | |
| 939 | static unsigned long local_clock_us(unsigned int *cpu) |
| 940 | { |
| 941 | unsigned long t; |
| 942 | |
| 943 | /* Cheaply and approximately convert from nanoseconds to microseconds. |
| 944 | * The result and subsequent calculations are also defined in the same |
| 945 | * approximate microseconds units. The principal source of timing |
| 946 | * error here is from the simple truncation. |
| 947 | * |
| 948 | * Note that local_clock() is only defined wrt to the current CPU; |
| 949 | * the comparisons are no longer valid if we switch CPUs. Instead of |
| 950 | * blocking preemption for the entire busywait, we can detect the CPU |
| 951 | * switch and use that as indicator of system load and a reason to |
| 952 | * stop busywaiting, see busywait_stop(). |
| 953 | */ |
| 954 | *cpu = get_cpu(); |
| 955 | t = local_clock() >> 10; |
| 956 | put_cpu(); |
| 957 | |
| 958 | return t; |
| 959 | } |
| 960 | |
| 961 | static bool busywait_stop(unsigned long timeout, unsigned int cpu) |
| 962 | { |
| 963 | unsigned int this_cpu; |
| 964 | |
| 965 | if (time_after(local_clock_us(&this_cpu), timeout)) |
| 966 | return true; |
| 967 | |
| 968 | return this_cpu != cpu; |
| 969 | } |
| 970 | |
| 971 | bool __i915_spin_request(const struct drm_i915_gem_request *req, |
Chris Wilson | 754c9fd | 2017-02-23 07:44:14 +0000 | [diff] [blame] | 972 | u32 seqno, int state, unsigned long timeout_us) |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 973 | { |
Chris Wilson | c33ed06 | 2017-02-17 15:13:01 +0000 | [diff] [blame] | 974 | struct intel_engine_cs *engine = req->engine; |
| 975 | unsigned int irq, cpu; |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 976 | |
| 977 | /* When waiting for high frequency requests, e.g. during synchronous |
| 978 | * rendering split between the CPU and GPU, the finite amount of time |
| 979 | * required to set up the irq and wait upon it limits the response |
| 980 | * rate. By busywaiting on the request completion for a short while we |
| 981 | * can service the high frequency waits as quick as possible. However, |
| 982 | * if it is a slow request, we want to sleep as quickly as possible. |
| 983 | * The tradeoff between waiting and sleeping is roughly the time it |
| 984 | * takes to sleep on a request, on the order of a microsecond. |
| 985 | */ |
| 986 | |
Chris Wilson | c33ed06 | 2017-02-17 15:13:01 +0000 | [diff] [blame] | 987 | irq = atomic_read(&engine->irq_count); |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 988 | timeout_us += local_clock_us(&cpu); |
| 989 | do { |
Chris Wilson | 754c9fd | 2017-02-23 07:44:14 +0000 | [diff] [blame] | 990 | if (seqno != i915_gem_request_global_seqno(req)) |
| 991 | break; |
| 992 | |
| 993 | if (i915_seqno_passed(intel_engine_get_seqno(req->engine), |
| 994 | seqno)) |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 995 | return true; |
| 996 | |
Chris Wilson | c33ed06 | 2017-02-17 15:13:01 +0000 | [diff] [blame] | 997 | /* Seqno are meant to be ordered *before* the interrupt. If |
| 998 | * we see an interrupt without a corresponding seqno advance, |
| 999 | * assume we won't see one in the near future but require |
| 1000 | * the engine->seqno_barrier() to fixup coherency. |
| 1001 | */ |
| 1002 | if (atomic_read(&engine->irq_count) != irq) |
| 1003 | break; |
| 1004 | |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1005 | if (signal_pending_state(state, current)) |
| 1006 | break; |
| 1007 | |
| 1008 | if (busywait_stop(timeout_us, cpu)) |
| 1009 | break; |
| 1010 | |
Christian Borntraeger | f2f09a4 | 2016-10-25 11:03:14 +0200 | [diff] [blame] | 1011 | cpu_relax(); |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1012 | } while (!need_resched()); |
| 1013 | |
| 1014 | return false; |
| 1015 | } |
| 1016 | |
Chris Wilson | e070511 | 2017-02-23 07:44:20 +0000 | [diff] [blame] | 1017 | 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] | 1018 | { |
Chris Wilson | 8c185ec | 2017-03-16 17:13:02 +0000 | [diff] [blame] | 1019 | if (likely(!i915_reset_handoff(&request->i915->gpu_error))) |
Chris Wilson | e070511 | 2017-02-23 07:44:20 +0000 | [diff] [blame] | 1020 | return false; |
Chris Wilson | 4680816b | 2016-10-28 13:58:48 +0100 | [diff] [blame] | 1021 | |
Chris Wilson | e070511 | 2017-02-23 07:44:20 +0000 | [diff] [blame] | 1022 | __set_current_state(TASK_RUNNING); |
| 1023 | i915_reset(request->i915); |
| 1024 | return true; |
Chris Wilson | 4680816b | 2016-10-28 13:58:48 +0100 | [diff] [blame] | 1025 | } |
| 1026 | |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1027 | /** |
Chris Wilson | 776f323 | 2016-08-04 07:52:40 +0100 | [diff] [blame] | 1028 | * i915_wait_request - wait until execution of request has finished |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 1029 | * @req: the request to wait upon |
Chris Wilson | ea746f3 | 2016-09-09 14:11:49 +0100 | [diff] [blame] | 1030 | * @flags: how to wait |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 1031 | * @timeout: how long to wait in jiffies |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1032 | * |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 1033 | * i915_wait_request() waits for the request to be completed, for a |
| 1034 | * maximum of @timeout jiffies (with MAX_SCHEDULE_TIMEOUT implying an |
| 1035 | * unbounded wait). |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1036 | * |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 1037 | * If the caller holds the struct_mutex, the caller must pass I915_WAIT_LOCKED |
| 1038 | * in via the flags, and vice versa if the struct_mutex is not held, the caller |
| 1039 | * must not specify that the wait is locked. |
| 1040 | * |
| 1041 | * Returns the remaining time (in jiffies) if the request completed, which may |
| 1042 | * be zero or -ETIME if the request is unfinished after the timeout expires. |
| 1043 | * May return -EINTR is called with I915_WAIT_INTERRUPTIBLE and a signal is |
| 1044 | * pending before the request completes. |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1045 | */ |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 1046 | long i915_wait_request(struct drm_i915_gem_request *req, |
| 1047 | unsigned int flags, |
| 1048 | long timeout) |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1049 | { |
Chris Wilson | ea746f3 | 2016-09-09 14:11:49 +0100 | [diff] [blame] | 1050 | const int state = flags & I915_WAIT_INTERRUPTIBLE ? |
| 1051 | TASK_INTERRUPTIBLE : TASK_UNINTERRUPTIBLE; |
Chris Wilson | 4b36b2e | 2017-02-23 07:44:10 +0000 | [diff] [blame] | 1052 | wait_queue_head_t *errq = &req->i915->gpu_error.wait_queue; |
Chris Wilson | a49625f | 2017-02-23 07:44:19 +0000 | [diff] [blame] | 1053 | DEFINE_WAIT_FUNC(reset, default_wake_function); |
| 1054 | DEFINE_WAIT_FUNC(exec, default_wake_function); |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1055 | struct intel_wait wait; |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1056 | |
| 1057 | might_sleep(); |
Chris Wilson | 22dd3bb | 2016-09-09 14:11:50 +0100 | [diff] [blame] | 1058 | #if IS_ENABLED(CONFIG_LOCKDEP) |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 1059 | GEM_BUG_ON(debug_locks && |
| 1060 | !!lockdep_is_held(&req->i915->drm.struct_mutex) != |
Chris Wilson | 22dd3bb | 2016-09-09 14:11:50 +0100 | [diff] [blame] | 1061 | !!(flags & I915_WAIT_LOCKED)); |
| 1062 | #endif |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 1063 | GEM_BUG_ON(timeout < 0); |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1064 | |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1065 | if (i915_gem_request_completed(req)) |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 1066 | return timeout; |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1067 | |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 1068 | if (!timeout) |
| 1069 | return -ETIME; |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1070 | |
Tvrtko Ursulin | 93692502 | 2017-02-21 11:00:24 +0000 | [diff] [blame] | 1071 | trace_i915_gem_request_wait_begin(req, flags); |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1072 | |
Chris Wilson | a49625f | 2017-02-23 07:44:19 +0000 | [diff] [blame] | 1073 | add_wait_queue(&req->execute, &exec); |
Chris Wilson | 7de53bf | 2017-02-23 07:44:11 +0000 | [diff] [blame] | 1074 | if (flags & I915_WAIT_LOCKED) |
| 1075 | add_wait_queue(errq, &reset); |
| 1076 | |
Chris Wilson | 56299fb | 2017-02-27 20:58:48 +0000 | [diff] [blame] | 1077 | intel_wait_init(&wait, req); |
Chris Wilson | 754c9fd | 2017-02-23 07:44:14 +0000 | [diff] [blame] | 1078 | |
Chris Wilson | d6a2289 | 2017-02-23 07:44:17 +0000 | [diff] [blame] | 1079 | restart: |
Chris Wilson | 0f2f61d | 2017-02-23 07:44:22 +0000 | [diff] [blame] | 1080 | do { |
| 1081 | set_current_state(state); |
| 1082 | if (intel_wait_update_request(&wait, req)) |
| 1083 | break; |
Chris Wilson | 754c9fd | 2017-02-23 07:44:14 +0000 | [diff] [blame] | 1084 | |
Chris Wilson | 0f2f61d | 2017-02-23 07:44:22 +0000 | [diff] [blame] | 1085 | if (flags & I915_WAIT_LOCKED && |
| 1086 | __i915_wait_request_check_and_reset(req)) |
| 1087 | continue; |
Chris Wilson | 541ca6e | 2017-02-23 07:44:12 +0000 | [diff] [blame] | 1088 | |
Chris Wilson | 0f2f61d | 2017-02-23 07:44:22 +0000 | [diff] [blame] | 1089 | if (signal_pending_state(state, current)) { |
| 1090 | timeout = -ERESTARTSYS; |
Chris Wilson | 4680816b | 2016-10-28 13:58:48 +0100 | [diff] [blame] | 1091 | goto complete; |
Chris Wilson | 0f2f61d | 2017-02-23 07:44:22 +0000 | [diff] [blame] | 1092 | } |
Chris Wilson | 4680816b | 2016-10-28 13:58:48 +0100 | [diff] [blame] | 1093 | |
Chris Wilson | 0f2f61d | 2017-02-23 07:44:22 +0000 | [diff] [blame] | 1094 | if (!timeout) { |
| 1095 | timeout = -ETIME; |
| 1096 | goto complete; |
| 1097 | } |
Chris Wilson | 541ca6e | 2017-02-23 07:44:12 +0000 | [diff] [blame] | 1098 | |
Chris Wilson | 0f2f61d | 2017-02-23 07:44:22 +0000 | [diff] [blame] | 1099 | timeout = io_schedule_timeout(timeout); |
| 1100 | } while (1); |
Chris Wilson | 541ca6e | 2017-02-23 07:44:12 +0000 | [diff] [blame] | 1101 | |
Chris Wilson | 0f2f61d | 2017-02-23 07:44:22 +0000 | [diff] [blame] | 1102 | GEM_BUG_ON(!intel_wait_has_seqno(&wait)); |
Chris Wilson | fe49789 | 2017-02-23 07:44:13 +0000 | [diff] [blame] | 1103 | GEM_BUG_ON(!i915_sw_fence_signaled(&req->submit)); |
Chris Wilson | 4680816b | 2016-10-28 13:58:48 +0100 | [diff] [blame] | 1104 | |
Daniel Vetter | 437c308 | 2016-08-05 18:11:24 +0200 | [diff] [blame] | 1105 | /* Optimistic short spin before touching IRQs */ |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1106 | if (i915_spin_request(req, state, 5)) |
| 1107 | goto complete; |
| 1108 | |
| 1109 | set_current_state(state); |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1110 | if (intel_engine_add_wait(req->engine, &wait)) |
| 1111 | /* In order to check that we haven't missed the interrupt |
| 1112 | * as we enabled it, we need to kick ourselves to do a |
| 1113 | * coherent check on the seqno before we sleep. |
| 1114 | */ |
| 1115 | goto wakeup; |
| 1116 | |
Chris Wilson | 24f417e | 2017-02-23 07:44:21 +0000 | [diff] [blame] | 1117 | if (flags & I915_WAIT_LOCKED) |
| 1118 | __i915_wait_request_check_and_reset(req); |
| 1119 | |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1120 | for (;;) { |
| 1121 | if (signal_pending_state(state, current)) { |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 1122 | timeout = -ERESTARTSYS; |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1123 | break; |
| 1124 | } |
| 1125 | |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 1126 | if (!timeout) { |
| 1127 | timeout = -ETIME; |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1128 | break; |
| 1129 | } |
| 1130 | |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 1131 | timeout = io_schedule_timeout(timeout); |
| 1132 | |
Chris Wilson | 754c9fd | 2017-02-23 07:44:14 +0000 | [diff] [blame] | 1133 | if (intel_wait_complete(&wait) && |
| 1134 | intel_wait_check_request(&wait, req)) |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1135 | break; |
| 1136 | |
| 1137 | set_current_state(state); |
| 1138 | |
| 1139 | wakeup: |
| 1140 | /* Carefully check if the request is complete, giving time |
| 1141 | * for the seqno to be visible following the interrupt. |
| 1142 | * We also have to check in case we are kicked by the GPU |
| 1143 | * reset in order to drop the struct_mutex. |
| 1144 | */ |
| 1145 | if (__i915_request_irq_complete(req)) |
| 1146 | break; |
| 1147 | |
Chris Wilson | 221fe79 | 2016-09-09 14:11:51 +0100 | [diff] [blame] | 1148 | /* If the GPU is hung, and we hold the lock, reset the GPU |
| 1149 | * and then check for completion. On a full reset, the engine's |
| 1150 | * HW seqno will be advanced passed us and we are complete. |
| 1151 | * If we do a partial reset, we have to wait for the GPU to |
| 1152 | * resume and update the breadcrumb. |
| 1153 | * |
| 1154 | * If we don't hold the mutex, we can just wait for the worker |
| 1155 | * to come along and update the breadcrumb (either directly |
| 1156 | * itself, or indirectly by recovering the GPU). |
| 1157 | */ |
| 1158 | if (flags & I915_WAIT_LOCKED && |
Chris Wilson | e070511 | 2017-02-23 07:44:20 +0000 | [diff] [blame] | 1159 | __i915_wait_request_check_and_reset(req)) |
Chris Wilson | 221fe79 | 2016-09-09 14:11:51 +0100 | [diff] [blame] | 1160 | continue; |
Chris Wilson | 221fe79 | 2016-09-09 14:11:51 +0100 | [diff] [blame] | 1161 | |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1162 | /* Only spin if we know the GPU is processing this request */ |
| 1163 | if (i915_spin_request(req, state, 2)) |
| 1164 | break; |
Chris Wilson | d6a2289 | 2017-02-23 07:44:17 +0000 | [diff] [blame] | 1165 | |
| 1166 | if (!intel_wait_check_request(&wait, req)) { |
| 1167 | intel_engine_remove_wait(req->engine, &wait); |
| 1168 | goto restart; |
| 1169 | } |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1170 | } |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1171 | |
| 1172 | intel_engine_remove_wait(req->engine, &wait); |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1173 | complete: |
Chris Wilson | a49625f | 2017-02-23 07:44:19 +0000 | [diff] [blame] | 1174 | __set_current_state(TASK_RUNNING); |
Chris Wilson | 7de53bf | 2017-02-23 07:44:11 +0000 | [diff] [blame] | 1175 | if (flags & I915_WAIT_LOCKED) |
| 1176 | remove_wait_queue(errq, &reset); |
Chris Wilson | a49625f | 2017-02-23 07:44:19 +0000 | [diff] [blame] | 1177 | remove_wait_queue(&req->execute, &exec); |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1178 | trace_i915_gem_request_wait_end(req); |
| 1179 | |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 1180 | return timeout; |
Chris Wilson | 05235c5 | 2016-07-20 09:21:08 +0100 | [diff] [blame] | 1181 | } |
Chris Wilson | 4b8de8e | 2016-08-04 07:52:42 +0100 | [diff] [blame] | 1182 | |
Chris Wilson | 28176ef | 2016-10-28 13:58:56 +0100 | [diff] [blame] | 1183 | static void engine_retire_requests(struct intel_engine_cs *engine) |
Chris Wilson | 4b8de8e | 2016-08-04 07:52:42 +0100 | [diff] [blame] | 1184 | { |
| 1185 | struct drm_i915_gem_request *request, *next; |
Chris Wilson | 754c9fd | 2017-02-23 07:44:14 +0000 | [diff] [blame] | 1186 | u32 seqno = intel_engine_get_seqno(engine); |
| 1187 | LIST_HEAD(retire); |
Chris Wilson | 4b8de8e | 2016-08-04 07:52:42 +0100 | [diff] [blame] | 1188 | |
Chris Wilson | 754c9fd | 2017-02-23 07:44:14 +0000 | [diff] [blame] | 1189 | spin_lock_irq(&engine->timeline->lock); |
Chris Wilson | 73cb970 | 2016-10-28 13:58:46 +0100 | [diff] [blame] | 1190 | list_for_each_entry_safe(request, next, |
| 1191 | &engine->timeline->requests, link) { |
Chris Wilson | 754c9fd | 2017-02-23 07:44:14 +0000 | [diff] [blame] | 1192 | if (!i915_seqno_passed(seqno, request->global_seqno)) |
| 1193 | break; |
Chris Wilson | 4b8de8e | 2016-08-04 07:52:42 +0100 | [diff] [blame] | 1194 | |
Chris Wilson | 754c9fd | 2017-02-23 07:44:14 +0000 | [diff] [blame] | 1195 | list_move_tail(&request->link, &retire); |
Chris Wilson | 4b8de8e | 2016-08-04 07:52:42 +0100 | [diff] [blame] | 1196 | } |
Chris Wilson | 754c9fd | 2017-02-23 07:44:14 +0000 | [diff] [blame] | 1197 | spin_unlock_irq(&engine->timeline->lock); |
| 1198 | |
| 1199 | list_for_each_entry_safe(request, next, &retire, link) |
| 1200 | i915_gem_request_retire(request); |
Chris Wilson | 4b8de8e | 2016-08-04 07:52:42 +0100 | [diff] [blame] | 1201 | } |
| 1202 | |
| 1203 | void i915_gem_retire_requests(struct drm_i915_private *dev_priv) |
| 1204 | { |
| 1205 | struct intel_engine_cs *engine; |
Chris Wilson | 28176ef | 2016-10-28 13:58:56 +0100 | [diff] [blame] | 1206 | enum intel_engine_id id; |
Chris Wilson | 4b8de8e | 2016-08-04 07:52:42 +0100 | [diff] [blame] | 1207 | |
| 1208 | lockdep_assert_held(&dev_priv->drm.struct_mutex); |
| 1209 | |
Chris Wilson | 28176ef | 2016-10-28 13:58:56 +0100 | [diff] [blame] | 1210 | if (!dev_priv->gt.active_requests) |
Chris Wilson | 4b8de8e | 2016-08-04 07:52:42 +0100 | [diff] [blame] | 1211 | return; |
| 1212 | |
Chris Wilson | 28176ef | 2016-10-28 13:58:56 +0100 | [diff] [blame] | 1213 | for_each_engine(engine, dev_priv, id) |
| 1214 | engine_retire_requests(engine); |
Chris Wilson | 4b8de8e | 2016-08-04 07:52:42 +0100 | [diff] [blame] | 1215 | } |
Chris Wilson | c835c55 | 2017-02-13 17:15:21 +0000 | [diff] [blame] | 1216 | |
| 1217 | #if IS_ENABLED(CONFIG_DRM_I915_SELFTEST) |
| 1218 | #include "selftests/mock_request.c" |
| 1219 | #include "selftests/i915_gem_request.c" |
| 1220 | #endif |