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