Chris Wilson | b47eb4a | 2010-08-07 11:01:23 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright © 2008-2010 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 | * Authors: |
| 24 | * Eric Anholt <eric@anholt.net> |
| 25 | * Chris Wilson <chris@chris-wilson.co.uuk> |
| 26 | * |
| 27 | */ |
| 28 | |
David Howells | 760285e | 2012-10-02 18:01:07 +0100 | [diff] [blame] | 29 | #include <drm/drmP.h> |
David Howells | 760285e | 2012-10-02 18:01:07 +0100 | [diff] [blame] | 30 | #include <drm/i915_drm.h> |
Chris Wilson | 74e21ac | 2014-01-20 10:17:37 +0000 | [diff] [blame] | 31 | |
| 32 | #include "i915_drv.h" |
| 33 | #include "intel_drv.h" |
Chris Wilson | db53a30 | 2011-02-03 11:57:46 +0000 | [diff] [blame] | 34 | #include "i915_trace.h" |
Chris Wilson | b47eb4a | 2010-08-07 11:01:23 +0100 | [diff] [blame] | 35 | |
Chris Wilson | 80b204b | 2016-10-28 13:58:58 +0100 | [diff] [blame] | 36 | static bool ggtt_is_idle(struct drm_i915_private *dev_priv) |
Chris Wilson | 9332f3b | 2016-08-04 16:32:17 +0100 | [diff] [blame] | 37 | { |
Chris Wilson | 80b204b | 2016-10-28 13:58:58 +0100 | [diff] [blame] | 38 | struct i915_ggtt *ggtt = &dev_priv->ggtt; |
Chris Wilson | 9332f3b | 2016-08-04 16:32:17 +0100 | [diff] [blame] | 39 | struct intel_engine_cs *engine; |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 40 | enum intel_engine_id id; |
Chris Wilson | 9332f3b | 2016-08-04 16:32:17 +0100 | [diff] [blame] | 41 | |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 42 | for_each_engine(engine, dev_priv, id) { |
Chris Wilson | 80b204b | 2016-10-28 13:58:58 +0100 | [diff] [blame] | 43 | struct intel_timeline *tl; |
| 44 | |
| 45 | tl = &ggtt->base.timeline.engine[engine->id]; |
| 46 | if (i915_gem_active_isset(&tl->last_request)) |
Chris Wilson | 9332f3b | 2016-08-04 16:32:17 +0100 | [diff] [blame] | 47 | return false; |
| 48 | } |
| 49 | |
| 50 | return true; |
| 51 | } |
| 52 | |
| 53 | static bool |
Chris Wilson | 9a71e27 | 2016-12-22 08:36:29 +0000 | [diff] [blame] | 54 | mark_free(struct drm_mm_scan *scan, |
| 55 | struct i915_vma *vma, |
| 56 | unsigned int flags, |
| 57 | struct list_head *unwind) |
Chris Wilson | b47eb4a | 2010-08-07 11:01:23 +0100 | [diff] [blame] | 58 | { |
Chris Wilson | 20dfbde | 2016-08-04 16:32:30 +0100 | [diff] [blame] | 59 | if (i915_vma_is_pinned(vma)) |
Chris Wilson | 1b50247 | 2012-04-24 15:47:30 +0100 | [diff] [blame] | 60 | return false; |
| 61 | |
Chris Wilson | 275f039 | 2016-10-24 13:42:14 +0100 | [diff] [blame] | 62 | if (flags & PIN_NONFAULT && !list_empty(&vma->obj->userfault_link)) |
Chris Wilson | 8211887 | 2016-08-18 17:17:05 +0100 | [diff] [blame] | 63 | return false; |
| 64 | |
Ben Widawsky | 82a55ad | 2013-08-14 11:38:34 +0200 | [diff] [blame] | 65 | list_add(&vma->exec_list, unwind); |
Chris Wilson | 9a71e27 | 2016-12-22 08:36:29 +0000 | [diff] [blame] | 66 | return drm_mm_scan_add_block(scan, &vma->node); |
Chris Wilson | b47eb4a | 2010-08-07 11:01:23 +0100 | [diff] [blame] | 67 | } |
| 68 | |
Daniel Vetter | c2c1d49 | 2014-01-29 22:07:11 +0100 | [diff] [blame] | 69 | /** |
| 70 | * i915_gem_evict_something - Evict vmas to make room for binding a new one |
Daniel Vetter | c2c1d49 | 2014-01-29 22:07:11 +0100 | [diff] [blame] | 71 | * @vm: address space to evict from |
Daniel Vetter | 7838a63 | 2015-01-05 14:36:59 +0100 | [diff] [blame] | 72 | * @min_size: size of the desired free space |
Daniel Vetter | c2c1d49 | 2014-01-29 22:07:11 +0100 | [diff] [blame] | 73 | * @alignment: alignment constraint of the desired free space |
| 74 | * @cache_level: cache_level for the desired space |
Daniel Vetter | 7838a63 | 2015-01-05 14:36:59 +0100 | [diff] [blame] | 75 | * @start: start (inclusive) of the range from which to evict objects |
| 76 | * @end: end (exclusive) of the range from which to evict objects |
| 77 | * @flags: additional flags to control the eviction algorithm |
Daniel Vetter | c2c1d49 | 2014-01-29 22:07:11 +0100 | [diff] [blame] | 78 | * |
| 79 | * This function will try to evict vmas until a free space satisfying the |
| 80 | * requirements is found. Callers must check first whether any such hole exists |
| 81 | * already before calling this function. |
| 82 | * |
| 83 | * This function is used by the object/vma binding code. |
| 84 | * |
Daniel Vetter | eb0b44a | 2015-03-18 14:47:59 +0100 | [diff] [blame] | 85 | * Since this function is only used to free up virtual address space it only |
| 86 | * ignores pinned vmas, and not object where the backing storage itself is |
| 87 | * pinned. Hence obj->pages_pin_count does not protect against eviction. |
| 88 | * |
Daniel Vetter | c2c1d49 | 2014-01-29 22:07:11 +0100 | [diff] [blame] | 89 | * To clarify: This is for freeing up virtual address space, not for freeing |
| 90 | * memory in e.g. the shrinker. |
| 91 | */ |
Chris Wilson | b47eb4a | 2010-08-07 11:01:23 +0100 | [diff] [blame] | 92 | int |
Chris Wilson | e522ac2 | 2016-08-04 16:32:18 +0100 | [diff] [blame] | 93 | i915_gem_evict_something(struct i915_address_space *vm, |
Chris Wilson | 2ffffd0 | 2016-08-04 16:32:22 +0100 | [diff] [blame] | 94 | u64 min_size, u64 alignment, |
| 95 | unsigned cache_level, |
| 96 | u64 start, u64 end, |
Daniel Vetter | 1ec9e26 | 2014-02-14 14:01:11 +0100 | [diff] [blame] | 97 | unsigned flags) |
Chris Wilson | b47eb4a | 2010-08-07 11:01:23 +0100 | [diff] [blame] | 98 | { |
Chris Wilson | 49d7391 | 2016-11-29 09:50:08 +0000 | [diff] [blame] | 99 | struct drm_i915_private *dev_priv = vm->i915; |
Chris Wilson | 9a71e27 | 2016-12-22 08:36:29 +0000 | [diff] [blame] | 100 | struct drm_mm_scan scan; |
Chris Wilson | 9332f3b | 2016-08-04 16:32:17 +0100 | [diff] [blame] | 101 | struct list_head eviction_list; |
| 102 | struct list_head *phases[] = { |
| 103 | &vm->inactive_list, |
| 104 | &vm->active_list, |
| 105 | NULL, |
| 106 | }, **phase; |
| 107 | struct i915_vma *vma, *next; |
Chris Wilson | 3fa489d | 2016-12-22 08:36:36 +0000 | [diff] [blame] | 108 | struct drm_mm_node *node; |
Chris Wilson | 4e64e55 | 2017-02-02 21:04:38 +0000 | [diff] [blame] | 109 | enum drm_mm_insert_mode mode; |
Chris Wilson | 9332f3b | 2016-08-04 16:32:17 +0100 | [diff] [blame] | 110 | int ret; |
Chris Wilson | b47eb4a | 2010-08-07 11:01:23 +0100 | [diff] [blame] | 111 | |
Chris Wilson | 49d7391 | 2016-11-29 09:50:08 +0000 | [diff] [blame] | 112 | lockdep_assert_held(&vm->i915->drm.struct_mutex); |
Chris Wilson | e522ac2 | 2016-08-04 16:32:18 +0100 | [diff] [blame] | 113 | trace_i915_gem_evict(vm, min_size, alignment, flags); |
Chris Wilson | db53a30 | 2011-02-03 11:57:46 +0000 | [diff] [blame] | 114 | |
Chris Wilson | cd377ea | 2010-08-07 11:01:24 +0100 | [diff] [blame] | 115 | /* |
| 116 | * The goal is to evict objects and amalgamate space in LRU order. |
| 117 | * The oldest idle objects reside on the inactive list, which is in |
Chris Wilson | 9332f3b | 2016-08-04 16:32:17 +0100 | [diff] [blame] | 118 | * retirement order. The next objects to retire are those in flight, |
| 119 | * on the active list, again in retirement order. |
Chris Wilson | cd377ea | 2010-08-07 11:01:24 +0100 | [diff] [blame] | 120 | * |
| 121 | * The retirement sequence is thus: |
| 122 | * 1. Inactive objects (already retired) |
Chris Wilson | 9332f3b | 2016-08-04 16:32:17 +0100 | [diff] [blame] | 123 | * 2. Active objects (will stall on unbinding) |
Chris Wilson | cd377ea | 2010-08-07 11:01:24 +0100 | [diff] [blame] | 124 | * |
| 125 | * On each list, the oldest objects lie at the HEAD with the freshest |
| 126 | * object on the TAIL. |
| 127 | */ |
Chris Wilson | 4e64e55 | 2017-02-02 21:04:38 +0000 | [diff] [blame] | 128 | mode = DRM_MM_INSERT_BEST; |
| 129 | if (flags & PIN_HIGH) |
| 130 | mode = DRM_MM_INSERT_HIGH; |
| 131 | if (flags & PIN_MAPPABLE) |
| 132 | mode = DRM_MM_INSERT_LOW; |
Chris Wilson | 2c4b389 | 2016-12-22 08:36:31 +0000 | [diff] [blame] | 133 | drm_mm_scan_init_with_range(&scan, &vm->mm, |
| 134 | min_size, alignment, cache_level, |
Chris Wilson | 4e64e55 | 2017-02-02 21:04:38 +0000 | [diff] [blame] | 135 | start, end, mode); |
Chris Wilson | b47eb4a | 2010-08-07 11:01:23 +0100 | [diff] [blame] | 136 | |
Chris Wilson | 7155b05 | 2016-12-09 15:05:55 +0000 | [diff] [blame] | 137 | /* Retire before we search the active list. Although we have |
| 138 | * reasonable accuracy in our retirement lists, we may have |
| 139 | * a stray pin (preventing eviction) that can only be resolved by |
| 140 | * retiring. |
| 141 | */ |
| 142 | if (!(flags & PIN_NONBLOCK)) |
| 143 | i915_gem_retire_requests(dev_priv); |
| 144 | else |
Chris Wilson | 9332f3b | 2016-08-04 16:32:17 +0100 | [diff] [blame] | 145 | phases[1] = NULL; |
Chris Wilson | 86a1ee2 | 2012-08-11 15:41:04 +0100 | [diff] [blame] | 146 | |
Chris Wilson | 9332f3b | 2016-08-04 16:32:17 +0100 | [diff] [blame] | 147 | search_again: |
| 148 | INIT_LIST_HEAD(&eviction_list); |
| 149 | phase = phases; |
| 150 | do { |
| 151 | list_for_each_entry(vma, *phase, vm_link) |
Chris Wilson | 9a71e27 | 2016-12-22 08:36:29 +0000 | [diff] [blame] | 152 | if (mark_free(&scan, vma, flags, &eviction_list)) |
Chris Wilson | 9332f3b | 2016-08-04 16:32:17 +0100 | [diff] [blame] | 153 | goto found; |
| 154 | } while (*++phase); |
Chris Wilson | cd377ea | 2010-08-07 11:01:24 +0100 | [diff] [blame] | 155 | |
Chris Wilson | cd377ea | 2010-08-07 11:01:24 +0100 | [diff] [blame] | 156 | /* Nothing found, clean up and bail out! */ |
Chris Wilson | 9332f3b | 2016-08-04 16:32:17 +0100 | [diff] [blame] | 157 | list_for_each_entry_safe(vma, next, &eviction_list, exec_list) { |
Chris Wilson | 9a71e27 | 2016-12-22 08:36:29 +0000 | [diff] [blame] | 158 | ret = drm_mm_scan_remove_block(&scan, &vma->node); |
Chris Wilson | cd377ea | 2010-08-07 11:01:24 +0100 | [diff] [blame] | 159 | BUG_ON(ret); |
| 160 | } |
| 161 | |
Chris Wilson | ad071ac | 2013-12-09 10:37:24 +0000 | [diff] [blame] | 162 | /* Can we unpin some objects such as idle hw contents, |
Chris Wilson | 9332f3b | 2016-08-04 16:32:17 +0100 | [diff] [blame] | 163 | * or pending flips? But since only the GGTT has global entries |
| 164 | * such as scanouts, rinbuffers and contexts, we can skip the |
| 165 | * purge when inspecting per-process local address spaces. |
Chris Wilson | cd377ea | 2010-08-07 11:01:24 +0100 | [diff] [blame] | 166 | */ |
Chris Wilson | 9332f3b | 2016-08-04 16:32:17 +0100 | [diff] [blame] | 167 | if (!i915_is_ggtt(vm) || flags & PIN_NONBLOCK) |
Chris Wilson | 74e21ac | 2014-01-20 10:17:37 +0000 | [diff] [blame] | 168 | return -ENOSPC; |
Chris Wilson | ad071ac | 2013-12-09 10:37:24 +0000 | [diff] [blame] | 169 | |
Chris Wilson | 80b204b | 2016-10-28 13:58:58 +0100 | [diff] [blame] | 170 | if (ggtt_is_idle(dev_priv)) { |
Chris Wilson | 9332f3b | 2016-08-04 16:32:17 +0100 | [diff] [blame] | 171 | /* If we still have pending pageflip completions, drop |
| 172 | * back to userspace to give our workqueues time to |
| 173 | * acquire our locks and unpin the old scanouts. |
| 174 | */ |
Chris Wilson | 49d7391 | 2016-11-29 09:50:08 +0000 | [diff] [blame] | 175 | return intel_has_pending_fb_unpin(dev_priv) ? -EAGAIN : -ENOSPC; |
Chris Wilson | 74e21ac | 2014-01-20 10:17:37 +0000 | [diff] [blame] | 176 | } |
| 177 | |
Chris Wilson | 9332f3b | 2016-08-04 16:32:17 +0100 | [diff] [blame] | 178 | /* Not everything in the GGTT is tracked via vma (otherwise we |
| 179 | * could evict as required with minimal stalling) so we are forced |
| 180 | * to idle the GPU and explicitly retire outstanding requests in |
| 181 | * the hopes that we can then remove contexts and the like only |
| 182 | * bound by their active reference. |
Chris Wilson | 74e21ac | 2014-01-20 10:17:37 +0000 | [diff] [blame] | 183 | */ |
Chris Wilson | 9332f3b | 2016-08-04 16:32:17 +0100 | [diff] [blame] | 184 | ret = i915_gem_switch_to_kernel_context(dev_priv); |
| 185 | if (ret) |
| 186 | return ret; |
| 187 | |
Chris Wilson | 22dd3bb | 2016-09-09 14:11:50 +0100 | [diff] [blame] | 188 | ret = i915_gem_wait_for_idle(dev_priv, |
| 189 | I915_WAIT_INTERRUPTIBLE | |
| 190 | I915_WAIT_LOCKED); |
Chris Wilson | 9332f3b | 2016-08-04 16:32:17 +0100 | [diff] [blame] | 191 | if (ret) |
| 192 | return ret; |
| 193 | |
Chris Wilson | 9332f3b | 2016-08-04 16:32:17 +0100 | [diff] [blame] | 194 | goto search_again; |
Chris Wilson | cd377ea | 2010-08-07 11:01:24 +0100 | [diff] [blame] | 195 | |
| 196 | found: |
Chris Wilson | e39a015 | 2010-09-29 22:23:05 +0100 | [diff] [blame] | 197 | /* drm_mm doesn't allow any other other operations while |
Chris Wilson | 9332f3b | 2016-08-04 16:32:17 +0100 | [diff] [blame] | 198 | * scanning, therefore store to-be-evicted objects on a |
| 199 | * temporary list and take a reference for all before |
| 200 | * calling unbind (which may remove the active reference |
| 201 | * of any of our objects, thus corrupting the list). |
| 202 | */ |
| 203 | list_for_each_entry_safe(vma, next, &eviction_list, exec_list) { |
Chris Wilson | 9a71e27 | 2016-12-22 08:36:29 +0000 | [diff] [blame] | 204 | if (drm_mm_scan_remove_block(&scan, &vma->node)) |
Chris Wilson | 20dfbde | 2016-08-04 16:32:30 +0100 | [diff] [blame] | 205 | __i915_vma_pin(vma); |
Chris Wilson | 9332f3b | 2016-08-04 16:32:17 +0100 | [diff] [blame] | 206 | else |
Chris Wilson | d55495b | 2017-06-15 09:14:34 +0100 | [diff] [blame^] | 207 | list_del(&vma->exec_list); |
Chris Wilson | cd377ea | 2010-08-07 11:01:24 +0100 | [diff] [blame] | 208 | } |
| 209 | |
Chris Wilson | e39a015 | 2010-09-29 22:23:05 +0100 | [diff] [blame] | 210 | /* Unbinding will emit any required flushes */ |
Chris Wilson | 121dfbb | 2017-01-05 15:59:40 +0000 | [diff] [blame] | 211 | ret = 0; |
Chris Wilson | d55495b | 2017-06-15 09:14:34 +0100 | [diff] [blame^] | 212 | list_for_each_entry_safe(vma, next, &eviction_list, exec_list) { |
Chris Wilson | 20dfbde | 2016-08-04 16:32:30 +0100 | [diff] [blame] | 213 | __i915_vma_unpin(vma); |
Chris Wilson | e39a015 | 2010-09-29 22:23:05 +0100 | [diff] [blame] | 214 | if (ret == 0) |
Ben Widawsky | 82a55ad | 2013-08-14 11:38:34 +0200 | [diff] [blame] | 215 | ret = i915_vma_unbind(vma); |
Chris Wilson | e39a015 | 2010-09-29 22:23:05 +0100 | [diff] [blame] | 216 | } |
Chris Wilson | 3fa489d | 2016-12-22 08:36:36 +0000 | [diff] [blame] | 217 | |
| 218 | while (ret == 0 && (node = drm_mm_scan_color_evict(&scan))) { |
| 219 | vma = container_of(node, struct i915_vma, node); |
| 220 | ret = i915_vma_unbind(vma); |
| 221 | } |
| 222 | |
Chris Wilson | e39a015 | 2010-09-29 22:23:05 +0100 | [diff] [blame] | 223 | return ret; |
Chris Wilson | b47eb4a | 2010-08-07 11:01:23 +0100 | [diff] [blame] | 224 | } |
| 225 | |
Chris Wilson | 172ae5b | 2016-12-05 14:29:37 +0000 | [diff] [blame] | 226 | /** |
| 227 | * i915_gem_evict_for_vma - Evict vmas to make room for binding a new one |
Chris Wilson | 625d988 | 2017-01-11 11:23:11 +0000 | [diff] [blame] | 228 | * @vm: address space to evict from |
| 229 | * @target: range (and color) to evict for |
Chris Wilson | 172ae5b | 2016-12-05 14:29:37 +0000 | [diff] [blame] | 230 | * @flags: additional flags to control the eviction algorithm |
| 231 | * |
| 232 | * This function will try to evict vmas that overlap the target node. |
| 233 | * |
| 234 | * To clarify: This is for freeing up virtual address space, not for freeing |
| 235 | * memory in e.g. the shrinker. |
| 236 | */ |
Chris Wilson | 625d988 | 2017-01-11 11:23:11 +0000 | [diff] [blame] | 237 | int i915_gem_evict_for_node(struct i915_address_space *vm, |
| 238 | struct drm_mm_node *target, |
| 239 | unsigned int flags) |
Chris Wilson | 506a8e8 | 2015-12-08 11:55:07 +0000 | [diff] [blame] | 240 | { |
Chris Wilson | 172ae5b | 2016-12-05 14:29:37 +0000 | [diff] [blame] | 241 | LIST_HEAD(eviction_list); |
| 242 | struct drm_mm_node *node; |
Chris Wilson | 625d988 | 2017-01-11 11:23:11 +0000 | [diff] [blame] | 243 | u64 start = target->start; |
| 244 | u64 end = start + target->size; |
Chris Wilson | 172ae5b | 2016-12-05 14:29:37 +0000 | [diff] [blame] | 245 | struct i915_vma *vma, *next; |
| 246 | bool check_color; |
| 247 | int ret = 0; |
Chris Wilson | 506a8e8 | 2015-12-08 11:55:07 +0000 | [diff] [blame] | 248 | |
Chris Wilson | 625d988 | 2017-01-11 11:23:11 +0000 | [diff] [blame] | 249 | lockdep_assert_held(&vm->i915->drm.struct_mutex); |
Chris Wilson | a6508de | 2017-02-06 08:45:47 +0000 | [diff] [blame] | 250 | GEM_BUG_ON(!IS_ALIGNED(start, I915_GTT_PAGE_SIZE)); |
| 251 | GEM_BUG_ON(!IS_ALIGNED(end, I915_GTT_PAGE_SIZE)); |
| 252 | |
Chris Wilson | 625d988 | 2017-01-11 11:23:11 +0000 | [diff] [blame] | 253 | trace_i915_gem_evict_node(vm, target, flags); |
Chris Wilson | 4c7d62c | 2016-10-28 13:58:32 +0100 | [diff] [blame] | 254 | |
Chris Wilson | 7155b05 | 2016-12-09 15:05:55 +0000 | [diff] [blame] | 255 | /* Retire before we search the active list. Although we have |
| 256 | * reasonable accuracy in our retirement lists, we may have |
| 257 | * a stray pin (preventing eviction) that can only be resolved by |
| 258 | * retiring. |
| 259 | */ |
| 260 | if (!(flags & PIN_NONBLOCK)) |
Chris Wilson | 625d988 | 2017-01-11 11:23:11 +0000 | [diff] [blame] | 261 | i915_gem_retire_requests(vm->i915); |
Chris Wilson | 7155b05 | 2016-12-09 15:05:55 +0000 | [diff] [blame] | 262 | |
Chris Wilson | 625d988 | 2017-01-11 11:23:11 +0000 | [diff] [blame] | 263 | check_color = vm->mm.color_adjust; |
Chris Wilson | 172ae5b | 2016-12-05 14:29:37 +0000 | [diff] [blame] | 264 | if (check_color) { |
| 265 | /* Expand search to cover neighbouring guard pages (or lack!) */ |
Chris Wilson | 381b943 | 2017-02-15 08:43:54 +0000 | [diff] [blame] | 266 | if (start) |
Chris Wilson | f51455d | 2017-01-10 14:47:34 +0000 | [diff] [blame] | 267 | start -= I915_GTT_PAGE_SIZE; |
Chris Wilson | a6508de | 2017-02-06 08:45:47 +0000 | [diff] [blame] | 268 | |
| 269 | /* Always look at the page afterwards to avoid the end-of-GTT */ |
| 270 | end += I915_GTT_PAGE_SIZE; |
Chris Wilson | 172ae5b | 2016-12-05 14:29:37 +0000 | [diff] [blame] | 271 | } |
Chris Wilson | a6508de | 2017-02-06 08:45:47 +0000 | [diff] [blame] | 272 | GEM_BUG_ON(start >= end); |
Chris Wilson | 506a8e8 | 2015-12-08 11:55:07 +0000 | [diff] [blame] | 273 | |
Chris Wilson | 625d988 | 2017-01-11 11:23:11 +0000 | [diff] [blame] | 274 | drm_mm_for_each_node_in_range(node, &vm->mm, start, end) { |
Chris Wilson | 172ae5b | 2016-12-05 14:29:37 +0000 | [diff] [blame] | 275 | /* If we find any non-objects (!vma), we cannot evict them */ |
| 276 | if (node->color == I915_COLOR_UNEVICTABLE) { |
| 277 | ret = -ENOSPC; |
Chris Wilson | 506a8e8 | 2015-12-08 11:55:07 +0000 | [diff] [blame] | 278 | break; |
Chris Wilson | 172ae5b | 2016-12-05 14:29:37 +0000 | [diff] [blame] | 279 | } |
Chris Wilson | 506a8e8 | 2015-12-08 11:55:07 +0000 | [diff] [blame] | 280 | |
Chris Wilson | a6508de | 2017-02-06 08:45:47 +0000 | [diff] [blame] | 281 | GEM_BUG_ON(!node->allocated); |
Chris Wilson | 506a8e8 | 2015-12-08 11:55:07 +0000 | [diff] [blame] | 282 | vma = container_of(node, typeof(*vma), node); |
| 283 | |
Chris Wilson | 172ae5b | 2016-12-05 14:29:37 +0000 | [diff] [blame] | 284 | /* If we are using coloring to insert guard pages between |
| 285 | * different cache domains within the address space, we have |
| 286 | * to check whether the objects on either side of our range |
| 287 | * abutt and conflict. If they are in conflict, then we evict |
| 288 | * those as well to make room for our guard pages. |
| 289 | */ |
| 290 | if (check_color) { |
Matthew Auld | fe65cbd | 2017-03-06 23:54:01 +0000 | [diff] [blame] | 291 | if (node->start + node->size == target->start) { |
| 292 | if (node->color == target->color) |
Chris Wilson | 172ae5b | 2016-12-05 14:29:37 +0000 | [diff] [blame] | 293 | continue; |
| 294 | } |
Matthew Auld | fe65cbd | 2017-03-06 23:54:01 +0000 | [diff] [blame] | 295 | if (node->start == target->start + target->size) { |
| 296 | if (node->color == target->color) |
Chris Wilson | 172ae5b | 2016-12-05 14:29:37 +0000 | [diff] [blame] | 297 | continue; |
| 298 | } |
Chris Wilson | 506a8e8 | 2015-12-08 11:55:07 +0000 | [diff] [blame] | 299 | } |
| 300 | |
Chris Wilson | 172ae5b | 2016-12-05 14:29:37 +0000 | [diff] [blame] | 301 | if (flags & PIN_NONBLOCK && |
| 302 | (i915_vma_is_pinned(vma) || i915_vma_is_active(vma))) { |
| 303 | ret = -ENOSPC; |
| 304 | break; |
| 305 | } |
| 306 | |
| 307 | /* Overlap of objects in the same batch? */ |
Chris Wilson | d55495b | 2017-06-15 09:14:34 +0100 | [diff] [blame^] | 308 | if (i915_vma_is_pinned(vma)) { |
Chris Wilson | 172ae5b | 2016-12-05 14:29:37 +0000 | [diff] [blame] | 309 | ret = -ENOSPC; |
| 310 | if (vma->exec_entry && |
| 311 | vma->exec_entry->flags & EXEC_OBJECT_PINNED) |
| 312 | ret = -EINVAL; |
| 313 | break; |
| 314 | } |
| 315 | |
| 316 | /* Never show fear in the face of dragons! |
| 317 | * |
| 318 | * We cannot directly remove this node from within this |
| 319 | * iterator and as with i915_gem_evict_something() we employ |
| 320 | * the vma pin_count in order to prevent the action of |
| 321 | * unbinding one vma from freeing (by dropping its active |
| 322 | * reference) another in our eviction list. |
| 323 | */ |
| 324 | __i915_vma_pin(vma); |
| 325 | list_add(&vma->exec_list, &eviction_list); |
Chris Wilson | 506a8e8 | 2015-12-08 11:55:07 +0000 | [diff] [blame] | 326 | } |
| 327 | |
Chris Wilson | 172ae5b | 2016-12-05 14:29:37 +0000 | [diff] [blame] | 328 | list_for_each_entry_safe(vma, next, &eviction_list, exec_list) { |
Chris Wilson | 172ae5b | 2016-12-05 14:29:37 +0000 | [diff] [blame] | 329 | __i915_vma_unpin(vma); |
| 330 | if (ret == 0) |
| 331 | ret = i915_vma_unbind(vma); |
| 332 | } |
| 333 | |
| 334 | return ret; |
Chris Wilson | 506a8e8 | 2015-12-08 11:55:07 +0000 | [diff] [blame] | 335 | } |
| 336 | |
Ben Widawsky | 68c8c17 | 2013-09-11 14:57:50 -0700 | [diff] [blame] | 337 | /** |
Daniel Vetter | c2c1d49 | 2014-01-29 22:07:11 +0100 | [diff] [blame] | 338 | * i915_gem_evict_vm - Evict all idle vmas from a vm |
Daniel Vetter | c2c1d49 | 2014-01-29 22:07:11 +0100 | [diff] [blame] | 339 | * @vm: Address space to cleanse |
Ben Widawsky | 68c8c17 | 2013-09-11 14:57:50 -0700 | [diff] [blame] | 340 | * @do_idle: Boolean directing whether to idle first. |
| 341 | * |
Daniel Vetter | c2c1d49 | 2014-01-29 22:07:11 +0100 | [diff] [blame] | 342 | * This function evicts all idles vmas from a vm. If all unpinned vmas should be |
| 343 | * evicted the @do_idle needs to be set to true. |
Ben Widawsky | 68c8c17 | 2013-09-11 14:57:50 -0700 | [diff] [blame] | 344 | * |
Daniel Vetter | c2c1d49 | 2014-01-29 22:07:11 +0100 | [diff] [blame] | 345 | * This is used by the execbuf code as a last-ditch effort to defragment the |
| 346 | * address space. |
| 347 | * |
| 348 | * To clarify: This is for freeing up virtual address space, not for freeing |
| 349 | * memory in e.g. the shrinker. |
Ben Widawsky | 68c8c17 | 2013-09-11 14:57:50 -0700 | [diff] [blame] | 350 | */ |
| 351 | int i915_gem_evict_vm(struct i915_address_space *vm, bool do_idle) |
Ben Widawsky | 7b79612 | 2013-09-11 14:57:49 -0700 | [diff] [blame] | 352 | { |
| 353 | struct i915_vma *vma, *next; |
| 354 | int ret; |
| 355 | |
Chris Wilson | 49d7391 | 2016-11-29 09:50:08 +0000 | [diff] [blame] | 356 | lockdep_assert_held(&vm->i915->drm.struct_mutex); |
Ben Widawsky | bcccff8 | 2013-09-24 09:57:56 -0700 | [diff] [blame] | 357 | trace_i915_gem_evict_vm(vm); |
| 358 | |
Ben Widawsky | 7b79612 | 2013-09-11 14:57:49 -0700 | [diff] [blame] | 359 | if (do_idle) { |
Chris Wilson | 49d7391 | 2016-11-29 09:50:08 +0000 | [diff] [blame] | 360 | struct drm_i915_private *dev_priv = vm->i915; |
Chris Wilson | 6e5a5be | 2016-06-24 14:55:57 +0100 | [diff] [blame] | 361 | |
Chris Wilson | 883445d | 2016-06-24 14:55:58 +0100 | [diff] [blame] | 362 | if (i915_is_ggtt(vm)) { |
Chris Wilson | 945657b | 2016-07-15 14:56:19 +0100 | [diff] [blame] | 363 | ret = i915_gem_switch_to_kernel_context(dev_priv); |
Chris Wilson | 883445d | 2016-06-24 14:55:58 +0100 | [diff] [blame] | 364 | if (ret) |
| 365 | return ret; |
| 366 | } |
Ben Widawsky | 7b79612 | 2013-09-11 14:57:49 -0700 | [diff] [blame] | 367 | |
Chris Wilson | 22dd3bb | 2016-09-09 14:11:50 +0100 | [diff] [blame] | 368 | ret = i915_gem_wait_for_idle(dev_priv, |
| 369 | I915_WAIT_INTERRUPTIBLE | |
| 370 | I915_WAIT_LOCKED); |
Chris Wilson | 6e5a5be | 2016-06-24 14:55:57 +0100 | [diff] [blame] | 371 | if (ret) |
| 372 | return ret; |
| 373 | |
Ben Widawsky | b9b5dce | 2014-12-23 17:16:04 +0000 | [diff] [blame] | 374 | WARN_ON(!list_empty(&vm->active_list)); |
Ben Widawsky | 7b79612 | 2013-09-11 14:57:49 -0700 | [diff] [blame] | 375 | } |
| 376 | |
Chris Wilson | 1c7f4bc | 2016-02-26 11:03:19 +0000 | [diff] [blame] | 377 | list_for_each_entry_safe(vma, next, &vm->inactive_list, vm_link) |
Chris Wilson | 20dfbde | 2016-08-04 16:32:30 +0100 | [diff] [blame] | 378 | if (!i915_vma_is_pinned(vma)) |
Ben Widawsky | 7b79612 | 2013-09-11 14:57:49 -0700 | [diff] [blame] | 379 | WARN_ON(i915_vma_unbind(vma)); |
| 380 | |
| 381 | return 0; |
| 382 | } |
Chris Wilson | f40a7b7 | 2017-02-13 17:15:52 +0000 | [diff] [blame] | 383 | |
| 384 | #if IS_ENABLED(CONFIG_DRM_I915_SELFTEST) |
| 385 | #include "selftests/i915_gem_evict.c" |
| 386 | #endif |